/* You can add global styles to this file, and also import other style files */

/* =====================================================
   AvidCircle Design Tokens — Feed Page Redesign
   Hex values are the source of truth; oklch() declarations
   follow as progressive enhancements for modern browsers.
   ===================================================== */
:root {
  /* Surfaces */
  --bg:           #f8f7f5;
  --surface:      #ffffff;
  --surface-2:    #f5f4f2;
  --surface-3:    #f0efed;

  /* Borders */
  --border:       #e8e7e4;
  --border-strong:#d8d7d3;

  /* Ink scale */
  --ink:   #2a2a2a;
  --ink-2: #4a4a4a;
  --ink-3: #757575;
  --ink-4: #a0a0a0;

  /* Accent (default: Ink — can be overridden per-community) */
  --accent:      #111111;
  --accent-ink:  #ffffff;
  --accent-soft: #f2f2f2;

  /* Type badge tints */
  --t-post-bg:     #eef0fc;
  --t-post-fg:     #3d4ab0;
  --t-poll-bg:     #f2eefb;
  --t-poll-fg:     #6b3fb0;
  --t-survey-bg:   #eef8f6;
  --t-survey-fg:   #2e7d7a;
  --t-bulletin-bg: #fdf5e6;
  --t-bulletin-fg: #8a6200;
  --t-grid-bg:     #fceee8;
  --t-grid-fg:     #8a3300;

  /* Border radii */
  --radius-card: 16px;
  --radius-ctrl: 10px;
  --radius-input: 8px;
  --radius-pill:  999px;

  /* Shadows */
  --shadow-card:       0 1px 2px rgba(15,15,20,0.04), 0 8px 24px -12px rgba(15,15,20,0.08);
  --shadow-card-hover: 0 1px 2px rgba(15,15,20,0.05), 0 16px 40px -16px rgba(15,15,20,0.14);

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 32px;

  /* Typography */
  --font-sans: "Inter", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* =====================================================
   Shared ac- utility classes (used across feed components)
   ===================================================== */

/* Card shell */
.ac-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 200ms ease, border-color 200ms ease;
  font-family: var(--font-sans);
}
.ac-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-strong);
}

/* Card header */
.ac-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6) 0;
}

/* Card title block */
.ac-card-title {
  padding: 14px var(--space-6) 0;
}
.ac-card-title h2,
.ac-card-title h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 4px;
}
.ac-card-title p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
}

/* Card body */
.ac-card-body {
  padding: var(--space-4) var(--space-6) 0;
}

/* Card footer */
.ac-card-footer {
  margin-top: var(--space-5);
  padding: 14px var(--space-6);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  background: var(--surface-2);
}

/* Meta row (inside footer) */
.ac-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-3);
  flex-wrap: wrap;
  font-family: var(--font-sans);
}
.ac-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.ac-meta-item strong {
  color: var(--ink);
  font-weight: 600;
}
.ac-meta-divider {
  width: 1px;
  height: 12px;
  background: var(--border);
}

/* Card header: avatar */
.ac-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-3);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--border);
  font-family: var(--font-sans);
}

/* Card header: meta text */
.ac-header-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ac-header-line1 {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.ac-header-line2 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-sans);
}
.ac-header-community {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ac-header-role {
  font-weight: 500;
  color: var(--ink-2);
}
.ac-header-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-4);
  flex-shrink: 0;
}

/* Card header: right-side actions (pin icon + menu) */
.ac-header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Card menu button */
.ac-menu-btn {
  background: none;
  border: none;
  border-radius: var(--space-2);
  color: var(--ink-3);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
  padding: 0;
}

/* Three-dot menu inside ac-card-header:
   Make the label a positioning context so its ::before/::after/span::before
   dots anchor to it instead of to .dot-menu, then center them vertically. */
.ac-card-header .dot-menu__label {
  position: relative;
  margin: 0;
  width: 30px;
  height: 32px;
}
.ac-card-header .dot-menu__label::before,
.ac-card-header .dot-menu__label::after,
.ac-card-header .dot-menu__label span::before {
  top: 13px; /* (32px − 6px) / 2 — centers 6px dots in 32px box */
}

/* Type badge */
.ac-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.ac-type-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.65;
  flex-shrink: 0;
}
.ac-type-post     { background: var(--t-post-bg);     color: var(--t-post-fg); }
.ac-type-poll     { background: var(--t-poll-bg);     color: var(--t-poll-fg); }
.ac-type-survey   { background: var(--t-survey-bg);   color: var(--t-survey-fg); }
.ac-type-bulletin { background: var(--t-bulletin-bg); color: var(--t-bulletin-fg); }
.ac-type-grid     { background: var(--t-grid-bg);     color: var(--t-grid-fg); }

/* Primary action button */
.ac-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-ctrl);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
  transition: filter 150ms ease, box-shadow 150ms ease, transform 100ms ease;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.ac-btn-primary:hover {
  filter: brightness(1.12);
}
.ac-btn-primary:active {
  transform: translateY(1px);
}
.ac-btn-primary:disabled,
.ac-btn-primary.disabled {
  background: var(--surface-3);
  color: var(--ink-4);
  border-color: var(--border);
  cursor: not-allowed;
  filter: none;
}
/* JS in poll/postpoll TS dynamically adds btn-custom when a checkbox option is selected;
   two-class specificity (0,2,0) beats .btn-custom (0,1,0) so this wins without !important */
.ac-btn-primary.btn-custom {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-ctrl);
  font-size: 14px;
  box-shadow: none;
}

/* Ghost button */
.ac-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-ctrl);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
  font-family: var(--font-sans);
}
.ac-btn-ghost:hover {
  background: var(--surface-3);
  border-color: var(--border-strong);
  color: var(--ink);
}

/* Shared: Read more / Read less link used across all card types */
.ac-read-more {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #4a7eb5;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color 200ms ease;
}
.ac-read-more:hover {
  color: #2563a8;
}

/* Shared: avatar image fills container (used by poll, answer-grid, bulletin, post) */
.ac-avatar img.iefeedimg {
  width: 100%;
  height: 100%;
  min-width: unset;
  border-radius: 0;
  object-fit: cover;
}

/* Shared: footer meta text (used by poll, answer-grid, bulletin) */
.ac-footer-meta {
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-sans);
}

/* ——— Responsive: mobile card adjustments ——— */
@media (max-width: 480px) {
  /* Reduce horizontal padding on narrow screens */
  .ac-card-header {
    padding: var(--space-4) var(--space-4) 0;
  }
  .ac-card-title {
    padding: 12px var(--space-4) 0;
  }
  .ac-card-body {
    padding: var(--space-3) var(--space-4) 0;
  }
  /* Allow footer to wrap meta row above action buttons when space is tight */
  .ac-card-footer {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
}

/* =====================================================
   Reaction stats bar chart — horizontal thin bars
   Used in: admin feed-box + post-details reaction popup
   ===================================================== */
.ac-reaction-chart {
  padding: 12px 0 8px;
}
.ac-reaction-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
}
.ac-reaction-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ac-reaction-icon-chart {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.ac-hbar-track {
  flex: 1;
  height: 10px;
  background: var(--surface-2, #f5f4f2);
  border-radius: 999px;
  overflow: hidden;
}
.ac-hbar-fill {
  height: 100%;
  background: #eaa534;
  border-radius: 999px;
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 2px;
}
.ac-bar-count {
  font-size: 12px;
  color: var(--ink-3, #757575);
  font-weight: 600;
  min-width: 20px;
  text-align: right;
}

/*!
 * Bootstrap v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */:root{--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;-ms-overflow-style:scrollbar;-webkit-tap-highlight-color:transparent}article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}dfn{font-style:italic}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent;-webkit-text-decoration-skip:objects}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg:not(:root){overflow:hidden}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-bottom:.5rem;font-family:inherit;font-weight:500;line-height:1.2;color:inherit}.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4{font-size:1.5rem}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0,0,0,.1)}.small,small{font-size:80%;font-weight:400}.mark,mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:80%;color:#6c757d}.blockquote-footer::before{content:"\2014 \00A0"}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}code{font-size:87.5%;color:#e83e8c;word-break:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:576px){.container{max-width:540px}}@media (min-width:768px){.container{max-width:720px}}@media (min-width:992px){.container{max-width:960px}}@media (min-width:1200px){.container{max-width:1140px}}.container-fluid{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.col,.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-auto,.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-auto,.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-auto,.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-auto{position:relative;width:100%;min-height:1px;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.col-auto{flex:0 0 auto;width:auto;max-width:none}.col-1{flex:0 0 8.333333%;max-width:8.333333%}.col-2{flex:0 0 16.666667%;max-width:16.666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.333333%;max-width:33.333333%}.col-5{flex:0 0 41.666667%;max-width:41.666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.333333%;max-width:58.333333%}.col-8{flex:0 0 66.666667%;max-width:66.666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.333333%;max-width:83.333333%}.col-11{flex:0 0 91.666667%;max-width:91.666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.333333%}.offset-2{margin-left:16.666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.333333%}.offset-5{margin-left:41.666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.333333%}.offset-8{margin-left:66.666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.333333%}.offset-11{margin-left:91.666667%}@media (min-width:576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:none}.col-sm-1{flex:0 0 8.333333%;max-width:8.333333%}.col-sm-2{flex:0 0 16.666667%;max-width:16.666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.333333%;max-width:33.333333%}.col-sm-5{flex:0 0 41.666667%;max-width:41.666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.333333%;max-width:58.333333%}.col-sm-8{flex:0 0 66.666667%;max-width:66.666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.333333%;max-width:83.333333%}.col-sm-11{flex:0 0 91.666667%;max-width:91.666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.333333%}.offset-sm-2{margin-left:16.666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.333333%}.offset-sm-5{margin-left:41.666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.333333%}.offset-sm-8{margin-left:66.666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.333333%}.offset-sm-11{margin-left:91.666667%}}@media (min-width:768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.col-md-auto{flex:0 0 auto;width:auto;max-width:none}.col-md-1{flex:0 0 8.333333%;max-width:8.333333%}.col-md-2{flex:0 0 16.666667%;max-width:16.666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.333333%;max-width:33.333333%}.col-md-5{flex:0 0 41.666667%;max-width:41.666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.333333%;max-width:58.333333%}.col-md-8{flex:0 0 66.666667%;max-width:66.666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.333333%;max-width:83.333333%}.col-md-11{flex:0 0 91.666667%;max-width:91.666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.333333%}.offset-md-2{margin-left:16.666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.333333%}.offset-md-5{margin-left:41.666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.333333%}.offset-md-8{margin-left:66.666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.333333%}.offset-md-11{margin-left:91.666667%}}@media (min-width:992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:none}.col-lg-1{flex:0 0 8.333333%;max-width:8.333333%}.col-lg-2{flex:0 0 16.666667%;max-width:16.666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.333333%;max-width:33.333333%}.col-lg-5{flex:0 0 41.666667%;max-width:41.666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.333333%;max-width:58.333333%}.col-lg-8{flex:0 0 66.666667%;max-width:66.666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.333333%;max-width:83.333333%}.col-lg-11{flex:0 0 91.666667%;max-width:91.666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.333333%}.offset-lg-2{margin-left:16.666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.333333%}.offset-lg-5{margin-left:41.666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.333333%}.offset-lg-8{margin-left:66.666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.333333%}.offset-lg-11{margin-left:91.666667%}}@media (min-width:1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:none}.col-xl-1{flex:0 0 8.333333%;max-width:8.333333%}.col-xl-2{flex:0 0 16.666667%;max-width:16.666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.333333%;max-width:33.333333%}.col-xl-5{flex:0 0 41.666667%;max-width:41.666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.333333%;max-width:58.333333%}.col-xl-8{flex:0 0 66.666667%;max-width:66.666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.333333%;max-width:83.333333%}.col-xl-11{flex:0 0 91.666667%;max-width:91.666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.333333%}.offset-xl-2{margin-left:16.666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.333333%}.offset-xl-5{margin-left:41.666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.333333%}.offset-xl-8{margin-left:66.666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.333333%}.offset-xl-11{margin-left:91.666667%}}.table{width:100%;max-width:100%;margin-bottom:1rem;background-color:transparent}.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table .table{background-color:#fff}.table-sm td,.table-sm th{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered td,.table-bordered th{border:1px solid #dee2e6}.table-bordered thead td,.table-bordered thead th{border-bottom-width:2px}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>td,.table-primary>th{background-color:#b8daff}.table-hover .table-primary:hover{background-color:#9fcdff}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#9fcdff}.table-secondary,.table-secondary>td,.table-secondary>th{background-color:#d6d8db}.table-hover .table-secondary:hover{background-color:#c8cbcf}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#c8cbcf}.table-success,.table-success>td,.table-success>th{background-color:#c3e6cb}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>td,.table-info>th{background-color:#bee5eb}.table-hover .table-info:hover{background-color:#abdde5}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#abdde5}.table-warning,.table-warning>td,.table-warning>th{background-color:#ffeeba}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>td,.table-danger>th{background-color:#f5c6cb}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>td,.table-light>th{background-color:#fdfdfe}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>td,.table-dark>th{background-color:#c6c8ca}.table-hover .table-dark:hover{background-color:#b9bbbe}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b9bbbe}.table-active,.table-active>td,.table-active>th{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#212529;border-color:#32383e}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#212529}.table-dark td,.table-dark th,.table-dark thead th{border-color:#32383e}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{background-color:rgba(255,255,255,.075)}@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-sm>.table-bordered{border:0}}@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-md>.table-bordered{border:0}}@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-lg>.table-bordered{border:0}}@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive-xl>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}select.form-control:not([size]):not([multiple]){height:calc(2.25rem + 2px)}select.form-control:focus::-ms-value{color:#495057;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem;line-height:1.5}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem;line-height:1.5}.form-control-plaintext{display:block;width:100%;padding-top:.375rem;padding-bottom:.375rem;margin-bottom:0;line-height:1.5;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm,.input-group-lg>.form-control-plaintext.form-control,.input-group-lg>.input-group-append>.form-control-plaintext.btn,.input-group-lg>.input-group-append>.form-control-plaintext.input-group-text,.input-group-lg>.input-group-prepend>.form-control-plaintext.btn,.input-group-lg>.input-group-prepend>.form-control-plaintext.input-group-text,.input-group-sm>.form-control-plaintext.form-control,.input-group-sm>.input-group-append>.form-control-plaintext.btn,.input-group-sm>.input-group-append>.form-control-plaintext.input-group-text,.input-group-sm>.input-group-prepend>.form-control-plaintext.btn,.input-group-sm>.input-group-prepend>.form-control-plaintext.input-group-text{padding-right:0;padding-left:0}.form-control-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-append>.btn,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-prepend>.input-group-text{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.input-group-sm>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-sm>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-sm>select.form-control:not([size]):not([multiple]),select.form-control-sm:not([size]):not([multiple]){height:calc(1.8125rem + 2px)}.form-control-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-append>.btn,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-prepend>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.input-group-lg>.input-group-append>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-append>select.input-group-text:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.btn:not([size]):not([multiple]),.input-group-lg>.input-group-prepend>select.input-group-text:not([size]):not([multiple]),.input-group-lg>select.form-control:not([size]):not([multiple]),select.form-control-lg:not([size]):not([multiple]){height:calc(2.875rem + 2px)}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#28a745}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(40,167,69,.8);border-radius:.2rem}.custom-select.is-valid,.form-control.is-valid,.was-validated .custom-select:valid,.was-validated .form-control:valid{border-color:#28a745}.custom-select.is-valid:focus,.form-control.is-valid:focus,.was-validated .custom-select:valid:focus,.was-validated .form-control:valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.custom-select.is-valid~.valid-feedback,.custom-select.is-valid~.valid-tooltip,.form-control.is-valid~.valid-feedback,.form-control.is-valid~.valid-tooltip,.was-validated .custom-select:valid~.valid-feedback,.was-validated .custom-select:valid~.valid-tooltip,.was-validated .form-control:valid~.valid-feedback,.was-validated .form-control:valid~.valid-tooltip{display:block}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#28a745}.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip,.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid~.custom-control-label,.was-validated .custom-control-input:valid~.custom-control-label{color:#28a745}.custom-control-input.is-valid~.custom-control-label::before,.was-validated .custom-control-input:valid~.custom-control-label::before{background-color:#71dd8a}.custom-control-input.is-valid~.valid-feedback,.custom-control-input.is-valid~.valid-tooltip,.was-validated .custom-control-input:valid~.valid-feedback,.was-validated .custom-control-input:valid~.valid-tooltip{display:block}.custom-control-input.is-valid:checked~.custom-control-label::before,.was-validated .custom-control-input:valid:checked~.custom-control-label::before{background-color:#34ce57}.custom-control-input.is-valid:focus~.custom-control-label::before,.was-validated .custom-control-input:valid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)}.custom-file-input.is-valid~.custom-file-label,.was-validated .custom-file-input:valid~.custom-file-label{border-color:#28a745}.custom-file-input.is-valid~.custom-file-label::before,.was-validated .custom-file-input:valid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-valid~.valid-feedback,.custom-file-input.is-valid~.valid-tooltip,.was-validated .custom-file-input:valid~.valid-feedback,.was-validated .custom-file-input:valid~.valid-tooltip{display:block}.custom-file-input.is-valid:focus~.custom-file-label,.was-validated .custom-file-input:valid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:80%;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.5rem;margin-top:.1rem;font-size:.875rem;line-height:1;color:#fff;background-color:rgba(220,53,69,.8);border-radius:.2rem}.custom-select.is-invalid,.form-control.is-invalid,.was-validated .custom-select:invalid,.was-validated .form-control:invalid{border-color:#dc3545}.custom-select.is-invalid:focus,.form-control.is-invalid:focus,.was-validated .custom-select:invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.custom-select.is-invalid~.invalid-feedback,.custom-select.is-invalid~.invalid-tooltip,.form-control.is-invalid~.invalid-feedback,.form-control.is-invalid~.invalid-tooltip,.was-validated .custom-select:invalid~.invalid-feedback,.was-validated .custom-select:invalid~.invalid-tooltip,.was-validated .form-control:invalid~.invalid-feedback,.was-validated .form-control:invalid~.invalid-tooltip{display:block}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip,.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid~.custom-control-label,.was-validated .custom-control-input:invalid~.custom-control-label{color:#dc3545}.custom-control-input.is-invalid~.custom-control-label::before,.was-validated .custom-control-input:invalid~.custom-control-label::before{background-color:#efa2a9}.custom-control-input.is-invalid~.invalid-feedback,.custom-control-input.is-invalid~.invalid-tooltip,.was-validated .custom-control-input:invalid~.invalid-feedback,.was-validated .custom-control-input:invalid~.invalid-tooltip{display:block}.custom-control-input.is-invalid:checked~.custom-control-label::before,.was-validated .custom-control-input:invalid:checked~.custom-control-label::before{background-color:#e4606d}.custom-control-input.is-invalid:focus~.custom-control-label::before,.was-validated .custom-control-input:invalid:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)}.custom-file-input.is-invalid~.custom-file-label,.was-validated .custom-file-input:invalid~.custom-file-label{border-color:#dc3545}.custom-file-input.is-invalid~.custom-file-label::before,.was-validated .custom-file-input:invalid~.custom-file-label::before{border-color:inherit}.custom-file-input.is-invalid~.invalid-feedback,.custom-file-input.is-invalid~.invalid-tooltip,.was-validated .custom-file-input:invalid~.invalid-feedback,.was-validated .custom-file-input:invalid~.invalid-tooltip{display:block}.custom-file-input.is-invalid:focus~.custom-file-label,.was-validated .custom-file-input:invalid:focus~.custom-file-label{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media (min-width:576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:400;text-align:center;white-space:nowrap;vertical-align:middle;-webkit-user-select:none;user-select:none;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;line-height:1.5;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn:focus,.btn:hover{text-decoration:none}.btn.focus,.btn:focus{outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}.btn:not(:disabled):not(.disabled).active,.btn:not(:disabled):not(.disabled):active{background-image:none}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc}.btn-primary.focus,.btn-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff}.btn-primary:not(:disabled):not(.disabled).active,.btn-primary:not(:disabled):not(.disabled):active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf}.btn-primary:not(:disabled):not(.disabled).active:focus,.btn-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62}.btn-secondary.focus,.btn-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:not(:disabled):not(.disabled).active,.btn-secondary:not(:disabled):not(.disabled):active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b}.btn-secondary:not(:disabled):not(.disabled).active:focus,.btn-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success.focus,.btn-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled).active,.btn-success:not(:disabled):not(.disabled):active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled).active:focus,.btn-success:not(:disabled):not(.disabled):active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b}.btn-info.focus,.btn-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-info:not(:disabled):not(.disabled).active,.btn-info:not(:disabled):not(.disabled):active,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f}.btn-info:not(:disabled):not(.disabled).active:focus,.btn-info:not(:disabled):not(.disabled):active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning.focus,.btn-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled).active,.btn-warning:not(:disabled):not(.disabled):active,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled).active:focus,.btn-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger.focus,.btn-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled).active,.btn-danger:not(:disabled):not(.disabled):active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled).active:focus,.btn-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light.focus,.btn-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled).active,.btn-light:not(:disabled):not(.disabled):active,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled).active:focus,.btn-light:not(:disabled):not(.disabled):active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124}.btn-dark.focus,.btn-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40}.btn-dark:not(:disabled):not(.disabled).active,.btn-dark:not(:disabled):not(.disabled):active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d}.btn-dark:not(:disabled):not(.disabled).active:focus,.btn-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-primary{color:#007bff;background-color:transparent;background-image:none;border-color:#007bff}.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary.focus,.btn-outline-primary:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#007bff;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled).active,.btn-outline-primary:not(:disabled):not(.disabled):active,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff}.btn-outline-primary:not(:disabled):not(.disabled).active:focus,.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(0,123,255,.5)}.btn-outline-secondary{color:#6c757d;background-color:transparent;background-image:none;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary.focus,.btn-outline-secondary:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled).active,.btn-outline-secondary:not(:disabled):not(.disabled):active,.show>.btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(108,117,125,.5)}.btn-outline-success{color:#28a745;background-color:transparent;background-image:none;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success.focus,.btn-outline-success:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled).active,.btn-outline-success:not(:disabled):not(.disabled):active,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled).active:focus,.btn-outline-success:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#17a2b8;background-color:transparent;background-image:none;border-color:#17a2b8}.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info.focus,.btn-outline-info:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#17a2b8;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled).active,.btn-outline-info:not(:disabled):not(.disabled):active,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8}.btn-outline-info:not(:disabled):not(.disabled).active:focus,.btn-outline-info:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(23,162,184,.5)}.btn-outline-warning{color:#ffc107;background-color:transparent;background-image:none;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning.focus,.btn-outline-warning:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled).active,.btn-outline-warning:not(:disabled):not(.disabled):active,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled).active:focus,.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;background-color:transparent;background-image:none;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger.focus,.btn-outline-danger:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled).active,.btn-outline-danger:not(:disabled):not(.disabled):active,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled).active:focus,.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;background-color:transparent;background-image:none;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light.focus,.btn-outline-light:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled).active,.btn-outline-light:not(:disabled):not(.disabled):active,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled).active:focus,.btn-outline-light:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#343a40;background-color:transparent;background-image:none;border-color:#343a40}.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark.focus,.btn-outline-dark:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#343a40;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled).active,.btn-outline-dark:not(:disabled):not(.disabled):active,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40}.btn-outline-dark:not(:disabled):not(.disabled).active:focus,.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(52,58,64,.5)}.btn-link{font-weight:400;color:#007bff;background-color:transparent}.btn-link:hover{color:#0056b3;text-decoration:underline;background-color:transparent;border-color:transparent}.btn-link.focus,.btn-link:focus{text-decoration:underline;border-color:transparent;box-shadow:none}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;line-height:1.5;border-radius:.2rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.show{opacity:1}.collapse{display:none}.collapse.show{display:block}tr.collapse.show{display:table-row}tbody.collapse.show{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}.dropdown,.dropup{position:relative}.dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:10rem;padding:.5rem 0;margin:.125rem 0 0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropup .dropdown-menu{margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu{margin-top:0;margin-left:.125rem}.dropright .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-bottom:.3em solid transparent;border-left:.3em solid}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu{margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;width:0;height:0;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.dropleft .dropdown-toggle::before{display:inline-block;width:0;height:0;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#16181b;text-decoration:none;background-color:#f8f9fa}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#007bff}.dropdown-item.disabled,.dropdown-item:disabled{color:#6c757d;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:0 1 auto}.btn-group-vertical>.btn:hover,.btn-group>.btn:hover{z-index:1}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus{z-index:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group,.btn-group-vertical .btn+.btn,.btn-group-vertical .btn+.btn-group,.btn-group-vertical .btn-group+.btn,.btn-group-vertical .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after{margin-left:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical .btn,.btn-group-vertical .btn-group{width:100%}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:not(:first-child){border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.custom-file,.input-group>.custom-select,.input-group>.form-control{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-file:focus,.input-group>.custom-select:focus,.input-group>.form-control:focus{z-index:3}.input-group>.custom-file+.custom-file,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.form-control,.input-group>.custom-select+.custom-file,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.form-control,.input-group>.form-control+.custom-file,.input-group>.form-control+.custom-select,.input-group>.form-control+.form-control{margin-left:-1px}.input-group>.custom-select:not(:last-child),.input-group>.form-control:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-select:not(:first-child),.input-group>.form-control:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::before{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label,.input-group>.custom-file:not(:first-child) .custom-file-label::before{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-append,.input-group-prepend{display:flex}.input-group-append .btn,.input-group-prepend .btn{position:relative;z-index:2}.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.btn,.input-group-append .input-group-text+.input-group-text,.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-prepend .input-group-text+.input-group-text{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;margin-bottom:0;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-text input[type=checkbox],.input-group-text input[type=radio]{margin-top:0}.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),.input-group>.input-group-append:not(:last-child)>.btn,.input-group>.input-group-append:not(:last-child)>.input-group-text,.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text{border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;z-index:-1;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;background-color:#007bff}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)}.custom-control-input:active~.custom-control-label::before{color:#fff;background-color:#b3d7ff}.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{margin-bottom:0}.custom-control-label::before{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;pointer-events:none;content:"";-webkit-user-select:none;user-select:none;background-color:#dee2e6}.custom-control-label::after{position:absolute;top:.25rem;left:0;display:block;width:1rem;height:1rem;content:"";background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{background-color:#007bff}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::before{background-color:#007bff}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(0,123,255,.5)}.custom-select{display:inline-block;width:100%;height:calc(2.25rem + 2px);padding:.375rem 1.75rem .375rem .75rem;line-height:1.5;color:#495057;vertical-align:middle;background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;background-size:8px 10px;border:1px solid #ced4da;border-radius:.25rem;-webkit-appearance:none;appearance:none}.custom-select:focus{border-color:#80bdff;outline:0;box-shadow:inset 0 1px 2px rgba(0,0,0,.075),0 0 5px rgba(128,189,255,.5)}.custom-select:focus::-ms-value{color:#495057;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.75rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{opacity:0}.custom-select-sm{height:calc(1.8125rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:75%}.custom-select-lg{height:calc(2.875rem + 2px);padding-top:.375rem;padding-bottom:.375rem;font-size:125%}.custom-file{position:relative;display:inline-block;width:100%;height:calc(2.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(2.25rem + 2px);margin:0;opacity:0}.custom-file-input:focus~.custom-file-control{border-color:#80bdff;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.custom-file-input:focus~.custom-file-control::before{border-color:#80bdff}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(2.25rem + 2px);padding:.375rem .75rem;line-height:1.5;color:#495057;background-color:#fff;border:1px solid #ced4da;border-radius:.25rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(calc(2.25rem + 2px) - 1px * 2);padding:.375rem .75rem;line-height:1.5;color:#495057;content:"Browse";background-color:#e9ecef;border-left:1px solid #ced4da;border-radius:0 .25rem .25rem 0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem}.nav-link:focus,.nav-link:hover{text-decoration:none}.nav-link.disabled{color:#6c757d}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-item{margin-bottom:-1px}.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#007bff}.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar>.container,.navbar>.container-fluid{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem}.navbar-toggler:focus,.navbar-toggler:hover{text-decoration:none}.navbar-toggler:not(:disabled):not(.disabled){cursor:pointer}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:no-repeat center center;background-size:100% 100%}@media (max-width:575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid{flex-wrap:nowrap}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid{flex-wrap:nowrap}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid{flex-wrap:nowrap}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .dropup .dropdown-menu{top:auto;bottom:100%}}@media (max-width:1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{padding-right:0;padding-left:0}}@media (min-width:1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid{flex-wrap:nowrap}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .dropup .dropdown-menu{top:auto;bottom:100%}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .dropdown-menu-right{right:0;left:auto}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid{flex-wrap:nowrap}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .dropup .dropdown-menu{top:auto;bottom:100%}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group:first-child .list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card>.list-group:last-child .list-group-item:last-child{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-body{flex:1 1 auto;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-header+.list-group .list-group-item:first-child{border-top:0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.625rem;margin-bottom:-.75rem;margin-left:-.625rem;border-bottom:0}.card-header-pills{margin-right:-.625rem;margin-left:-.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem}.card-img{width:100%;border-radius:calc(.25rem - 1px)}.card-img-top{width:100%;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img-bottom{width:100%;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-deck{display:flex;flex-direction:column}.card-deck .card{margin-bottom:15px}@media (min-width:576px){.card-deck{flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{display:flex;flex:1 0 0%;flex-direction:column;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group{display:flex;flex-direction:column}.card-group>.card{margin-bottom:15px}@media (min-width:576px){.card-group{flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:first-child .card-header,.card-group>.card:first-child .card-img-top{border-top-right-radius:0}.card-group>.card:first-child .card-footer,.card-group>.card:first-child .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:last-child .card-header,.card-group>.card:last-child .card-img-top{border-top-left-radius:0}.card-group>.card:last-child .card-footer,.card-group>.card:last-child .card-img-bottom{border-bottom-left-radius:0}.card-group>.card:only-child{border-radius:.25rem}.card-group>.card:only-child .card-header,.card-group>.card:only-child .card-img-top{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.card-group>.card:only-child .card-footer,.card-group>.card:only-child .card-img-bottom{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.card-group>.card:not(:first-child):not(:last-child):not(:only-child){border-radius:0}.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,.card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top{border-radius:0}}.card-columns .card{margin-bottom:.75rem}@media (min-width:576px){.card-columns{-moz-column-count:3;column-count:3;-moz-column-gap:1.25rem;column-gap:1.25rem}.card-columns .card{display:inline-block;width:100%}}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item::before{display:inline-block;padding-right:.5rem;padding-left:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:2;outline:0;box-shadow:0 0 0 .2rem rgba(0,123,255,.25)}.page-link:not(:disabled):not(.disabled){cursor:pointer}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.25em .4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#007bff}.badge-primary[href]:focus,.badge-primary[href]:hover{color:#fff;text-decoration:none;background-color:#0062cc}.badge-secondary{color:#fff;background-color:#6c757d}.badge-secondary[href]:focus,.badge-secondary[href]:hover{color:#fff;text-decoration:none;background-color:#545b62}.badge-success{color:#fff;background-color:#28a745}.badge-success[href]:focus,.badge-success[href]:hover{color:#fff;text-decoration:none;background-color:#1e7e34}.badge-info{color:#fff;background-color:#17a2b8}.badge-info[href]:focus,.badge-info[href]:hover{color:#fff;text-decoration:none;background-color:#117a8b}.badge-warning{color:#212529;background-color:#ffc107}.badge-warning[href]:focus,.badge-warning[href]:hover{color:#212529;text-decoration:none;background-color:#d39e00}.badge-danger{color:#fff;background-color:#dc3545}.badge-danger[href]:focus,.badge-danger[href]:hover{color:#fff;text-decoration:none;background-color:#bd2130}.badge-light{color:#212529;background-color:#f8f9fa}.badge-light[href]:focus,.badge-light[href]:hover{color:#212529;text-decoration:none;background-color:#dae0e5}.badge-dark{color:#fff;background-color:#343a40}.badge-dark[href]:focus,.badge-dark[href]:hover{color:#fff;text-decoration:none;background-color:#1d2124}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.3rem}@media (min-width:576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#004085;background-color:#cce5ff;border-color:#b8daff}.alert-primary hr{border-top-color:#9fcdff}.alert-primary .alert-link{color:#002752}.alert-secondary{color:#383d41;background-color:#e2e3e5;border-color:#d6d8db}.alert-secondary hr{border-top-color:#c8cbcf}.alert-secondary .alert-link{color:#202326}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#0c5460;background-color:#d1ecf1;border-color:#bee5eb}.alert-info hr{border-top-color:#abdde5}.alert-info .alert-link{color:#062c33}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr{border-top-color:#f1b0b7}.alert-danger .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#1b1e21;background-color:#d6d8d9;border-color:#c6c8ca}.alert-dark hr{border-top-color:#b9bbbe}.alert-dark .alert-link{color:#040505}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;color:#fff;text-align:center;background-color:#007bff;transition:width .6s ease}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{animation:progress-bar-stripes 1s linear infinite}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;margin-bottom:-1px;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.list-group-item:focus,.list-group-item:hover{z-index:1;text-decoration:none}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#007bff;border-color:#007bff}.list-group-flush .list-group-item{border-right:0;border-left:0;border-radius:0}.list-group-flush:first-child .list-group-item:first-child{border-top:0}.list-group-flush:last-child .list-group-item:last-child{border-bottom:0}.list-group-item-primary{color:#004085;background-color:#b8daff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#004085;background-color:#9fcdff}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#004085;border-color:#004085}.list-group-item-secondary{color:#383d41;background-color:#d6d8db}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#383d41;background-color:#c8cbcf}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#383d41;border-color:#383d41}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#0c5460;background-color:#bee5eb}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#0c5460;background-color:#abdde5}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#0c5460;border-color:#0c5460}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#1b1e21;background-color:#c6c8ca}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#1b1e21;background-color:#b9bbbe}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#1b1e21;border-color:#1b1e21}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:focus,.close:hover{color:#000;text-decoration:none;opacity:.75}.close:not(:disabled):not(.disabled){cursor:pointer}button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;outline:0}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-25%)}.modal.show .modal-dialog{transform:translate(0,0)}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - (.5rem * 2))}.modal-content{position:relative;display:flex;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:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem;border-bottom:1px solid #e9ecef;border-top-left-radius:.3rem;border-top-right-radius:.3rem}.modal-header .close{padding:1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;align-items:center;justify-content:flex-end;padding:1rem;border-top:1px solid #e9ecef}.modal-footer>:not(:first-child){margin-left:.25rem}.modal-footer>:not(:last-child){margin-right:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-centered{min-height:calc(100% - (1.75rem * 2))}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg{max-width:800px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-top .arrow{bottom:0}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{padding:0 .4rem}.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-right .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-bottom .arrow{top:0}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{padding:0 .4rem}.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-left .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .3rem}.popover .arrow::after,.popover .arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[x-placement^=top],.bs-popover-top{margin-bottom:.5rem}.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow{bottom:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::after,.bs-popover-top .arrow::before{border-width:.5rem .5rem 0}.bs-popover-auto[x-placement^=top] .arrow::before,.bs-popover-top .arrow::before{bottom:0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=top] .arrow::after,.bs-popover-top .arrow::after{bottom:1px;border-top-color:#fff}.bs-popover-auto[x-placement^=right],.bs-popover-right{margin-left:.5rem}.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow{left:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::after,.bs-popover-right .arrow::before{border-width:.5rem .5rem .5rem 0}.bs-popover-auto[x-placement^=right] .arrow::before,.bs-popover-right .arrow::before{left:0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=right] .arrow::after,.bs-popover-right .arrow::after{left:1px;border-right-color:#fff}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{margin-top:.5rem}.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow{top:calc((.5rem + 1px) * -1)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::after,.bs-popover-bottom .arrow::before{border-width:0 .5rem .5rem .5rem}.bs-popover-auto[x-placement^=bottom] .arrow::before,.bs-popover-bottom .arrow::before{top:0;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=bottom] .arrow::after,.bs-popover-bottom .arrow::after{top:1px;border-bottom-color:#fff}.bs-popover-auto[x-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-auto[x-placement^=left],.bs-popover-left{margin-right:.5rem}.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow{right:calc((.5rem + 1px) * -1);width:.5rem;height:1rem;margin:.3rem 0}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::after,.bs-popover-left .arrow::before{border-width:.5rem 0 .5rem .5rem}.bs-popover-auto[x-placement^=left] .arrow::before,.bs-popover-left .arrow::before{right:0;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[x-placement^=left] .arrow::after,.bs-popover-left .arrow::after{right:1px;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;color:inherit;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#212529}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-item{position:relative;display:none;align-items:center;width:100%;transition:transform .6s ease;backface-visibility:hidden;perspective:1000px}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.carousel-item-next,.carousel-item-prev{position:absolute;top:0}.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{transform:translateX(0)}@supports (transform-style:preserve-3d){.carousel-item-next.carousel-item-left,.carousel-item-prev.carousel-item-right{transform:translate3d(0,0,0)}}.active.carousel-item-right,.carousel-item-next{transform:translateX(100%)}@supports (transform-style:preserve-3d){.active.carousel-item-right,.carousel-item-next{transform:translate3d(100%,0,0)}}.active.carousel-item-left,.carousel-item-prev{transform:translateX(-100%)}@supports (transform-style:preserve-3d){.active.carousel-item-left,.carousel-item-prev{transform:translate3d(-100%,0,0)}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;display:flex;align-items:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:.5}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:20px;height:20px;background:transparent no-repeat center center;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")}.carousel-control-next-icon{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")}.carousel-indicators{position:absolute;right:0;bottom:10px;left:0;z-index:15;display:flex;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none}.carousel-indicators li{position:relative;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;background-color:rgba(255,255,255,.5)}.carousel-indicators li::before{position:absolute;top:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators li::after{position:absolute;bottom:-10px;left:0;display:inline-block;width:100%;height:10px;content:""}.carousel-indicators .active{background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.bg-primary{background-color:#007bff!important}a.bg-primary:focus,a.bg-primary:hover,button.bg-primary:focus,button.bg-primary:hover{background-color:#0062cc!important}.bg-secondary{background-color:#6c757d!important}a.bg-secondary:focus,a.bg-secondary:hover,button.bg-secondary:focus,button.bg-secondary:hover{background-color:#545b62!important}.bg-success{background-color:#28a745!important}a.bg-success:focus,a.bg-success:hover,button.bg-success:focus,button.bg-success:hover{background-color:#1e7e34!important}.bg-info{background-color:#17a2b8!important}a.bg-info:focus,a.bg-info:hover,button.bg-info:focus,button.bg-info:hover{background-color:#117a8b!important}.bg-warning{background-color:#ffc107!important}a.bg-warning:focus,a.bg-warning:hover,button.bg-warning:focus,button.bg-warning:hover{background-color:#d39e00!important}.bg-danger{background-color:#dc3545!important}a.bg-danger:focus,a.bg-danger:hover,button.bg-danger:focus,button.bg-danger:hover{background-color:#bd2130!important}.bg-light{background-color:#f8f9fa!important}a.bg-light:focus,a.bg-light:hover,button.bg-light:focus,button.bg-light:hover{background-color:#dae0e5!important}.bg-dark{background-color:#343a40!important}a.bg-dark:focus,a.bg-dark:hover,button.bg-dark:focus,button.bg-dark:hover{background-color:#1d2124!important}.bg-white{background-color:#fff!important}.bg-transparent{background-color:transparent!important}.border{border:1px solid #dee2e6!important}.border-top{border-top:1px solid #dee2e6!important}.border-right{border-right:1px solid #dee2e6!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-left{border-left:1px solid #dee2e6!important}.border-0{border:0!important}.border-top-0{border-top:0!important}.border-right-0{border-right:0!important}.border-bottom-0{border-bottom:0!important}.border-left-0{border-left:0!important}.border-primary{border-color:#007bff!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#28a745!important}.border-info{border-color:#17a2b8!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#343a40!important}.border-white{border-color:#fff!important}.rounded{border-radius:.25rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-right{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-left{border-top-left-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-circle{border-radius:50%!important}.rounded-0{border-radius:0!important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}@media (min-width:576px){.d-sm-none{display:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}}@media (min-width:768px){.d-md-none{display:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}}@media (min-width:992px){.d-lg-none{display:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}}@media (min-width:1200px){.d-xl-none{display:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}}@media print{.d-print-none{display:none!important}.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.857143%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}@media (min-width:576px){.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}}@media (min-width:768px){.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}}@media (min-width:992px){.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}}@media (min-width:1200px){.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}}.float-left{float:left!important}.float-right{float:right!important}.float-none{float:none!important}@media (min-width:576px){.float-sm-left{float:left!important}.float-sm-right{float:right!important}.float-sm-none{float:none!important}}@media (min-width:768px){.float-md-left{float:left!important}.float-md-right{float:right!important}.float-md-none{float:none!important}}@media (min-width:992px){.float-lg-left{float:left!important}.float-lg-right{float:right!important}.float-lg-none{float:none!important}}@media (min-width:1200px){.float-xl-left{float:left!important}.float-xl-right{float:right!important}.float-xl-none{float:none!important}}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;clip-path:inset(50%);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal;clip-path:none}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.mw-100{max-width:100%!important}.mh-100{max-height:100%!important}.m-0{margin:0!important}.mt-0,.my-0{margin-top:0!important}.mr-0,.mx-0{margin-right:0!important}.mb-0,.my-0{margin-bottom:0!important}.ml-0,.mx-0{margin-left:0!important}.m-1{margin:.25rem!important}.mt-1,.my-1{margin-top:.25rem!important}.mr-1,.mx-1{margin-right:.25rem!important}.mb-1,.my-1{margin-bottom:.25rem!important}.ml-1,.mx-1{margin-left:.25rem!important}.m-2{margin:.5rem!important}.mt-2,.my-2{margin-top:.5rem!important}.mr-2,.mx-2{margin-right:.5rem!important}.mb-2,.my-2{margin-bottom:.5rem!important}.ml-2,.mx-2{margin-left:.5rem!important}.m-3{margin:1rem!important}.mt-3,.my-3{margin-top:1rem!important}.mr-3,.mx-3{margin-right:1rem!important}.mb-3,.my-3{margin-bottom:1rem!important}.ml-3,.mx-3{margin-left:1rem!important}.m-4{margin:1.5rem!important}.mt-4,.my-4{margin-top:1.5rem!important}.mr-4,.mx-4{margin-right:1.5rem!important}.mb-4,.my-4{margin-bottom:1.5rem!important}.ml-4,.mx-4{margin-left:1.5rem!important}.m-5{margin:3rem!important}.mt-5,.my-5{margin-top:3rem!important}.mr-5,.mx-5{margin-right:3rem!important}.mb-5,.my-5{margin-bottom:3rem!important}.ml-5,.mx-5{margin-left:3rem!important}.p-0{padding:0!important}.pt-0,.py-0{padding-top:0!important}.pr-0,.px-0{padding-right:0!important}.pb-0,.py-0{padding-bottom:0!important}.pl-0,.px-0{padding-left:0!important}.p-1{padding:.25rem!important}.pt-1,.py-1{padding-top:.25rem!important}.pr-1,.px-1{padding-right:.25rem!important}.pb-1,.py-1{padding-bottom:.25rem!important}.pl-1,.px-1{padding-left:.25rem!important}.p-2{padding:.5rem!important}.pt-2,.py-2{padding-top:.5rem!important}.pr-2,.px-2{padding-right:.5rem!important}.pb-2,.py-2{padding-bottom:.5rem!important}.pl-2,.px-2{padding-left:.5rem!important}.p-3{padding:1rem!important}.pt-3,.py-3{padding-top:1rem!important}.pr-3,.px-3{padding-right:1rem!important}.pb-3,.py-3{padding-bottom:1rem!important}.pl-3,.px-3{padding-left:1rem!important}.p-4{padding:1.5rem!important}.pt-4,.py-4{padding-top:1.5rem!important}.pr-4,.px-4{padding-right:1.5rem!important}.pb-4,.py-4{padding-bottom:1.5rem!important}.pl-4,.px-4{padding-left:1.5rem!important}.p-5{padding:3rem!important}.pt-5,.py-5{padding-top:3rem!important}.pr-5,.px-5{padding-right:3rem!important}.pb-5,.py-5{padding-bottom:3rem!important}.pl-5,.px-5{padding-left:3rem!important}.m-auto{margin:auto!important}.mt-auto,.my-auto{margin-top:auto!important}.mr-auto,.mx-auto{margin-right:auto!important}.mb-auto,.my-auto{margin-bottom:auto!important}.ml-auto,.mx-auto{margin-left:auto!important}@media (min-width:576px){.m-sm-0{margin:0!important}.mt-sm-0,.my-sm-0{margin-top:0!important}.mr-sm-0,.mx-sm-0{margin-right:0!important}.mb-sm-0,.my-sm-0{margin-bottom:0!important}.ml-sm-0,.mx-sm-0{margin-left:0!important}.m-sm-1{margin:.25rem!important}.mt-sm-1,.my-sm-1{margin-top:.25rem!important}.mr-sm-1,.mx-sm-1{margin-right:.25rem!important}.mb-sm-1,.my-sm-1{margin-bottom:.25rem!important}.ml-sm-1,.mx-sm-1{margin-left:.25rem!important}.m-sm-2{margin:.5rem!important}.mt-sm-2,.my-sm-2{margin-top:.5rem!important}.mr-sm-2,.mx-sm-2{margin-right:.5rem!important}.mb-sm-2,.my-sm-2{margin-bottom:.5rem!important}.ml-sm-2,.mx-sm-2{margin-left:.5rem!important}.m-sm-3{margin:1rem!important}.mt-sm-3,.my-sm-3{margin-top:1rem!important}.mr-sm-3,.mx-sm-3{margin-right:1rem!important}.mb-sm-3,.my-sm-3{margin-bottom:1rem!important}.ml-sm-3,.mx-sm-3{margin-left:1rem!important}.m-sm-4{margin:1.5rem!important}.mt-sm-4,.my-sm-4{margin-top:1.5rem!important}.mr-sm-4,.mx-sm-4{margin-right:1.5rem!important}.mb-sm-4,.my-sm-4{margin-bottom:1.5rem!important}.ml-sm-4,.mx-sm-4{margin-left:1.5rem!important}.m-sm-5{margin:3rem!important}.mt-sm-5,.my-sm-5{margin-top:3rem!important}.mr-sm-5,.mx-sm-5{margin-right:3rem!important}.mb-sm-5,.my-sm-5{margin-bottom:3rem!important}.ml-sm-5,.mx-sm-5{margin-left:3rem!important}.p-sm-0{padding:0!important}.pt-sm-0,.py-sm-0{padding-top:0!important}.pr-sm-0,.px-sm-0{padding-right:0!important}.pb-sm-0,.py-sm-0{padding-bottom:0!important}.pl-sm-0,.px-sm-0{padding-left:0!important}.p-sm-1{padding:.25rem!important}.pt-sm-1,.py-sm-1{padding-top:.25rem!important}.pr-sm-1,.px-sm-1{padding-right:.25rem!important}.pb-sm-1,.py-sm-1{padding-bottom:.25rem!important}.pl-sm-1,.px-sm-1{padding-left:.25rem!important}.p-sm-2{padding:.5rem!important}.pt-sm-2,.py-sm-2{padding-top:.5rem!important}.pr-sm-2,.px-sm-2{padding-right:.5rem!important}.pb-sm-2,.py-sm-2{padding-bottom:.5rem!important}.pl-sm-2,.px-sm-2{padding-left:.5rem!important}.p-sm-3{padding:1rem!important}.pt-sm-3,.py-sm-3{padding-top:1rem!important}.pr-sm-3,.px-sm-3{padding-right:1rem!important}.pb-sm-3,.py-sm-3{padding-bottom:1rem!important}.pl-sm-3,.px-sm-3{padding-left:1rem!important}.p-sm-4{padding:1.5rem!important}.pt-sm-4,.py-sm-4{padding-top:1.5rem!important}.pr-sm-4,.px-sm-4{padding-right:1.5rem!important}.pb-sm-4,.py-sm-4{padding-bottom:1.5rem!important}.pl-sm-4,.px-sm-4{padding-left:1.5rem!important}.p-sm-5{padding:3rem!important}.pt-sm-5,.py-sm-5{padding-top:3rem!important}.pr-sm-5,.px-sm-5{padding-right:3rem!important}.pb-sm-5,.py-sm-5{padding-bottom:3rem!important}.pl-sm-5,.px-sm-5{padding-left:3rem!important}.m-sm-auto{margin:auto!important}.mt-sm-auto,.my-sm-auto{margin-top:auto!important}.mr-sm-auto,.mx-sm-auto{margin-right:auto!important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto!important}.ml-sm-auto,.mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.m-md-0{margin:0!important}.mt-md-0,.my-md-0{margin-top:0!important}.mr-md-0,.mx-md-0{margin-right:0!important}.mb-md-0,.my-md-0{margin-bottom:0!important}.ml-md-0,.mx-md-0{margin-left:0!important}.m-md-1{margin:.25rem!important}.mt-md-1,.my-md-1{margin-top:.25rem!important}.mr-md-1,.mx-md-1{margin-right:.25rem!important}.mb-md-1,.my-md-1{margin-bottom:.25rem!important}.ml-md-1,.mx-md-1{margin-left:.25rem!important}.m-md-2{margin:.5rem!important}.mt-md-2,.my-md-2{margin-top:.5rem!important}.mr-md-2,.mx-md-2{margin-right:.5rem!important}.mb-md-2,.my-md-2{margin-bottom:.5rem!important}.ml-md-2,.mx-md-2{margin-left:.5rem!important}.m-md-3{margin:1rem!important}.mt-md-3,.my-md-3{margin-top:1rem!important}.mr-md-3,.mx-md-3{margin-right:1rem!important}.mb-md-3,.my-md-3{margin-bottom:1rem!important}.ml-md-3,.mx-md-3{margin-left:1rem!important}.m-md-4{margin:1.5rem!important}.mt-md-4,.my-md-4{margin-top:1.5rem!important}.mr-md-4,.mx-md-4{margin-right:1.5rem!important}.mb-md-4,.my-md-4{margin-bottom:1.5rem!important}.ml-md-4,.mx-md-4{margin-left:1.5rem!important}.m-md-5{margin:3rem!important}.mt-md-5,.my-md-5{margin-top:3rem!important}.mr-md-5,.mx-md-5{margin-right:3rem!important}.mb-md-5,.my-md-5{margin-bottom:3rem!important}.ml-md-5,.mx-md-5{margin-left:3rem!important}.p-md-0{padding:0!important}.pt-md-0,.py-md-0{padding-top:0!important}.pr-md-0,.px-md-0{padding-right:0!important}.pb-md-0,.py-md-0{padding-bottom:0!important}.pl-md-0,.px-md-0{padding-left:0!important}.p-md-1{padding:.25rem!important}.pt-md-1,.py-md-1{padding-top:.25rem!important}.pr-md-1,.px-md-1{padding-right:.25rem!important}.pb-md-1,.py-md-1{padding-bottom:.25rem!important}.pl-md-1,.px-md-1{padding-left:.25rem!important}.p-md-2{padding:.5rem!important}.pt-md-2,.py-md-2{padding-top:.5rem!important}.pr-md-2,.px-md-2{padding-right:.5rem!important}.pb-md-2,.py-md-2{padding-bottom:.5rem!important}.pl-md-2,.px-md-2{padding-left:.5rem!important}.p-md-3{padding:1rem!important}.pt-md-3,.py-md-3{padding-top:1rem!important}.pr-md-3,.px-md-3{padding-right:1rem!important}.pb-md-3,.py-md-3{padding-bottom:1rem!important}.pl-md-3,.px-md-3{padding-left:1rem!important}.p-md-4{padding:1.5rem!important}.pt-md-4,.py-md-4{padding-top:1.5rem!important}.pr-md-4,.px-md-4{padding-right:1.5rem!important}.pb-md-4,.py-md-4{padding-bottom:1.5rem!important}.pl-md-4,.px-md-4{padding-left:1.5rem!important}.p-md-5{padding:3rem!important}.pt-md-5,.py-md-5{padding-top:3rem!important}.pr-md-5,.px-md-5{padding-right:3rem!important}.pb-md-5,.py-md-5{padding-bottom:3rem!important}.pl-md-5,.px-md-5{padding-left:3rem!important}.m-md-auto{margin:auto!important}.mt-md-auto,.my-md-auto{margin-top:auto!important}.mr-md-auto,.mx-md-auto{margin-right:auto!important}.mb-md-auto,.my-md-auto{margin-bottom:auto!important}.ml-md-auto,.mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.m-lg-0{margin:0!important}.mt-lg-0,.my-lg-0{margin-top:0!important}.mr-lg-0,.mx-lg-0{margin-right:0!important}.mb-lg-0,.my-lg-0{margin-bottom:0!important}.ml-lg-0,.mx-lg-0{margin-left:0!important}.m-lg-1{margin:.25rem!important}.mt-lg-1,.my-lg-1{margin-top:.25rem!important}.mr-lg-1,.mx-lg-1{margin-right:.25rem!important}.mb-lg-1,.my-lg-1{margin-bottom:.25rem!important}.ml-lg-1,.mx-lg-1{margin-left:.25rem!important}.m-lg-2{margin:.5rem!important}.mt-lg-2,.my-lg-2{margin-top:.5rem!important}.mr-lg-2,.mx-lg-2{margin-right:.5rem!important}.mb-lg-2,.my-lg-2{margin-bottom:.5rem!important}.ml-lg-2,.mx-lg-2{margin-left:.5rem!important}.m-lg-3{margin:1rem!important}.mt-lg-3,.my-lg-3{margin-top:1rem!important}.mr-lg-3,.mx-lg-3{margin-right:1rem!important}.mb-lg-3,.my-lg-3{margin-bottom:1rem!important}.ml-lg-3,.mx-lg-3{margin-left:1rem!important}.m-lg-4{margin:1.5rem!important}.mt-lg-4,.my-lg-4{margin-top:1.5rem!important}.mr-lg-4,.mx-lg-4{margin-right:1.5rem!important}.mb-lg-4,.my-lg-4{margin-bottom:1.5rem!important}.ml-lg-4,.mx-lg-4{margin-left:1.5rem!important}.m-lg-5{margin:3rem!important}.mt-lg-5,.my-lg-5{margin-top:3rem!important}.mr-lg-5,.mx-lg-5{margin-right:3rem!important}.mb-lg-5,.my-lg-5{margin-bottom:3rem!important}.ml-lg-5,.mx-lg-5{margin-left:3rem!important}.p-lg-0{padding:0!important}.pt-lg-0,.py-lg-0{padding-top:0!important}.pr-lg-0,.px-lg-0{padding-right:0!important}.pb-lg-0,.py-lg-0{padding-bottom:0!important}.pl-lg-0,.px-lg-0{padding-left:0!important}.p-lg-1{padding:.25rem!important}.pt-lg-1,.py-lg-1{padding-top:.25rem!important}.pr-lg-1,.px-lg-1{padding-right:.25rem!important}.pb-lg-1,.py-lg-1{padding-bottom:.25rem!important}.pl-lg-1,.px-lg-1{padding-left:.25rem!important}.p-lg-2{padding:.5rem!important}.pt-lg-2,.py-lg-2{padding-top:.5rem!important}.pr-lg-2,.px-lg-2{padding-right:.5rem!important}.pb-lg-2,.py-lg-2{padding-bottom:.5rem!important}.pl-lg-2,.px-lg-2{padding-left:.5rem!important}.p-lg-3{padding:1rem!important}.pt-lg-3,.py-lg-3{padding-top:1rem!important}.pr-lg-3,.px-lg-3{padding-right:1rem!important}.pb-lg-3,.py-lg-3{padding-bottom:1rem!important}.pl-lg-3,.px-lg-3{padding-left:1rem!important}.p-lg-4{padding:1.5rem!important}.pt-lg-4,.py-lg-4{padding-top:1.5rem!important}.pr-lg-4,.px-lg-4{padding-right:1.5rem!important}.pb-lg-4,.py-lg-4{padding-bottom:1.5rem!important}.pl-lg-4,.px-lg-4{padding-left:1.5rem!important}.p-lg-5{padding:3rem!important}.pt-lg-5,.py-lg-5{padding-top:3rem!important}.pr-lg-5,.px-lg-5{padding-right:3rem!important}.pb-lg-5,.py-lg-5{padding-bottom:3rem!important}.pl-lg-5,.px-lg-5{padding-left:3rem!important}.m-lg-auto{margin:auto!important}.mt-lg-auto,.my-lg-auto{margin-top:auto!important}.mr-lg-auto,.mx-lg-auto{margin-right:auto!important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto!important}.ml-lg-auto,.mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.m-xl-0{margin:0!important}.mt-xl-0,.my-xl-0{margin-top:0!important}.mr-xl-0,.mx-xl-0{margin-right:0!important}.mb-xl-0,.my-xl-0{margin-bottom:0!important}.ml-xl-0,.mx-xl-0{margin-left:0!important}.m-xl-1{margin:.25rem!important}.mt-xl-1,.my-xl-1{margin-top:.25rem!important}.mr-xl-1,.mx-xl-1{margin-right:.25rem!important}.mb-xl-1,.my-xl-1{margin-bottom:.25rem!important}.ml-xl-1,.mx-xl-1{margin-left:.25rem!important}.m-xl-2{margin:.5rem!important}.mt-xl-2,.my-xl-2{margin-top:.5rem!important}.mr-xl-2,.mx-xl-2{margin-right:.5rem!important}.mb-xl-2,.my-xl-2{margin-bottom:.5rem!important}.ml-xl-2,.mx-xl-2{margin-left:.5rem!important}.m-xl-3{margin:1rem!important}.mt-xl-3,.my-xl-3{margin-top:1rem!important}.mr-xl-3,.mx-xl-3{margin-right:1rem!important}.mb-xl-3,.my-xl-3{margin-bottom:1rem!important}.ml-xl-3,.mx-xl-3{margin-left:1rem!important}.m-xl-4{margin:1.5rem!important}.mt-xl-4,.my-xl-4{margin-top:1.5rem!important}.mr-xl-4,.mx-xl-4{margin-right:1.5rem!important}.mb-xl-4,.my-xl-4{margin-bottom:1.5rem!important}.ml-xl-4,.mx-xl-4{margin-left:1.5rem!important}.m-xl-5{margin:3rem!important}.mt-xl-5,.my-xl-5{margin-top:3rem!important}.mr-xl-5,.mx-xl-5{margin-right:3rem!important}.mb-xl-5,.my-xl-5{margin-bottom:3rem!important}.ml-xl-5,.mx-xl-5{margin-left:3rem!important}.p-xl-0{padding:0!important}.pt-xl-0,.py-xl-0{padding-top:0!important}.pr-xl-0,.px-xl-0{padding-right:0!important}.pb-xl-0,.py-xl-0{padding-bottom:0!important}.pl-xl-0,.px-xl-0{padding-left:0!important}.p-xl-1{padding:.25rem!important}.pt-xl-1,.py-xl-1{padding-top:.25rem!important}.pr-xl-1,.px-xl-1{padding-right:.25rem!important}.pb-xl-1,.py-xl-1{padding-bottom:.25rem!important}.pl-xl-1,.px-xl-1{padding-left:.25rem!important}.p-xl-2{padding:.5rem!important}.pt-xl-2,.py-xl-2{padding-top:.5rem!important}.pr-xl-2,.px-xl-2{padding-right:.5rem!important}.pb-xl-2,.py-xl-2{padding-bottom:.5rem!important}.pl-xl-2,.px-xl-2{padding-left:.5rem!important}.p-xl-3{padding:1rem!important}.pt-xl-3,.py-xl-3{padding-top:1rem!important}.pr-xl-3,.px-xl-3{padding-right:1rem!important}.pb-xl-3,.py-xl-3{padding-bottom:1rem!important}.pl-xl-3,.px-xl-3{padding-left:1rem!important}.p-xl-4{padding:1.5rem!important}.pt-xl-4,.py-xl-4{padding-top:1.5rem!important}.pr-xl-4,.px-xl-4{padding-right:1.5rem!important}.pb-xl-4,.py-xl-4{padding-bottom:1.5rem!important}.pl-xl-4,.px-xl-4{padding-left:1.5rem!important}.p-xl-5{padding:3rem!important}.pt-xl-5,.py-xl-5{padding-top:3rem!important}.pr-xl-5,.px-xl-5{padding-right:3rem!important}.pb-xl-5,.py-xl-5{padding-bottom:3rem!important}.pl-xl-5,.px-xl-5{padding-left:3rem!important}.m-xl-auto{margin:auto!important}.mt-xl-auto,.my-xl-auto{margin-top:auto!important}.mr-xl-auto,.mx-xl-auto{margin-right:auto!important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto!important}.ml-xl-auto,.mx-xl-auto{margin-left:auto!important}}.text-justify{text-align:justify!important}.text-nowrap{white-space:nowrap!important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left!important}.text-right{text-align:right!important}.text-center{text-align:center!important}@media (min-width:576px){.text-sm-left{text-align:left!important}.text-sm-right{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.text-md-left{text-align:left!important}.text-md-right{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.text-lg-left{text-align:left!important}.text-lg-right{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.text-xl-left{text-align:left!important}.text-xl-right{text-align:right!important}.text-xl-center{text-align:center!important}}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.font-weight-light{font-weight:300!important}.font-weight-normal{font-weight:400!important}.font-weight-bold{font-weight:700!important}.font-italic{font-style:italic!important}.text-white{color:#fff!important}.text-primary{color:#007bff!important}a.text-primary:focus,a.text-primary:hover{color:#0062cc!important}.text-secondary{color:#6c757d!important}a.text-secondary:focus,a.text-secondary:hover{color:#545b62!important}.text-success{color:#28a745!important}a.text-success:focus,a.text-success:hover{color:#1e7e34!important}.text-info{color:#17a2b8!important}a.text-info:focus,a.text-info:hover{color:#117a8b!important}.text-warning{color:#ffc107!important}a.text-warning:focus,a.text-warning:hover{color:#d39e00!important}.text-danger{color:#dc3545!important}a.text-danger:focus,a.text-danger:hover{color:#bd2130!important}.text-light{color:#f8f9fa!important}a.text-light:focus,a.text-light:hover{color:#dae0e5!important}.text-dark{color:#343a40!important}a.text-dark:focus,a.text-dark:hover{color:#1d2124!important}.text-muted{color:#6c757d!important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media print{*,::after,::before{text-shadow:none!important;box-shadow:none!important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap!important}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px!important}.container{min-width:992px!important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV9hmIqOjjg.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV9hvIqOjjg.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV9hnIqOjjg.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV9hoIqOjjg.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV9hkIqOjjg.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV9hlIqOjjg.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light Italic'), local('OpenSans-LightItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWyV9hrIqM.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUK0Udc1UAw.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUK0ddc1UAw.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUK0Vdc1UAw.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUK0adc1UAw.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUK0Wdc1UAw.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUK0Xdc1UAw.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v16/mem6YaGs126MiZpBA-UFUK0Zdc0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUdhmIqOjjg.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUdhvIqOjjg.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUdhnIqOjjg.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUdhoIqOjjg.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUdhkIqOjjg.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUdhlIqOjjg.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKXGUdhrIqM.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUNhmIqOjjg.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUNhvIqOjjg.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUNhnIqOjjg.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUNhoIqOjjg.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUNhkIqOjjg.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUNhlIqOjjg.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKWiUNhrIqM.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U9hmIqOjjg.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U9hvIqOjjg.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U9hnIqOjjg.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U9hoIqOjjg.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U9hkIqOjjg.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U9hlIqOjjg.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold Italic'), local('OpenSans-ExtraBoldItalic'), url(https://fonts.gstatic.com/s/opensans/v16/memnYaGs126MiZpBA-UFUKW-U9hrIqM.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8OX-hpOqc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8OVuhpOqc.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8OXuhpOqc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8OUehpOqc.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8OXehpOqc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8OXOhpOqc.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN_r8OUuhp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-UFWJ0bbck.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-UFUZ0bbck.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-UFWZ0bbck.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-UFVp0bbck.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-UFWp0bbck.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-UFW50bbck.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v16/mem8YaGs126MiZpBA-UFVZ0b.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirkOX-hpOqc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirkOVuhpOqc.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirkOXuhpOqc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirkOUehpOqc.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirkOXehpOqc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirkOXOhpOqc.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UNirkOUuhp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rgOX-hpOqc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rgOVuhpOqc.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rgOXuhpOqc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rgOUehpOqc.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rgOXehpOqc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rgOXOhpOqc.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN7rgOUuhp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rsOX-hpOqc.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rsOVuhpOqc.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rsOXuhpOqc.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rsOUehpOqc.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rsOXehpOqc.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rsOXOhpOqc.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: local('Open Sans ExtraBold'), local('OpenSans-ExtraBold'), url(https://fonts.gstatic.com/s/opensans/v16/mem5YaGs126MiZpBA-UN8rsOUuhp.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */

/* position */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}

/* toast styles */
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */
.toast-info {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */
.toast-error {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */
.toast-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */
.toast-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==");
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
/* Responsive Design */
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('fontawesome-webfont.2b13baa7dd4f54c9.eot?v=4.7.0');src:url('fontawesome-webfont.2b13baa7dd4f54c9.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('fontawesome-webfont.e9955780856cf8aa.woff2?v=4.7.0') format('woff2'),url('fontawesome-webfont.cf011583fb81df9f.woff?v=4.7.0') format('woff'),url('fontawesome-webfont.8a7cb27d142e3e19.ttf?v=4.7.0') format('truetype'),url('fontawesome-webfont.da909aa098b0ee2d.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

.mat-badge-content{font-weight:600;font-size:12px;font-family:Roboto, "Helvetica Neue", sans-serif}.mat-badge-small .mat-badge-content{font-size:9px}.mat-badge-large .mat-badge-content{font-size:24px}.mat-h1,.mat-headline,.mat-typography .mat-h1,.mat-typography .mat-headline,.mat-typography h1{font:400 24px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h2,.mat-title,.mat-typography .mat-h2,.mat-typography .mat-title,.mat-typography h2{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h3,.mat-subheading-2,.mat-typography .mat-h3,.mat-typography .mat-subheading-2,.mat-typography h3{font:400 16px/28px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h4,.mat-subheading-1,.mat-typography .mat-h4,.mat-typography .mat-subheading-1,.mat-typography h4{font:400 15px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 16px}.mat-h5,.mat-typography .mat-h5,.mat-typography h5{font:400 calc(14px * 0.83)/20px Roboto, "Helvetica Neue", sans-serif;margin:0 0 12px}.mat-h6,.mat-typography .mat-h6,.mat-typography h6{font:400 calc(14px * 0.67)/20px Roboto, "Helvetica Neue", sans-serif;margin:0 0 12px}.mat-body-strong,.mat-body-2,.mat-typography .mat-body-strong,.mat-typography .mat-body-2{font:500 14px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-body,.mat-body-1,.mat-typography .mat-body,.mat-typography .mat-body-1,.mat-typography{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-body p,.mat-body-1 p,.mat-typography .mat-body p,.mat-typography .mat-body-1 p,.mat-typography p{margin:0 0 12px}.mat-small,.mat-caption,.mat-typography .mat-small,.mat-typography .mat-caption{font:400 12px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-display-4,.mat-typography .mat-display-4{font:300 112px/112px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.05em;margin:0 0 56px}.mat-display-3,.mat-typography .mat-display-3{font:400 56px/56px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.02em;margin:0 0 64px}.mat-display-2,.mat-typography .mat-display-2{font:400 45px/48px Roboto, "Helvetica Neue", sans-serif;letter-spacing:-0.005em;margin:0 0 64px}.mat-display-1,.mat-typography .mat-display-1{font:400 34px/40px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0 0 64px}.mat-bottom-sheet-container{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-button,.mat-raised-button,.mat-icon-button,.mat-stroked-button,.mat-flat-button,.mat-fab,.mat-mini-fab{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-button-toggle{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-card{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-card-title{font-size:24px;font-weight:500}.mat-card-header .mat-card-title{font-size:20px}.mat-card-subtitle,.mat-card-content{font-size:14px}.mat-checkbox{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-checkbox-layout .mat-checkbox-label{line-height:24px}.mat-chip{font-size:14px;font-weight:500}.mat-chip .mat-chip-trailing-icon.mat-icon,.mat-chip .mat-chip-remove.mat-icon{font-size:18px}.mat-table{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-header-cell{font-size:12px;font-weight:500}.mat-cell,.mat-footer-cell{font-size:14px}.mat-calendar{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-calendar-body{font-size:13px}.mat-calendar-body-label,.mat-calendar-period-button{font-size:14px;font-weight:500}.mat-calendar-table-header th{font-size:11px;font-weight:400}.mat-dialog-title{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-expansion-panel-header{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:15px;font-weight:400}.mat-expansion-panel-content{font:400 14px/20px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-form-field{font-size:inherit;font-weight:400;line-height:1.125;font-family:Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-form-field-wrapper{padding-bottom:1.34375em}.mat-form-field-prefix .mat-icon,.mat-form-field-suffix .mat-icon{font-size:150%;line-height:1.125}.mat-form-field-prefix .mat-icon-button,.mat-form-field-suffix .mat-icon-button{height:1.5em;width:1.5em}.mat-form-field-prefix .mat-icon-button .mat-icon,.mat-form-field-suffix .mat-icon-button .mat-icon{height:1.125em;line-height:1.125}.mat-form-field-infix{padding:.5em 0;border-top:.84375em solid rgba(0,0,0,0)}.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34375em) scale(0.75);width:133.3333333333%}.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.34374em) scale(0.75);width:133.3333433333%}.mat-form-field-label-wrapper{top:-0.84375em;padding-top:.84375em}.mat-form-field-label{top:1.34375em}.mat-form-field-underline{bottom:1.34375em}.mat-form-field-subscript-wrapper{font-size:75%;margin-top:.6666666667em;top:calc(100% - 1.7916666667em)}.mat-form-field-appearance-legacy .mat-form-field-wrapper{padding-bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-infix{padding:.4375em 0}.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);width:133.3333333333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);width:133.3333433333%}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);width:133.3333533333%}.mat-form-field-appearance-legacy .mat-form-field-label{top:1.28125em}.mat-form-field-appearance-legacy .mat-form-field-underline{bottom:1.25em}.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper{margin-top:.5416666667em;top:calc(100% - 1.6666666667em)}@media print{.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28122em) scale(0.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.28121em) scale(0.75)}.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.2812em) scale(0.75)}}.mat-form-field-appearance-fill .mat-form-field-infix{padding:.25em 0 .75em 0}.mat-form-field-appearance-fill .mat-form-field-label{top:1.09375em;margin-top:-0.5em}.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-0.59375em) scale(0.75);width:133.3333333333%}.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-0.59374em) scale(0.75);width:133.3333433333%}.mat-form-field-appearance-outline .mat-form-field-infix{padding:1em 0 1em 0}.mat-form-field-appearance-outline .mat-form-field-label{top:1.84375em;margin-top:-0.25em}.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59375em) scale(0.75);width:133.3333333333%}.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown)+.mat-form-field-label-wrapper .mat-form-field-label{transform:translateY(-1.59374em) scale(0.75);width:133.3333433333%}.mat-grid-tile-header,.mat-grid-tile-footer{font-size:14px}.mat-grid-tile-header .mat-line,.mat-grid-tile-footer .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-grid-tile-header .mat-line:nth-child(n+2),.mat-grid-tile-footer .mat-line:nth-child(n+2){font-size:12px}input.mat-input-element{margin-top:-0.0625em}.mat-menu-item{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:400}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px}.mat-radio-button{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-select{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-select-trigger{height:1.125em}.mat-slide-toggle-content{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-slider-thumb-label-text{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mat-stepper-vertical,.mat-stepper-horizontal{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-step-label{font-size:14px;font-weight:400}.mat-step-sub-label-error{font-weight:normal}.mat-step-label-error{font-size:14px}.mat-step-label-selected{font-size:14px;font-weight:500}.mat-tab-group{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-tab-label,.mat-tab-link{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-toolbar,.mat-toolbar h1,.mat-toolbar h2,.mat-toolbar h3,.mat-toolbar h4,.mat-toolbar h5,.mat-toolbar h6{font:500 20px/32px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal;margin:0}.mat-tooltip{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:10px;padding-top:6px;padding-bottom:6px}.mat-tooltip-handset{font-size:14px;padding-top:8px;padding-bottom:8px}.mat-list-item{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-list-option{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-list-base .mat-list-item{font-size:16px}.mat-list-base .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base .mat-list-item .mat-line:nth-child(n+2){font-size:14px}.mat-list-base .mat-list-option{font-size:16px}.mat-list-base .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base .mat-list-option .mat-line:nth-child(n+2){font-size:14px}.mat-list-base .mat-subheader{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px;font-weight:500}.mat-list-base[dense] .mat-list-item{font-size:12px}.mat-list-base[dense] .mat-list-item .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2){font-size:12px}.mat-list-base[dense] .mat-list-option{font-size:12px}.mat-list-base[dense] .mat-list-option .mat-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;box-sizing:border-box}.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2){font-size:12px}.mat-list-base[dense] .mat-subheader{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:12px;font-weight:500}.mat-option{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:16px}.mat-optgroup-label{font:500 14px/24px Roboto, "Helvetica Neue", sans-serif;letter-spacing:normal}.mat-simple-snackbar{font-family:Roboto, "Helvetica Neue", sans-serif;font-size:14px}.mat-simple-snackbar-action{line-height:1;font-family:inherit;font-size:inherit;font-weight:500}.mat-tree{font-family:Roboto, "Helvetica Neue", sans-serif}.mat-tree-node,.mat-nested-tree-node{font-weight:400;font-size:14px}.mat-ripple{overflow:hidden;position:relative}.mat-ripple:not(:empty){transform:translateZ(0)}.mat-ripple.mat-ripple-unbounded{overflow:visible}.mat-ripple-element{position:absolute;border-radius:50%;pointer-events:none;transition:opacity,transform 0ms cubic-bezier(0, 0, 0.2, 1);transform:scale3d(0, 0, 0)}.cdk-high-contrast-active .mat-ripple-element{display:none}.cdk-visually-hidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;white-space:nowrap;outline:0;-webkit-appearance:none;-moz-appearance:none;left:0}[dir=rtl] .cdk-visually-hidden{left:auto;right:0}.cdk-overlay-container,.cdk-global-overlay-wrapper{pointer-events:none;top:0;left:0;height:100%;width:100%}.cdk-overlay-container{position:fixed;z-index:1000}.cdk-overlay-container:empty{display:none}.cdk-global-overlay-wrapper{display:flex;position:absolute;z-index:1000}.cdk-overlay-pane{position:absolute;pointer-events:auto;box-sizing:border-box;z-index:1000;display:flex;max-width:100%;max-height:100%}.cdk-overlay-backdrop{position:absolute;top:0;bottom:0;left:0;right:0;z-index:1000;pointer-events:auto;-webkit-tap-highlight-color:rgba(0,0,0,0);transition:opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);opacity:0}.cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:1}.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing{opacity:.6}.cdk-overlay-dark-backdrop{background:rgba(0,0,0,.32)}.cdk-overlay-transparent-backdrop{transition:visibility 1ms linear,opacity 1ms linear;visibility:hidden;opacity:1}.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing{opacity:0;visibility:visible}.cdk-overlay-backdrop-noop-animation{transition:none}.cdk-overlay-connected-position-bounding-box{position:absolute;z-index:1000;display:flex;flex-direction:column;min-width:1px;min-height:1px}.cdk-global-scrollblock{position:fixed;width:100%;overflow-y:scroll}textarea.cdk-textarea-autosize{resize:none}textarea.cdk-textarea-autosize-measuring{padding:2px 0 !important;box-sizing:content-box !important;height:auto !important;overflow:hidden !important}textarea.cdk-textarea-autosize-measuring-firefox{padding:2px 0 !important;box-sizing:content-box !important;height:0 !important}@keyframes cdk-text-field-autofill-start{/*!*/}@keyframes cdk-text-field-autofill-end{/*!*/}.cdk-text-field-autofill-monitored:-webkit-autofill{animation:cdk-text-field-autofill-start 0s 1ms}.cdk-text-field-autofill-monitored:not(:-webkit-autofill){animation:cdk-text-field-autofill-end 0s 1ms}.mat-focus-indicator{position:relative}.mat-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-focus-indicator-display, none);border:var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);border-radius:var(--mat-focus-indicator-border-radius, 4px)}.mat-focus-indicator:focus::before{content:""}.cdk-high-contrast-active{--mat-focus-indicator-display: block}.mat-mdc-focus-indicator{position:relative}.mat-mdc-focus-indicator::before{top:0;left:0;right:0;bottom:0;position:absolute;box-sizing:border-box;pointer-events:none;display:var(--mat-mdc-focus-indicator-display, none);border:var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);border-radius:var(--mat-mdc-focus-indicator-border-radius, 4px)}.mat-mdc-focus-indicator:focus::before{content:""}.cdk-high-contrast-active{--mat-mdc-focus-indicator-display: block}.mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-option{color:rgba(0,0,0,.87)}.mat-option:hover:not(.mat-option-disabled),.mat-option:focus:not(.mat-option-disabled){background:rgba(0,0,0,.04)}.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled){background:rgba(0,0,0,.04)}.mat-option.mat-active{background:rgba(0,0,0,.04);color:rgba(0,0,0,.87)}.mat-option.mat-option-disabled{color:rgba(0,0,0,.38)}.mat-primary .mat-option.mat-selected:not(.mat-option-disabled){color:#673ab7}.mat-accent .mat-option.mat-selected:not(.mat-option-disabled){color:#ffd740}.mat-warn .mat-option.mat-selected:not(.mat-option-disabled){color:#f44336}.mat-optgroup-label{color:rgba(0,0,0,.54)}.mat-optgroup-disabled .mat-optgroup-label{color:rgba(0,0,0,.38)}.mat-pseudo-checkbox{color:rgba(0,0,0,.54)}.mat-pseudo-checkbox::after{color:#fafafa}.mat-pseudo-checkbox-disabled{color:#b0b0b0}.mat-primary .mat-pseudo-checkbox-checked,.mat-primary .mat-pseudo-checkbox-indeterminate{background:#673ab7}.mat-pseudo-checkbox-checked,.mat-pseudo-checkbox-indeterminate,.mat-accent .mat-pseudo-checkbox-checked,.mat-accent .mat-pseudo-checkbox-indeterminate{background:#ffd740}.mat-warn .mat-pseudo-checkbox-checked,.mat-warn .mat-pseudo-checkbox-indeterminate{background:#f44336}.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled{background:#b0b0b0}.mat-app-background{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-elevation-z0{box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z1{box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z2{box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z3{box-shadow:0px 3px 3px -2px rgba(0, 0, 0, 0.2),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 1px 8px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z4{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z5{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 5px 8px 0px rgba(0, 0, 0, 0.14),0px 1px 14px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z6{box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-elevation-z7{box-shadow:0px 4px 5px -2px rgba(0, 0, 0, 0.2),0px 7px 10px 1px rgba(0, 0, 0, 0.14),0px 2px 16px 1px rgba(0, 0, 0, 0.12)}.mat-elevation-z8{box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mat-elevation-z9{box-shadow:0px 5px 6px -3px rgba(0, 0, 0, 0.2),0px 9px 12px 1px rgba(0, 0, 0, 0.14),0px 3px 16px 2px rgba(0, 0, 0, 0.12)}.mat-elevation-z10{box-shadow:0px 6px 6px -3px rgba(0, 0, 0, 0.2),0px 10px 14px 1px rgba(0, 0, 0, 0.14),0px 4px 18px 3px rgba(0, 0, 0, 0.12)}.mat-elevation-z11{box-shadow:0px 6px 7px -4px rgba(0, 0, 0, 0.2),0px 11px 15px 1px rgba(0, 0, 0, 0.14),0px 4px 20px 3px rgba(0, 0, 0, 0.12)}.mat-elevation-z12{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z13{box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 13px 19px 2px rgba(0, 0, 0, 0.14),0px 5px 24px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z14{box-shadow:0px 7px 9px -4px rgba(0, 0, 0, 0.2),0px 14px 21px 2px rgba(0, 0, 0, 0.14),0px 5px 26px 4px rgba(0, 0, 0, 0.12)}.mat-elevation-z15{box-shadow:0px 8px 9px -5px rgba(0, 0, 0, 0.2),0px 15px 22px 2px rgba(0, 0, 0, 0.14),0px 6px 28px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z16{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z17{box-shadow:0px 8px 11px -5px rgba(0, 0, 0, 0.2),0px 17px 26px 2px rgba(0, 0, 0, 0.14),0px 6px 32px 5px rgba(0, 0, 0, 0.12)}.mat-elevation-z18{box-shadow:0px 9px 11px -5px rgba(0, 0, 0, 0.2),0px 18px 28px 2px rgba(0, 0, 0, 0.14),0px 7px 34px 6px rgba(0, 0, 0, 0.12)}.mat-elevation-z19{box-shadow:0px 9px 12px -6px rgba(0, 0, 0, 0.2),0px 19px 29px 2px rgba(0, 0, 0, 0.14),0px 7px 36px 6px rgba(0, 0, 0, 0.12)}.mat-elevation-z20{box-shadow:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 20px 31px 3px rgba(0, 0, 0, 0.14),0px 8px 38px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z21{box-shadow:0px 10px 13px -6px rgba(0, 0, 0, 0.2),0px 21px 33px 3px rgba(0, 0, 0, 0.14),0px 8px 40px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z22{box-shadow:0px 10px 14px -6px rgba(0, 0, 0, 0.2),0px 22px 35px 3px rgba(0, 0, 0, 0.14),0px 8px 42px 7px rgba(0, 0, 0, 0.12)}.mat-elevation-z23{box-shadow:0px 11px 14px -7px rgba(0, 0, 0, 0.2),0px 23px 36px 3px rgba(0, 0, 0, 0.14),0px 9px 44px 8px rgba(0, 0, 0, 0.12)}.mat-elevation-z24{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.mat-theme-loaded-marker{display:none}.mat-autocomplete-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-autocomplete-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover){background:#fff}.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled){color:rgba(0,0,0,.87)}.mat-badge{position:relative}.mat-badge.mat-badge{overflow:visible}.mat-badge-hidden .mat-badge-content{display:none}.mat-badge-content{position:absolute;text-align:center;display:inline-block;border-radius:50%;transition:transform 200ms ease-in-out;transform:scale(0.6);overflow:hidden;white-space:nowrap;text-overflow:ellipsis;pointer-events:none}.ng-animate-disabled .mat-badge-content,.mat-badge-content._mat-animation-noopable{transition:none}.mat-badge-content.mat-badge-active{transform:none}.mat-badge-small .mat-badge-content{width:16px;height:16px;line-height:16px}.mat-badge-small.mat-badge-above .mat-badge-content{top:-8px}.mat-badge-small.mat-badge-below .mat-badge-content{bottom:-8px}.mat-badge-small.mat-badge-before .mat-badge-content{left:-16px}[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content{left:auto;right:-16px}.mat-badge-small.mat-badge-after .mat-badge-content{right:-16px}[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content{right:auto;left:-16px}.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-8px}.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-8px}[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-8px}.mat-badge-medium .mat-badge-content{width:22px;height:22px;line-height:22px}.mat-badge-medium.mat-badge-above .mat-badge-content{top:-11px}.mat-badge-medium.mat-badge-below .mat-badge-content{bottom:-11px}.mat-badge-medium.mat-badge-before .mat-badge-content{left:-22px}[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content{left:auto;right:-22px}.mat-badge-medium.mat-badge-after .mat-badge-content{right:-22px}[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content{right:auto;left:-22px}.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-11px}.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-11px}[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-11px}.mat-badge-large .mat-badge-content{width:28px;height:28px;line-height:28px}.mat-badge-large.mat-badge-above .mat-badge-content{top:-14px}.mat-badge-large.mat-badge-below .mat-badge-content{bottom:-14px}.mat-badge-large.mat-badge-before .mat-badge-content{left:-28px}[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content{left:auto;right:-28px}.mat-badge-large.mat-badge-after .mat-badge-content{right:-28px}[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content{right:auto;left:-28px}.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content{left:auto;right:-14px}.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:-14px}[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content{right:auto;left:-14px}.mat-badge-content{color:#fff;background:#673ab7}.cdk-high-contrast-active .mat-badge-content{outline:solid 1px;border-radius:0}.mat-badge-accent .mat-badge-content{background:#ffd740;color:rgba(0,0,0,.87)}.mat-badge-warn .mat-badge-content{color:#fff;background:#f44336}.mat-badge-disabled .mat-badge-content{background:#b9b9b9;color:rgba(0,0,0,.38)}.mat-bottom-sheet-container{box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12);background:#fff;color:rgba(0,0,0,.87)}.mat-button,.mat-icon-button,.mat-stroked-button{color:inherit;background:rgba(0,0,0,0)}.mat-button.mat-primary,.mat-icon-button.mat-primary,.mat-stroked-button.mat-primary{color:#673ab7}.mat-button.mat-accent,.mat-icon-button.mat-accent,.mat-stroked-button.mat-accent{color:#ffd740}.mat-button.mat-warn,.mat-icon-button.mat-warn,.mat-stroked-button.mat-warn{color:#f44336}.mat-button.mat-primary.mat-button-disabled,.mat-button.mat-accent.mat-button-disabled,.mat-button.mat-warn.mat-button-disabled,.mat-button.mat-button-disabled.mat-button-disabled,.mat-icon-button.mat-primary.mat-button-disabled,.mat-icon-button.mat-accent.mat-button-disabled,.mat-icon-button.mat-warn.mat-button-disabled,.mat-icon-button.mat-button-disabled.mat-button-disabled,.mat-stroked-button.mat-primary.mat-button-disabled,.mat-stroked-button.mat-accent.mat-button-disabled,.mat-stroked-button.mat-warn.mat-button-disabled,.mat-stroked-button.mat-button-disabled.mat-button-disabled{color:rgba(0,0,0,.26)}.mat-button.mat-primary .mat-button-focus-overlay,.mat-icon-button.mat-primary .mat-button-focus-overlay,.mat-stroked-button.mat-primary .mat-button-focus-overlay{background-color:#673ab7}.mat-button.mat-accent .mat-button-focus-overlay,.mat-icon-button.mat-accent .mat-button-focus-overlay,.mat-stroked-button.mat-accent .mat-button-focus-overlay{background-color:#ffd740}.mat-button.mat-warn .mat-button-focus-overlay,.mat-icon-button.mat-warn .mat-button-focus-overlay,.mat-stroked-button.mat-warn .mat-button-focus-overlay{background-color:#f44336}.mat-button.mat-button-disabled .mat-button-focus-overlay,.mat-icon-button.mat-button-disabled .mat-button-focus-overlay,.mat-stroked-button.mat-button-disabled .mat-button-focus-overlay{background-color:rgba(0,0,0,0)}.mat-button .mat-ripple-element,.mat-icon-button .mat-ripple-element,.mat-stroked-button .mat-ripple-element{opacity:.1;background-color:currentColor}.mat-button-focus-overlay{background:#000}.mat-stroked-button:not(.mat-button-disabled){border-color:rgba(0,0,0,.12)}.mat-flat-button,.mat-raised-button,.mat-fab,.mat-mini-fab{color:rgba(0,0,0,.87);background-color:#fff}.mat-flat-button.mat-primary,.mat-raised-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{color:#fff}.mat-flat-button.mat-accent,.mat-raised-button.mat-accent,.mat-fab.mat-accent,.mat-mini-fab.mat-accent{color:rgba(0,0,0,.87)}.mat-flat-button.mat-warn,.mat-raised-button.mat-warn,.mat-fab.mat-warn,.mat-mini-fab.mat-warn{color:#fff}.mat-flat-button.mat-primary.mat-button-disabled,.mat-flat-button.mat-accent.mat-button-disabled,.mat-flat-button.mat-warn.mat-button-disabled,.mat-flat-button.mat-button-disabled.mat-button-disabled,.mat-raised-button.mat-primary.mat-button-disabled,.mat-raised-button.mat-accent.mat-button-disabled,.mat-raised-button.mat-warn.mat-button-disabled,.mat-raised-button.mat-button-disabled.mat-button-disabled,.mat-fab.mat-primary.mat-button-disabled,.mat-fab.mat-accent.mat-button-disabled,.mat-fab.mat-warn.mat-button-disabled,.mat-fab.mat-button-disabled.mat-button-disabled,.mat-mini-fab.mat-primary.mat-button-disabled,.mat-mini-fab.mat-accent.mat-button-disabled,.mat-mini-fab.mat-warn.mat-button-disabled,.mat-mini-fab.mat-button-disabled.mat-button-disabled{color:rgba(0,0,0,.26)}.mat-flat-button.mat-primary,.mat-raised-button.mat-primary,.mat-fab.mat-primary,.mat-mini-fab.mat-primary{background-color:#673ab7}.mat-flat-button.mat-accent,.mat-raised-button.mat-accent,.mat-fab.mat-accent,.mat-mini-fab.mat-accent{background-color:#ffd740}.mat-flat-button.mat-warn,.mat-raised-button.mat-warn,.mat-fab.mat-warn,.mat-mini-fab.mat-warn{background-color:#f44336}.mat-flat-button.mat-primary.mat-button-disabled,.mat-flat-button.mat-accent.mat-button-disabled,.mat-flat-button.mat-warn.mat-button-disabled,.mat-flat-button.mat-button-disabled.mat-button-disabled,.mat-raised-button.mat-primary.mat-button-disabled,.mat-raised-button.mat-accent.mat-button-disabled,.mat-raised-button.mat-warn.mat-button-disabled,.mat-raised-button.mat-button-disabled.mat-button-disabled,.mat-fab.mat-primary.mat-button-disabled,.mat-fab.mat-accent.mat-button-disabled,.mat-fab.mat-warn.mat-button-disabled,.mat-fab.mat-button-disabled.mat-button-disabled,.mat-mini-fab.mat-primary.mat-button-disabled,.mat-mini-fab.mat-accent.mat-button-disabled,.mat-mini-fab.mat-warn.mat-button-disabled,.mat-mini-fab.mat-button-disabled.mat-button-disabled{background-color:rgba(0,0,0,.12)}.mat-flat-button.mat-primary .mat-ripple-element,.mat-raised-button.mat-primary .mat-ripple-element,.mat-fab.mat-primary .mat-ripple-element,.mat-mini-fab.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-flat-button.mat-accent .mat-ripple-element,.mat-raised-button.mat-accent .mat-ripple-element,.mat-fab.mat-accent .mat-ripple-element,.mat-mini-fab.mat-accent .mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-flat-button.mat-warn .mat-ripple-element,.mat-raised-button.mat-warn .mat-ripple-element,.mat-fab.mat-warn .mat-ripple-element,.mat-mini-fab.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-stroked-button:not([class*=mat-elevation-z]),.mat-flat-button:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-raised-button:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0px 5px 5px -3px rgba(0, 0, 0, 0.2),0px 8px 10px 1px rgba(0, 0, 0, 0.14),0px 3px 14px 2px rgba(0, 0, 0, 0.12)}.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-fab:not([class*=mat-elevation-z]),.mat-mini-fab:not([class*=mat-elevation-z]){box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]),.mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]){box-shadow:0px 7px 8px -4px rgba(0, 0, 0, 0.2),0px 12px 17px 2px rgba(0, 0, 0, 0.14),0px 5px 22px 4px rgba(0, 0, 0, 0.12)}.mat-fab.mat-button-disabled:not([class*=mat-elevation-z]),.mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-button-toggle-standalone:not([class*=mat-elevation-z]),.mat-button-toggle-group:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]){box-shadow:none}.mat-button-toggle{color:rgba(0,0,0,.38)}.mat-button-toggle .mat-button-toggle-focus-overlay{background-color:rgba(0,0,0,.12)}.mat-button-toggle-appearance-standard{color:rgba(0,0,0,.87);background:#fff}.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay{background-color:#000}.mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:solid 1px #e0e0e0}[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:solid 1px #e0e0e0}.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle+.mat-button-toggle{border-left:none;border-right:none;border-top:solid 1px #e0e0e0}.mat-button-toggle-checked{background-color:#e0e0e0;color:rgba(0,0,0,.54)}.mat-button-toggle-checked.mat-button-toggle-appearance-standard{color:rgba(0,0,0,.87)}.mat-button-toggle-disabled{color:rgba(0,0,0,.26);background-color:#eee}.mat-button-toggle-disabled.mat-button-toggle-appearance-standard{background:#fff}.mat-button-toggle-disabled.mat-button-toggle-checked{background-color:#bdbdbd}.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,.mat-button-toggle-group-appearance-standard{border:solid 1px #e0e0e0}.mat-button-toggle-appearance-standard .mat-button-toggle-label-content{line-height:48px}.mat-card{background:#fff;color:rgba(0,0,0,.87)}.mat-card:not([class*=mat-elevation-z]){box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12)}.mat-card.mat-card-flat:not([class*=mat-elevation-z]){box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.2),0px 0px 0px 0px rgba(0, 0, 0, 0.14),0px 0px 0px 0px rgba(0, 0, 0, 0.12)}.mat-card-subtitle{color:rgba(0,0,0,.54)}.mat-checkbox-frame{border-color:rgba(0,0,0,.54)}.mat-checkbox-checkmark{fill:#fafafa}.mat-checkbox-checkmark-path{stroke:#fafafa !important}.mat-checkbox-mixedmark{background-color:#fafafa}.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background,.mat-checkbox-checked.mat-primary .mat-checkbox-background{background-color:#673ab7}.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background,.mat-checkbox-checked.mat-accent .mat-checkbox-background{background-color:#ffd740}.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background,.mat-checkbox-checked.mat-warn .mat-checkbox-background{background-color:#f44336}.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background,.mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background{background-color:#b0b0b0}.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame{border-color:#b0b0b0}.mat-checkbox-disabled .mat-checkbox-label{color:rgba(0,0,0,.38)}.mat-checkbox .mat-ripple-element{background-color:#000}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element{background:#673ab7}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element{background:#ffd740}.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element{background:#f44336}.mat-chip.mat-standard-chip{background-color:#e0e0e0;color:rgba(0,0,0,.87)}.mat-chip.mat-standard-chip .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active{box-shadow:0px 3px 3px -2px rgba(0, 0, 0, 0.2),0px 3px 4px 0px rgba(0, 0, 0, 0.14),0px 1px 8px 0px rgba(0, 0, 0, 0.12)}.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover{opacity:.54}.mat-chip.mat-standard-chip.mat-chip-disabled{opacity:.4}.mat-chip.mat-standard-chip::after{background:#000}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary{background-color:#673ab7;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn{background-color:#f44336;color:#fff}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove{color:#fff;opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element{background-color:rgba(255,255,255,.1)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent{background-color:#ffd740;color:rgba(0,0,0,.87)}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove{color:rgba(0,0,0,.87);opacity:.4}.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element{background-color:rgba(0,0,0,.1)}.mat-table{background:#fff}.mat-table thead,.mat-table tbody,.mat-table tfoot,mat-header-row,mat-row,mat-footer-row,[mat-header-row],[mat-row],[mat-footer-row],.mat-table-sticky{background:inherit}mat-row,mat-header-row,mat-footer-row,th.mat-header-cell,td.mat-cell,td.mat-footer-cell{border-bottom-color:rgba(0,0,0,.12)}.mat-header-cell{color:rgba(0,0,0,.54)}.mat-cell,.mat-footer-cell{color:rgba(0,0,0,.87)}.mat-calendar-arrow{fill:rgba(0,0,0,.54)}.mat-datepicker-toggle,.mat-datepicker-content .mat-calendar-next-button,.mat-datepicker-content .mat-calendar-previous-button{color:rgba(0,0,0,.54)}.mat-calendar-table-header-divider::after{background:rgba(0,0,0,.12)}.mat-calendar-table-header,.mat-calendar-body-label{color:rgba(0,0,0,.54)}.mat-calendar-body-cell-content,.mat-date-range-input-separator{color:rgba(0,0,0,.87);border-color:rgba(0,0,0,0)}.mat-calendar-body-disabled>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){color:rgba(0,0,0,.38)}.mat-form-field-disabled .mat-date-range-input-separator{color:rgba(0,0,0,.38)}.mat-calendar-body-in-preview{color:rgba(0,0,0,.24)}.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:rgba(0,0,0,.38)}.mat-calendar-body-disabled>.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){border-color:rgba(0,0,0,.18)}.mat-calendar-body-in-range::before{background:rgba(103,58,183,.2)}.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-calendar-body-comparison-bridge-start::before,[dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(103, 58, 183, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-calendar-body-comparison-bridge-end::before,[dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(103, 58, 183, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-calendar-body-selected{background-color:#673ab7;color:#fff}.mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(103,58,183,.4)}.mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(103,58,183,.3)}@media(hover: hover){.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(103,58,183,.3)}}.mat-datepicker-content{box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12);background-color:#fff;color:rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before{background:rgba(255,215,64,.2)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(255, 215, 64, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(255, 215, 64, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-accent .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-datepicker-content.mat-accent .mat-calendar-body-selected{background-color:#ffd740;color:rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(255,215,64,.4)}.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px rgba(0,0,0,.87)}.mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(255,215,64,.3)}@media(hover: hover){.mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(255,215,64,.3)}}.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before{background:rgba(244,67,54,.2)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before{background:rgba(249,171,0,.2)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before{background:linear-gradient(to right, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before{background:linear-gradient(to left, rgba(244, 67, 54, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%)}.mat-datepicker-content.mat-warn .mat-calendar-body-in-range>.mat-calendar-body-comparison-identical,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after{background:#a8dab5}.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range>.mat-calendar-body-selected{background:#46a35e}.mat-datepicker-content.mat-warn .mat-calendar-body-selected{background-color:#f44336;color:#fff}.mat-datepicker-content.mat-warn .mat-calendar-body-disabled>.mat-calendar-body-selected{background-color:rgba(244,67,54,.4)}.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected{box-shadow:inset 0 0 0 1px #fff}.mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),.mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(244,67,54,.3)}@media(hover: hover){.mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover>.mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical){background-color:rgba(244,67,54,.3)}}.mat-datepicker-content-touch{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12)}.mat-datepicker-toggle-active{color:#673ab7}.mat-datepicker-toggle-active.mat-accent{color:#ffd740}.mat-datepicker-toggle-active.mat-warn{color:#f44336}.mat-date-range-input-inner[disabled]{color:rgba(0,0,0,.38)}.mat-dialog-container{box-shadow:0px 11px 15px -7px rgba(0, 0, 0, 0.2),0px 24px 38px 3px rgba(0, 0, 0, 0.14),0px 9px 46px 8px rgba(0, 0, 0, 0.12);background:#fff;color:rgba(0,0,0,.87)}.mat-divider{border-top-color:rgba(0,0,0,.12)}.mat-divider-vertical{border-right-color:rgba(0,0,0,.12)}.mat-expansion-panel{background:#fff;color:rgba(0,0,0,.87)}.mat-expansion-panel:not([class*=mat-elevation-z]){box-shadow:0px 3px 1px -2px rgba(0, 0, 0, 0.2),0px 2px 2px 0px rgba(0, 0, 0, 0.14),0px 1px 5px 0px rgba(0, 0, 0, 0.12)}.mat-action-row{border-top-color:rgba(0,0,0,.12)}.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]),.mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]),.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]){background:rgba(0,0,0,.04)}@media(hover: none){.mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover{background:#fff}}.mat-expansion-panel-header-title{color:rgba(0,0,0,.87)}.mat-expansion-panel-header-description,.mat-expansion-indicator::after{color:rgba(0,0,0,.54)}.mat-expansion-panel-header[aria-disabled=true]{color:rgba(0,0,0,.26)}.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description{color:inherit}.mat-expansion-panel-header{height:48px}.mat-expansion-panel-header.mat-expanded{height:64px}.mat-form-field-label{color:rgba(0,0,0,.6)}.mat-hint{color:rgba(0,0,0,.6)}.mat-form-field.mat-focused .mat-form-field-label{color:#673ab7}.mat-form-field.mat-focused .mat-form-field-label.mat-accent{color:#ffd740}.mat-form-field.mat-focused .mat-form-field-label.mat-warn{color:#f44336}.mat-focused .mat-form-field-required-marker{color:#ffd740}.mat-form-field-ripple{background-color:rgba(0,0,0,.87)}.mat-form-field.mat-focused .mat-form-field-ripple{background-color:#673ab7}.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent{background-color:#ffd740}.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn{background-color:#f44336}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after{color:#673ab7}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after{color:#ffd740}.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after{color:#f44336}.mat-form-field.mat-form-field-invalid .mat-form-field-label{color:#f44336}.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker{color:#f44336}.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent{background-color:#f44336}.mat-error{color:#f44336}.mat-form-field-appearance-legacy .mat-form-field-label{color:rgba(0,0,0,.54)}.mat-form-field-appearance-legacy .mat-hint{color:rgba(0,0,0,.54)}.mat-form-field-appearance-legacy .mat-form-field-underline{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.mat-form-field-appearance-standard .mat-form-field-underline{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline{background-image:linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);background-size:4px 100%;background-repeat:repeat-x}.mat-form-field-appearance-fill .mat-form-field-flex{background-color:rgba(0,0,0,.04)}.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex{background-color:rgba(0,0,0,.02)}.mat-form-field-appearance-fill .mat-form-field-underline::before{background-color:rgba(0,0,0,.42)}.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label{color:rgba(0,0,0,.38)}.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before{background-color:rgba(0,0,0,0)}.mat-form-field-appearance-outline .mat-form-field-outline{color:rgba(0,0,0,.12)}.mat-form-field-appearance-outline .mat-form-field-outline-thick{color:rgba(0,0,0,.87)}.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick{color:#673ab7}.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick{color:#ffd740}.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick{color:#f44336}.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick{color:#f44336}.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label{color:rgba(0,0,0,.38)}.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline{color:rgba(0,0,0,.06)}.mat-icon.mat-primary{color:#673ab7}.mat-icon.mat-accent{color:#ffd740}.mat-icon.mat-warn{color:#f44336}.mat-form-field-type-mat-native-select .mat-form-field-infix::after{color:rgba(0,0,0,.54)}.mat-input-element:disabled,.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after{color:rgba(0,0,0,.38)}.mat-input-element{caret-color:#673ab7}.mat-input-element::placeholder{color:rgba(0,0,0,.42)}.mat-input-element::-moz-placeholder{color:rgba(0,0,0,.42)}.mat-input-element::-webkit-input-placeholder{color:rgba(0,0,0,.42)}.mat-input-element:-ms-input-placeholder{color:rgba(0,0,0,.42)}.mat-form-field.mat-accent .mat-input-element{caret-color:#ffd740}.mat-form-field.mat-warn .mat-input-element,.mat-form-field-invalid .mat-input-element{caret-color:#f44336}.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after{color:#f44336}.mat-list-base .mat-list-item{color:rgba(0,0,0,.87)}.mat-list-base .mat-list-option{color:rgba(0,0,0,.87)}.mat-list-base .mat-subheader{color:rgba(0,0,0,.54)}.mat-list-base .mat-list-item-disabled{background-color:#eee;color:rgba(0,0,0,.38)}.mat-list-option:hover,.mat-list-option:focus,.mat-nav-list .mat-list-item:hover,.mat-nav-list .mat-list-item:focus,.mat-action-list .mat-list-item:hover,.mat-action-list .mat-list-item:focus{background:rgba(0,0,0,.04)}.mat-list-single-selected-option,.mat-list-single-selected-option:hover,.mat-list-single-selected-option:focus{background:rgba(0,0,0,.12)}.mat-menu-panel{background:#fff}.mat-menu-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-menu-item{background:rgba(0,0,0,0);color:rgba(0,0,0,.87)}.mat-menu-item[disabled],.mat-menu-item[disabled] .mat-menu-submenu-icon,.mat-menu-item[disabled] .mat-icon-no-color{color:rgba(0,0,0,.38)}.mat-menu-item .mat-icon-no-color,.mat-menu-submenu-icon{color:rgba(0,0,0,.54)}.mat-menu-item:hover:not([disabled]),.mat-menu-item.cdk-program-focused:not([disabled]),.mat-menu-item.cdk-keyboard-focused:not([disabled]),.mat-menu-item-highlighted:not([disabled]){background:rgba(0,0,0,.04)}.mat-paginator{background:#fff}.mat-paginator,.mat-paginator-page-size .mat-select-trigger{color:rgba(0,0,0,.54)}.mat-paginator-decrement,.mat-paginator-increment{border-top:2px solid rgba(0,0,0,.54);border-right:2px solid rgba(0,0,0,.54)}.mat-paginator-first,.mat-paginator-last{border-top:2px solid rgba(0,0,0,.54)}.mat-icon-button[disabled] .mat-paginator-decrement,.mat-icon-button[disabled] .mat-paginator-increment,.mat-icon-button[disabled] .mat-paginator-first,.mat-icon-button[disabled] .mat-paginator-last{border-color:rgba(0,0,0,.38)}.mat-paginator-container{min-height:56px}.mat-progress-bar-background{fill:#d5cae9}.mat-progress-bar-buffer{background-color:#d5cae9}.mat-progress-bar-fill::after{background-color:#673ab7}.mat-progress-bar.mat-accent .mat-progress-bar-background{fill:#fbf1cc}.mat-progress-bar.mat-accent .mat-progress-bar-buffer{background-color:#fbf1cc}.mat-progress-bar.mat-accent .mat-progress-bar-fill::after{background-color:#ffd740}.mat-progress-bar.mat-warn .mat-progress-bar-background{fill:#f9ccc9}.mat-progress-bar.mat-warn .mat-progress-bar-buffer{background-color:#f9ccc9}.mat-progress-bar.mat-warn .mat-progress-bar-fill::after{background-color:#f44336}.mat-progress-spinner circle,.mat-spinner circle{stroke:#673ab7}.mat-progress-spinner.mat-accent circle,.mat-spinner.mat-accent circle{stroke:#ffd740}.mat-progress-spinner.mat-warn circle,.mat-spinner.mat-warn circle{stroke:#f44336}.mat-radio-outer-circle{border-color:rgba(0,0,0,.54)}.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle{border-color:#673ab7}.mat-radio-button.mat-primary .mat-radio-inner-circle,.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-primary:active .mat-radio-persistent-ripple{background-color:#673ab7}.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle{border-color:#ffd740}.mat-radio-button.mat-accent .mat-radio-inner-circle,.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-accent:active .mat-radio-persistent-ripple{background-color:#ffd740}.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle{border-color:#f44336}.mat-radio-button.mat-warn .mat-radio-inner-circle,.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple),.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple,.mat-radio-button.mat-warn:active .mat-radio-persistent-ripple{background-color:#f44336}.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle{border-color:rgba(0,0,0,.38)}.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle{background-color:rgba(0,0,0,.38)}.mat-radio-button.mat-radio-disabled .mat-radio-label-content{color:rgba(0,0,0,.38)}.mat-radio-button .mat-ripple-element{background-color:#000}.mat-select-value{color:rgba(0,0,0,.87)}.mat-select-placeholder{color:rgba(0,0,0,.42)}.mat-select-disabled .mat-select-value{color:rgba(0,0,0,.38)}.mat-select-arrow{color:rgba(0,0,0,.54)}.mat-select-panel{background:#fff}.mat-select-panel:not([class*=mat-elevation-z]){box-shadow:0px 2px 4px -1px rgba(0, 0, 0, 0.2),0px 4px 5px 0px rgba(0, 0, 0, 0.14),0px 1px 10px 0px rgba(0, 0, 0, 0.12)}.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple){background:rgba(0,0,0,.12)}.mat-form-field.mat-focused.mat-primary .mat-select-arrow{color:#673ab7}.mat-form-field.mat-focused.mat-accent .mat-select-arrow{color:#ffd740}.mat-form-field.mat-focused.mat-warn .mat-select-arrow{color:#f44336}.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow{color:#f44336}.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow{color:rgba(0,0,0,.38)}.mat-drawer-container{background-color:#fafafa;color:rgba(0,0,0,.87)}.mat-drawer{background-color:#fff;color:rgba(0,0,0,.87)}.mat-drawer.mat-drawer-push{background-color:#fff}.mat-drawer:not(.mat-drawer-side){box-shadow:0px 8px 10px -5px rgba(0, 0, 0, 0.2),0px 16px 24px 2px rgba(0, 0, 0, 0.14),0px 6px 30px 5px rgba(0, 0, 0, 0.12)}.mat-drawer-side{border-right:solid 1px rgba(0,0,0,.12)}.mat-drawer-side.mat-drawer-end{border-left:solid 1px rgba(0,0,0,.12);border-right:none}[dir=rtl] .mat-drawer-side{border-left:solid 1px rgba(0,0,0,.12);border-right:none}[dir=rtl] .mat-drawer-side.mat-drawer-end{border-left:none;border-right:solid 1px rgba(0,0,0,.12)}.mat-drawer-backdrop.mat-drawer-shown{background-color:rgba(0,0,0,.6)}.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb{background-color:#ffd740}.mat-slide-toggle.mat-checked .mat-slide-toggle-bar{background-color:rgba(255,215,64,.54)}.mat-slide-toggle.mat-checked .mat-ripple-element{background-color:#ffd740}.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb{background-color:#673ab7}.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar{background-color:rgba(103,58,183,.54)}.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element{background-color:#673ab7}.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb{background-color:#f44336}.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar{background-color:rgba(244,67,54,.54)}.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element{background-color:#f44336}.mat-slide-toggle:not(.mat-checked) .mat-ripple-element{background-color:#000}.mat-slide-toggle-thumb{box-shadow:0px 2px 1px -1px rgba(0, 0, 0, 0.2),0px 1px 1px 0px rgba(0, 0, 0, 0.14),0px 1px 3px 0px rgba(0, 0, 0, 0.12);background-color:#fafafa}.mat-slide-toggle-bar{background-color:rgba(0,0,0,.38)}.mat-slider-track-background{background-color:rgba(0,0,0,.26)}.mat-slider.mat-primary .mat-slider-track-fill,.mat-slider.mat-primary .mat-slider-thumb,.mat-slider.mat-primary .mat-slider-thumb-label{background-color:#673ab7}.mat-slider.mat-primary .mat-slider-thumb-label-text{color:#fff}.mat-slider.mat-primary .mat-slider-focus-ring{background-color:rgba(103,58,183,.2)}.mat-slider.mat-accent .mat-slider-track-fill,.mat-slider.mat-accent .mat-slider-thumb,.mat-slider.mat-accent .mat-slider-thumb-label{background-color:#ffd740}.mat-slider.mat-accent .mat-slider-thumb-label-text{color:rgba(0,0,0,.87)}.mat-slider.mat-accent .mat-slider-focus-ring{background-color:rgba(255,215,64,.2)}.mat-slider.mat-warn .mat-slider-track-fill,.mat-slider.mat-warn .mat-slider-thumb,.mat-slider.mat-warn .mat-slider-thumb-label{background-color:#f44336}.mat-slider.mat-warn .mat-slider-thumb-label-text{color:#fff}.mat-slider.mat-warn .mat-slider-focus-ring{background-color:rgba(244,67,54,.2)}.mat-slider:hover .mat-slider-track-background,.mat-slider.cdk-focused .mat-slider-track-background{background-color:rgba(0,0,0,.38)}.mat-slider.mat-slider-disabled .mat-slider-track-background,.mat-slider.mat-slider-disabled .mat-slider-track-fill,.mat-slider.mat-slider-disabled .mat-slider-thumb{background-color:rgba(0,0,0,.26)}.mat-slider.mat-slider-disabled:hover .mat-slider-track-background{background-color:rgba(0,0,0,.26)}.mat-slider.mat-slider-min-value .mat-slider-focus-ring{background-color:rgba(0,0,0,.12)}.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label{background-color:rgba(0,0,0,.87)}.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label{background-color:rgba(0,0,0,.26)}.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb{border-color:rgba(0,0,0,.26);background-color:rgba(0,0,0,0)}.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb,.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb{border-color:rgba(0,0,0,.38)}.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb,.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb{border-color:rgba(0,0,0,.26)}.mat-slider-has-ticks .mat-slider-wrapper::after{border-color:rgba(0,0,0,.7)}.mat-slider-horizontal .mat-slider-ticks{background-image:repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);background-image:-moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent)}.mat-slider-vertical .mat-slider-ticks{background-image:repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent)}.mat-step-header.cdk-keyboard-focused,.mat-step-header.cdk-program-focused,.mat-step-header:hover:not([aria-disabled]),.mat-step-header:hover[aria-disabled=false]{background-color:rgba(0,0,0,.04)}.mat-step-header:hover[aria-disabled=true]{cursor:default}@media(hover: none){.mat-step-header:hover{background:none}}.mat-step-header .mat-step-label,.mat-step-header .mat-step-optional{color:rgba(0,0,0,.54)}.mat-step-header .mat-step-icon{background-color:rgba(0,0,0,.54);color:#fff}.mat-step-header .mat-step-icon-selected,.mat-step-header .mat-step-icon-state-done,.mat-step-header .mat-step-icon-state-edit{background-color:#673ab7;color:#fff}.mat-step-header.mat-accent .mat-step-icon{color:rgba(0,0,0,.87)}.mat-step-header.mat-accent .mat-step-icon-selected,.mat-step-header.mat-accent .mat-step-icon-state-done,.mat-step-header.mat-accent .mat-step-icon-state-edit{background-color:#ffd740;color:rgba(0,0,0,.87)}.mat-step-header.mat-warn .mat-step-icon{color:#fff}.mat-step-header.mat-warn .mat-step-icon-selected,.mat-step-header.mat-warn .mat-step-icon-state-done,.mat-step-header.mat-warn .mat-step-icon-state-edit{background-color:#f44336;color:#fff}.mat-step-header .mat-step-icon-state-error{background-color:rgba(0,0,0,0);color:#f44336}.mat-step-header .mat-step-label.mat-step-label-active{color:rgba(0,0,0,.87)}.mat-step-header .mat-step-label.mat-step-label-error{color:#f44336}.mat-stepper-horizontal,.mat-stepper-vertical{background-color:#fff}.mat-stepper-vertical-line::before{border-left-color:rgba(0,0,0,.12)}.mat-horizontal-stepper-header::before,.mat-horizontal-stepper-header::after,.mat-stepper-horizontal-line{border-top-color:rgba(0,0,0,.12)}.mat-horizontal-stepper-header{height:72px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,.mat-vertical-stepper-header{padding:24px 24px}.mat-stepper-vertical-line::before{top:-16px;bottom:-16px}.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after,.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before{top:36px}.mat-stepper-label-position-bottom .mat-stepper-horizontal-line{top:36px}.mat-sort-header-arrow{color:#757575}.mat-tab-nav-bar,.mat-tab-header{border-bottom:1px solid rgba(0,0,0,.12)}.mat-tab-group-inverted-header .mat-tab-nav-bar,.mat-tab-group-inverted-header .mat-tab-header{border-top:1px solid rgba(0,0,0,.12);border-bottom:none}.mat-tab-label,.mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-label.mat-tab-disabled,.mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.38)}.mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.87)}.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:rgba(0,0,0,.38)}.mat-tab-group[class*=mat-background-]>.mat-tab-header,.mat-tab-nav-bar[class*=mat-background-]{border-bottom:none;border-top:none}.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(209,196,233,.3)}.mat-tab-group.mat-primary .mat-ink-bar,.mat-tab-nav-bar.mat-primary .mat-ink-bar{background-color:#673ab7}.mat-tab-group.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.mat-tab-group.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-header .mat-ink-bar,.mat-tab-nav-bar.mat-primary.mat-background-primary>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(255,229,127,.3)}.mat-tab-group.mat-accent .mat-ink-bar,.mat-tab-nav-bar.mat-accent .mat-ink-bar{background-color:#ffd740}.mat-tab-group.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.mat-tab-group.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-header .mat-ink-bar,.mat-tab-nav-bar.mat-accent.mat-background-accent>.mat-tab-link-container .mat-ink-bar{background-color:rgba(0,0,0,.87)}.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-warn .mat-ink-bar,.mat-tab-nav-bar.mat-warn .mat-ink-bar{background-color:#f44336}.mat-tab-group.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.mat-tab-group.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-header .mat-ink-bar,.mat-tab-nav-bar.mat-warn.mat-background-warn>.mat-tab-link-container .mat-ink-bar{background-color:#fff}.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(209,196,233,.3)}.mat-tab-group.mat-background-primary>.mat-tab-header,.mat-tab-group.mat-background-primary>.mat-tab-link-container,.mat-tab-group.mat-background-primary>.mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination{background-color:#673ab7}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label,.mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link{color:#fff}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-group.mat-background-primary>.mat-tab-header .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-focus-indicator::before{border-color:#fff}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.mat-tab-group.mat-background-primary>.mat-tab-header .mat-ripple-element,.mat-tab-group.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.mat-tab-group.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header .mat-ripple-element,.mat-tab-nav-bar.mat-background-primary>.mat-tab-link-container .mat-ripple-element,.mat-tab-nav-bar.mat-background-primary>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(255,229,127,.3)}.mat-tab-group.mat-background-accent>.mat-tab-header,.mat-tab-group.mat-background-accent>.mat-tab-link-container,.mat-tab-group.mat-background-accent>.mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination{background-color:#ffd740}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label,.mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link{color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:rgba(0,0,0,.4)}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-group.mat-background-accent>.mat-tab-header .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-focus-indicator::before{border-color:rgba(0,0,0,.87)}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#000;opacity:.4}.mat-tab-group.mat-background-accent>.mat-tab-header .mat-ripple-element,.mat-tab-group.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.mat-tab-group.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header .mat-ripple-element,.mat-tab-nav-bar.mat-background-accent>.mat-tab-link-container .mat-ripple-element,.mat-tab-nav-bar.mat-background-accent>.mat-tab-header-pagination .mat-ripple-element{background-color:#000;opacity:.12}.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled){background-color:rgba(255,205,210,.3)}.mat-tab-group.mat-background-warn>.mat-tab-header,.mat-tab-group.mat-background-warn>.mat-tab-link-container,.mat-tab-group.mat-background-warn>.mat-tab-header-pagination,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination{background-color:#f44336}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label,.mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link{color:#fff}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-label.mat-tab-disabled,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-tab-link.mat-tab-disabled{color:rgba(255,255,255,.4)}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-group.mat-background-warn>.mat-tab-header .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-focus-indicator::before,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-focus-indicator::before{border-color:#fff}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-group.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron{border-color:#fff;opacity:.4}.mat-tab-group.mat-background-warn>.mat-tab-header .mat-ripple-element,.mat-tab-group.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.mat-tab-group.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header .mat-ripple-element,.mat-tab-nav-bar.mat-background-warn>.mat-tab-link-container .mat-ripple-element,.mat-tab-nav-bar.mat-background-warn>.mat-tab-header-pagination .mat-ripple-element{background-color:#fff;opacity:.12}.mat-toolbar{background:#f5f5f5;color:rgba(0,0,0,.87)}.mat-toolbar.mat-primary{background:#673ab7;color:#fff}.mat-toolbar.mat-accent{background:#ffd740;color:rgba(0,0,0,.87)}.mat-toolbar.mat-warn{background:#f44336;color:#fff}.mat-toolbar .mat-form-field-underline,.mat-toolbar .mat-form-field-ripple,.mat-toolbar .mat-focused .mat-form-field-ripple{background-color:currentColor}.mat-toolbar .mat-form-field-label,.mat-toolbar .mat-focused .mat-form-field-label,.mat-toolbar .mat-select-value,.mat-toolbar .mat-select-arrow,.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow{color:inherit}.mat-toolbar .mat-input-element{caret-color:currentColor}.mat-toolbar-multiple-rows{min-height:64px}.mat-toolbar-row,.mat-toolbar-single-row{height:64px}@media(max-width: 599px){.mat-toolbar-multiple-rows{min-height:56px}.mat-toolbar-row,.mat-toolbar-single-row{height:56px}}.mat-tooltip{background:rgba(97,97,97,.9)}.mat-tree{background:#fff}.mat-tree-node,.mat-nested-tree-node{color:rgba(0,0,0,.87)}.mat-tree-node{min-height:48px}.mat-snack-bar-container{color:rgba(255,255,255,.7);background:#323232;box-shadow:0px 3px 5px -1px rgba(0, 0, 0, 0.2),0px 6px 10px 0px rgba(0, 0, 0, 0.14),0px 1px 18px 0px rgba(0, 0, 0, 0.12)}.mat-simple-snackbar-action{color:#ffd740}
html {
  height: 100%;
  scrollbar-width: thin;
}
@-moz-document url-prefix() {
  html {
    scrollbar-width: thin;
  }
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  background-color: #f5f5f5;
  color: #222222;
  padding: 55px 0 72px;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  position: relative;
}
.spinner-container .mat-progress-spinner circle {
  stroke: #00a6fb; /* Replace with your custom color */
}
p {
  font-size: 18px;
}
h1 {
  font-size: 26px;
  font-weight: 600;
  color: #000000;
}
h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000000;
}
h3 {
  font-size: 16px;
  font-weight: 600;
  color: #222222;
}
h4 {
  font-size: 14px;
  color: #222222;
}
h5 {
  font-size: 13px;
  color: #222222;
}
h6 {
  font-size: 12px;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.angular-editor .angular-editor-wrapper .angular-editor-textarea ul,
.post-title ul,.post-text ul,.post-tagline ul {
  list-style: revert;
  padding: revert;
}
.date-align-end {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: 16px;
}
hr {
  margin: 24px 0;
  border-color: #f1f3f6;
  border-width: 1px;
}
a {
  color: #006bd0;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  text-decoration: underline;
}
a:hover {
  color: #006bd0;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
a:focus {
  outline: none;
}
.mdb-5 {
  margin-bottom: 5px;
}
.mdb-15 {
  margin-bottom: 15px;
}
.mdb-20 {
  margin-bottom: 20px;
}
.mdb-30 {
  margin-bottom: 30px;
}
.pl-30 {
  padding-left: 10px;
  padding-right: 0;
}
.marginb0 {
  margin-bottom: 0 !important;
}
.btn-width {
  min-width: 134px;
}
.btn.focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}
input[type="date"]::-moz-clear {
  display: none;
}
input[type="text"]::-ms-clear {
  display: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
.form-control,
select {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #ffffff;
  min-height: 50px;
  padding: 10px 22px;
  color: #000;
}
.form-control.disabled{
  cursor: default;
  pointer-events: none;
  background-color: #0000000a;
}
.disabled-button{
  cursor: default;
  pointer-events: none;
  background-color: #0000000a;
}
#new-pw.form-control,#confirmPassword.form-control,#password.form-control {
  padding: 10px 55px 10px 22px;
}
#cPassword.form-control{
  padding: 10px 142px 10px 22px;
}
::-ms-reveal {
  display: none;
}
select.form-control {
  padding-right: 33px;
  z-index: 111;
  position: relative;
  background: transparent;
  background-image: url('select-arrow.1c4a0a69ef356dba.svg');
  background-position: center right 20px;
  background-repeat: no-repeat;
}
body .selectbox:after {
  display: none;
}
select.form-control:focus,
select.form-control.is-invalid {
  background: #fff;
  z-index: inherit;
}
select.form-control.ng-touched + .form-control-placeholder,
select.form-control.edit-value + .form-control-placeholder {
  z-index: 999;
}
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
select:focus {
  outline: 0;
}
.form-control:focus {
  border-color: #eaa529;
  box-shadow: none;
  color: #222222;
}
.mt-12 {
  margin-top: -12px;
}
.btn.disabled,
.btn:disabled {
  opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
  background-color: transparent;
}
.view-profile .form-control:disabled {
  color: gray;
  cursor: not-allowed;
}
select.form-control:not([size]):not([multiple]) {
  height: 50px;
}
select::-ms-expand {
  display: none;
}
select.form-control {
  -webkit-appearance: none;
  appearance: none;
}
.select-option {
  position: relative;
}
.select-option:before {
  content: "\f107";
  font-family: fontawesome;
  border: transparent;
  color: #6c6c6c;
  top: 8px;
  right: 18px;
  position: absolute;
  font-size: 23px;
  font-weight: 200;
}
/*custom button*/
.btn-custom {
  border-radius: 4px;
  background-color: #00a6fb;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  color: #fff;
  font-size: 18px;
  height: 45px;
}
.btn-disable {
  background-color: #9da8b7 !important;
  opacity: 1 !important;
  color: white !important;
  border: 1px solid #9da8b7 !important;
}
.btn-custom.btn-small {
  font-size: 14px;
  height: 40px;
}
body .btn:disabled:before {
  content: none;
}
.btn-gray {
  background: #767f8c;
}
/*animate button*/
.btn-animate {
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s;
  position: relative;
  border: none;
  overflow: hidden;
}
.btn-animate a {
  color: rgba(51, 51, 51, 1);
  text-decoration: none;
  display: block;
}
.btn-animate::before,
.button16::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.25);
  transition: all 0.3s;
  transform: translate(-100%, 0);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-animate::after {
  transition-delay: 0.2s;
}
.btn-animate:hover::before,
.btn-animate:hover::after {
  transform: translate(0, 0);
}
.btn-sml {
  font-size: 14px;
  height: 34px;
  border-radius: 4px;
  padding: 0 30px;
}
.fullview-grid {
  padding-left: 133px;
}
.dropdown {
  display: inline-block;
}

/* input number*/
.custom-number {
  position: relative;
  max-height: 30px;
  border: 1px solid #68d7ff;
  border-radius: 5px;
  padding: 2px 8px;
  background: #fff;
}
.custom-number.disabled {
  border-color: #9da8b7;
}
.custom-number div {
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  display: flex;
  flex-direction: column;
  height: 30px;
}
.custom-number button {
  background: transparent;
  padding: 0;
  line-height: 0;
  border: 0;
  position: absolute;
  right: 6px;
  top: -2px;
  cursor: pointer;
  font-size: 17px;
  color: rgba(108, 108, 108, 0.8);
  width: 10px;
}
.custom-number button.sub {
  bottom: 1px;
  top: auto;
}
.custom-number input {
  width: 100%;
  border: none;
  text-align: center;
  padding-right: 10px;
}
.custom-number label {
  color: #0b87ca;
}

/* number spinner*/
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
/*input[type="number"]:hover,
input[type="number"]:focus {
    -moz-appearance: number-input;
}*/
/* scrollbar*/
::-webkit-file-upload-button {
  cursor: pointer;
}
::-webkit-scrollbar {
  height: 2px;
  width: 4px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
  border-radius: 50px;
}
::-webkit-scrollbar-thumb {
  background: #9da8b7;
  border-radius: 50px;
  margin-top: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9da8b7;
}
::-webkit-scrollbar-thumb:horizontal {
  background: #9da8b7;
  border-radius: 10px;
}
/*blank-btn*/
.blank-btn {
  background: transparent;
  border: 1px solid #00a6fb;
  color: #00a6fb;
  box-shadow: none;
  position: relative;
}
.blank-btn:hover {
  background-color: #00a6fb;
  color: #fff;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}
.blank-disable {
  border: 2px solid #9da8b7;
  color: #9da8b7;
}
.blank-disable:hover {
  background: transparent;
  color: #9da8b7;
}
::placeholder {
  color: #6c6c6c;
  font-size: 16px;
}
.form-control::placeholder {
  font-size: 14px;
}
.search-bar input::placeholder {
  color: #767f8c;
  font-size: 14px;
}
.add-des textarea::placeholder {
  color: #6c6c6c;
  font-size: 14px;
}
.dropdown-menu a.dropdown-item {
  border-bottom: 1px solid #ebebeb;
  font-size: 14px;
  color: #222222;
  letter-spacing: 0;
  text-decoration: none;
}
.dropdown-menu a.dropdown-item.disabled {
  pointer-events: none;
  cursor: default;
  color: #6c757d;
}
.dropdown-menu a.dropdown-item.disabled:hover {
  color: #6c757d;
}
.dropdown-menu a.dropdown-item:last-child {
  border: none;
}
.dropdown-item a {
  color: #222;
}
/* Navbar */
.navbar-brand {
  padding: 0;
}
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}
.navbar-toggler span {
  display: block;
  background-color: #444;
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  transform: rotate(0deg);
  position: relative;
  left: 0;
  opacity: 1;
}
.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: transform 0.35s ease-in-out;
  transform: rotate(0deg);
}
.navbar-toggler span:nth-child(2) {
  width: 20px;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: relative;
  left: auto;
  top: 10px;
  transform: rotate(135deg);
  opacity: 0.9;
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: relative;
  left: auto;
  top: -13px;
  transform: rotate(-135deg);
  opacity: 0.9;
}
.navbar-expand-lg .navbar-collapse {
  justify-content: center;
  position: relative;
}
/* End */
/* checkbox */
.custom-checkbox {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  user-select: none;
  font-size: 15px;
  color: #767f8c;
  line-height: 19px;
  margin: 0;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  border: 1px solid #d8dfe9;
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: #eaa529;
  border-color: #eaa529;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox .checkmark:after {
  left: 6px;
  top: 1px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-radio {
  display: block;
  position: relative;
  padding-left: 33px;
  margin-bottom: 24px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-size: 14px;
  color: #222222;
  line-height: initial;
}
.custom-radio > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark-radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
}
.custom-radio input:checked ~ .checkmark-radio:before {
  background-color: #eaa529;
  border-color: #eaa529;
  opacity: 1;
  transform: scale(1);
}
.checkmark-radio:after {
  content: "";
  position: absolute;
}
.custom-radio .checkmark-radio:after {
  left: 7px;
  top: 2px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-radio input[type="checkbox"] ~ .checkmark-radio {
  border-radius: 4px;
}
.custom-radio input[type="checkbox"]:checked ~ .checkmark-radio {
  background-color: #eaa529;
  border-color: #eaa529;
}
.custom-radio input[type="radio"]:checked ~ .checkmark-radio {
  background-color: transparent;
  border-color: #d9d9d9;
}
.custom-radio input[type="radio"] ~ .checkmark-radio:after {
  border: none;
  background: #eaa529;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 4px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
}
.custom-radio input[type="radio"] + .checkmark-radio:after {
  opacity: 0;
  transform: scale(0);
}
.custom-radio input[type="radio"]:checked + .checkmark-radio:after {
  opacity: 1;
  transform: scale(1);
}
/* navbar*/
.navbar {
  background-color: #fff;
  min-height: 55px;
  background: #ffffff;
  box-shadow: 0 1px 0 0 rgba(34, 34, 34, 0.06);
  z-index: 999;
  padding-left: 0;
  padding-right: 0;
  position: fixed;
  width: 100%;
  top: 0;
}
.navbar-nav {
  align-items: center;
}
.navbar .navbar-nav .nav-link {
  text-decoration: none;
  color: #222222;
  font-size: 14px;
  line-height: 15px;
  padding: 5px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.navbar .navbar-nav li:last-child .nav-link {
  padding-right: 6px;
}
.navbar .navbar-nav .nav-link.btn-addcomm {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  height: 35px;
  padding: 10px;
}

.navbar .navbar-nav .nav-link.btn-addcomm span {
  font-size: 25px;
  margin-right: 7px;
}
.filter-dropdown .btn {
  display: flex;
  background-color: #ebebeb;
  border: transparent;
  border-radius: 8px;
  color: #222222;
  font-size: 13px;
  line-height: 16px;
  min-height: 32px;
  padding-right: 17px;
}
.navbar-nav .dropdown-toggle::after {
  margin-top: -6px;
}
.navbar ul li span.short-name,
.responsive-nav span.short-name {
  background: #d8d8d8;
  border: 2px solid #e8e8e8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  color: #2849a3;
  font-weight: 600;
}
.nav-notification > a {
  position: relative;
}
.nav-notification > a:not([data-ignore="true"]):before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: #9da8b7;
  position: absolute;
  right: 0;
  top: 8px;
}
.nav-notification a.dropdown-toggle:after {
  content: none;
}
.nav-notification a span {
  background-color: #ea1c63;
  border-radius: 50%;
  /*height: 20px;
  width: 20px;*/
  top: 0px;
  display: flex;
  z-index: 9;
  color: #fff;
  position: absolute;
  font-size: 10px;
  justify-content: center;
  font-weight: 600;
  left: 35px;
  align-items: center;
  padding: 0px 5px;
}
.list-d-flex a span {
  left: 7px;
}
.dropdown-toggle::after {
  border-style: solid;
  border-color: #222222;
  vertical-align: 0.08em;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
}
.profile-pic {
  object-fit: cover;
  width: 30px;
  height: 30px;
  background-color: #d8d8d8;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  margin-right: 10px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  right: -11px;
  border-radius: 6px;
  left: auto;
  margin-top: 5px;
  width: 147px;
  padding: 0;
}

.dropdown-menu {
  margin-top: 5px;
  padding: 0;
  animation-name: slideIn;
  top: 100% !important;
  box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  -webkit-box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  -moz-box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  border: 1px solid #ebebeb;
  animation-duration: 0.3s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
  z-index: 99;
}
.datepick ngb-datepicker.dropdown-menu {
  top: auto !important;
  bottom: 50px;
}
.datepick-poll ngb-datepicker.dropdown-menu {
  top: auto !important;
  bottom: 12px;
}
/*.dropdown-menu{box-shadow: 0 1px 10px 3px rgba(64,64,64,0.14);-webkit-box-shadow: 0 1px 10px 3px rgba(64,64,64,0.14);-moz-box-shadow: 0 1px 10px 3px rgba(64,64,64,0.14);}*/
/*.dropdown-menu:after {
  content: "";
  border-width: 5px;
  border: 6px solid transparent;
  border-bottom: 6px solid #fff;
  top: -11px;
  position: absolute;
  align-items: center;
  text-align: center;
  right: 8px;
}
.dropdown-menu:before {
  content: "";
  border-color: transparent transparent #ebebeb transparent;
  border-width: 5px;
  top: -11px;
  right: 9px;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}*/
/*.dropdown-menu:before {
    content: "";
    border-color: transparent transparent #f5f3f3 transparent;
    border-width: 11px;
    top: -23px;
    right: 6px;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top-width: 11px;
    border-left-width: 8px;
    border-right-width: 8px;
}
.dropdown-menu:after {
    content: "";
    border-width: 5px;
    border: 6px solid transparent;
    border-bottom: 12px solid #fff;
    top: -18px;
    position: absolute;
    align-items: center;
    text-align: center;
    right: 8px;
}*/
.dropdown-menu:after {
  content: "";
  border-width: 5px;
  border: 6px solid transparent;
  border-bottom: 6px solid #fff;
  top: -14px;
  position: absolute;
  align-items: center;
  text-align: center;
  right: 8px;
  border-bottom-width: 10px;
}
.dropdown-menu:before {
  content: "";
  border-color: transparent transparent #ebebeb transparent;
  border-width: 5px;
  position: absolute;
  height: 0;
  border-style: solid;
  border-bottom-width: 10px;
  top: -16px;
  right: 9px;
}
.dropdown-item {
  font-size: 14px;
  word-break: break-word;
  white-space: normal;
  padding: 10px 15px;
  border-bottom: 1.08px solid #f1f3f6;
  margin: 0 auto;
}
.dropdown-item:last-child {
  border: none;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
  color: inherit;
}
/* popup*/
/*.signinup-popup{height: 100vh;}*/
.signinup-popup .facebook-login,
.signinup-popup .google-plus-login {
  font-size: 16px;
  font-weight: 300;
  margin-right: 17px;
  border: 1px solid #4267b2;
  padding: 0 11px;
  background-color: #4267b2;
  width: 246px;
  height: 51px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  color: #fff !important;
  text-align: center;
  line-height: 30px;
  display: flex;
  align-items: center;
}
.signinup-popup .facebook-login img,
.signinup-popup .google-plus-login img {
  float: left;
}
/*.signinup-popup .facebook-login span{display: flex;justify-content: center;text-align: center;width: 100%;}*/
.signinup-popup .modal-body {
  padding: 30px 40px;  
}
.signinup-popup .modal-body > h2 {
  margin: 11px 0 0;
  line-height: 36px;
}
.signinup-popup .modal-body > p {
  color: #6c6c6c;
  font-size: 16px;
  line-height: 22px;
  margin: 10px 0 0; /* cursor: pointer; */
}

/*.signinup-popup .facebook-login:hover{text-decoration:none;background-color: transparent;color: #4267B2 !important;transition: all .3s ease 0s;-webkit-transition: all .3s ease 0s;-moz-transition: all .3s ease 0s;}*/
.signinup-popup .facebook-login span,
.signinup-popup .google-plus-login > span {
  background: url('fb.07a1fd6820c79093.png') no-repeat;
  width: 50px;
  height: 35px;
  background-position: 0 0;
  display: flex;
  justify-content: center;
}
/*.signinup-popup .facebook-login:hover span{ background-position: 0 -39px;transition: all .3s ease 0s;-webkit-transition: all .3s ease 0s;-moz-transition: all .3s ease 0s;}*/
.signinup-popup .facebook-login:hover,
.signinup-popup .google-plus-login:hover {
  text-decoration: none;
  box-shadow: 3px 7px 17px 2px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 3px 7px 17px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
}
.social-login {
  display: flex;
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 24px;
}
.signinup-popup .google-plus-login {
  background-color: #4285f4;
  border-color: #4285f4;
}
.signinup-popup .google-plus-login span {
  background: #fff url('google-plus.5d947fea68368aa3.png') no-repeat;
  background-position: 12px 13px;
  align-items: center;
  text-align: center;
  height: 47px;
  width: 47px;
  padding: 20px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-right: 30px;
}
.signinup-popup .google-plus-login {
  height: 100%;
  padding: 0;
}
/*.signinup-popup .google-plus-login:hover span{ background-position: 12px -29px;transition: all .3s ease 0s;-webkit-transition: all .3s ease 0s;-moz-transition: all .3s ease 0s;}
.signinup-popup .google-plus-login:hover {text-decoration:none;background-color: #317af3;}*/

/* form-group css*/
.signinup-popup .form-group,
.profile-tab .form-group,
.new-poll .form-group,
.float-label .form-group {
  position: relative;
  margin-bottom: 17px;
}

.form-control-placeholder {
  position: absolute;
  top: 2px;
  left: 15px;
  padding: 10px 8px 0;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  background: #fff;
  font-size: 16px;
  color: #6c6c6c;
}
.form-control-placeholder .required::after{
  content: '*';
  color: rgb(213, 4, 4);
}
.autofill-box .form-control-placeholder {
  color: #6c6c6c;
}

.edit-value + .form-control-placeholder,
.autofill-box .form-control-placeholder,
.form-control:focus + .form-control-placeholder,
.form-control.ng-touched + .form-control-placeholder,
ng-select.form-control.ng-touched + .form-control-placeholder,
.error-msg .form-control.ng-untouched + .form-control-placeholder,
.form-control.ng-touched
  + ngb-datepicker.dropdown-menu
  + .form-control-placeholder,
.create-comm-box
  .form-control
  + ngb-typeahead-window.dropdown-menu
  + .form-control-placeholder {
  padding-top: 0;
  transform: translate3d(0, -76%, 0);
  opacity: 1;
  color: #6c6c6c;
  font-size: 12px;
}

/*focus*/
.form-control:focus + .form-control-placeholder {
  padding-top: 0;
  transform: translate3d(0, -76%, 0);
  opacity: 1;
  font-size: 12px;
  color: #ca8500;
  border-width: 1.5px;
  transition: all 0.1s ease 0s;
  -webkit-transition: all 0.1s ease 0s;
  -moz-transition: all 0.1s ease 0s;
}
.form-group .form-control:focus {
  border: 1.5px solid #eaa529;
}

.custom-number.error-msg {
  border-color: #d83024;
}
.custom-number.error-msg,
.error-msg.form-control {
  border-color: #d83024;
  border-width: 2px;
}

.form-control.ng-touched.error-msg + .form-control-placeholder,
.error-msg .form-control:focus + .form-control-placeholder,
.error-msg
  .form-control.ng-touched
  + ngb-datepicker.dropdown-menu
  + .form-control-placeholder,
.error-msg.autofill-box
  .form-control
  + .dropdown-menu
  + .form-control-placeholder,
.error-msg
  .form-control
  + ngb-typeahead-window.dropdown-menu
  + .form-control-placeholder {
  color: #d83024;
  font-weight: 600;
}
.error-msg .vote-option label,
.error-msg .rating-box {
  border: 1.5px solid #d83024;
}

.login-bg .signinup-popup .modal-dialog {
  min-height: calc(100vh - 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: auto;
  margin: 15px auto;
  height: inherit;
  overflow-y: hidden;
}
.signinup-popup .modal-content {
  border: none;
  margin: 0 auto;
  border: none;
  box-shadow: 0 1px 10px 3px rgba(64, 64, 64, 0.11);
}
.signinup-popup .form-group p {
  font-size: 12px;
  color: #6c6c6c;
  line-height: 12px;
  margin: 12px 0 20px;
}
.signinup-popup .btn-custom {
  min-width: 134px;
  min-height: 45px;
  float: right;
  margin: 18px 0 12px;
  font-size: 18px;
}
.signinup-popup .btn-custom.register-btn {
  margin: 17px 0 0;
}
.signinup-popup .penalist-register-btn {
  margin: 35px 0 0;
}
.signinup-popup .modal-dialog,
.message-popup .modal-dialog {
  max-width: 587px;
  min-width: 587px;
  min-height: calc(100vh - 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 15px auto;
  height: inherit;
}
.signinup-popup.member-download-all .modal-dialog {
  min-height: auto;
}
.chkmark {
  font-size: 15px;
  color: #767f8c;
  margin-left: 10px;
}
.forgot-password,
.login-btn a {
  color: #006bd0;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.login-btn p a {
  margin-left: 7px;
}
.login-bottom {
  margin-top: 23px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.login-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 45px 0 0;
}
.recover-bottom {
  margin: 40px 0 15px;
}
.login-btn p {
  margin: 0;
}
.login-btn .btn-custom {
  margin-top: 0;
}
.signinup-popup h6 {
  color: #6c6c6c;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}
.signinup-popup h6.font-lg {
  font-size: 18px;
  line-height: 26px;
}
.change-pw.signinup-popup .modal-body > p {
  margin-bottom: 22px;
}
.change-pw .modal-body {
  width: 100%;
  float: left;
}
.signinup-popup h6.entercode-msg {
  margin-top: 64px;
}
.signinup-popup .resend-otp {
  display: flex;
  justify-content: flex-end;
}
.signinup-popup .confirm-msg {
  margin-bottom: 32px;
}
.signinup-popup .modal-body p.recover-alert {
  margin-bottom: 32px;
  border-bottom: 1px solid #f1f3f6;
  padding: 0 0 22px;
}
.signinup-popup p.emailid-msg {
  margin-bottom: 20px;
}
button.close,
.message-popup button.close {
  position: absolute;
  right: 15px;
  top: 20px;
  padding: 0;
  border: none;
  z-index: 99;
  opacity: 1;
  line-height: 15px;
  outline: 0;
}
button.close span {
  font-weight: 300;
  font-size: 40px;
  color: #212529;
  opacity: 1;
}
button.close:hover {
  opacity: 0.5;
}
.modal-backdrop.show {
  opacity: 0.6;
}
.input-pw a {
  position: absolute;
  right: 24px;
  top: 14px;
  z-index: 999;
}
.root-popup.modal {
  background: linear-gradient(180deg, #06a8ff 0%, #4f507a 100%);
}
.login-btn p {
  color: #767f8c;
  font-size: 16px;
  line-height: 18px;
}
.error-msg .form-control:focus,
.error-msg .form-control {
  border-color: #d83024;
  /*color: #d83024;*/
  border-width: 2px;
}
.error-msg select.form-control option {
  color: #222;
}
.error-msg select.form-control option:first-child {
  color: #d83024;
}
.error-msg .form-control:focus + .form-control-placeholder,
.error-msg .form-control.ng-touched + .form-control-placeholder,
.error-msg .form-control.ng-untouched + .form-control-placeholder,
.error-msg .autofill-box .form-control-placeholder {
  color: #d83024 !important;
  font-weight: 600;
  border: none;
}
.signinup-popup p.error-text,
.comm-basicinfo p.error-text,
p.error-text,
.border-box p.error-text {
  color: #d83024;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  display: flex;
  align-items: flex-start;
}
.comm-basicinfo p.error-text,
p.error-text,
.border-box p.error-text {
    margin: 12px 0 16px !important;
}
.member-date-time p.error-text{
  margin: 0 !important;
}
.userInfoContainer p.error-text {
  margin: 6px 0 6px !important;
}
.custom-tab p.error-text {
  margin-top: 10px;
}
.comm-basicinfo p.error-text {
  margin: 10px 0;
}
.border-box p.error-text {
  margin-top: 10px;
}
p.warning-msg img {
  margin-right: 4px;
  position: relative !important;
}
.signinup-popup p.warning-msg {
  margin-left: 0;
}
.sendlink {
  margin: 30px 0 0;
}
.signinup-popup .sendlink .btn-custom {
  margin-bottom: 0;
}
.message-popup {
  border: none;
  background-color: #ea1c63;
  color: #fff;
  height: 100%;
  padding: 85px 0 150px 146px;
  border-radius: 4px;
  position: relative;
  height: 514px;
  min-width: 960px;
  margin: 0 auto;
}
.message-popup.show .modal-dialog {
  max-width: 959px;
}
.message-popup h2 {
  font-size: 34px;
  font-weight: 600;
  margin: 35px 0 24px;
  color: #fff;
}
.message-popup p {
  font-size: 20px;
  line-height: 20px;
}
.message-popup button.close span {
  color: #fff;
}
.message-popup .modal-body {
  padding: 0;
}
.message-popup:after {
  content: "";
  background: url('bg-plus.e9ad85228cdeec94.svg') no-repeat;
  position: absolute;
  bottom: 83px;
  z-index: 9999;
  width: 81px;
  height: 116px;
  right: 91px;
}
.message-popup.success-popup {
  background-color: #00a6fb;
}
.message-popup.success-popup .btn-custom {
  background-color: #ffffff;
  width: 134px;
  color: #00a6fb;
  height: 45px;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.message-popup.success-popup:after {
  background: url('blue-plus.a0b047c9e5334a37.svg') no-repeat;
}
.message-popup.success-popup a {
  background: #fff;
  padding: 10px;
  color: #00a6fb;
  font-size: 18px;
  margin-top: 50px;
  display: inline-block;
  border-radius: 4px;
  min-width: 134px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

/*white-bg*/
body.white-bg {
  background: #fff;
}
/*verification*/
section.pan-verification {
  width: 90%;
  margin: 80px auto 0;
}
section.pan-verification h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 38px;
}
.pannumber-box {
  /*  width: 970px;*/
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 1px 10px 3px rgba(64, 64, 64, 0.11);
  padding: 50px;
  position: relative;
  margin: 0;
  overflow: hidden;
}
/*.otp-verify .next-btn{width: 970px;}*/
.pannumber-box p {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 46px;
}
.pannumber-box ul {
  display: flex;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.pannumber-box ul li input[type="checkbox"],
.likedis-btn input[type="radio"],
.vote-box input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.pannumber-box ul li {
  margin: 0 20px 20px 0;
  height: 46px;
}

.ds-rdo-btn {
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  text-align: center;
  font-size: 10px;
  min-width: 120px;
  height: 23px;
  -webkit-user-select: none;
  user-select: none;
}
.ds-rdo-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.ds-rdo-checkmark {
  top: 0;
  left: 0;
  height: 46px;
  border: 2px solid #d9d9d9;
  border-radius: 22.5px;
  background-color: #f9f9f9;
  padding: 0 30px;
  font-size: 17px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-weight: 400;
  white-space: nowrap;
  color: #767f8c;
}
.ds-rdo-btn input:checked ~ .ds-rdo-checkmark {
  color: #eaa529;
  border-color: #eaa529;
  background-color: #fff;
}
.ds-rdo-btn:after {
  content: "";
  position: absolute;
  display: none;
}
.ds-rdo-btn input:checked ~ .ds-rdo-checkmark:after {
  display: block;
}
.ds-rdo-btn .ds-rdo-checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.pannumber-box:before {
  /* content: "";
  background-color: #00a6fb;
  border-radius: 5px 0 0 0;
  width: 250px;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;*/
}
.next-btn {
  justify-content: flex-end;
  display: flex;
  margin: 30px 10px 0 0;
  align-items: center;
}
.next-btn span {
  color: #222222;
  font-size: 24px;
  margin-right: 22px;
}
.next-btn .btn-custom {
  line-height: 0;
  padding: 15px 20px;
}
.otp-verify ul {
  justify-content: inherit;
}
section.pan-verification.otp-verify h1 {
  margin-bottom: 13px;
}
section.pan-verification.otp-verify p {
  margin: 0 0 40px;
  color: #222222;
}
section.pan-verification.otp-verify h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}
section.pan-verification.otp-verify .pannumber-box p {
  color: #6c6c6c;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 50px;
}
.pannumber-box .custom-progressbar {
  position: absolute;
  top: -6px;
  left: -1px;
  width: 100%;
}
.pannumber-box .custom-progressbar .progress {
  height: 5px;
  border-radius: 0;
  background: #fff;
}
.pannumber-box .custom-progressbar .progress-bar {
  border-radius: 0;
}

section.otp-verify .btn-custom {
  width: 134px;
  font-weight: 500;
}
/*.pannumber-box input{box-sizing: border-box;height: 61px;width: 56px;border: 2px solid #D9D9D9;border-radius: 4px;background-color: #F9F9F9;font-size: 20px;padding: 5px;
  text-align: center;}*/
.pannumber-box li.enable input {
  background-color: #fff;
}
.pannumber-box li.active input {
  border: 2px solid #eaa529;
  background-color: #fff;
}

/*homepage*/
.slider {
  background: #222;
  min-height: 286px;
  color: #ffff;
}
.slider .container {
  justify-content: space-between;
  display: flex;
  align-items: center;
}
.slider h2 {
  font-size: 24px;
  font-weight: 600;
  align-items: center;
  display: flex;
}
.slider h2 img {
  margin-right: 22px;
}
.post-body {
  margin-top: 20px;
}
.header-inner {
  display: flex;
  align-items: center;
}
.search-section {
  position: relative;
  width: calc(100% - 305px);
}
.search-section.hide-search:after {
  display: none;
}
.search-section:after {
  content: "";
  background: url('search.d6e4b0ee67e81a01.svg');
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 14px;
  justify-content: center;
  cursor: pointer;
}
.search-section input {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  color: #767f8c;
  font-size: 14px;
  padding: 10px 47px 10px 20px;
}
.header-part .row {
  align-items: center;
}
.card-header {
  padding: 0;
  border: none;
  box-shadow: none;
  background-color: transparent;
}
.card {
  height: 35px;
  width: 143px;
  border: 1px solid #e8e8e8;
  border-radius: 22.5px;
  background-color: #ffffff;
}
.header-part .nav-tabs .nav-item.show .nav-link,
.header-part .nav-tabs .nav-link.active {
  border-radius: 22.5px;
  background-color: #00a6fb;
  color: #fff;
}
.header-part .card {
  margin-left: 40px;
}
.header-part .card.tab-card {
  background-color: transparent;
  border: none;
  width: auto;
}
.header-part .card.tab-card ul {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
}
.header-part .nav-tabs .nav-link {
  border: none;
  padding: 0 18px;
  line-height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  color: #6c6c6c;
  transition: 0.18s ease-in all;
  -webkit-transition: 0.18s ease-in all;
  -moz-transition: 0.18s ease-in all;
  text-decoration: none;
  cursor: pointer;
}
.header-part .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none;
}
.shortby-dropdown {
  margin-left: 25px;
}
.shortby-dropdown button {
  color: #6c6c6c;
  background: transparent;
  border: transparent;
  padding: 0;
  font-size: 14px;
}
.shortby-dropdown button span {
  color: #222;
}
.shortby-dropdown .dropdown-toggle::after {
  color: #222;
  top: 7px;
  position: absolute;
  font-size: 15px;
}

.about-community,
.community-tab {
  width: 100%;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  padding: 20px 25px;
  position: relative;
}
.about-community h3 {
  margin-bottom: 5px;
  line-height: 22px;
}
.about-community h5 {
  font-weight: 600;
  width: 100%;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}
.about-community p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 20px;
  word-break: keep-all;
  text-align: justify;
}

.overflow-about-community p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 20px;
  word-break: keep-all;
  text-align: justify;
  overflow-wrap: break-word;
}

.about-community h6 {
  color: #767f8c;
  font-size: 12px;
  letter-spacing: 0.2px;
  line-height: 18px;
  margin: 0;
}
.about-community label {
  color: #000000;
  line-height: 17px;
  margin-bottom: 10px;
}
.about-community ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-community > ul li {
  line-height: 18px;
  margin-bottom: 5px;
}
.about-community ul li:last-child {
  margin-bottom: 0;
}
.about-community ul li img {
  margin-right: 10px;
  width: 18px;
}
.about-community a {
  text-decoration: none;
}
.about-community .post-name span,
.community-tab .post-name span {
  color: #6c6c6c;
  font-size: 12px;
  line-height: 15px;
  position: relative;
  font-weight: 600;
  margin-right: 17px;
}
.write-msg textarea {
  padding: 10px 20px;
}

.write-msg textarea {
  min-height: 50px;
  border: 1px solid #e8e8e8;
  font-size: 14px;
  color: #6c6c6c;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.attach-file {
  width: 100%;
  padding: 0 20px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  border: 1px solid #e8e8e8;
  height: 54px;
  border-radius: 0 0 4px 4px;
  background-color: #fafafa;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
}
.attach-file ul {
  display: flex;
  align-items: center;
}
.attach-file .btn-custom {
  font-size: 14px;
  height: 34px;
  border-radius: 4px;
  padding: 0 30px;
}
.attach-file ul li {
  margin-right: 18px;
  color: #6c6c6c;
  font-weight: 600;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.attach-file ul li.new-border:hover,
.attach-file ul li.poll-active {
  background-color: #e3f1fe;
}
.attach-file ul li img {
  margin-right: 8px;
}
.write-msg {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.attach-file input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.attach-file .btn-simple {
  color: #6c6c6c;
  font-size: 14px;
  background: transparent;
}
/* post-box*/
.postreply-box,
.white-box {
  width: 100%;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  padding: 20px 20px 10px 20px;
}
.postreply-empty-msg-box {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.postreply-empty-msg-box .sub_icon:before {
  content: "";
  background-image: url('ic-chat.ee6aeb8053e32e16.svg');
  background-repeat:no-repeat;
  background-position: center center;
  background-size: cover;
  width: 32px;
  height: 28px;
}
.postreply-box {
  float: left;
}
.post-header {
  display: flex;
  position: relative;
}

.post-header img,
.comm-detail .post-name img {
  height: 38px;
  width: 38px;
  min-width: 38px;
  background-color: #d8d8d8;
  border-radius: 50%;
  object-fit: cover;
}
.comm-detail .post-name .post-img {
  height: 45px;
  width: 45px;
  background-color: #d8d8d8;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
}
.post-name {
  margin-left: 5px;
  align-items: center;
}
.post-name h3 {
  line-height: 17px;
  margin: 0;
  font-size: 14px;
}

.post-name span.designation {
  color: #ca8500;
  font-weight: 600;
  line-height: 17px;
}
.post-name span {
  color: #9da8b7;
  font-size: 12px;
  line-height: 15px;
  position: relative;
}
.post-name span.total-no {
  padding-left: 20px;
}
.post-name span.total-no:before,
.likedis-btn label span.total-no:before {
  content: "";
  background-color: #9da8b7;
  height: 4px;
  width: 4px;
  display: inline-block;
  margin: 0 7px;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 7px;
}
.post-header .ping-icon {
  background-color: #f5f5f5;
  border-radius: 4px;
  height: 28px;
  width: 28px;
  min-width: 28px;
  padding: 4px;
  cursor: pointer;
  object-fit: contain;
}
.post-header .ping-icon:hover {
  box-shadow: 3px 5px 4px 0px rgba(0, 0, 0, 0.09);
  -webkit-box-shadow: 3px 5px 4px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 3px 5px 4px 0px rgba(0, 0, 0, 0.09);
  transition: 0.18s ease-in all;
  -webkit-transition: 0.18s ease-in all;
  -moz-transition: 0.18s ease-in all;
}
.postreply-box .post-text {
  font-size: 16px;
  line-height: 20px;
  margin: 5px 0;
}

.overflow-post-text {
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0;
  overflow-wrap: break-word;
}

.overflow-comment-text {
  font-size: 16px;
  line-height: 24px;
  margin: 15px 0;
  overflow-wrap: break-word;
}

.total-view {
  height: 17px;
  color: #6c6c6c;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
}
.total-comments {
  color: #6c6c6c;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  margin-left: 14px;
}
.post-icon {
  justify-content: flex-end;
}
.post-title {
  margin: 10px 0 5px 0;
  line-height: 24px;
}

.likedis-btn {
  display: flex;
  margin-top: 5px;
}
.likedis-btn label .like-check {
  height: 34px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  color: #6c6c6c;
  display: flex;
  align-items: center;
  padding: 0 10px;
  margin-right: 15px;
  cursor: pointer;
}
.likedis-btn .btn:hover {
  box-shadow: 3px 8px 4px 1px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 3px 8px 4px 1px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 3px 8px 4px 1px rgba(0, 0, 0, 0.04);
}
.likedis-btn label span.total-no {
  padding-left: 10px;
  position: relative;
  margin-left: 3px;
}
.likedis-btn label span.total-no:before {
  margin: 0;
  left: 3px;
  top: 9px;
  width: 2px;
  height: 2px;
}
.likedis-btn input:checked ~ .like-check {
  color: #00a6fb;
}
.likedis-btn input:checked ~ .like-check span.total-no {
  color: #6c6c6c;
}
img.hover-img {
  display: none;
}
.likedis-btn input:checked ~ img.hover-img {
  display: block;
}
.likedis-btn input:checked ~ .like-check img.main-img {
  display: none;
}
.likedis-btn input:checked ~ .like-check img.hover-img {
  display: block;
}
.likedis-btn label .like-check img {
  margin-top: -3px;
}
.likedis-btn span {
  margin-left: 9px;
}
.likedis-btn label {
  margin: 0;
  position: relative;
}
.likedis-btn label:nth-child(2) .like-check img {
  margin-top: 1px;
}

.reply-box {
  margin: 10px 0 5px 0;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 14px 14px 8px 14px;
}
.reply-box-inner {
  justify-content: space-between;
  width: 100%;
  margin: 0;
}
.reply-box-inner .reply-box-short-name {
  width: 34px;
  height: 34px;
}
.reply-box-inner .error-text {
  margin-top: 5px;
}
.reply-box img.profile-pic {
  height: 34px;
  width: 34px;
  background-color: #d8d8d8;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 0;
}
.cancel_sec {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.reply-box input {
  min-height: 34px;
  min-width: 524px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 0 111px 0 18px;
  font-size: 14px;
}

.reply-box textarea {
  height: 34px;
  min-height: 34px;
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 5px 111px 0 10px;
  font-size: 14px;
}
.reply-box textarea.default-height {
  height: 34px !important;
}
a.view-reply {
  color: #6c6c6c;
  line-height: 19px;
  margin: 6px 0 0;
  display: flex;
  text-decoration: none;
}
.reply-box .btn-custom {
  height: 34px;
  width: 94px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 14px;
}
.postpoll-btn {
  height: 24px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 11px;
  color: #ffffff;
  position: absolute;
  right: 0;
}

.vote-box {
  min-width: 717px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 20px;
}

.vote-box .checkmark-radio {
  right: 20px;
  left: auto;
  top: 8px;
  width: 22px;
  height: 22px;
}
.vote-box label {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0 20px;
  display: flex;
  flex: 1 1 40%;
  margin: 0 44px 20px 0;
  height: 45px;
  align-items: center;
  color: #6c6c6c;
  font-size: 16px;
}
.vote-box label.radio-focus {
  border-color: #eaa529;
  color: #eaa529;
  font-weight: 600;
  border-width: 1.5px;
}
.vote-box .width50 label.custom-radio {
  max-width: 47%;
  flex: 0 0 47%;
  margin-right: 0;
}
.vote-option.que-checkbox.width50 {
  justify-content: space-between;
  color: #222;
}
i.des {
  font-style: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 30px);
}
.vote-option {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
}
.vote-box h3 {
  margin-bottom: 22px;
  line-height: inherit;
}

.overflow-text h3 {
  margin-bottom: 22px;
  line-height: inherit;
  overflow-wrap: break-word;
}

.overflow-poll-text {
  margin-bottom: 22px;
  line-height: inherit;
  overflow-wrap: break-word;
}

.reply-attach img {
  height: auto;
  width: auto;
  background: transparent;
  border-radius: 0;
}
.reply-attach a {
  margin-left: 14px;
}
.reply-input {
  position: relative;
  width: calc(100% - 160px);
}
.reply-attach {
  position: absolute;
  top: 5px;
  right: 11px;
}
.vote-box label:nth-child(even) {
  margin-right: 0;
}
.answered-poll-box.vote-box label {
  margin-right: 44px;
}
.vote-option .custom-radio input:checked > .custom-radio {
  background: #000;
}
.vote-box .btn {
  height: 34px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #00a6fb;
  color: #00a6fb;
  box-shadow: none;
  min-width: 99px;
  font-weight: 600;
}
.vote-box .btn:hover {
  background-color: #00a6fb;
  color: #fff;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
}

.post-reply-box {
  margin: 17px 0 0 58px;
  position: relative;
  width: 100%;
}
.post-reply-box .post-name a {
  color: #6c6c6c;
  font-size: 13px;
  line-height: 16px;
  text-decoration: none;
}
.post-reply-box .post-name a.like {
  margin-right: 13px;
}

.emoji-dropdown .dropdown-item:last-child {
  margin: 0;
}
.emoji-dropdown .dropdown-menu a.dropdown-item {
  border-bottom: none;
}
.emoji-dropdown .dropdown-toggle::after,
.emoji-dropdown .dropdown-menu:before,
.response-dropdown .dropdown-toggle::after,
.emoji-dropdown .dropdown-menu:after {
  content: none;
}
.emoji-dropdown .dropdown-menu.show {
  display: flex;
  padding: 5px 15px;
  top: 0 !important;
  margin-top: -47px;
}
.emoji-dropdown a {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: 1.5s ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  padding: 0;
  border: none;
  margin-right: 14px;
}
.emoji-dropdown a:hover {
  cursor: pointer;
  animation-name: bounce;
  -moz-animation-name: bounce;
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.response-dropdown .dropdown-menu {
  right: 0;
  left: auto !important;
  top: 27px !important;
  width: -moz-fit-content;
  width: fit-content;
}
.response-dropdown .dropdown-item {
  line-height: initial;
  white-space: nowrap;
}
.dot-menu {
  position: relative;
}
.dot-menu:hover .dot-menu__label {
  background-color: rgba(0, 0, 0, 0.1);
}
.dot-menu__label:before,
.dot-menu__label:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  transition: 0.8s;
  transition: 0.2s;
  background-color: #9da8b7;
}
.dot-menu__label:after {
  right: 20px;
}
.dot-menu__label:before {
  right: 0;
}
.dot-menu__label {
  cursor: pointer;
  width: 30px;
  height: 28px;
  display: block;
  text-indent: -9999em;
  margin: 4px 0 0 8px;
}
.dot-menu__label span:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #9da8b7;
  transition: 0.8s;
  right: 10px;
}
.polls-tab .tooltip {
  display: none;
}
.community-tab ul,
.polls-tab ul {
  position: relative;
}
.community-tab ul li a,
.polls-tab ul li a {
  color: #9da8b7;
  font-size: 14px;
  line-height: 16px;
  position: relative;
  width: 108px;
  text-align: center;
  padding: 0 0 12px;
  text-decoration: none;
}
.community-tab ul li {
  display: flex;
  flex-grow: 1;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.community-tab ul li a.active,
.polls-tab ul li a.active {
  font-weight: 600;
  color: #222;
}
.community-tab ul li a.active:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 108px;
  height: 3px;
  background: #eaa529;
  will-change: left, width;
  transition: left 0.2s, width 0.2s;
}
.community-tab .tab-content ul li {
  justify-content: flex-start;
  margin: 10px 0 0;
  border-bottom: 1px solid #e8e8e8;
  padding: 0 0 8px;
}
.community-tab .tab-content h3 {
  font-size: 14px;
  margin-bottom: 3px;
}
.community-tab .post-name span:last-child:before {
  content: none;
}
.community-tab .tab-content ul li:last-child {
  border: none;
  padding: 0;
}
.community-tab .recent-img {
  height: 38px;
  width: 38px;
  min-width: 38px;
  background-color: #d8d8d8;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-image: url('user-placeholder.554bb38e573d8893.jpeg');
  margin-right: 10px;
}
.community-tab .uname {
  background: #d8d8d8;
  border: 2px solid #e8e8e8;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 14px;
  color: #2849a3;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.verification-input input {
  /*background: url("../img/input-box.svg") repeat-x;*/
  border: none;
  width: 454px;
  height: 62px;
  background-position: left;
  /* letter-spacing: 68px;
  padding: 0 0 0 23px; */
  min-width: auto;
  line-height: normal;
  font-size: 20px;
  margin: 0;
  background-position: -2px -2px;
  border: 1px solid #d9d9d9 !important;
  background-color: #f9f9f9;
  font-size: 20px !important;
}
.verification-input {
  width: 454px;
  overflow: hidden;
}
.approval-popup .modal-body > h2 {
  line-height: 36px;
  margin: 0 0 17px;
}
.approval-popup .footer-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-top: 1px solid #f5f5f5;
  padding: 25px 0 0;
}
.footer-btn .close-btn {
  color: #6c6c6c;
  font-size: 20px;
  line-height: 14px;
  margin-right: 61px;
}

/* sub-banner*/
.sub-banner {
  min-height: 70px;
  align-items: center;
  display: flex;
}
.sub-banner h2 {
  margin: 0;
  color: #fff;
}
ul.breadcrumb {
  background: transparent;
  padding: 0;
  text-align: left;
}
ul.breadcrumb li a {
  color: #6c6c6c;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
}
ul.breadcrumb li a i {
  margin-right: 7px;
}
.post-tagline {
  margin: 25px 0 16px;
  line-height: 24px;
}

.overflow-post-tagline {
  margin: 25px 0 16px;
  line-height: 24px;
  overflow-wrap: break-word;
}

.postdetail .postreply-box .post-text {
  font-size: 14px;
  margin: 5px 0 5px 0;
  line-height: 20px;
}
.postdetail .postreply-box .right-section {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.postdetail .postreply-box .right-section .btn {
  min-width: 94px;
  padding: 0;
  height: 34px;
  font-size: 14px;
  margin-left: 22px;
}
.postdetail-reply {
  padding-left: 40px;
}
.reply-text {
  position: absolute;
  font-size: 18px;
  font-weight: 600;
}
.postdetail hr {
  margin: 15px 0;
}
.attach-file .close-btn {
  color: #6c6c6c;
  margin-right: 20px;
}
.postdetail .attach-file .col-md-4 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.postdetail .attach-file div[class^="col-"] .btn-custom {
  font-size: 14px;
  padding: 0 30px;
  height: 34px;
}
.shortby-dropdown .dropdown-menu {
  right: -29px;
  left: auto !important;
  min-width: 110px;
}
.shortby-dropdown .dropdown-menu .dropdown-item:active {
  background: #e5f0ff;
  color: #006bd0;
}
/*.rise-ticket-popup .write-msg textarea,.rise-ticket-popup .attach-file{border: 2px solid #D9D9D9;}*/
.rise-ticket-popup .footer-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.rise-ticket-popup .footer-btn .btn,
.approval-popup .footer-btn .btn {
  margin: 0;
}
.rise-ticket-popup .btn.blank-btn,
.approval-popup .btn.blank-btn {
  padding: 0 38px;
  min-height: 45px;
  margin-right: 12px;
}
.rise-ticket-popup .modal-body > h2 {
  margin: 0 0 30px;
}
.post-header .view-icon {
  right: 35px;
}

/* Styles the thumbnail */
.imgbox {
  margin-bottom: 20px;
}
.imgbox img {
  height: 104px;
  width: 148px;
  object-fit: cover;
  border: 1.89px solid #d9d9d9;
  border-radius: 4px;
  cursor: pointer;
}
/* .lightbox-target {
  position: fixed;
  top: -100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
  left: 0;
  z-index: 9999;
}
.lightbox-target .large-image {
  margin: auto;
  position: relative;
  bottom: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  max-width: 650px;
  display: flex;
  justify-content: center;
  height: 100%;
  top: 50%;
  transform: translatey(-50%);
  padding: 100px 0;
}
a.lightbox-close {
  display: block;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  background: white;
  color: black;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 8%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
a.lightbox-close:before {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
a.lightbox-close:after {
  content: "";
  display: block;
  height: 30px;
  width: 1px;
  background: black;
  position: absolute;
  left: 26px;
  top: 10px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.lightbox-target:target {
  opacity: 1;
  top: 0;
  bottom: 0;
}
.lightbox-target:target a.lightbox-close {
  top: 0px;
}
a.lightbox {
  width: 100%;
  height: 100%;
  display: flex;
  margin: 0px 0px 10px 0px;
}
a.lightbox:hover:after {
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-transition: 0.6s ease-in-out;
  -moz-transition: 0.6s ease-in-out;
  -o-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
  opacity: 0;
  visibility: visible;
}
a.lightbox:after {
  content: "";
  background: url("../img/ic-largeview.svg") no-repeat;
  height: 24px;
  width: 24px;
  z-index: 999;
  position: absolute;
  background-size: contain;
  bottom: 8px;
  right: 33px;
  opacity: 0;
  visibility: visible;
}
.lightbox-target:target img {
  width: 100%;
  object-fit: cover;
} */

.login-bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    #06a8ff 0%,
    #4f507a 100%
  ); /*display: flex;justify-content: center;align-items: center;*/
  width: 100%;
  overflow-y: auto;
  height: 100vh;
}

#wrapper {
  transition: width 0.5s ease-out;
  height: 100%;
}
#sidebar-wrapper {
  margin-left: -133px;
  left: 70px;
  width: 133px;
  background: #fff;
  position: fixed;
  height: 100%;
  transition: all 0.4s ease 0s;
  box-shadow: 1px 4px 4px 0px rgba(0, 0, 0, 0.07);
  z-index: 9;
}
.sidebar-nav {
  display: block;
  float: left;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
#page-content-wrapper {
  margin-left: 0;
  width: 100%;
  height: auto;
}
/*#wrapper.active {padding-left: 133px;}*/
#wrapper.active #sidebar-wrapper {
  left: 133px;
}
#page-content-wrapper {
  width: 100%;
}

#sidebar_menu li a,
.sidebar-nav li a {
  color: #999;
  display: block;
  float: left;
  text-decoration: none;
  width: 150px;
  background: #fff;
  transition: background 0.5s;
}
.sidebar_name {
  padding-top: 25px;
  color: #fff;
  opacity: 0.7;
}
.sidebar-nav li {
  text-indent: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar-nav li a {
  color: #6c6c6c;
  display: flex;
  text-indent: 0;
  justify-content: center;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  padding: 20px 0;
  text-align: center;
  height: 80px;
}
.sidebar-nav li a.active {
  color: #222222;
  background-color: #e5f0ff;
  border-left: 4px solid #00a6fb;
  font-weight: 600;
}
.sidebar-nav li a:hover {
  text-decoration: none;
}
.sidebar-nav li a:active,
.sidebar-nav li a:focus {
  text-decoration: none;
}
.sidebar-nav > .sidebar-brand {
  height: 65px;
  line-height: 60px;
  font-size: 18px;
}
.sidebar-nav > .sidebar-brand a {
  color: #999999;
}
.sidebar-nav > .sidebar-brand a:hover {
  color: #fff;
  background: none;
}

#main_icon {
  float: right;
  padding-right: 35px;
  padding-top: 20px;
}
.sub_icon {
  margin-bottom: 5px;
  line-height: 0;
  text-align: center;
  display: flex;
  transition: opacity 0.6s 0.2s ease-out;
}
.sidebar-nav li .sub_icon:before {
  background-repeat: no-repeat;
}

.sidebar-nav .dashboard .sub_icon:before {
  content: "";
  background-image: url('ic-dashboard.724dc44bd24c0429.svg');
  width: 36px;
  height: 13px;
}
.sidebar-nav .dashboard a.active .sub_icon:before {
  background-image: url('active-ic-dashboard.7f6d23fc5a744879.svg');
}

.sidebar-nav .communities .sub_icon:before {
  content: "";
  background-image: url('ic-communtities.041ccd6d41dcb93b.svg');
  width: 24px;
  height: 24px;
}
.sidebar-nav .members .sub_icon:before {
  content: "";
  background-image: url('member.3a301aeae0e1b406.svg');
  width: 43px;
  height: 32px;
}
.sidebar-nav .communities a.active .sub_icon:before {
  background-image: url('active-ic-communtities.8ccff9c323e5102e.svg');
}

.sidebar-nav .activities .sub_icon:before {
  content: "";
  background-image: url('ic-chat.ee6aeb8053e32e16.svg');
  width: 22px;
  height: 22px;
}
.sidebar-nav .activities a.active .sub_icon:before {  
  background-image: url('active-ic-chat.1a18f093322a161d.svg');
}
.sidebar-nav .members a.active .sub_icon:before {  
  background-image: url('member_active.732d18cea5a1503c.svg');
}

.sidebar-nav .insight_lab .sub_icon:before {
  content: "";
  background-image: url('insight_lab.7372e821c53d5f09.svg');
  width: 22px;
  height: 22px;
}
.sidebar-nav .insight_lab a.active .sub_icon:before {
  background-image: url('active_insight_lab.333e788235787088.svg');
}
.sidebar-nav .library .sub_icon:before {
  content: "perm_media";
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
  font-size: 22px;
  line-height: 1;
  color: #999999;
  display: inline-block;
  width: 22px;
  height: 22px;
}
.sidebar-nav .library a.active .sub_icon:before {
  color: #222;
}
.sidebar-nav .communication .sub_icon:before {
  content: "\f1fa";
  width: 22px;
  height: 22px;
  display: inline-block;
  font: normal normal normal 18px/1 FontAwesome;
}
.sidebar-nav .communication a.active .sub_icon:before {
  content: "\f1fa";
  width: 22px;
  height: 22px;
  display: inline-block;
  font: normal normal normal 18px/1 FontAwesome;
  color: #222;
}

.sidebar-nav .user .sub_icon:before {
  content: "";
  background-image: url('ic-admin.36a14308789b37c9.svg');
  width: 22px;
  height: 22px;
}
.sidebar-nav .user a.active .sub_icon:before {
  background-image: url('active-ic-admin.35e63ec31a59f7f2.svg');
}
.sidebar-nav .left_arrow .sub_icon:before {
  content: "";
  background-image: url('nx-right-arrow.2142397dd38900d0.svg');
  width: 25px;
  height: 25px;
  background-size: 100%;
  transform: rotate(180deg);
}
.active-wrapper .sidebar-nav .left_arrow .sub_icon:before {
  background-image: url('nx-left-arrow.c8e88cab1b67e38a.svg');
}
.empty-page h1 {
  color: #6c6c6c;
  line-height: 36px;
  margin: 70px 0 14px;
}
.empty-page p {
  line-height: 28px;
  color: #767f8c;
}
.page-content.empty-page {
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 134px;
}
.empty-page h3 {
  margin: 0 0 77px;
}
input:focus,
button:focus {
  outline: none;
}
button.btn-search,
button.btn-reset {
  border: none;
  position: absolute;
}
.sample {
  float: left;
  height: 32px;
  position: relative;
  width: 250px;
  padding-left: 10px;
}
.sample:before {
  content: "";
  height: 17px;
  /*border: 0.5px solid #9da8b7;*/
  position: absolute;
  left: 0;
  top: 7px;
}
.sample.nine input {
  transition: all 0.6s ease-in-out 0.3s;
  width: 189px;
  border: none;
  border-bottom: 1px solid rgba(108, 108, 108, 0.5);
  font-size: 12px;
  height: 32px;
  padding: 4px 0;
  position: absolute;
}
.sample.nine input:focus {
  transition-delay: 0;
  width: 250px;
}
/*.sample.nine input:focus ~ button {
  transform: rotateZ(360deg);
}*/
.sample.nine input:focus ~ button.btn-search {
  color: #eee;
  left: 241px;
  transition-delay: 0;
}
.sample.nine input:focus ~ button.btn-reset {
  left: 202px;
  transition-delay: 0.3s;
}
.sample.nine button {
  transition: all 0.6s ease-in-out;
}
.sample.nine button.btn-search {
  background: transparent;
  left: 179px;
  top: 2px;
  transition-delay: 0.3s;
  padding: 0;
}
.sample.nine button.btn-reset {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 10px;
  height: 20px;
  left: 92px;
  line-height: 20px;
  padding: 0;
  top: 5px;
  width: 20px;
  z-index: -1;
}
.dropdown.filter-dropdown {
  padding-right: 7px;
  margin-left: 32px;
}
.selectcomm-dropdown .cuppa-dropdown::after {
  top: 4px;
}
.filter-dropdown .dropdown-menu {
  /* right: 0;*/
  border-radius: 8px;
  left: auto !important;
  margin-top: 11px;
}
.filter-dropdown .dropdown-toggle::after {
  margin: 3px 0 0 10px;
  display: none;
}

@keyframes bounceRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes jumpTowardSearch {
  0% {
    background: #ccc;
    opacity: 1;
    transform: rotateZ(0deg) scale(1);
  }
  20% {
    background: #ccc;
    opacity: 0;
    transform: rotateZ(-60deg) scale(50);
  }
  55% {
    background: hotpink;
    opacity: 0;
    transform: rotateZ(-30deg) scale(100);
  }
  90% {
    background: hotpink;
    opacity: 0;
    transform: rotateZ(-30deg) scale(50);
  }
  100% {
    background: hotpink;
    opacity: 1;
    transform: rotateZ(0deg) scale(1);
  }
}
@keyframes jumpTowardReset {
  0% {
    opacity: 0;
    transform: rotateZ(0deg) scale(1);
  }
  20% {
    opacity: 0;
    transform: rotateZ(-60deg) scale(50);
  }
  55% {
    opacity: 0;
    transform: rotateZ(-30deg) scale(100);
  }
  90% {
    opacity: 0;
    transform: rotateZ(-30deg) scale(50);
  }
  100% {
    opacity: 1;
    transform: rotateZ(0deg) scale(1);
  }
}
.sample.nine input::placeholder,
.selectcomm-dropdown input::placeholder {
  font-size: 14px;
}
/* welcome popup**/
.welcome-popup .modal-body {
  padding: 25px 30px;
}
.welcome-popup .modal-body > h2 {
  margin: 0 0 20px;
}
.welcome-popup .modal-body img {
  width: 100%;
}
.welcome-popup .btn {
  float: left;
  margin: 25px 0 5px;
}
.welcome-popup .modal-body > p {
  margin: 20px 0 0;
  font-size: 18px;
  color: #222;
  line-height: 24px;
}
.welcome-popup.modal {
  background: rgba(0, 0, 0, 0.6);
}
/* footer*/
.footer {
  z-index: 9;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #222222;
  color: white;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  letter-spacing: 0.5px;
  height: 54px;
}
.footer p {
  font-size: 12px;
  margin: 0;
  line-height: 17px;
}
.app-main-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 9;
  min-height: 72px;
  height: 72px;
  background-color: #eaeff0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 32px 12px 33px;
  text-align: left;
  letter-spacing: 0;
}
.app-main-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.app-main-footer__brand strong {
  color: #005bc1;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.app-main-footer .app-main-footer__brand p {
  color: #64748b;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  opacity: 0.8;
}
.app-main-footer__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 56px;
  flex: 1 1 auto;
  min-width: 0;
}
.app-main-footer .app-main-footer__link {
  color: #64748b;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-top: 0;
  text-decoration: none;
  white-space: nowrap;
}
.app-main-footer .app-main-footer__link:hover,
.app-main-footer .app-main-footer__link:focus {
  color: #005bc1;
  text-decoration: none;
}
.app-main-footer .app-main-footer__language {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(172, 179, 182, 0.3);
  border-radius: 12px;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding-top: 0;
  text-decoration: none;
}
.app-main-footer .app-main-footer__language:hover,
.app-main-footer .app-main-footer__language:focus {
  color: #005bc1;
  text-decoration: none;
}
.app-main-footer__language svg {
  display: block;
}
/* chat box*/
#center-text {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#chat-circle {
  display: flex;
  position: fixed;
  bottom: 50px;
  right: 0;
  width: 265px;
  height: 50px;
  padding: 28px;
  cursor: pointer;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  font-weight: 600;
  box-shadow: -2px 0 6px 0 rgba(34, 34, 34, 0.1);
  border-radius: 4px;
  display: none;
}
#chat-circle span {
  color: #ea1c63;
  margin-left: 8px;
  font-size: 14px;
}
.btn#my-btn {
  background: white;
  padding-top: 13px;
  padding-bottom: 12px;
  border-radius: 45px;
  padding-right: 40px;
  padding-left: 40px;
  color: #5865c3;
}
#chat-overlay {
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: none;
}
.chat-box {
  display: none;
  background: #fff;
  position: fixed;
  right: 30px;
  bottom: 50px;
  width: 265px;
  max-width: 85vw;
  max-height: 100vh;
  border-radius: 5px;
  /*   box-shadow: 0px 5px 35px 9px #464a92; */
  box-shadow: 0px 5px 35px 9px #ccc;
}
.chat-box-toggle {
  float: right;
  margin-left: 5px;
  cursor: pointer;
  color: #ddd;
  font-size: 13px;
  position: absolute;
  right: 8px;
  top: 4px;
}
.chat-box-header {
  background: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 16px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-box-body {
  position: relative;
  height: 370px;
  height: auto;
  border-top: 1px solid #ccc;
  overflow: hidden;
}
.chat-box-body:after {
  content: "";
  opacity: 0.1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
}
#chat-input {
  background: #f4f7f9;
  width: 100%;
  position: relative;
  height: 47px;
  padding-top: 10px;
  padding-right: 50px;
  padding-bottom: 10px;
  padding-left: 15px;
  border: none;
  resize: none;
  outline: none;
  border: 1px solid #ccc;
  color: #888;
  border-top: none;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
}
.chat-box-header > div {
  display: flex;
}
.chat-box-header > div a {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  color: #6c6c6c;
  letter-spacing: 0;
  margin-left: 20px;
}
.chat-input > form {
  margin-bottom: 0;
}
.chat-logs .chat-uname {
  flex: 1;
}
.chat-logs .chat-extra {
  font-size: 10px;
  color: #6c6c6c;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chat-logs span.no-msg {
  background: #ea1c63;
  color: #fff;
  border-radius: 50%;
  height: 19px;
  width: 19px;
  text-align: center;
  line-height: 19px;
  font-size: 10px;
}
.chat-search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9da8b7;
  font-size: 12px;
}
.chat-search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #9da8b7;
  font-size: 12px;
}
.chat-search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #9da8b7;
  font-size: 12px;
}
.chat-search input:-moz-placeholder {
  /* Firefox 18- */
  color: #9da8b7;
  font-size: 12px;
}
.chat-submit {
  position: absolute;
  bottom: 3px;
  right: 10px;
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 50%;
  color: #5a5eb9;
  width: 35px;
  height: 35px;
}
.chat-logs {
  max-height: 401px;
  overflow-y: auto;
  border-top: 1px solid #d8d8d8;
}
.chat-logs h6 {
  font-weight: 600;
  margin: 0;
  line-height: 17px;
}
.chat-logs .blue-chat h6 {
  color: #006bd0;
}
.chat-logs .yellow-chat h6 {
  color: #ca8500;
}
.chat-logs p {
  font-size: 12px;
  color: #6c6c6c;
  margin: 0;
}
.chat-logs .profile-pic {
  background: transparent;
}
.chat-search {
  padding: 10px 15px;
  position: relative;
}
.chat-search input {
  padding: 6px 10px;
  min-height: 29px;
  border: 1px solid #9da8b7;
  line-height: 17px;
  font-size: 12px;
}
.chat-search img {
  position: absolute;
  right: 28px;
  top: 17px;
}
.user-chat {
  display: flex;
  padding: 15px 15px;
  border-bottom: 1px solid #d8d8d8;
}
.dash-total .comm-box {
  background: #fff;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  border-radius: 4px;
  width: 22.75%;
  margin-right: 3%;
  padding: 18px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 104px;
}
.dash-total .comm-box:last-child {
  margin-right: 0;
}
.page-content {
  padding: 30px;
}
.dash-total .comm-box h3,
.newpost-box .right-side h3 {
  color: #006bd0;
  font-size: 27px;
  line-height: 37px;
}
.dash-total .comm-box p,
.newpost-box .right-side p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin: 0;
}
.box-header {
  display: flex;
  justify-content: space-between;
  margin: -20px -20px 0;
  padding: 12px 15px;
  border-bottom: 1px solid #ebebeb;
  align-items: center;
}
.box-header h3 {
  margin: 0;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-header a {
  font-size: 13px;
  letter-spacing: 0;
}
.box-header a:hover {
  text-decoration: none;
}
.comm-detail {
  border-bottom: 1px solid #e5f0ff;
  padding: 20px 0;
}
.comm-detail:last-child {
  border-bottom: none;
}
.comm-detail .post-name {
  display: flex;
  margin-left: 0;
  align-items: flex-start;
}
.comm-detail.common-table .active-user:before {
  left: 0px;
  top: 23px;
}
.comm-detail .post-name span,
.common-table span.status-bg {
  padding-left: 0;
  color: #fff;
  border-radius: 8px;
  padding: 1px 6px 2px;
  font-size: 10px;
  line-height: 14px;
}
/*.comm-detail img {
  margin-right: 10px;
  width: 100%;
}*/
.comm-detail .post-name span:last-child:before {
  content: none;
}
/*.comm-detail .post-name img {width: 45px;height: 45px;}*/
.comm-detail h4 {
  line-height: 19px;
  margin: 0;
}
.comm-detail p {
  font-size: 13px;
  color: #6c6c6c;
  line-height: 18px;
  margin: 0;
}
.common-table.comm-detail tbody td {
  padding: 17px 15px;
}
.comm-detail .active-user,
.common-table .active-user {
  position: relative;
}
.comm-detail .active-user:before,
.task-detail li.pending-task > span:before,
.nav-notification .active-user:after,
.common-table .active-user:before {
  content: "";
  background: #06a8ff;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
}
.comm-detail .active-user-client,
.common-table .active-user-client {
  position: relative;
}
.comm-detail .active-user-client:before,
.task-detail li.pending-task > span:before,
.nav-notification .active-user-client:after,
.common-table .active-user-client:before {
  content: "";
  background: #06a8ff;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 97px;
  top: 9px;
}
.yellow-bg {
  background: #eaa529;
}
.blue-bg {
  background: #006bd0;
}
.common-table tr td a {
  color: #222;
  text-decoration: none;
}
.common-table tr td a.link {
  color: #00a6fb;
  text-decoration: underline;
}
.common-table {
  margin-bottom: 0;
}
.newpost-box {
  display: flex;
  padding: 12px 15px;
  justify-content: space-between;
  height: 104px;
  align-items: center;
}
.newpost-box .left-side {
  border-right: 0.5px solid rgba(108, 108, 108, 0.4);
  padding-right: 7px;
  width: calc(100% - 120px);
}
.newpost-box .left-side .yellow-bg {
  color: #fff;
  border-radius: 8px;
  padding: 2px 6px;
  font-size: 10px;
  line-height: 14px;
  margin-left: 0;
  max-width: 65px;
}
.newpost-box .left-side span.post-time {
  opacity: 0.8;
  font-size: 10px;
  color: #6c6c6c;
  letter-spacing: 0;
}
.newpost-box .left-side span.post-date {
  position: relative;
  padding-left: 10px;
}
.newpost-box .left-side span.post-date:before {
  content: "";
  background: #6c6c6c;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 6px;
}
.newpost-box .left-side p {
  font-size: 14px;
  margin: 5px 0 0;
}
.newpost-box .right-side {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 15px;
}
.newpost-box .right-side p {
  white-space: nowrap;
}
.box-header .total-no {
  background: #ea1c63;
  color: #fff;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  margin-left: 7px;
}

.task-detail {
  padding: 0;
}
.task-detail .box-header {
  margin: 0;
}
.task-detail tr.pending-task,
.unread-chat {
  background: rgba(229, 240, 255, 0.35);
}
.task-detail tr.pending-task > td:last-child:before {
  right: 73px;
  top: 23px;
  background: #ea1c63;
  left: auto;
}
.task-detail tr.pending-task h4 a {
  color: #006bd0;
}
.task-detail tr h4 {
  max-width: 120px;
  font-size: 13px;
}
.ui-datepicker-calendar {
  display: none;
}
.filter-comm {
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-comm .date {
  display: flex;
  flex-direction: column;
}
.filter-comm .filter-dropdown .btn {
  background: #e5f0ff;
}
.filter-comm .dropdown {
  padding-right: 0;
  margin-left: 10px;
}
.activity-date .date input {
  border: transparent;
  font-size: 12px;
  color: #222222;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  width: 100%;
}
.activity-date .date span {
  font-size: 10px;
  color: #6c6c6c;
  letter-spacing: 0;
  text-align: center;
}
.datepicker td,
.datepicker th {
  font-size: 13px;
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
.selectcomm-dropdown .dropdown-item {
  border: none;
  padding-top: 0;
}
.search-dropdown {
  position: relative;
}
.search-dropdown input {
  min-height: 30px;
  border: none;
  border-bottom: 1px solid #ebebeb;
  border-radius: 0;
  background: transparent;
}
.search-dropdown img {
  position: absolute;
  top: 15px;
  right: 12px;
}
.dropdown-menu li i {
  font-size: 12px;
  color: #6c6c6c;
  letter-spacing: 0;
  padding: 10px 10px 0;
  display: flex;
}
.selectcomm-dropdown .custom-checkbox {
  width: 100%;
  display: block;
}
.selectcomm-dropdown .custom-checkbox > span.cname {
  width: 100%;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  padding: 12px 0;
  font-size: 14px;
  color: #222222;
  line-height: inherit;
}
.selectcomm-dropdown .checkmark {
  top: 13px;
}
.selectcomm-dropdown .dropdown-item:last-child .custom-checkbox span.cname {
  border: none;
}
.navbar-expand-lg .nav-notification .dropdown-menu {
  margin-top: 13px;
  min-width: 390px;
  left: -276%;
  right: auto;
  transform: translate(-50%, 0);
}
.navbar-expand-lg .nav-notification .member-notification-menu-alignment {
  left: -292%;
}
.navbar-expand-lg .nav-notification .non-member-side {
  left: -118%
}
.nav-notification .box-header {
  margin: 0;
}
.nav-notification .box-header div {
  display: flex;
}
.nav-notification .box-header h3 {
  font-size: 14px;
  color: #6c6c6c;
}
.nav-notification .box-header a {
  margin-left: 20px;
}
.viewnotifications {
  height: 2em; 
  margin-top: inherit
}
.viewall {
  font-size: 13px; 
  margin-left: 16px
}
.nav-notification .dropdown-item {
  font-size: 12px;
  position: relative;
}
.nav-notification .dropdown-item a {
  text-decoration: none;
}
.nav-notification .dropdown-item span img {
  margin-right: 7px;
}
.nav-notification p,
.nav-notification label {
  font-size: 12px;
  margin: 0;
  line-height: 17px;
}
.nav-notification p {
  margin-bottom: 3px;
}
.nav-notification .dropdown-menu ul {
  max-height: 350px;
  overflow-y: auto;
}
.nav-notification .active-user:after {
  right: 15px;
  top: 15px;
  left: auto;
}
.nav-notification .dropdown-menu:after {
  right: 0;
  left: 54px;
  margin-left: auto;
  margin-right: auto;
  width: 12px;
}
.nav-notification .dropdown-menu:before {
  right: 0;
  left: 54px;
  margin-left: auto;
  margin-right: auto;
  width: 12px;
  top: -14px;
}
.nav-notification .member-notification-menu-alignment:after {
  left: 75px;
}
.nav-notification .member-notification-menu-alignment:before {
  left: 75px;
}
/*.navbar > .container {
  box-sizing: content-box;
}*/

.root-profile .post-name {
  margin: 0;
  display: flex;
}
.root-profile .post-name img,
.root-profile .post-name span {
  background: #d8d8d8;
  border: 5px solid #e8e8e8;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  object-fit: cover;
}
.root-profile .post-name span,
.edit-pic span.short-name,
li.dropdown span.short-name {
  color: #2849a3;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 28px;
  font-weight: 600;
}
.root-profile .profile-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.root-profile .profile-box li.dropdown span.short-name {
  background-color: #d8d8d8;
  border: 2px solid #e8e8e8;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-size: 12px;
}
.edit-pic span.short-name {
  min-height: 118px;
}
.root-profile .post-name h2 {
  line-height: 30px;
  margin-bottom: 15px;
  width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.root-profile .post-name p {
  margin: 0;
  line-height: 14px;
}
.root-profile .post-name .root-name {
  margin-left: 30px;
}
.root-profile .totalcomm p {
  line-height: 14px;
}
.edit-pic {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 0 0 34px;
  background: #d8d8d8;
  border-radius: 50%;
}
.edit-pic > img,
.edit-pic .ieeditpic > img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #d8d8d8;
  box-shadow: 0 4px 4px 0 rgba(34, 34, 34, 0.15);
}
/*.edit-pic .ieeditpic{position: absolute;top: 0;right: 0;height: 100%;}*/
.edit-pic .ieeditpic {
  background-color: white;
  background-size: cover;
  background-position: center;
  height: 100%;
  border-radius: 50%;
}
.edit-pic a {
  position: absolute;
  bottom: -3px;
  right: -9px;
}
.custom-tab h3 {
  font-size: 18px;
  margin-bottom: 37px;
}

/* tab*/
.custom-tab .nav {
  border-right: 1px solid #dcdcdc;
  height: 100%;
}
.nav-pills .nav-link {
  white-space: nowrap;
  border-radius: 3px;
  height: 58px;
  display: flex;
  /*min-width: 242px;*/
  font-size: 16px;
  padding-left: 30px;
  position: relative;
  color: #6c6c6c;
  margin-bottom: 20px;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  border-left: 4px solid #fff;
}
.nav-pills .nav-link.completed {
  padding-left: 35px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #e5f0ff;
  color: #222222;
  font-weight: 600;
  border-left: 4px solid #00a6fb;
}
/*.profile-tab .nav-pills .nav-link:before {
  content: "";
  background: url(../img/profile-user.svg) no-repeat;
  width: 34px;
  height: 21px;
  position: absolute;
  left: 14px;
}
.profile-tab .nav-pills li.nav-item:nth-child(2) .nav-link:before {
  background: url(../img/profile-comm.svg) no-repeat;
  height: 24px;
}
.profile-tab .nav-pills li.nav-item:nth-child(3) .nav-link:before {
  background: url(../img/profile-setting.svg) no-repeat;
}
.profile-tab .nav-pills .nav-link.active:before {
  background: url(../img/active-profile-user.svg) no-repeat;
}
.profile-tab .nav-pills li.nav-item:nth-child(2) .nav-link.active:before {
  background: url(../img/active-profile-comm.svg) no-repeat;
}
.profile-tab .nav-pills li.nav-item:nth-child(3) .nav-link.active:before {
  background: url(../img/active-profile-setting.svg) no-repeat;
}*/
.custom-tab .nav-pills li a span {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
}
/*.user-profile .profile-tab .nav-pills li.nav-item:nth-child(2) .nav-link:before{background: url(../img/profile-qu.svg) no-repeat;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(4) .nav-link:before{background: url(../img/edit-profile.svg) no-repeat;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(5) .nav-link:before{background: url(../img/tickets.svg) no-repeat;height: 13px;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(6) .nav-link:before{background: url(../img/ball.svg) no-repeat;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(3) .nav-link:before{background: url(../img/profile-setting.svg) no-repeat;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(2) .nav-link.active:before{background: url(../img/active-profile-qu.svg) no-repeat;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(4) .nav-link.active:before{background: url(../img/active-edit-profile.svg) no-repeat;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(5) .nav-link.active:before{background: url(../img/active-tickets.svg) no-repeat;height: 13px;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(6) .nav-link.active:before{background: url(../img/active-ball.svg) no-repeat;}
.user-profile .profile-tab .nav-pills li.nav-item:nth-child(3) .nav-link.active:before{background: url(../img/active-profile-setting.svg) no-repeat;}
*/
.profile-tab .form-control:valid + .form-control-placeholder,
.edit-panellist .form-control:valid + .form-control-placeholder {
  color: #6c6c6c;
}
.profile-tab .form-control:focus + .form-control-placeholder,
.edit-panellist .form-control:focus + .form-control-placeholder {
  color: #ca8500;
}
.profile-tab .btn,
.prenext-footer .btn {
  min-width: 110px;
}
.profile-tab .form-group {
  margin-bottom: 27px;
}
.selectbox:after {
  content: "";
  border-style: solid;
  border-color: #6c6c6c;
  width: 10px;
  height: 10px;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  display: flex;
  position: absolute;
  right: 18px;
  top: 17px;
}
.profile-tab .table tr:first-child td {
  border: none;
}
.profile-tab .table tr td {
  padding: 25px 10px 25px 0;
  font-size: 15px;
  line-height: 20px;
}
.profile-tab .table thead th {
  padding: 0;
  padding-right: 10px;
  border: none;
  font-size: 12px;
  color: #9da8b7;
  font-weight: 500;
}
.profile-tab .table thead th:first-child {
  white-space: nowrap;
}
.profile-tab .table tr td:first-child {
  width: 8%;
}
.profile-tab .table tr td:last-child {
  width: 20%;
}
.profile-tab .table tr td:nth-child(2) {
  width: 37%;
}
.profile-tab .table tr td:nth-child(3) {
  width: 20%;
}
.profile-tab .table tr td a {
  text-decoration: underline;
  white-space: nowrap;
}
.transfer-popup .modal-body .btn {
  margin-left: 20px;
  margin-bottom: 0;
}
.transfer-popup p {
  line-height: 26px;
}
.transfer-popup .modal-body > h2 {
  margin: 0;
}
.transfer-popup .form-group {
  margin-bottom: 5px;
}
.transfer-popup .login-btn {
  margin: 35px 0 0;
}
.transfer-popup h6 strong {
  color: #222;
}
.popup-msg {
  background: rgba(104, 215, 255, 0.1);
  padding: 15px;
  border-radius: 4px;
}
.popup-msg h4 {
  color: #4f507a;
  font-weight: 700;
}
.popup-msg p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #4f507a;
}
.setting-box {
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 14px 23px 30px;
}
.setting-box h6 {
  color: #6c6c6c;
  font-weight: 600;
  margin: 0 0 23px;
}
.setting-box a {
  font-size: 15px;
  text-decoration: none;
  display: block;
}
.setting-box p {
  font-size: 12px;
  color: #6c6c6c;
  margin: 0 0 30px;
}
.setting-box .custom-checkbox {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.setting-box .checkmark {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 4px;
  border-color: #d9d9d9;
}
.setting-box .custom-checkbox input:checked ~ .checkmark {
  background-color: #fff;
  border-color: #d9d9d9;
}
.setting-box .custom-checkbox .checkmark:after {
  border: none;
  background: #00a6fb;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  left: 3px;
  top: 3px;
}
.account-sbox p.notify {
  font-size: 13px;
  color: #222222;
  margin: 0 0 15px;
  font-weight: 600;
}
.account-sbox .cname {
  font-size: 15px;
  color: #222;
  margin: 0 0 7px;
  line-height: 20px;
}
.setting-box .custom-checkbox p {
  margin: 0 0 20px;
}
.signinup-popup .modal-body > h2.nologo {
  margin: 0;
}
.custom-tab .box-header h3 {
  margin: 0;
}
.custom-tab .form-group {
  margin-bottom: 18px;
  position: relative;
}
.create-comm .custom-tab .form-group a.add-admin {
  font-weight: 600;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.create-comm .custom-tab .tab-content h3 {
  margin-top: 10px;
}
.create-comm .custom-tab .form-group a span {
  font-size: 21px;
  margin-right: 10px;
}
.create-comm .box-header {
  padding: 15px 40px;
  margin: -20px -40px 34px;
}
.create-comm .box-header .btn {
  min-width: 134px;
}
.create-comm .white-box {
  padding: 20px 40px;
}
.prenext-footer {
  border-top: 1px solid #e3e3e3;
  padding: 25px 0 0 0;
  margin: 45px 0 0;
}
.prenext-footer ul li button {
  border: transparent;
  color: #222;
  cursor: pointer;
  background: transparent;
}
.prenext-footer ul li .btn {
  color: #fff;
  background-color: #00a6fb;
}
.prenext-footer button.float-left i {
  margin-right: 13px;
}
.prenext-footer button.float-right i {
  margin-left: 13px;
}
.prenext-footer ul.first-next li:first-child button i {
  margin-left: 13px;
}
.transfer-popup .popup-msg {
  margin: 24px 0 0;
}
.transfer-popup .popup-msg strong {
  font-weight: 700;
}
.profile-banner {
  width: 100%;
  /*max-height: 174px;*/
  max-height: 120px;
  display: flex;
  /*justify-content: flex-end;*/
  position: relative;
  transition: background-color 500ms linear;
  height: 120px;
  /*height: 174px;*/
  background-color: #ebebeb;
}
.edit-coverpage {
  position: absolute;
  right: 22px;
  top: 17px;
  width: 32px;
  height: 28px;
}
.blank-btn input[type="file"],
.edit-profile input[type="file"],
.edit-pic input[type="file"] {
  font-size: 8.5px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 9;
  width: 100%;
  height: 100%;
}
.edit-coverpage .btn {
  position: relative;
  cursor: pointer;
}
.edit-coverpage i {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #e3e3e3;
  display: flex;
  height: 28px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.profile-banner img.header-img {
  width: 100%;
  height:100%;
}
/* .profile-banner img.header-img {
  width: 100%;
  height: auto;
  object-fit: cover;
} */
.edit-profile img.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 0;
}

.color-taker {
  display: flex;
  flex-wrap: wrap;
  width: 168px;
}
.color-taker a {
  width: 25px;
  height: 25px;
  display: flex;
  border-radius: 50%;
  margin: 0 0 10px 10px;
}
.color-taker a.bgcolor:focus,
.color-taker a.active {
  outline: none;
  transition: 0.5s ease-in all;
  transform: scale(1.2);
}
.color-taker a.bgcolor:focus:before,
.custom-tab .nav-pills .nav-link.completed:before {
  content: "";
  border-style: solid;
  border-color: #fff;
  width: 7px;
  height: 15px;
  margin-left: 10px;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  margin-top: 4px;
}
.color-taker a:first-child,
.color-taker a:nth-child(6) {
  margin-left: 0;
}
.edit-coverpage .btn {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edit-coverpage .color-picker .btn {
  display: initial;
  font-size: 12px;
  padding: 0 .75rem;
  height: 25px;
  transition: none;
}
.edit-coverpage .btn span {
  font-size: 21px;
  line-height: 0;
  margin-right: 5px;
}
a.addcolor-picker {
  border: 1px solid #06a8ff;
  color: #06a8ff;
  display: flex;
  font-weight: 600;
  font-size: 22px;
  justify-content: center;
  line-height: 22px;
  text-decoration: none;
}
.edit-coverpage h4 {
  color: #6c6c6c;
  margin: 0 0 12px;
}
.edit-coverpage hr {
  margin: 14px 0;
  background-color: #e3e3e3;
}
.edit-coverpage .dropdown-toggle::after,
.edit-coverpage .dropdown-menu:before,
.edit-coverpage .dropdown-menu:after {
  content: none;
}
.edit-profile {
  position: absolute;
  bottom: -50px;
  background: #fff;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  left: 56px;
  border: 3px solid #ffffff;
  box-shadow: 0 1px 2px 1px rgba(34, 34, 34, 0.13);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  color: #06a8ff;
  font-weight: 600;
}
.edit-coverpage .dropdown-menu {
  box-shadow: -1px 5px 6px 0 rgba(34, 34, 34, 0.1);
  -webkit-box-shadow: -1px 5px 6px 0 rgba(34, 34, 34, 0.1);
  -moz-box-shadow: -1px 5px 6px 0 rgba(34, 34, 34, 0.1);
  left: auto !important;
  right: 0;
  margin-top: -3px;
  border-top-right-radius: 0;
  padding: 15px 12px 0;
  border: 1px solid #e3e3e3;
  border-top: #fff;
}

.edit-profile a {
  position: absolute;
  right: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px 0 rgba(34, 34, 34, 0.2);
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
}
.edit-profile a input[type="file"] {
  font-size: 1px;
  height: 28px;
}
.edit-profile input[type="file"] {
  font-size: 6px;
  height: 100%;
}
.edit-profile span {
  line-height: 17px;
}
.edit-profile span.addicon {
  font-size: 30px;
  line-height: 33px;
  margin-top: 14px;
}
.add-des {
  padding: 106px 60px 97px;
  background: #ffffff;
  box-shadow: 0 2px 3px 0 rgba(34, 34, 34, 0.1);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
/* .add-des textarea {
  border: none;
  border-bottom: 1px solid #e3e3e3;
  border-radius: 0;
  min-height: 33px;
  padding: 0;
} */
.custom-tab .nav {
  width: 94%;
}
.custom-tab .nav-pills .nav-link.completed:after {
  content: "";
  background: #d9d9d9;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 8px;
  top: 19px;
  border-radius: 50%;
}
.custom-tab .nav-pills .nav-link.completed:before {
  width: 6px;
  height: 12px;
  margin-left: 10px;
  margin-top: 4px;
  position: absolute;
  left: 5px;
  z-index: 9;
  top: 17px;
}

.border-box {
  border: 1px solid #e8e8e8;
  padding: 20px 30px;
  border-radius: 5px;
}
.border-box h4 {
  font-weight: 600;
}
.border-box p {
  font-size: 14px;
  color: #6c6c6c;
  margin: 0;
}
.border-box .btn {
  font-size: 18px;
  min-width: 122px;
}
.or-text {
  text-align: center;
  margin: 20px 0;
  line-height: 14px;
  font-size: 16px;
}
.border-box p.member-txt {
  color: #ca8500;
  margin: 15px 0 15px;
  line-height: 20px;
}
.custom-tab .tab-content h3 {
  font-size: 16px;
  margin-bottom: 30px;
}
.border-box .blank-btn {
  min-width: 136px;
  min-height: 45px;
}
.border-box table a.remove {
  margin-left: 15px;
}
.border-box table,
.task-table,
.table-no {
  counter-reset: rowNumber;
  /*margin: 0 0 10px;*/
  border-radius: 44px;
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}
.border-box table {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  border-collapse: inherit;
}
.border-box table tbody tr,
.task-table tbody tr,
.table-no tbody tr {
  counter-increment: rowNumber;
}
.border-box table tbody tr td:first-child::before {
  content: counter(rowNumber);
  min-width: 1em;
  margin-right: 0.5em;
}
.task-table tbody tr td:first-child::before,
.table-no tbody tr td:first-child::before {
  content: counter(rowNumber, decimal-leading-zero);
  min-width: 1em;
  margin-right: 0.5em;
}
.task-table tbody tr td:first-child::before {
  margin-right: 0;
}
.task-table tbody tr td:first-child {
  width: 40px;
  text-align: center;
}
.task-table tr td h5 a,
.task-table tr td:last-child h5 a {
  text-decoration: none;
}
.membert-tbl {
  display: flex;
  justify-content: space-between;
  margin: 0 0 18px;
  padding-top: 10px;
}
.membert-tbl span {
  color: #ca8500;
}
.membert-tbl h4 {
  margin: 0;
}
.border-box hr {
  border-color: #dcdcdc;
}
.border-box .table thead th,
.addmember-popup .modal-body .right-div table th {
  color: #9da8b7;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: none;
  border-radius: 4px;
  border: none;
}
.border-box > .ulpoad-main {
  justify-content: center;
  align-items: center;
}
.member-fileupload .form-control {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9da8b7;
  line-height: 18px;
  position: relative;
  padding-right: 55px;
  cursor: pointer;
}
.member-fileupload .form-control:before {
  border-style: solid;
  content: "";
  border-color: #9da8b7;
  width: 9px;
  height: 9px;
  margin-left: 10px;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  right: 30px;
  position: absolute;
  top: 18px;
  transition: 0.4s ease-in-out;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
}
.member-fileupload .form-control:focus {
  border-color: #d9d9d9;
  border-width: 1px;
}
.member-fileupload .form-control:not(.collapsed):before {
  transform: rotate(-135deg);
}
.border-box .upload-error {
  border: 1px solid #d83024;
  font-size: 18px;
  color: #d83024;
  line-height: 14px;
  min-width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.file-uploading .upload-success {
  border: 1px solid #eaa529;
  color: #ca8500;
  min-width: 175px;
}
.border-box .upload-success img {
  margin-right: 10px;
}
.border-box .upload-success:hover,
.border-box .upload-error:hover {
  background-color: transparent;
}
.border-box .upload-error {
  color: #d83024;
  border-color: #d83024;
}
.error-msg {
  color: #d83024;
}
.box-btn h3 {
  color: #ca8500;
  letter-spacing: 0;
}
.box-btn h3 img {
  margin-left: 10px;
}
.suc-box {
  padding: 0;
  border-radius: 3px;
}
.suc-box .btn {
  min-width: 149px;
}

.comm-detail .nav-tabs .nav-item.show .nav-link,
.comm-detail .nav-tabs .nav-link.active,
.front-tab .nav-tabs,
.front-tab .nav-tabs .nav-link.active {
  border: none;
}

.box-header .dot-icon {
  text-decoration: none;
}
.dot-icon:before {
  content: "\2807";
  font-size: 24px;
  color: #6c6c6c;
  line-height: initial;
}
.dot-icon:after,
.vertical-dot:after {
  content: none;
}

.rgt-icon .dropdown-menu {
  min-width: 150px;
  left: auto !important;
  right: 0;
}
.rgt-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rgt-icon > a {
  margin-right: 20px;
}
.rgt-icon .dropdown-menu a {
  color: #222;
  text-decoration: none;
}

.comm-tab .nav-tabs .nav-item.show .nav-link,
.comm-tab .nav-tabs .nav-link.active,
.comm-tab .nav-tabs .nav-link {
  border: none;
  padding: 0;
}
.comm-tab .nav-tabs .nav-link {
  margin-right: 30px;
  font-size: 14px;
  color: #6c6c6c;
  text-decoration: none;
  cursor: pointer;
}
.comm-tab .nav-tabs .nav-link.active {
  color: #006bd0;
  text-decoration: underline;
}
.comm-tab .nav-tabs {
  border: none;
  padding: 0 15px 0;
}
.comm-tab .box-header {
  padding: 10px 15px 2px 15px;
  margin: 0;
  border: none;
}
.comm-tab .white-box {
  padding: 0;
}
.comm-tab .filter {
  padding: 0 15px 12px;
}
.comm-tab .filter a {
  color: #222222;
  font-size: 13px;
}
.comm-tab .filter label {
  margin: 0;
  color: #6c6c6c;
  margin-right: 7px;
}
.comm-tab hr {
  margin: 8px 0 12px;
  border-color: #ebebeb;
}
.header-main {
  box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
}
.filter div[class^="col-"] {
  display: flex;
  align-items: center;
}
.filter .col-md-3 {
  justify-content: flex-end;
}
.filter .col-md-3 .dropdown {
  margin-right: 0;
}
.filter .dropdown {
  margin-right: 25px;
}
.filter .dropdown.date-dropdown {
  margin-right: 20px;
}
.common-table tbody td,
.common-table thead th {
  padding: 10px;
}
.common-table thead th {
  border: none;
  font-size: 12px;
  color: #767f8c;
  letter-spacing: 0;
  font-weight: 600;
  padding: 15px 15px 7px;
  text-transform: uppercase;
}
.common-table tbody td {
  font-size: 14px;
  color: #222222;
  letter-spacing: 0;
  border-color: #e5f0ff;
}
.common-table tbody tr td:first-child {
  font-size: 14px;
  padding-right: 0;
}
.common-table td span {
  color: #6c6c6c;
  font-size: 12px;
}
.common-table h4,
.common-table h5 {
  line-height: 19px;
  margin: 0;
}
.common-table p {
  font-size: 12px;
  color: #6c6c6c;
  line-height: 18px;
  margin: 0;
}
.common-table .active-user:before {
  left: -12px;
  top: 17px;
}
.comm-left .common-table tr td:last-child {
  width: 120px;
}
.comm-left .communities-main-list .box-header {
  border: none;
}
.common-table h3 a,
.common-table h4 a,
.common-table h5 a {
  text-decoration: none;
  color: #222;
}
.common-table h3 a:hover,
.common-table h4 a:hover,
.common-table h5 a:hover {
  opacity: 0.7;
}

.active-comm span.status-bg {
  background: #006bd0;
}
.active-comm td h4 a,
.blue-text,
table tr td a.blue-text,
.common-table h4 a.blue-text {
  color: #006bd0;
}
.pending-comm span.status-bg,
.pink-bg,
.common-table tr td a.pink-bg {
  background: rgba(234, 28, 99, 0.79);
}
.pending-comm td h4 a,
.pink-text,
.common-table h4 a.pink-text,
.common-table tr td a.pink-text {
  color: #ea1c63;
}
span.yellow-bg {
  background: #eaa529;
}
.draft-comm td h4 a,
.yellow-text,
.common-table tr td a.yellow-text,
.common-table h4 a.yellow-text {
  color: #ca8500 !important;
}
.inactive-comm span.status-bg,
span.gray-bg {
  background: #9da8b7;
}
.closed-comm span.status-bg,
span.black-bg {
  background: #222222;
}
.common-table tr.pending-comm td > a {
  color: #006bd0;
  text-decoration: underline;
}

.table-pagination,
.ngx-datatable .datatable-footer .datatable-footer-inner {
  padding: 15px;
  display: flex;
  align-items: center;
  border-top: 1px solid #e5f0ff;
  height: auto !important;
}
.table-pagination span,
.page-count {
  color: #9da8b7;
  font-size: 14px;
  font-weight: 400;
}
.pagination {
  justify-content: center;
  align-items: center;
  flex: 1;
}
.pagination li,
.pager li {
  padding: 0 10px !important;
}
.pagination li a.active,
.pager li.active a,
.pagination li:hover a,
.pager li:hover a,
.total-comm {
  background: rgba(0, 166, 251, 0.1);
  color: #006bd0;
  font-weight: 600;
  transition: 0.5s ease-in all;
  -webkit-transition: 0.5s ease-in all;
  -moz-transition: 0.5s ease-in all;
}

.ngx-datatable.bootstrap {
  font-size: 14px !important;
}
.ngx-datatable.bootstrap .datatable-footer {
  background: transparent !important;
}
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  ul
  li:not(.disabled).active
  a,
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  ul
  li:not(.disabled):hover
  a,
ul.ngx-pagination li.current {
  background-color: rgba(0, 166, 251, 0.1) !important;
  color: #006bd0 !important;
  font-weight: 600 !important;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager {
  justify-content: center;
  align-items: center;
  flex: 1;
}
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  .datatable-icon-left,
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  .datatable-icon-skip,
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  .datatable-icon-right,
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  .datatable-icon-prev {
  height: 25px;
}
.ngx-datatable .datatable-footer .datatable-pager .pager {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.ngx-datatable .datatable-footer .datatable-pager .pager li a.previous {
  margin-right: 30px;
}
.ngx-datatable .datatable-footer .page-count {
  flex: none !important;
}

ul.ngx-pagination {
  display: flex;
  margin: 0;
}
ul.ngx-pagination .small-screen {
  display: none !important;
}
ul.ngx-pagination li {
  margin: 0 10px;
}
body .ngx-pagination .pagination-previous a::before,
body .ngx-pagination .pagination-previous.disabled::before {
  content: "\f104";
  font-size: 17px;
  font-family: fontawesome;
  margin-right: 0;
}
body .ngx-pagination .pagination-next a::after,
body .ngx-pagination .pagination-next.disabled::after {
  content: "\f105";
  font-family: fontawesome;
  font-size: 17px;
  margin-left: 0;
}
body .ngx-pagination .pagination-previous,
body .ngx-pagination .pagination-next {
  width: auto !important;
}
ul.ngx-pagination li a {
  text-decoration: none;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li a,
.pager li a,
ul.ngx-pagination li {
  border: none;
  width: 25px;
  height: 25px !important;
  border-radius: 50% !important;
  padding: 0 !important;
  justify-content: center;
  align-items: center;
  display: flex !important;
  color: #222 !important;
  text-decoration: none !important;
  background: transparent;
  font-size: 14px;
}
.pagination li a.pre-link,
.pagination li a.next-link {
  width: auto;
  height: auto;
}
.pagination li a.pre-link i {
  margin-right: 15px;
}
.pagination li a.next-link i {
  margin-left: 15px;
}
.pagination li a.focus {
  outline: none;
  box-shadow: none;
}
.pagination li a.pre-link {
  margin-right: 30px;
}
.pagination li a.next-link {
  margin-left: 30px;
}
.pagination li:hover a.pre-link,
.pagination li:hover a.next-link {
  background: transparent;
  font-weight: 500;
}

.active-admin table {
  table-layout: fixed;
}
.active-admin table tbody tr td:nth-child(2) {
  display: flex;
  align-items: center;
}
.active-admin table tbody tr td h5 {
  margin: 0;
}
.active-admin table tr td h5 a {
  text-decoration: none;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
  color: #222;
  font-size: 13px;
}
.active-admin table tr td span {
  color: #6c6c6c;
  font-size: 12px;
}
.active-admin table tbody tr td:first-child::before {
  margin-right: 0;
}
.active-admin table tbody tr td:first-child {
  width: 40px;
  text-align: center;
  font-size: 12px;
  padding-right: 0;
  vertical-align: middle;
}
.active-admin table tbody tr:first-child td {
  border-top: none;
}
.active-admin table tbody tr:nth-child(2) td {
  width: 100%;
}
.active-admin .admin-des {
  width: calc(100% - 65px);
}
/*.active-admin li {justify-content: initial;}
.active-admin li span {font-size: 12px;color: #6c6c6c;}
.active-admin li h5 {justify-content: center;align-items: center;}*/

.overflow-scroll {
  height: 320px;
  overflow-y: auto;
}
.task-page .comm-tab .box-header {
  padding-bottom: 0;
  border: none;
}
.reviewpost-detail {
  padding: 20px;
}
.reviewpost-detail h4 {
  margin: 0 0 24px;
}
.reviewpost-detail h4 strong {
  font-weight: 600;
}
.reviewpost-detail label {
  font-size: 12px;
  color: #6c6c6c;
  letter-spacing: 0;
  margin: 0 0 6px;
  display: flex;
}
.reviewpost-detail a.comm-link {
  text-decoration: underline;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
.reviewpost-detail .dropdown a,
.status-dropdown a.dropdown-toggle {
  text-decoration: none;
  color: #ca8500;
}
.flagged a.dropdown-toggle {
  color: #ea1c63;
}
.reviewpost-detail .popup-msg {
  color: #4f507a;
}
.reviewpost-detail .popup-msg h4 {
  margin: 0 0 6px;
}
.reviewpost-detail .popup-msg p {
  font-size: 14px;
}
.reviewpost-detail .popup-msg {
  border-radius: 4px;
  margin: 16px 0 0;
}
.reviewpost-detail .blank-btn {
  min-width: 93px;
}
.right-o {
  left: auto !important;
  right: -12px;
}
.task-detail .page-content.empty-page {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.task-detail .empty-page img {
  width: 37px;
}
.task-detail .empty-page h3 {
  font-size: 16px;
  color: #6c6c6c;
  margin: 22px 0 8px;
}
.task-detail .empty-page p {
  font-size: 12px;
  line-height: 17px;
  max-width: 230px;
  margin: 0;
}
.profile-preview .container {
  position: relative;
  text-align: center;
}
.profile-preview .edit-profile {
  left: 97px;
  bottom: -20px;
  width: 160px;
  height: 160px;
}
.profile-preview .edit-profile a {
  right: 11px;
}
.profile-preview .edit-profile span {
  font-size: 20px;
  color: #222222;
  line-height: 24px;
  font-weight: 500;
}
.profile-preview img.header-img {
  max-height: 225px;
  position: absolute;
  height: 100%;
}
.profile-preview {
  min-height: 225px;
}
.empty-post {
  margin: 0;
}
.empty-post img {
  padding: 40px 0 34px;
}
.empty-post h2 {
  font-size: 26px;
  color: #6c6c6c;
  letter-spacing: 0.43px;
  margin: 0 0 13px;
}
.empty-post p {
  font-size: 18px;
  color: #767f8c;
  letter-spacing: 0.3px;
  line-height: 28px;
  font-weight: 300;
  margin: 0 0 25px;
}
.empty-post .btn {
  min-width: 146px;
}
.edit-icon {
  position: absolute;
  top: 18px;
  right: 30px;
}
.close-preview {
  background: #ffffff;
  box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  border-radius: 4px;
  font-size: 14px;
  color: #006bd0;
  line-height: 18px;
  padding: 6px 10px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  position: absolute;
  top: 18px;
  margin: 0 auto;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%);
}

.post-table.common-table tbody tr td:first-child {
  font-size: 13px;
  vertical-align: top;
}
.post-table.common-table h5 {
  font-size: 14px;
}
.post-table.common-table span {
  display: flex;
}
.common-table .custom-checkbox {
  height: 14px;
  padding-left: 10px;
}
.post-table.common-table .tb-post {
  max-width: 120px;
}
.delete-header {
  padding: 0 15px 10px;
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.delete-header a,
.delete-header span {
  margin-right: 20px;
}
.delete-header .btn {
  max-height: 30px;
  min-width: 70px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #06a8ff;
  border-color: #06a8ff;
}
.delete-header .btn:hover {
  color: #fff;
}
.post-table.table-no tbody tr td:first-child::before {
  content: none;
}
.post-table .tb-post:before {
  content: counter(rowNumber, decimal-leading-zero);
  min-width: 1em;
  margin-right: 0.5em;
  display: flex;
}
.post-table .checkmark {
  width: 16px;
  height: 16px;
}
.post-table .custom-checkbox .checkmark:after {
  left: 5px;
  width: 5px;
  height: 10px;
}
.delete-checkbox {
  width: 20px;
}
#wrapper.rootfront-nav #sidebar-wrapper {
  left: 46px;
}
#wrapper.rootfront-nav .sidebar-nav {
  width: 46px;
}
#wrapper.rootfront-nav #sidebar-wrapper {
  margin-left: -46px;
  width: 46px;
  z-index: 9;
}
/*#wrapper.rootfront-nav {padding-left: 46px;}*/
.front-tab {
  background: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(34, 34, 34, 0.22);
  display: flex;
  padding: 0 20px;
}
.front-tab .nav-tabs {
  margin: 30px 0 15px;
}
.front-tab .nav-link {
  color: #6c6c6c;
  border: none;
  text-decoration: none;
}
.front-tab .nav-tabs .nav-link.active {
  color: #06a8ff;
  font-weight: 600;
}
.search-bar {
  margin: 0;
  height: 10px;
  float: right;
  padding: 0;
  position: relative;
  margin-right: 15px;
}
.search-bar input[type="text"].search {
  height: 34px;
  font-size: 12px;
  display: inline-block;
  border: none;
  outline: none;
  color: #555;
  padding: 8px 8px 2px;
  padding-right: 20px;
  width: 0px;
  position: absolute;
  top: -14px;
  right: 0;
  background: none;
  z-index: 3;
  transition: width 0.8s cubic-bezier(0, 0.795, 0, 1);
  cursor: pointer;
}
.search-bar input[type="text"].search:focus:hover {
  border-bottom: 1px solid #bbb;
}
.search-bar input[type="text"].search-view {
  width: 210px;
  z-index: 1;
  border-bottom: 1px solid #bbb;
  cursor: text;
  background: #fff;
}
.search-bar .search-icon {
  display: inline-block;
  float: right;
  background: url('ic-search.811aabaa33a23b52.svg') no-repeat;
  text-indent: -10000px;
  border: none;
  position: absolute;
  top: -5px;
  right: 0;
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.4s ease;
  width: 22px;
  height: 22px;
  z-index: 9;
  background-size: 90%;
}
.rgt-icon .btn {
  min-height: 35px;
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  min-width: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.rgt-icon .btn span {
  font-size: 23px;
}
.rgt-icon .dropdown-item {
  white-space: nowrap;
}
.common-table tbody td.status,
.common-table tbody td.date,
.common-table tbody td.gray-text,
.gray-text {
  color: #6c6c6c;
}
.rgt-icon .blank-btn {
  color: #00a6fb;
}
.rgt-icon .blank-btn:hover {
  color: #fff;
}
/* The switch - the box around the slider */
.admin-header .switch {
  background: #ebebeb;
  border: 1px solid #e3e3e3 !important;
}
.admin-header .switch.checked {
  border-color: #68d7ff !important;
}
.switch {
  margin: 0;
  border: none !important;
  background: transparent;
  border-color: #e3e3e3;
  box-shadow: 0 0 4px 0 rgba(34, 34, 34, 0.25);
  -webkit-box-shadow: 0 0 4px 0 rgba(34, 34, 34, 0.25);
  -moz-box-shadow: 0 0 4px 0 rgba(34, 34, 34, 0.25);
}
.switch.checked {
  background: #68d7ff !important;
  border-color: #68d7ff;
}
.switch.switch-small {
  height: 13px !important;
  min-width: 25px !important;
}
.switch.switch-small small {
  left: 0;
  top: -1px;
  width: 15px !important;
  height: 15px !important;
  right: calc(100% - 15px) !important;
  box-shadow: 0 0 4px 0 rgba(34, 34, 34, 0.25) !important;
}
.switch.checked small {
  right: -1px !important;
}
.onoff-btn {
  display: flex;
}
.toggle-onoff.card {
  height: 15px;
  width: 25px;
  border: none;
  margin-right: 9px;
  margin-top: -1px;
}
.onoff-btn .toggle-onoff.card {
  width: 100%;
}
.toggle-onoff .switch {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 14px;
  float: right;
}
.profile-tab .toggle-onoff.card {
  margin-top: 3px;
}
.toggle-onoff .switch input {
  display: none;
}
.toggle-onoff .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
  min-height: auto;
  background: #ebebeb;
  border: 1px solid #e3e3e3;
}
.toggle-onoff .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: -6px;
  bottom: -1px;
  background-color: white;
  transition: 0.4s;
  box-shadow: 0 0 4px 0 rgba(34, 34, 34, 0.13);
}
.toggle-onoff input.primary:checked + .slider {
  background-color: #68d7ff;
  border-color: #68d7ff;
}
.toggle-onoffinput:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
.toggle-onoff input:checked + .slider:before {
  transform: translateX(18px);
}
.toggle-onoff .slider.round {
  border-radius: 34px;
}
.toggle-onoff .slider.round:before {
  border-radius: 50%;
}
.toggle-onoff.card .list-group-item {
  padding: 0 5px 5px;
  background: transparent;
}

.custom-progressbar {
  width: 132px;
  margin: 6px 0 0;
}
.custom-progressbar .progress {
  height: 4px;
  background: rgba(6, 168, 255, 0.2);
}
.custom-progressbar .progress-bar {
  background-color: #06a8ff;
  width: 0;
  animation: custom-progress 1.5s ease-in-out forwards;
  border-radius: 0.25rem;
}
.custom-progressbar .progress-bar .title {
  opacity: 0;
  animation: show 0.35s forwards ease-in-out 0.5s;
}

@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.completed-profile {
  font-size: 11px;
  color: #6c6c6c;
}
.header-searchdropdown {
  position: absolute;
  width: 575px;
  right: 0;
  display: none;
  top: 30px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  border-radius: 3px;
  padding: 25px;
  z-index: 99;
}
.header-searchdropdown .footer-btn {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -10px;
}
.header-searchdropdown .footer-btn .btn {
  min-width: 134px;
  font-size: 18px;
  font-weight: 500;
  height: 45px;
}
.header-searchdropdown .footer-btn .btn-clear {
  font-size: 14px;
  color: #9da8b7;
  line-height: 14px;
  text-decoration: underline;
  min-width: 100px;
  background: transparent;
}
.header-searchdropdown .row {
  align-items: center;
  margin-bottom: 18px;
}
.header-searchdropdown .form-group {
  margin-bottom: 0;
}
.common-table .total-comm {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 25px;
  margin-left: 5px;
  color: #006bd0;
}
.comm-name a {
  color: #222;
}
.filter .gray-text {
  color: #a09f9f;
}
.admin-header {
  display: flex;
  justify-content: space-between;
}
.admin-header .right-sec {
  display: flex;
  font-size: 13px;
}
.admin-header .right-sec > span {
  margin-right: 50px;
  margin-left: 15px;
}
.admin-header .right-sec > a {
  text-decoration: underline;
}
.edit-admin .white-box,
.user-profile .white-box {
  /*padding: 30px 40px;*/
  padding: 10px 40px;
}
.edit-admin h3 {
  margin-bottom: 15px;
}
.ownscomm-table tr:first-child td {
  border: none;
}
.ownscomm-table tr td a.link {
  color: #006bd0;
}
.ownscomm-table thead th {
  padding-top: 0;
  padding-bottom: 0;
}
.ownscomm-table tr td {
  padding: 25px 15px;
}
.ownscomm-table thead th:first-child,
.ownscomm-table tr td:first-child {
  padding-left: 0;
  width: 85px;
}
.popup-msg p.msg-sml {
  font-size: 14px;
  color: #4f507a;
}
.theme-tab .add-des {
  padding-bottom: 55px;
}
.theme-tab p {
  font-size: 16px;
  line-height: 22px;
  margin: 5px 0 0;
}
.polls-tab ul li a {
  padding: 15px 20px;
  display: inline-block;
  float: left;
  width: auto;
  text-align: center;
  margin: 0;
  transition: 0.3s ease-in all;
  -webkit-transition: 0.3s ease-in all;
  -moz-transition: 0.3s ease-in all;
}
.polls-tab .white-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.polls-tab ul li a.active {
  border-bottom: 3px solid #eaa529;
}
.polls-tab .white-box > a {
  margin-right: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.polls-tab .white-box > a span {
  font-size: 22px;
}
.polls-tab .padding-content {
  padding: 10px 25px 25px;
  width: 100%;
  float: left;
}
.polls-tab .padding-content .tab-content {
  width: 100%;
}
.polls-tab .padding-content .row h3,
.polls-tab .padding-content,
.root-profiling-box .padding-content .row h3 {
  font-size: 15px;
  font-weight: 500;
  color: #6c6c6c;
  margin: 0;
}
.polls-tab .padding-content ul,
.root-profiling-box .padding-content ul {
  display: flex;
  justify-content: flex-end;
}
.polls-tab .padding-content ul li:last-child {
  padding-left: 15px;
  margin-left: 30px;
  position: relative;
}
.polls-tab .padding-content ul li:last-child:before {
  background: rgba(108, 108, 108, 0.7);
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 10px;
}

.polls-tab.answer-grid-detail .padding-content ul li:last-child:before {
  display: none;
}
.polls-tab .padding-content ul li span {
  color: #222;
  font-size: 15px;
  font-weight: 600;
}
.polls-tab .progress-bar {
  max-width: 60%;
  width: 0;
  animation: custom-progress 1.5s ease-in-out forwards;
  height: 45px;
  float: left;
  background: #e5f0ff;
  color: #222;
  font-size: 13px;
  flex-direction: row;
  align-items: center;
}
.polls-tab label.high-progess .progress-bar {
  background: #ffeac3;
}
.polls-tab .vote-box label.high-progess span strong:before {
  content: "";
  background-color: #eaa529;
  border-color: #eaa529;
  width: 20px;
  height: 20px;
  position: absolute;
  display: block;
  border-radius: 50%;
  right: -30px;
}
.polls-tab .vote-box label.high-progess span strong:after {
  content: "";
  top: 2px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  right: -24px;
}
.polls-tab .vote-box label {
  padding: 0 0 0 30px;
  background: transparent;
}
.polls-tab .progress-bar strong {
  padding-right: 10px;
  left: 8px;
}
.polls-tab .vote-box .checkmark-radio {
  position: relative;
  left: 14px;
  top: auto;
  right: auto;
}
.polls-tab .high-rate .progress-bar {
  background: #ffeac3;
}
.post-header div[class^="col-"] {
  display: flex;
}
.user-profile {
  margin-top: 30px;
}
.user-profile .table tr td:first-child {
  width: 18%;
}
.permission-popup .modal-dialog,
.common-closepopup .modal-dialog {
  min-height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  overflow-y: auto;
  margin: 15px auto;
  height: inherit;
  padding-top: 30px;
}
.permission-popup .modal-dialog {
  max-width: 756px;
  min-width: 756px;
}
.permission-popup .modal-body {
  padding: 0;
}
.permission-popup .popup-bottom {
  background: #ebebeb;
  padding: 20px 30px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.permission-popup .popup-bottom .card {
  background-color: transparent;
  margin-bottom: 10px;
}
.permission-popup .popup-bottom label {
  flex: 0.7;
  line-height: 18px;
}
.permission-popup .popup-bottom .switch {
  border: none;
  background: transparent !important;
}
.permission-popup .d-flex {
  align-items: center;
}
.permission-popup .attach-file,
.permission-popup .toggle-onoff .slider {
  background-color: #fff;
}
.permission-popup .attach-file .btn-custom {
  min-width: 34px;
  min-height: auto;
  margin: 0;
}
.permission-popup .custom-number {
  padding: 0 8px 0 5px;
  width: 54px;
  overflow: hidden;
}
.permission-popup .custom-number button {
  top: -4px;
}
.permission-popup .custom-number button.sub {
  bottom: 0;
  top: auto;
}
.permission-popup .write-msg textarea {
  padding: 18px 22px;
}
.permission-popup button.close {
  top: -30px;
  color: #fff;
  right: 0;
}
.permission-popup button.close span {
  color: #fff;
}

.delete-box a {
  position: absolute;
  top: 16px;
  right: 15px;
  font-size: 12px;
  text-decoration: none;
  background: #fff;
}
.delete-box.selectbox:after {
  content: none;
}
.edit-panellist .delete-box select.form-control {
  min-height: 72px;
}
.edit-panellist .form-group {
  margin-bottom: 28px;
}
.edit-panellist .login-btn {
  margin: 0;
}
.edit-panellist .login-btn .btn-custom {
  margin: 0;
}
/*.edit-panellist .modal-body {max-height: 90vh;overflow-y: scroll;}*/
.edit-panellist .delete-box a {
  text-decoration: underline;
  color: #06a8ff;
}
table td.flag-box,
.common-table tbody tr td.flag-box:first-child {
  background: #ffe5e5;
  border: none;
  color: red;
  padding-right: 20px;
}
/* .front-preview img.header-img{object-fit: contain;} */
.front-preview img.header-img {
  object-fit: cover;
}
.ngx-datatable.fixed-header
  .datatable-header
  .datatable-header-inner
  .datatable-header-cell {
  border: none;
  font-size: 12px;
  color: #9da8b7;
  letter-spacing: 0;
  font-weight: 600;
  padding: 15px 15px 7px;
}
.common-table .datatable-header-cell-label {
  text-transform: uppercase;
}
body .ngx-datatable.bootstrap .datatable-header .datatable-header-cell {
  border-bottom: none !important;
  padding: 15px;
}
.flag-box .btn {
  border-color: red;
  height: 35px;
  line-height: 30px;
  font-size: 16px;
  padding: 0 20px;
}
/*-------------------Added By Ketan Solanki -----------------------*/
.disabled-anchor {
  text-decoration: none;
  cursor: default;
  color: grey;
  pointer-events: none;
}
.no-pointer {
  pointer-events: none;
}
.addmember-popup .modal-dialog {
  max-width: 1150px;
  min-width: 1150px;
}
.addmember-popup .modal-body {
  display: flex;
  padding: 0;
}
.addmember-popup .modal-body .left-div,
.addmember-popup .modal-body .right-div {
  padding: 25px 20px;
}
.addmember-popup .modal-body .right-div {
  background: #f8f8f8;
  max-width: 60%;
  flex: 0 0 60%;
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.addmember-popup .modal-body .right-div table {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0;
}
.addmember-popup .modal-body .right-div table thead th {
  border-bottom: none;
}
.addmember-popup .modal-body .table-no tbody tr td:first-child::before {
  content: counter(rowNumber);
}
.addmember-popup .membert-tbl {
  margin: 33px 0 18px;
}
.addmember-popup h2 {
  margin-bottom: 20px;
}
.addmember-popup .border-box {
  padding: 20px;
}
.addmember-popup .membert-tbl h4 {
  font-weight: 600;
}
.addmember-popup .login-btn {
  margin: 18px 0 0;
}
.addmember-popup .login-btn .btn {
  margin-bottom: 0;
  padding: 0 20px;
}
.addmember-popup .border-box .btn {
  margin: 0;
}
.sm-width .col-md-8,
.sm-width .col-md-4 {
  max-width: 100%;
  flex: 0 0 100%;
}
.sm-width .col-md-4 {
  display: flex;
  align-items: center;
  margin: 13px 0 0;
}
.addmember-popup .modal-body .sm-width.left-div {
  max-width: 40%;
  flex: 0 0 40%;
}
.addmember-popup .uploadfile-name {
  margin-top: 15px;
}
.uploadfile-name img {
  margin-right: 5px;
  margin-top: -5px;
}
.addmember-popup .ngx-datatable {
  background: #fff;
}
.addmember-popup .members-table {
  border-radius: 3px;
}
/*.signinup-popup .dropdown-item.active,.signinup-popup .dropdown-item:active{color: #fff;background: #3a85ca;}*/

.signinup-popup .dropdown-menu:after {
  top: -12px;
}
.signinup-popup .dropdown-menu {
  max-height: 119px;
  overflow-y: auto;
}
.navbar .filter-dropdown .dropdown-menu ul {
  max-height: 313px;
  overflow-y: auto;
  min-width: 390px;
}
.navbar .filter-dropdown .dropdown-menu:after {
  left: 117px;
  right: auto;
}
.navbar .filter-dropdown .dropdown-menu:before {
  left: 118px;
  right: auto;
}
.uploadimg-box {
  display: flex;
  padding: 0;
  flex-flow: wrap;
}
.postreply-box .feed-main-box {
  margin-left: 64px;
}
.postreply-box .bulletin-feed-main-box {
  margin: 0 10px;
}
.img-box {
  width: 100px;
  height: 90px;
  margin: 0 10px 0 0;
  border-radius: 4px;
  border: 1px solid #ddd;
  overflow: hidden;
}
.img-box img,
.img-box .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
small.danger {
  color: #ff0000 !important;
}
.file-icon {
  text-align: center;
  display: flex;
  background: #fff;
  font-weight: 600;
  font-size: 10px;
  border-bottom: 1px solid #e5f0ff;
  padding: 5px;
}
.file-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.file-icon span {
  text-align: left;
  margin-left: 5px;
  width: calc(100% - 35px);
  line-height: 13px;
}
.attachment-file {
  display: flex;
  flex-flow: column;
  height: 100%;
  font-size: 10px;
  text-align: center;
  border: 1px solid #e5f0ff;
  justify-content: space-between;
  background-color: #fff;
}
.attachment-file .file-bottom {
  text-align: left;
  padding: 5px;
}
.attachment-file p,
.ticket-reward-reply-box .attachment-file p {
  word-break: break-all;
  margin: 0;
  color: #2b2d42;
  font-size: 9px !important;
  font-weight: 600;
}
.attachment-file .file-bottom span {
  color: #6c6c6c;
  font-size: 8px;
}
.test {
  position: relative;
  float: left;
}
.img-box {
  position: relative;
}

a.remImage img {
  box-shadow: none;
  position: absolute;
  right: 7px;
  top: 3px;
  margin-top: 4px;
  opacity: 0;
  display: block;
  transition: all 0.5s ease-in-out;
  width: 13px;
  height: 13px;
  z-index: 9;
}
.img-box:hover a.remImage img {
  background: transparent;
  opacity: 1;
  z-index: 99;
}

.img-box:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  top: 0px;
  z-index: 0;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  border-radius: 4px;
}

.img-box:hover:after {
  opacity: 1;
}

.post-list h3.post-title {
  cursor: pointer;
}
.new-border {
  background-color: #ebebeb;
  padding: 7px 12px;
  border-radius: 20px;
}
/*.permission-popup .form-control{border-radius: 0;font-size:14px;color: #6c757d;border-top-left-radius: 3px;border-top-right-radius: 3px;border-left: none;border-right: none;border-top: none;}*/
.permission-popup .form-control {
  font-size: 14px;
  color: #6c757d;
}
.permission-popup .attach-file {
  height: 70px;
  background-color: #fafafa;
  box-shadow: none;
}
.permission-popup p.warning-msg {
  padding: 10px 10px 0;
}
.permission-popup .popup-bottom p.warning-msg {
  padding: 0;
  margin: -10px 0 11px;
}

.wt-100 {
  width: 100%;
}

.editcover-box.dropdown-menu > a {
  position: relative;
  bottom: inherit;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  right: inherit;
  display: block;
  padding: 10px;
  border-bottom: 1px solid #f1f3f6;
}
.editcover-box.dropdown-menu > a:last-child {
  border-bottom: none;
}
body .editcover-box.dropdown-menu.show {
  z-index: 10;
  box-shadow: -1px 5px 6px 0 rgba(34, 34, 34, 0.1);
  -webkit-box-shadow: -1px 5px 6px 0 rgba(34, 34, 34, 0.1);
  -moz-box-shadow: -1px 5px 6px 0 rgba(34, 34, 34, 0.1);
  left: auto !important;
  right: 0;
  margin-top: -1px;
  border: 1px solid #e3e3e3;
  max-height: inherit;
}
.edit-top-box {
  width: 20px;
  float: right;
}
.edit-pic .dropdown-toggle::after {
  content: none;
}
.editcover-box.dropdown-menu.show {
  padding: 8px;
}
.editcover-box.dropdown-menu:after,
.editcover-box.dropdown-menu:before {
  content: none;
}
.wt-100 {
  width: 100%;
}

/*----------------Added For Poll Functionality Starts Here ----------------*/
.create-poll-popup .quesion-1 {
  border: 1px solid #e8e8e8;
  padding: 30px;
  border-radius: 5px;
}
.create-poll-popup > h3 {
  margin: 0 0 30px;
}
.create-poll-popup h4 {
  font-weight: 600;
  margin: 0 0 15px;
  line-height: 24px;
}
.create-poll-popup .modal-body {
  padding: 30px;
}
.create-poll-popup .btn-custom {
  margin: 0;
  float: none;
}
.poll-option label {
  margin: 0;
  justify-content: space-between;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0 15px 0 50px;
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
}
.poll-option .checkmark-radio {
  top: 14px;
  left: 15px;
  height: 22px;
  width: 22px;
}
.create-poll-popup .modal-content {
  width: 781px;
}
.suggestion-box {
  background: #e5f0ff;
  padding: 20px;
  border-radius: 8px;
  min-width: 231px;
  position: absolute;
  top: -45px;
  box-shadow: 0 2px 4px 1px rgba(34, 34, 34, 0.04);
}
.suggestion-box h3 {
  border-bottom: 1px solid #979797;
  padding: 0 0 10px;
  margin: 0 0 15px;
  line-height: 22px;
}
.suggestion-box p {
  font-size: 16px;
  margin: 0;
}
.suggestion-box:before {
  content: "";
  position: absolute;
  left: -30px;
  border: 15px solid transparent;
  border-right: 15px solid #e5f0ff;
  top: 60px;
}

.btn-noborder {
  color: #6c6c6c;
  font-size: 14px;
  line-height: 14px;
  border-bottom: 1px solid #6c6c6c;
  border-radius: 0;
  padding: 0;
}
.create-poll-popup .btn-noborder {
  margin-left: 24px;
}
.poll-option label.no-option {
  border: 2px solid #d83024;
}
label.no-option input:checked ~ .checkmark-radio {
  background-color: #d83024;
  border-color: #d83024;
}
.create-poll-popup .preview-btn {
  margin-right: 24px;
}
.qu-no {
  color: #767f8c;
  font-size: 15px;
  margin: 0;
}
.qu-no span {
  font-weight: 400;
  position: relative;
  padding-left: 15px;
  margin-left: 9px;
}
.qu-no span:before {
  background: rgba(108, 108, 108, 0.7);
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}
.label-question {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  width: 100%;
  line-height: 20px;
  padding: 20px 0;
  margin: 0 0 30px;
}
.add-option {
  text-decoration: none;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  line-height: 14px;
}
.add-option span {
  font-size: 22px;
}

.rating-box {
  padding: 10px 22px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  width: 306px;
}
.polls-tab .rating-box label {
  padding: 0;
}
.rating {
  display: flex;
  position: relative;
  font-size: 40px;
  flex-flow: row;
}
.rating label {
  /*position: absolute;top: 0;left: 0;*/
  width: 55px;
  position: relative;
  border: none;
  flex: inherit;
  height: 55px;
  line-height: 40px;
  cursor: pointer;
  margin: 0;
}
.rating label:last-child {
  position: static;
}
.rating label:nth-child(1) {
  z-index: 5;
}
.rating label:nth-child(2) {
  z-index: 4;
}
.rating label:nth-child(3) {
  z-index: 3;
}
.rating label:nth-child(4) {
  z-index: 2;
}
.rating label:nth-child(5) {
  z-index: 1;
}
.rating label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.polls-tab .rating label .icon {
  float: left;
  color: transparent;
  margin-right: 15px;
  position: relative;
  left: auto;
  top: auto;
}
.rating label:last-child .icon {
  color: #000;
}
.rating:not(:hover) label input:checked ~ .icon,
.rating:hover label:hover input ~ .icon {
  color: #09f;
}
.rating label .icon:hover {
  animation: stretch-bounce 0.8s ease-in-out;
}
.rating label input:focus:not(:checked) ~ .icon:last-child {
  color: #000;
  text-shadow: 0 0 5px #09f;
}
.rating-box h3 {
  font-weight: 500;
  margin-bottom: 0;
}
.popup-box {
  border: 1px solid #d9d9d9;
  padding: 20px 0 0;
  border-radius: 3px;
  position: relative;
}
.popup-box h3.pofile-question {
  font-weight: 400;
  line-height: 24px;
  margin: 0 40px 20px;
}
.popup-box h3.pofile-question:before {
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter);
  background: #eaa529;
  font-size: 14px;
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  position: absolute;
  text-align: center;
  left: 8px;
}
.popup-box .poll-option {
  flex-flow: row;
  justify-content: flex-start;
  margin: 0 40px;
}
.popup-box label {
  margin: 0 22px 0 0;
  max-width: 164px;
  color: #6c6c6c;
}
.quesion-1 hr {
  margin: 35px 0 40px;
  border-color: #dcdcdc;
}

.poll-action {
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d9d9d9;
  margin: 30px 0 0;
  padding: 15px 0;
}
.poll-action div[class^="col-"]:last-child {
  display: flex;
  justify-content: flex-end;
}
.poll-action a {
  margin: 0 25px 0 0;
}
.poll-action a:last-child {
  margin: 0;
}
.poll-action span {
  margin: 0 35px 0 0;
  color: #6c6c6c;
  font-size: 14px;
}
.small-link {
  font-size: 12px;
  position: relative;
}
.goto-post {
  margin-left: 20px;
}
.show-result {
  margin: 35px 0 0;
}
.poll-option .custom-radio a input {
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}
.rating-box:hover .rating-action {
  display: block;
}
.rating-action {
  position: absolute;
  right: 0;
  display: none;
}
.rating-action a {
  margin: 0 12px 0 0;
}
.rating-action a.edit-rate img {
  width: 19px;
  opacity: 0.8;
}
/* my profile*/
.user-profile .profile-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.user-profile .complete-profile {
  display: flex;
  align-items: center;
}
.user-profile .complete-profile img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}
.user-profile .complete-profile p {
  color: #6c6c6c;
  margin: 0;
}
.progress-box {
  border: 1px solid #e8e8e8;
  padding: 25px 25px 15px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 549px;
  background: #fff;
}
.my-profile .custom-progressbar {
  width: 300px;
}
.my-profile .custom-progressbar ul {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
}
.my-profile .custom-progressbar ul li {
  color: #6c6c6c;
  font-size: 12px;
}
.my-profile .custom-progressbar ul li strong {
  color: #222222;
}
.user-profile .my-profile {
  align-items: center;
}
.progress-box .right-sec {
  text-align: center;
}
.progress-box .right-sec h2 {
  font-size: 28px;
  line-height: 38px;
  margin: 0;
}
.progress-box .right-sec label {
  margin: 0;
}
.complete-profile .progress-circle {
  width: 98px;
  height: 98px;
}
.complete-profile .progress-circle span {
  width: 98px;
  height: 98px;
  font-size: 30px;
}
.complete-profile .left-half-clipper {
  width: 98px;
  height: 98px;
}
.complete-profile .progress-circle:after {
  width: 85px;
  height: 85px;
  left: 7px;
  top: 6px;
}
.complete-profile .progress-circle.over50 .first50-bar {
  clip: rect(0, 98px, 98px, 50px);
  width: 98px;
  height: 98px;
  background-color: #00a6fb;
}
.complete-profile .value-bar {
  clip: rect(0, 50px, 98px, 0);
  width: 98px;
  height: 98px;
  border: 10px solid #00a6fb;
}
.complete-profile .u-name {
  margin-left: 30px;
}
.complete-profile span.yellow-text {
  color: #eaa529;
  margin-right: 1px;
}
.polls-tab .vote-box {
  min-width: auto;
  padding: 0 20px 0 0;
}
.polls-tab .que-checkbox .checkmark-radio {
  left: -15px;
}
.polls-tab .que-checkbox input[type="checkbox"] ~ .checkmark-radio {
  border-radius: 4px;
  align-items: center;
}
.polls-tab .custom-radio input[type="radio"] ~ .checkmark-radio:after {
  width: 14px;
  height: 14px;
}

.dropdown > a {
  text-decoration: none;
}
.edit-pic .dropdown-toggle:after,
.edit-pic .dropdown-menu:before,
.edit-pic .dropdown-menu:after {
  display: none;
}
.edit-pic .dropdown {
  position: absolute;
  bottom: -3px;
  right: -19px;
  padding-right: 10px;
}
.edit-pic .dropdown-menu {
  margin-top: 0;
  left: 50px;
  top: 30% !important;
  box-shadow: 0 1px 10px 3px rgba(64, 64, 64, 0.14);
  -webkit-box-shadow: 0 1px 10px 3px rgba(64, 64, 64, 0.14);
  -moz-box-shadow: 0 1px 10px 3px rgba(64, 64, 64, 0.14);
  border: none;
  border-radius: 5px;
  padding: 0 7px;
}
.edit-pic .dropdown-menu a {
  white-space: nowrap;
  position: relative;
}
.edit-pic .dropdown-menu a input {
  width: 100%;
  height: 100%;
}
.edit-pic a.edit-pencil {
  position: initial;
  bottom: initial;
  right: initial;
}

.polls-tab .new-poll .que-checkbox label {
  margin: 0;
  height: 50px;
}
.addoption span {
  font-size: 25px;
  margin: 0 10px 0 0;
}
.addpoll-footer .poll-enddate input {
  max-width: 160px;
}
.addpoll-footer label {
  margin-right: 10px;
  color: #222;
  margin-bottom: 0;
}

/*----------------Added For Poll Functionality Ends Here ----------------*/
.max-index {
  z-index: 999999999999 !important;
}
.members-simple .header-part .card {
  padding: 0 5px 0 13px;
}
.members-simple .header-part .row {
  justify-content: flex-end;
}
.members-simple .header-part .nav-tabs .nav-link {
  padding: 0 10px;
  width: 90px;
}

/*.width50{justify-content: flex-start;flex-wrap: nowrap;}*/
.poll-img-box .vote-option {
  justify-content: space-between;
}
.vote-box .width50 .poll-img label.custom-radio {
  max-width: calc(100% - 50px);
  flex: 1 1 47%;
  padding-left: 15px;
  margin-left: 10px;
}
.poll-bgimg {
  width: 40px;
  height: 40px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  margin-top: 3px;
}
.poll-img {
  display: flex;
  flex: 0 0 48%;
  max-width: 48%;
}
.poll-img:last-child {
  margin-right: 0;
}
.poll-img img,
.upload-img-box {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}
/*.polls-tab .vote-box label span{left: 20px;top: 8px;color: #222222;font-size: 15px;position: absolute;}*/
.polls-tab .vote-box label span strong {
  margin-right: 5px;
  position: relative;
}
.footer-pollaction {
  display: flex;
  justify-content: space-between;
  margin-right: 5px;
  min-height: 50px;
  align-items: center;
  position: relative;
}
.footer-pollaction .btn.added {
  font-size: 14px;
  height: 34px;
  border-radius: 4px;
  padding: 0 30px;
}
.footer-pollaction p.error-text {  
  position: absolute;
  bottom: -10px;
  font-size: 11px;
  left: 0px;
  margin: 0px 10px 0px 0px;
}
.footer-pollaction p.warning-msg img {
  margin-right: 4px;
  width: 12px;
  margin-top: 2px;
}
.polls-tab .small-link {
  font-size: 13px;
  color: #06a8ff;
}
/*.addpoll-footer div{display: flex;flex-flow: row;margin: 0;}*/
.date-icon a {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 20px;
}

.addoption {
  line-height: 14px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #06a8ff;
  max-width: 160px;
}
.addoption span {
  font-size: 25px;
  margin: 0 10px 0 0;
}
.mark-as {
  margin-top: 14px;
}
.markas-checkbox {
  margin: 0;
  color: #6c6c6c;
  font-size: 14px;
  margin: 13px 0 0;
}
.markas-checkbox .checkmark-radio {
  border-radius: 4px;
}
.markas-checkbox .checkmark-radio:after {
  top: 1px;
}
.addpoll-footer .comm-class,
.addpoll-footer .form-group {
  display: flex;
  flex-flow: row;
  margin: 0;
  margin-bottom: 0;
  position: relative;
}
.addpoll-footer input {
  max-width: 106px;
  min-height: 40px;
  padding-left: 15px;
  font-size: 14px;
}
.addpoll-footer input.form-control.is-invalid {
  border: 1.5px solid #d83024;
}
.addpoll-footer input::placeholder {
  font-size: 14px;
}
.addpoll-footer .label {
  margin: 0 15px 0 0;
  color: #222222;
}
.addpoll-footer label.form-control-placeholder {
  font-size: 14px;
  padding-left: 0;
}

.poll-section {
  padding: 8px 0 0;
}
.poll-section hr {
  margin: 25px -30px 20px;
}
.pollquestion .btn-animate {
  min-width: 134px;
  margin-right: 24px;
}
.vote-textbox {
  position: relative;
}
.vote-textbox.poll-img-option input.textbox {
  width: calc(100% - 160px);
}
.vote-textbox input.textbox {
  color: #6c6c6c;
  width: calc(100% - 70px);
  position: absolute;
  opacity: 1;
  top: 0;
  left: 50px;
  height: 100%;
  z-index: 9;
  border: none;
  background: transparent;
  font-size: 16px;
}
.poll-option label .upload-img {
  position: absolute;
  right: 15px;
  top: 16px;
  z-index: 99;
  text-decoration: none;
  font-weight: 600;
}
.poll-option label .upload-img input[type="file"] {
  opacity: 0;
  position: absolute;
}
input.label-textbox {
  border: none !important;
  padding: 0;
  min-height: auto;
  color: #6c6c6c;
}
.upload-img-box {
  margin-top: 6px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
}
.text-editor .upload-img-box {
  margin-top: 40px;
}
.comm-class {
  flex-wrap: wrap !important;
}
ngb-datepicker-navigation {
  width: 100%;
}
.poll-thumb-main {
  display: flex;
  flex-wrap: wrap;
}
.poll-thumb-img {
  position: relative;
  height: 104px;
  width: 147px;
  object-fit: cover;
  border: 2px solid #d9d9d9;
  border-radius: 5px;
  margin-right: 40px;
  margin-bottom: 30px;
}
.poll-thumb-img.checked {
  border-color: #eba528;
}
.poll-thumb-img:before {
  content: "";
  background-image: url('large-view.2680414fac7c7362.svg');
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  opacity: 0;
}
.poll-thumb-img a {
  border-radius: 3px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  background-size: cover;
  background-position: center;
  display: inline-block;
}
.poll-thumb-img a img {
  height: 104px;
  width: 147px;
  object-fit: cover;
  border: 1.89px solid #d9d9d9;
  border-radius: 4px;
}
.poll-thumb-img a label.custom-radio {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0;
  margin: 0;
}
.poll-thumb-img .checkmark-radio {
  border: none;
  background: transparent;
  right: -6px;
  left: auto;
  top: -7px;
}
.poll-thumb-img .img-border img {
  border: 1.89px solid #eba52a;
}
.poll-thumb-img .custom-radio input[type="radio"]:checked ~ .checkmark-radio {
  background-color: #eba528;
  border-color: #eba528;
  width: 22px;
  height: 22px;
}
.poll-thumb-img .custom-radio input[type="radio"] + .checkmark-radio:after {
  transition: none;
  border-radius: 0;
  left: 2px;
  top: 3px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.otp-popup .pannumber-box:before {
  content: none;
}
.otp-popup .pannumber-box {
  box-shadow: none;
  padding: 30px;
}
.otp-popup .next-btn {
  margin: 0 30px 30px;
}
.otp-popup .pannumber-box p {
  color: #6c6c6c;
  font-size: 16px;
  margin: 0 0 30px;
}
.removefloat {
  float: none;
}
.poll-thumb-img h4 {
  margin: 3px 0 0;
}
.poll-thumb-img .poll-largeview:before {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  background: url('ic-largeview.eae7d648ea7631f8.svg') no-repeat;
  height: 24px;
  width: 24px;
  z-index: 9;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}
.poll-thumb-img:hover .poll-largeview:before {
  opacity: 1;
  visibility: visible;
}
.poll-thumb-img.radio-focus {
  border-color: #eaa529;
}
.poll-thumb-img.radio-focus h4 {
  font-weight: 600;
}

/*--------Added By Ketanm Solanki for Points and Rewards ---------------*/
.point-rewards {
  margin-top: 30px;
}
.points-user-box {
  display: flex;
  justify-content: space-between;
  padding: 20px 35px;
}
.points-user-box .progress-circle {
  width: 98px;
  height: 98px;
}
.points-user-box .progress-circle span {
  width: 98px;
  height: 98px;
  font-size: 30px;
}
.points-user-box .left-half-clipper {
  width: 98px;
  height: 98px;
}
.points-user-box .progress-circle:after {
  width: 85px;
  height: 85px;
  left: 7px;
  top: 6px;
}
.points-user-box .progress-circle.over50 .first50-bar {
  clip: rect(0, 98px, 98px, 50px);
  width: 98px;
  height: 98px;
  background-color: #00a6fb;
}
.points-user-box .value-bar {
  clip: rect(0, 50px, 98px, 0);
  width: 98px;
  height: 98px;
  border: 10px solid #00a6fb;
}
.points-user-box .u-name {
  margin-left: 30px;
}
.points-user-box span.yellow-text {
  color: #eaa529;
}
.points-user-box img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}
.points-user-box .complete-profile {
  display: flex;
  align-items: center;
}
.points-user-box .u-name h2 {
  margin: 0 0 15px;
  line-height: 30px;
  font-size: 22px;
}
.points-user-box .u-name p {
  font-size: 18px;
  line-height: 14px;
  margin: 0;
  color: #3f3f3f;
}
.points-user-box .custom-progressbar {
  width: 300px;
}
.points-user-box .custom-progressbar ul {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
}
.points-user-box .custom-progressbar ul li {
  color: #6c6c6c;
  font-size: 12px;
  font-weight: 600;
}
.points-user-box .custom-progressbar ul li strong {
  color: #222222;
  font-weight: 600;
}
.points-user-box .progress-box .right-sec h2 {
  line-height: 38px;
}

ul.users-option {
  display: flex;
  flex-wrap: wrap;
}
ul.users-option li {
  position: relative;
  display: flex;
  min-height: 40px;
  margin-right: 20px;
  border: 1px solid #e8e8e8;
  border-radius: 27px;
  font-size: 15px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  padding: 10px 20px;
  line-height: 20px;
  margin-bottom: 15px;
  transition: 0.2s ease-in all;
  -webkit-transition: 0.2s ease-in all;
  -moz-transition: 0.2s ease-in all;
}
ul.users-option li:last-child {
  margin-right: 0;
}
ul.users-option li span:before {
  content: "";
  background: url('gray-arr.b45e05ae8726d201.svg') no-repeat;
  width: 18px;
  height: 19px;
  position: relative;
  display: block;
  background-position: center;
  margin-right: 16px;
}
ul.users-option li input {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}
ul.users-option li.active input ~ span:before {
  background: url('checked-arr.4282e5c8bbf72b90.svg') no-repeat;
  background-position: center;
}
ul.users-option li.line-through {
  text-decoration: line-through;
  color: #6c6c6c;
}
ul.users-option li span.text {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
ul.users-option li span.text:before {
  content: none;
}

body .white-box.earned-box {
  min-height: 362px;
  padding: 20px 35px;
}
.earned-box .earned-box-header {
  display: flex;
  justify-content: space-between;
  margin: 0 0 8px;
}
.earned-box .earned-links {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.earned-box .earned-links a {
  font-size: 14px;
  color: #6c6c6c;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 3px 10px;
  outline: 0;
  margin-left: 8px;
}
.earned-box .earned-links a:hover,
.earned-box .earned-links a:active,
.earned-box .earned-links a:focus,
.earned-box .earned-links a.active {
  border: 1px solid #eaa529;
  color: #eaa529;
}

.user-profile .earned-profile-box {
  padding: 0 0 15px;
  z-index: 99 !important;
}
.earned-profile-box h3 {
  padding: 15px 30px;
  margin: 0;
}
.earned-profile-box ul {
  max-height: 302px;
  overflow-x: auto;
}
.earned-profile-box ul li a {
  margin: 0 25px;
  border-bottom: 1px solid #f1f3f6;
  display: flex;
  color: #6c6c6c;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  line-height: 15px;
  position: relative;
  padding: 12px 0 12px 40px;
}
.earned-profile-box ul li.active {
  background-color: #e5f0ff;
}
.earned-profile-box ul li.active a {
  color: #222222;
}
.earned-profile-box ul li a:after {
  content: "\f105";
  font-family: fontawesome;
  right: 0;
  position: absolute;
  color: #9da8b7;
  font-weight: 500;
  font-size: 20px;
}
.earned-profile-box ul li.active a:after {
  color: #00a6fb;
}
.earned-profile-box ul li:last-child a {
  border-bottom: none;
}

.earned-profile-box ul li a:before {
  content: "";
  display: block;
  position: absolute;
  width: 23px;
  height: 25px;
  left: 3px;
}

.earned-profile-box ul li:first-child a:before {
  background: url('profile-user.f260357d197e1f77.svg') no-repeat;
  width: 23px;
  height: 25px;
}
.earned-profile-box ul li:nth-child(2) a:before {
  background: url('points-rs.b836198153824f1e.svg') no-repeat;
  width: 26px;
  height: 14px;
  background-size: auto;
}
.earned-profile-box ul li:nth-child(3) a:before {
  background: url('edit-profile.345b2f7e094b1bf8.svg') no-repeat;
  width: 23px;
  height: 20px;
}
.earned-profile-box ul li:nth-child(4) a:before {
  background: url('ball.3a76db5e37a7c9b9.svg') no-repeat;
  width: 23px;
  height: 21px;
  background-size: auto;
  background-position: center;
}
.earned-profile-box ul li:nth-child(5) a:before {
  background: url('profile-setting.5bb6cb5b00ab493a.svg') no-repeat;
  width: 20px;
  height: 23px;
}
.earned-profile-box ul li:nth-child(6) a:before {
  background: url('ball.3a76db5e37a7c9b9.svg') no-repeat;
  width: 23px;
  height: 21px;
}
.earned-profile-box ul li:nth-child(7) a:before {
  background: url('profile-setting.5bb6cb5b00ab493a.svg') no-repeat;
  width: 20px;
  height: 23px;
}

.earned-profile-box ul li.active:first-child a:before {
  background: url('active-profile-user.5ee64fb75a09faeb.svg') no-repeat;
  width: 23px;
  height: 21px;
}
.earned-profile-box ul li.active:nth-child(2) a:before {
  background: url('active-profile-qu.4625675c534ad76b.svg') no-repeat;
  width: 23px;
  height: 21px;
  background-size: 80%;
}
.earned-profile-box ul li.active:nth-child(3) a:before {
  background: url('active-points-rs.0b62c872f0ca10b0.svg') no-repeat;
  width: 26px;
  height: 14px;
}
.earned-profile-box ul li.active:nth-child(4) a:before {
  background: url('active-edit-profile.ce7aceaff033c8d3.svg') no-repeat;
  width: 23px;
  height: 20px;
  background-size: 70%;
  background-position: center;
}
.earned-profile-box ul li.active:nth-child(5) a:before {
  background: url('active-tickets.17c2734d1ceaf8e5.svg') no-repeat;
  width: 23px;
  height: 13px;
}
.earned-profile-box ul li.active:nth-child(6) a:before {
  background: url('active-ball.9dcfbcaa34762e0e.svg') no-repeat;
  width: 23px;
  height: 21px;
}
.earned-profile-box ul li.active:nth-child(7) a:before {
  background: url('active-profile-setting.c62532c7c8a5a814.svg') no-repeat;
  width: 20px;
  height: 23px;
}

.coupon-box {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
}
.coupon-box .coupon-img {
  height: 96px;
  margin: 0 0 16px;
  overflow: hidden;
  width: 100%;
  background-size: cover;
  background-position: center;
  border: 1px solid #eee;
  border-radius: 4px;
  position: relative;
}
.coupon-box .coupon-img span,
.coupon-popup .coupon-img span {
  height: 19px;
  width: 44px;
  border-radius: 9.5px;
  background-color: #eaa529;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
}
.coupon-box .coupon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.coupon-box .coupon-title,
.coupon-popup .coupon-title {
  display: flex;
  justify-content: space-between;
}
.coupon-box .coupon-title h4,
.coupon-popup .coupon-title h4 {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}
.coupon-box .coupon-title .coupon-inner-content p,
.coupon-box .coupon-title .coupon-inner-content div,
.coupon-box .coupon-title .coupon-inner-content,
.coupon-box .coupon-title .coupon-inner-content span {
  color: #767f8c;
  font-size: 12px;
  line-height: inherit;
  margin: 0;
  max-height: 92px;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  font-weight: 500;
}
.coupon-box .coupon-title .coupon-inner-content {
  margin-top: 5px;
  height: 70px;
}
.coupon-box .coupon-title span {
  color: #222222;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  font-weight: 600;
  margin: 0 0 0 8px;
}
.coupon-box p {
  font-size: 12px;
  color: #6c6c6c;
  margin: 0;
}
.coupon-box p img {
  margin-right: 10px;
}
.coupon-main-detail {
  width: calc(100% - 50px);
}
.coupon-box p.collect-bottom-text,
.coupon-box p.bottom-text span {
  display: flex;
  align-items: center;
}
.coupon-box p.bottom-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rewards-box > h2 {
  font-size: 20px;
  line-height: 27px;
}
.rewards-box h3 {
  max-height: 43px;
  border-radius: 4px;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px 0 30px;
  padding: 15px 20px;
  line-height: 18px;
}
.rewards-box h3 span {
  font-weight: 500;
  margin-right: 17px;
}
.rewards-box .left {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rewards-box h2 {
  font-size: 20px;
}

.rewards-box {
  padding: 30px 35px;
  margin-bottom: 10px;
}
.rewards-box .box-header {
  border: none;
  margin: 0;
  padding: 0;
}
.rewards-box .box-header a {
  color: #006bd0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  background: #fff;
  padding: 12px 10px;
  border-radius: 5px;
}

.point-search {
  display: flex;
  margin: 20px 0;
}
.point-search input {
  min-height: 45px;
  width: 450px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  margin-right: 22px;
}
.point-search .btn-custom {
  min-width: 134px;
}
.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
  z-index: 1;
}
.coupon-box p a {
  color: #006bd0;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  text-decoration: none;
}
.point-search p.error-text {
  margin-top: 10px;
}

.point-search ::-ms-input-placeholder {
  color: #767f8c;
  font-size: 15px;
}
.point-search :-ms-input-placeholder {
  color: #767f8c;
  font-size: 15px;
}
.point-search ::-moz-placeholder {
  color: #767f8c;
  font-size: 15px;
}
.point-search :-moz-placeholder {
  color: #767f8c;
  font-size: 15px;
}
.point-search ::-webkit-input-placeholder {
  color: #767f8c;
  font-size: 15px;
}

.point-search .point-footer .btn-last {
  margin-left: 5px;
  color: #6c6c6c;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  min-width: auto;
}

.tooltip .tooltiptext {
  visibility: hidden;
  background-color: #767f8c;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  width: 254px;
  top: 135%;
  left: 50%;
  margin-left: -127px;
  line-height: 14px;
  font-size: 13px;
  opacity: 0;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  transition: 0.2s ease-in all;
}
.tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #767f8c transparent;
}
.coupon-box a.coupon-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coupon-popup .modal-dialog {
  max-width: 496px;
  min-width: auto;
}
.coupon-popup .modal-body {
  padding: 20px;
}
.coupon-popup .coupon-img {
  overflow: hidden;
  width: 100%;
  height: 120px;
  margin: 0 0 20px;
  background-size: cover;
  background-position: center;
  border: 1px solid #eee;
  border-radius: 4px;
  position: relative;
}
.coupon-popup .coupon-img img {
  width: 100%;
  height: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 4px;
}
.coupon-popup .coupon-title span {
  color: #222222;
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  text-align: center;
}
.coupon-popup .validity-date {
  font-size: 14px;
  line-height: 12px;
  margin: 30px 0 18px;
}
.coupon-popup .validity-date img {
  margin-right: 7px;
  width: 19px;
}
.coupon-popup .coupon-content-popup {
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
}
.coupon-popup .coupon-content-popup h4 {
  font-weight: 600;
  margin-top: 22px;
}

.coupon-popup .coupon-content-popup a {
  word-break: break-all;
  white-space: normal;
}
.coupon-popup .coupon-title p {
  font-size: 13px;
  line-height: 17px;
  color: #6c6c6c;
  margin: 0;
}
.coupon-popup .coupon-content-popup p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}
.coupon-popup .term-des ul {
  list-style-type: decimal;
}
.coupon-popup .term-des ul {
  padding-left: 17px;
  margin: 0;
}
.coupon-popup .term-des ul li {
  color: #6c6c6c;
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 5px;
}
.coupon-popup .login-btn {
  margin: 30px 0 0;
}
.coupon-popup .coupon-des p,
.coupon-popup .coupon-des span {
  color: #6c6c6c;
  font-size: 13px;
}
.coupon-popup .coupon-des {
  margin-top: 5px;
}
.coupon-popup .date {
  display: flex;
  align-items: center;
}
.coupon-popup .date p {
  margin: 0;
  font-size: 14px;
}
.coupon-popup .date img {
  margin-right: 12px;
  width: 18px;
}
.coupon-popup div:empty,
.coupon-popup p:empty,
.coupon-popup span:empty {
  display: none;
}
/*.coupon-popup .modal-content{width: 496px;}*/
.coupon-popup .left {
  margin-right: 35px;
}
.coupon-popup .close-btn {
  color: #767f8c;
  font-weight: 600;
  font-size: 18px;
  padding: 0;
  margin: 0 0 12px;
  background: transparent;
}
.coupon-popup .btn {
  margin-bottom: 0;
}

.empty-rewards {
  height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.empty-rewards h1 {
  margin: 45px 0 15px;
}
.empty-rewards .btn {
  min-width: 160px;
  margin-top: 20px;
}

.cong-popup .modal-body {
  padding: 0;
}
.cong-popup .modal-dialog {
  max-width: 374px;
  min-width: 374px;
  border-radius: 5px;
}
.cong-popup .top-img {
  height: 137px;
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: -2px 0px 5px 1px rgba(0, 0, 0, 0.08);
  border-radius: 5px 5px 0 0;
}
.cong-popup .top-img img.img-fluid {
  width: 100%;
  object-fit: cover;
  height: 137px;
  border-radius: 5px 5px 0 0;
}
.cong-popup .thumps-up {
  height: 81px;
  width: 81px;
  border: 1.5px solid #c8ecff;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 999999;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -50px;
}
.cong-popup .thumps-up img {
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  transform: translatey(-50%);
  line-height: 100px;
  margin: 0 auto;
}
.cong-popup .thumps-up:after {
  content: "";
  background: url('pattern.5fb75f5c9e1783e4.svg') no-repeat;
  width: 140px;
  height: 27px;
  bottom: -6px;
  position: absolute;
}
.signinup-popup.cong-popup h2 {
  font-size: 20px;
  line-height: 15px;
  margin: 22px 0 14px;
}
.signinup-popup.cong-popup p {
  color: #767f8c;
  font-size: 14px;
  line-height: 20px;
  max-width: 286px;
  margin: 0 auto;
}
.cong-popup h5.copon-code {
  color: #222;
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
  padding: 15px 0 32px;
}
.cong-popup h5.copon-code span {
  color: #ca8500;
}
.cong-popup a {
  color: #00a6fb;
  padding: 22px 0 33px;
  display: block;
  border-top: 1px solid #f5f5f5;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  line-height: 14px;
}
.cong-popup button.close span {
  font-size: 34px;
}

.rewards-history-box {
  padding: 24px 35px 5px;
}
.rewards-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 0;
  display: flex;
  align-items: center;
}
.rewards-header .dropdown .btn {
  font-size: 14px;
  background: transparent;
}
.rewards-header .dropdown .btn span {
  font-size: 14px;
  color: #6c6c6c;
}
.rewards-header .dropdown .dropdown-menu {
  right: 0;
  left: auto !important;
}
.rewards-history-box .dropdown-toggle::after {
  margin-left: 5px;
}
.rewards-header h3 {
  margin-bottom: 0;
}

.coupon-table img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
.coupon-table thead th {
  color: #767f8c;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  padding: 30px 20px 0;
}
.coupon-table tbody td {
  border-top: none;
  border-bottom: 1px solid #e8e8e8;
  font-size: 15px;
  line-height: 20px;
  padding: 25px 20px;
}
.coupon-table tbody td h3 {
  color: #000000;
  margin: 0 0 8px;
}
.coupon-table tbody td a {
  color: #006bd0;
  font-size: 14px;
  line-height: 15px;
}
.coupon-table tbody tr td:first-child {
  padding: 22px 10px;
}
.coupon-table tbody tr:last-child td {
  border: none;
}
.coupon-table thead th:last-child,
.coupon-table tbody td:last-child {
  padding-right: 0;
  width: 140px;
}
.coupon-table tbody td.coupon-date {
  white-space: nowrap;
}

.selected-metrics {
  padding: 0 20px;
}
.selected-metrics h5 {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  color: #ca8500;
  margin: 10px 0 15px;
}
.selected-metrics ul.users-option li {
  margin: 0 15px 20px 0;
  padding: 10px 18px;
}
/*.selected-metrics ul.users-option li.active{border-color: #EAA529;}*/
.selected-metrics ul.users-option li:hover,
ul.users-option li:hover {
  border-color: #eaa529;
}
.selected-metrics ul.users-option li span:before {
  margin-right: 10px;
}
.selected-metrics .close-icon {
  margin-left: 10px;
  opacity: 0;
}
.selected-metrics ul.users-option li:hover .close-icon {
  opacity: 1;
}
.metrics-btn {
  border: none;
  padding: 0;
  min-height: auto;
  min-width: auto;
  margin-right: 10px;
}

.activity-graph {
  min-height: 316px;
  height: 100%;
  overflow-x: auto;
}
.activity-graph .box-header,
.gender-ratio .box-header {
  border-bottom: 1px solid #ebebeb;
}
.age-map {
  height: 100%;
  overflow-x: auto;
}
.city-mapping {
  max-height: 316px;
  height: 100%;
  overflow-x: auto;
}
.panelists-ranking,
.gender-ratio {
  max-height: 382px;
}
.panelists-ranking .common-table img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}
.panelists-ranking .common-table tr td {
  font-size: 12px;
  padding: 10px;
  vertical-align: middle;
  color: #2b2d42;
}
.panelists-ranking .common-table tr td a {
  font-size: 13px;
}
.panelists-ranking .common-table tr td.points {
  color: #9a9a9a;
}
.panelists-ranking .common-table .custom-progressbar {
  margin: 3px 0;
  width: 118px;
}
.common-table td span.completed-profile {
  font-size: 10px;
}

a.canvasjs-chart-credit {
  display: none;
}

/** Css for answer poll */
.answered-polls {
  padding: 0;
}
.nextpoll-btn {
  float: right;
  display: flex;
  align-items: center;
}
.nextpoll-btn .total-poll {
  font-size: 16px;
  margin-right: 10px;
}
.nextpoll-btn li.nexpoll a {
  color: #4aa7fb;
  font-weight: 600;
  font-size: 15px;
  padding: 0;
}
.nextpoll-btn li.nexpoll a i {
  margin-left: 8px;
  font-size: 19px;
  line-height: 16px;
}
.poll-collapse:before, .poll-not-collapse:before  {
  content: "\f107";
  font-family: fontawesome;
  transition: 0.5s ease-in all;
}
.poll-not-collapse:before {
  content: "\f106";
}
.collapsed-poll::before {
  content: "\f106";
}
.poll-collapse,
.poll-collapse:hover,
.poll-not-collapse,
.poll-not-collapse:hover {
  text-decoration: none;
  color: #222;
  font-size: 27px;
  float: right;
  display: inline-block;
  margin-left: 13px;
}
.collapse-poll-btn {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  top: -7px;
}
.collapse-poll-btn .postpoll-btn {
  position: relative;
  padding: 7px 17px;
}
.postreply-box .reply-box {
  justify-content: space-between;
}
.total-votes {
  display: flex;
  align-items: center;
}
.total-votes strong {
  font-size: 18px;
  font-weight: 600;
  margin-left: 7px;
}
.hint-relative {
  z-index: 999 !important;
}
.overlay {
  z-index: 20 !important;
  background: rgba(0, 0, 0, 0.7) !important;
}
.overlay svg{
  display: none !important;
}
.message-box .feed-step2.hint-relative {
  width: 440px;
}

.intro-tour-hint-wrapper {
  background-color: transparent !important;
  box-shadow: none !important;
}
.intro-tour-hint-wrapper p {
  padding: 0 !important;
  position: absolute;
  left: -220px;
  text-align: left;
  width: 260px;
  color: #fff;
  bottom: 45px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.intro-tour-hint-wrapper .footer {
  padding: 0 !important;
  justify-content: flex-start;
  background: transparent;
  position: absolute;
  left: -229px;
  bottom: -3px;
}
.intro-tour-hint-wrapper .navigate-btn:first-child {
  width: 109px;
}
.intro-tour-hint-wrapper .navigate-btn {
  background: transparent !important;
  box-shadow: none !important;
  font-size: 14px !important;
  visibility: hidden;
}
.intro-tour-hint-wrapper .navigate-btn:first-child:before {
  content: "Next";
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
  color: white;
}
.bottom-throw .intro-tour-hint-wrapper .navigate-btn:first-child:before {
  content: "Previous";
  padding: 7px 16px;
}
.intro-tour-hint-wrapper .navigate-btn:nth-child(3):before {
  content: "Skip";
  visibility: visible;
}
.sidebar-walkthrough .intro-tour-hint-wrapper .navigate-btn:first-child:before {
  content: none;
}
.sidebar-walkthrough .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
  content: "Get started";
  white-space: nowrap;
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
  color: white;
}

.intro-tour-hint-wrapper .header {
  padding: 0 !important;
  color: white !important;
  background-color: transparent !important;
  border-bottom: none !important;
}
.intro-tour-hint-wrapper .header .header-btn__close {
  z-index: 9;
}
.graph-box .canvasjs-chart-canvas {
  margin-top: 5px;
  width: 100% !important;
  object-fit: contain;
  height: 300px !important;
}
.bottom-throw img {
  padding: 0;
  margin-top: -194px;
  margin-left: -40px;
}
.post-throw .intro-tour-hint-wrapper p {
  bottom: auto;
  top: auto;
  left: auto;
  position: relative;
  padding-left: 95px !important;
  margin-top: -10px;
  width: 380px;
}
.post-throw .intro-tour-hint-wrapper .footer {
  bottom: auto;
  top: auto;
  left: auto;
  position: relative;
  padding-left: 100px !important;
  margin-top: -10px;
}
.post-throw .intro-tour-hint-wrapper.transformY_50 {
  transform: none !important;
  left: 429px !important;
  right: auto;
  top: 13px !important;
  text-align: left;
}
.post-throw .intro-tour-hint-wrapper .footer .navigate-btn__previous {
  position: initial !important;
}
.intro-tour-hint-wrapper .footer .navigate-btn__next {
  right: 140px !important;
  bottom: auto !important;
}
.post-throw img {
  padding: 0;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
}
.post-throw .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
  content: "Get started";
  white-space: nowrap;
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
  color: white;
}
/* .post-throw .intro-tour-hint-wrapper .navigate-btn:nth-child(2) {
  display: none;
} */

.has-third .intro-tour-hint-wrapper .navigate-btn:nth-child(2) {
  width: 100px;
  display: block;
}
.has-third .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
  content: "Next";
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
}
.has-third .intro-tour-hint-wrapper .navigate-btn:nth-child(3):before {
  content: "Skip";
  visibility: visible;
}

/*.post-throw .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before{display: none;}*/

.poll-btn-throw .intro-tour-hint-wrapper p {
  margin-bottom: 10px;
  bottom: auto;
  top: auto;
  left: auto;
  position: relative;
  padding-right: 95px !important;
  margin-top: -10px;
  width: 380px;
}
.poll-btn-throw .intro-tour-hint-wrapper .footer {
  bottom: auto;
  top: auto;
  left: auto;
  position: relative;
  padding-right: 100px !important;
  margin-top: -10px;
}
.poll-btn-throw .intro-tour-hint-wrapper.transformY_50 {
  transform: none !important;
  left: auto !important;
  right: 70px;
  top: 118px !important;
  text-align: left;
}
.poll-btn-throw img {
  padding: 0;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  right: 51px;
  bottom: 43px;
  transform: rotate(45deg);
}
.poll-btn-throw .intro-tour-hint-wrapper .navigate-btn:first-child:before {
  content: "Previous";
  padding: 7px 16px;
}
.poll-btn-throw .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
  content: "Get started";
  white-space: nowrap;
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
}
.collapse-poll-btn .step3.hint-relative {
  background: #fff;
  padding: 6px;
  border-radius: 4px;
}
.penalist-contributor .intro-tour-hint-wrapper .navigate-btn:first-child {
  display: none;
}
.penalist-contributor
  .intro-tour-hint-wrapper
  .navigate-btn:first-child:before {
  content: none;
}
.penalist-contributor .intro-tour-hint-wrapper .navigate-btn:nth-child(2) {
  width: auto;
}
.penalist-contributor
  .intro-tour-hint-wrapper
  .navigate-btn:nth-child(2):before {
  content: "Get started";
  white-space: nowrap;
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
}

.tour-poll .intro-tour-hint-wrapper.transformY_50 {
  top: 21px !important;
}

.progress-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {
  transform: none !important;
  left: auto !important;
  right: 674px !important;
  top: 100px !important;
}
.progress-view img {
  margin-top: 60px;
  margin-right: -278px;
}
.progress-view .intro-tour-hint-wrapper p {
  left: auto;
  bottom: auto;
  width: 200px;
  position: relative;
  margin: 0;
}
.progress-view .intro-tour-hint-wrapper .footer {
  left: auto;
  bottom: auto;
  position: relative;
}

.profilelist-view img {
  margin-top: 60px;
  margin-right: -220px;
}
.profilelist-view .intro-tour-hint-wrapper {
  top: 90px !important;
}
.profilelist-view .intro-tour-hint-wrapper .content {
  height: 150px;
}
.profilelist-view .intro-tour-hint-wrapper p {
  left: 0;
  bottom: auto;
}
.profilelist-view .intro-tour-hint-wrapper .footer {
  left: 0;
  bottom: 0;
  position: relative;
}

.profilelist-view .navigate-btn:first-child:before {
  content: "Previous";
  padding: 7px 16px;
}
.profilelist-view .intro-tour-hint-wrapper .navigate-btn:nth-child(1) {
  width: 109px;
}
.profilelist-view .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
  content: "Next";
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
  color: white;
}
.profilelist-view .intro-tour-hint-wrapper .footer .navigate-btn__next {
  bottom: 15px !important;
}
.profilelist-view .intro-tour-hint-wrapper .navigate-btn:nth-child(3):before {
  content: "Skip";
  visibility: visible;
}

.mycoupon-view img {
  transform: rotate(45deg);
  margin-right: -40px;
  margin-top: 22px;
}
.mycoupon-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {
  margin-top: -30px;
  margin-left: 153px;
}
.mycoupon-view .intro-tour-hint-wrapper .content {
  height: 100px;
}
.mycoupon-view .intro-tour-hint-wrapper p {
  left: -132px;
  bottom: 35px;
}
.mycoupon-view .intro-tour-hint-wrapper .footer {
  left: -150px;
  bottom: -13px;
}
.mycoupon-view .intro-tour-hint-wrapper .footer .navigate-btn__finish {
  right: -10px !important;
  color: white;
}
.mycoupon-view .intro-tour-hint-wrapper .navigate-btn:first-child:before {
  content: "Previous";
  padding: 7px 16px;
}
.mycoupon-view .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
  content: "Get started";
  white-space: nowrap;
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
}

.menu-view .intro-tour-hint-wrapper {
  left: auto !important;
  right: 30px;
  top: 46px !important;
  transform: none !important;
}
/*.hint-overlay{z-index: 9999 !important;}*/
.intro-tour-hint-wrapper {
  z-index: 99999 !important;
}

.menu-walkthrough .intro-tour-hint-wrapper {
  transform: none !important;
  left: auto !important;
  top: 70px !important;
  right: 20px;
}
.menu-walkthrough .intro-tour-hint-wrapper img {
  position: absolute;
  top: -62px;
  transform: rotate(45deg);
  left: 15px;
}
.menu-walkthrough .intro-tour-hint-wrapper p {
  position: relative;
  left: auto;
  right: 0;
  top: auto;
  bottom: auto;
  margin: 0;
}
.menu-walkthrough .intro-tour-hint-wrapper .footer {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}
.menu-walkthrough .intro-tour-hint-wrapper .footer .navigate-btn__next {
  right: 182px !important;
}
.sidebar-walkthrough .intro-tour-hint-wrapper {
  transform: none !important;
  left: 180px !important;
  top: 156px !important;
}
.sidebar-walkthrough .intro-tour-hint-wrapper img {
  position: absolute;
  top: -62px;
  transform: rotate(45deg);
  left: -36px;
}
.sidebar-walkthrough .intro-tour-hint-wrapper p {
  position: relative;
  left: auto;
  right: 0;
  top: auto;
  bottom: auto;
  margin: 0;
}
.sidebar-walkthrough .intro-tour-hint-wrapper .footer {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}
.sidebar-walkthrough .intro-tour-hint-wrapper .navigate-btn:first-child:before {
  padding: 7px 16px;
  content: none;
}
.sidebar-walkthrough .intro-tour-hint-wrapper .navigate-btn:first-child {
  width: 0;
}

.penalist-menu-walkthrough .intro-tour-hint-wrapper {
  transform: none !important;
  left: auto !important;
  top: 180px !important;
  right: 218px;
}
.penalist-menu-walkthrough .intro-tour-hint-wrapper img {
  position: absolute;
  top: -30px;
  right: 8px;
}
.penalist-menu-walkthrough .intro-tour-hint-wrapper p {
  position: relative;
  left: auto;
  right: 0;
  top: auto;
  bottom: auto;
  margin: 0;
}
.penalist-menu-walkthrough .intro-tour-hint-wrapper .header .header-btn__close {
  right: 30px !important;
}
.penalist-menu-walkthrough .intro-tour-hint-wrapper .footer {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
}

.graph-box {
  border: 1px solid #9da8b7;
  border-radius: 8px;
  min-height: 350px;
  margin: 0 0 30px;
}
.graph-box h3 {
  padding: 7px 10px;
  font-size: 14px;
  line-height: 19px;
  margin: 0;
  border-bottom: 1px solid #9da8b7;
}

.post-statistics .modal-dialog {
  max-width: 1066px;
  min-width: 1066px;
}
.post-statistics .modal-body {
  padding: 20px 30px;
}
/*.post-statistics ul.users-option li.active{border-color: #EAA529;}*/
.post-statistics ul.users-option li .close-icon {
  margin-left: 10px;
  opacity: 0;
}
.post-statistics ul.users-option li:hover .close-icon {
  opacity: 1;
}
body .post-statistics .graph-box {
  min-height: 100%;
}
.post-statistics .col-md-6 {
  margin-bottom: 30px;
}
.post-statistics .no-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  display: block;
  padding: 7px 0;
  width: 100%;
  text-align: center;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}
.popup-header a {
  text-decoration: none;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-header a span {
  font-size: 20px;
  margin-right: 10px;
}
.statistics-graph {
  padding: 10px;
}
.earned-box .canvasjs-chart-canvas,
.earned-box .canvasjs-chart-container {
  width: 100%;
  object-fit: cover;
}
.earned-box #chartContainer {
  height: 260px;
}
/*.earned-box .chartjs-render-monitor{height: 260px !important;}*/
/*.earned-box .canvasjs-chart-tooltip {box-shadow: none !important;border: none !important;}
.earned-box .canvasjs-chart-tooltip  > div{background: #FFFFFF !important;box-shadow: 0 0 3px 1px rgba(0,0,0,0.15) !important;border: none !important;border-radius: 5px !important;padding: 10px !important;}
*/

/*.earned-box #chartjs-tooltip{opacity: 0 !important;}
.earned-box #chartjs-tooltip:hover{opacity: 1 !important;}*/
.earned-box #chartjs-tooltip,
.active-comm-graph #chartjs-tooltip {
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.15) !important;
  border-radius: 5px !important;
  border: none !important;
  position: absolute;
}

.active-comm-graph #chartjs-tooltip {
  padding: 0 !important;
  width: 125px;
  opacity: 0;
}
.earned-box #chartjs-tooltip h4 {
  font-size: 14px;
  margin-bottom: 4px;
  padding: 7px 10px 0;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
.earned-box #chartjs-tooltip small {
  font-size: 10px;
  color: #2b2d42;
  padding: 0 10px 10px;
  font-family: "Open Sans", sans-serif;
}
.active-comm-graph h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 0;
  font-size: 10px;
}
.active-comm-graph h6:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #06a8ff;
  border-radius: 50%;
  float: left;
  margin-top: 3px;
  margin-right: 7px;
}
.active-comm-graph p {
  color: #6c6c6c;
  padding: 3px 10px 4px;
  margin: 0;
  font-size: 10px;
}
.active-comm-graph p:first-child {
  padding-bottom: 0;
}
.active-comm-graph p strong {
  color: #222;
  padding-left: 10px;
  font-weight: 400;
}

.earned-box #chartjs-tooltip,
.active-activity-graph #chartjs-tooltip {
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.15) !important;
  border-radius: 5px !important;
  border: none !important;
  position: absolute;
}

.active-activity-graph #chartjs-tooltip {
  padding: 0 !important;
  width: 125px;
  opacity: 0;
}
.active-activity-graph h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding: 10px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 0;
  font-size: 10px;
}
.active-activity-graph h6:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #eaa529;
  border-radius: 50%;
  float: left;
  margin-top: 3px;
  margin-right: 7px;
}
.active-activity-graph p {
  color: #6c6c6c;
  padding: 3px 10px 4px;
  margin: 0;
  font-size: 10px;
}
.active-activity-graph p:first-child {
  padding-bottom: 0;
}
.active-activity-graph p strong {
  color: #222;
  padding-left: 10px;
  font-weight: 400;
}
.active-activity-graph h6.polls-class:before {
  background: #68d7ff;
}
.active-activity-graph h6.comments-class:before {
  background: #eaa529;
}
.active-activity-graph h6.reactions-class:before {
  background: #ea1c63;
}
.active-activity-graph h6.posts-class:before {
  background: #32cd32;
}

.no-transform {
  background-color: #000;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link a.nav-link {
  cursor: pointer !important;
}
.rule-tab label {
  width: 300px;
}
.rule-tab .custom-number {
  padding: 2px 14px 2px 7px;
  width: 60px;
}
.rule-tab hr {
  margin: 20px 0 25px;
  width: 60%;
  border-color: #e3e3e3;
  text-align: left;
}
.rule-tab h3 {
  font-size: 14px;
}

.filter .col-7 .dropdown-menu:before,
.filter .col-7 .dropdown-menu:after {
  right: auto;
  left: 45px;
}

.dropdown-menu-right,
.rgt-icon .dropdown-menu-right {
  left: auto !important;
  z-index: 9;
  right: -14px;
  margin-top: 14px;
}
/*.dropdown-menu-right.dropdown-menu:before{right: 1px;}
.dropdown-menu-right.dropdown-menu:after{right: 0;}*/
.responsive-nav {
  display: none;
}
.ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row.datatable-row-even {
  background-color: transparent !important;
}
/*.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:first-child, .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:first-child {width:90px !important;}
.community-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:nth-child(2),.community-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:nth-child(2) {width:160px !important;}
.community-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:nth-child(3),.community-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:nth-child(3) {width: calc(100% - 620px) !important;text-align: center;}
.community-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:nth-child(4),.community-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:nth-child(4) {width:120px !important;overflow-x: visible;}
.community-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:nth-child(5),.community-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:nth-child(5) {width: 140px !important;}
.community-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:last-child,.community-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:last-child {text-align: center !important;width: 90px !important;}
/*.ngx-datatable .datatable-body .datatable-scroll,.ngx-datatable .datatable-body .datatable-body-row > div,.ngx-datatable.bootstrap .datatable-body .datatable-body-row.datatable-row-even{width: 100% !important;}*/
.community-table
  .ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row
  .datatable-body-cell:nth-child(2)
  span,
.task-table.ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row
  .datatable-body-cell:nth-child(2)
  span {
  color: #6c6c6c;
  font-size: 12px;
}
.community-table .cid {
  font-size: 12px;
}
.community-table
  .ngx-datatable
  .datatable-body
  .datatable-row-wrapper:last-child
  .dropdown-menu-right {
  right: -11px;
  min-width: 133px;
  top: auto !important;
  bottom: 29px;
}
.community-table
  .ngx-datatable
  .datatable-body
  .datatable-row-wrapper:last-child
  .dropdown-menu:after {
  transform: rotate(180deg);
  bottom: -14px;
  top: auto;
}
.community-table
  .ngx-datatable
  .datatable-body
  .datatable-row-wrapper:last-child
  .dropdown-menu:before {
  transform: rotate(180deg);
  bottom: -15px;
  top: auto;
}

.ngx-datatable.bootstrap .datatable-footer {
  color: #9da8b7 !important;
}
.ngx-datatable.bootstrap .dropdown {
  margin-left: 8px;
}
.ngx-datatable.bootstrap .dropdown-toggle::after {
  border-color: #9da8b7;
}
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  .datatable-icon-left,
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  .datatable-icon-skip,
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  .datatable-icon-right,
.ngx-datatable.bootstrap
  .datatable-footer
  .datatable-pager
  .datatable-icon-prev {
  line-height: 30px !important;
}
.profile-tab .editcover-box {
  top: 90% !important;
  right: auto !important;
  margin-left: 30px;
}
ngb-typeahead-window#ngb-typeahead-0 {
  width: 100%;
}
.search-section .close-serach {
  position: absolute;
  right: 24px;
  top: 15px;
  font-size: 18px;
  color: #999;
  opacity: 0;
}
.search-section.hide-search .close-serach {
  opacity: 1;
}
.feed-commentbox {
  margin-top: 30px;
  width: 100%;
  float: left;
}
.feed-commentbox .uploadimg-box {
  margin-left: 0;
  padding-left: 0;
  margin-top: 25px;
}
/* agnular dropdown*/
.c-btn {
  min-height: auto !important;
  height: 10px;
}
.cuppa-dropdown .selected-list .c-angle-down,
.cuppa-dropdown .selected-list .c-angle-up {
  right: -8px !important;
  width: 12px !important;
  height: 12px !important;
}
.cuppa-dropdown .selected-list .c-btn {
  padding-left: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  font-size: 13px;
}
.cuppa-dropdown .selected-list .c-btn:focus {
  outline: none;
  padding-left: 0 !important;
}
.cuppa-dropdown .dropdown-list {
  width: 130px !important;
}
.comm-drodown .cuppa-dropdown .dropdown-list {
  width: 200px !important;
}
.cuppa-dropdown .pure-checkbox input[type="checkbox"] + label {
  padding-left: 0 !important;
  font-size: 13px;
  word-break: break-word;
  white-space: normal;
  font-weight: 400 !important;
  color: #212529;
}
.cuppa-dropdown .list-area {
  box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  -webkit-box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  -moz-box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  border: 1px solid #ebebeb !important;
}
.cuppa-dropdown .dropdown-list ul li {
  padding: 10px 15px 5px 15px !important;
}
.cuppa-dropdown .dropdown-list ul li:last-child {
  padding-bottom: 10px !important;
}
.cuppa-dropdown .dropdown-list {
  padding-top: 5px !important;
  margin-top: 6px;
}
.cuppa-dropdown .arrow-down,
.cuppa-dropdown .arrow-up {
  border-left: 6px solid transparent !important;
  border-right: 6px solid transparent !important;
  border-bottom: 6px solid #fff !important;
}
.cuppa-dropdown .arrow-2 {
  border-bottom: 6px solid #ebebeb !important;
}
.cuppa-dropdown span.c-remove.clear-all {
  display: none;
}
.cuppa-dropdown .selected-list .c-angle-down svg,
.cuppa-dropdown .selected-list .c-angle-up svg {
  fill: #222222 !important;
  width: 94%;
  display: none;
}
.cuppa-dropdown .pure-checkbox input[type="checkbox"]:checked + label:after {
  display: none;
}
.filter .dropdown.date-dropdown .dropdown-toggle::after {
  vertical-align: 0.255em;
}
.cuppa-dropdown::after {
  content: "";
  border-style: solid;
  border-color: #222222;
  vertical-align: 0.08em;
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  display: inline-block;
  position: absolute;
  top: 0;
  right: -6px;
}
.memberFormInput .formGroupContainer .cuppa-dropdown::after {
  right: 1px;
}
.date-dropdown .dropdown-menu:after,
.date-dropdown .dropdown-menu:before {
  content: none;
}
.responsive-filter {
  display: none;
}
.member-table table tr td:last-child {
  width: 80px;
}

.posted-img {
  display: flex;
  flex-wrap: wrap;
}
.post-images {
  width: 128px;
  height: 110px;
  border-radius: 6px;
  margin-bottom: 15px;
  margin: 0 10px 10px 0;
}
.post-images > img {
  width: 128px;
  height: 110px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 6px;
}
.post-images > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}
.post-images.doc-upload {
  width: 100%;
  height: 100%;
  /*height: auto;*/
}
.post-attachment-file {
  display: flex;
  height: 100%;
  font-size: 10px;
  padding: 10px;
  text-align: center; /*background: #e3f1fe;*/
  background: #e5f0ff;
  justify-content: space-between;
  align-items: center;
  width: 300px;
}
.post-attachment-file .att-left {
  display: flex;
}
.post-attachment-file .att-left p {
  color: #222;
  margin: 0;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 12px 0 8px;
  font-size: 14px;
}
.post-attachment-file .att-left p span {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 210px !important;
  color: black !important;
}
.post-attachment-file .att-right img {
  margin-right: 8px;
}
.post-attachment-file .att-left .file-size {
  font-size: 13px;
  margin-left: 10px;
}
.post-attachment-file .att-right a {
  display: flex;
  font-size: 12px;
  color: #222;
  text-decoration: none;
}
.repost-img {
  width: 300px;
}
.repost-img li video {
  width: 100%;
}
.community-parent .comm-sortby .dropdown {
  margin-right: 5px;
}
.repost-img .post-attachment-file .att-left {
  align-items: center;
}
.repost-img .file-icon {
  margin-top: 0;
}
.permission-popup p.warning-msg {
  padding: 8px 10px;
  margin-bottom: 0;
}
.permission-popup .textarea-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-right: 10px;
}
.permission-popup .edittextarea-content {
  width: 100%;
  padding-right: 10px;
}
.fullwidth {
  width: 100%;
}
.ticket-reward-box .post-attachment-file {
  margin: 10px 0 0;
  /*order: 1;*/
  /*width: 100%;*/
  width: 300px !important;
}
.ticket-reward-box .ticket-img-parent {
  margin-bottom: 0;
}
.ticket-img-parent .video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.ticket-reward-box .post-attachment-file .att-left p span {
  width: 100%;
}
.ticket-reward-box .img-box:after {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  border-radius: 4px;
  content: "";
  background: url('ic-largeview.eae7d648ea7631f8.svg') no-repeat;
  height: 24px;
  width: 24px;
  position: absolute;
  background-size: contain;
  bottom: 8px;
  right: 8px;
  top: auto;
  cursor: pointer;
  display: block;
}
.ticket-reward-box .img-box.video-box:after {
  content: none;
}
/*.ngx-datatable .datatable-body .datatable-scroll,.ngx-datatable.bootstrap .datatable-body .datatable-body-row{width: calc(100% + 60px) !important;}*/
/* admin table*/
.admin-table
  .ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row
  .datatable-body-cell:last-child,
.admin-table
  .ngx-datatable.fixed-header
  .datatable-header
  .datatable-header-inner
  .datatable-header-cell:last-child {
  text-align: center !important; /*width: 90px !important;*/
}
/*.admin-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:nth-child(2),.admin-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:nth-child(2) {width:160px !important;}
.admin-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:nth-child(5),.admin-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:nth-child(5) {width: 260px !important;}*/
.comm-sortby .cuppa-dropdown .dropdown-list {
  right: -14px;
}
.comm-sortby .arrow-down,
.comm-sortby .arrow-up {
  right: 7px;
}
.responsive-search {
  display: none;
}
.ngx-datatable.bootstrap .datatable-header {
  height: 50px !important;
}
.border-box h4.addmember {
  margin-bottom: 15px;
}
.iecoverpage {
  height: 120px;
    /*height: 174px;*/
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  display: flex;
  left: 0;
  position: absolute;
}
.iepostimg {
  /* background: #d8d8d8;
  border: 5px solid #e8e8e8;*/
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background-size: cover;
  max-height: 100%;
  background-position: center;
}
.img-box .upload-img,
.post-images .upload-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.post-images .upload-img {
  border-radius: 6px;
}
.postreply-box .post-images .upload-img {
  position: relative;
  cursor: pointer;
}
.postreply-box .post-images .upload-img:after {
  content: "";
  background: url('ic-largeview.eae7d648ea7631f8.svg') no-repeat;
  height: 24px;
  width: 24px;
  position: absolute;
  background-size: contain;
  bottom: 8px;
  right: 8px;
}
.iepreview {
  position: absolute;
  background-size: cover;
  background-position: center;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.iefeedimg {
  height: 38px;
  width: 38px;
  min-width: 38px;
  background-color: #d8d8d8;
  border-radius: 50%;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}
/* toggle*/
#wrapper.active .front-toggle #sidebar-wrapper {
  left: 46px;
  width: 46px;
  margin-left: -46px;
}
#wrapper.active
  .front-toggle
  #sidebar-wrapper
  .sidebar-nav
  li
  a
  span.side-content {
  margin-left: -200px;
  opacity: 0;
}
#wrapper.active #sidebar-wrapper .sidebar-nav li a span.side-content {
  transition: 0.2s ease-in-out all;
  -webkit-transition: 0.2s ease-in-out all;
  -moz-transition: 0.2s ease-in-out all;
  -ms-transition: 0.2s ease-in-out all;
}
/*.toggleslide{height: calc(100vh - 475px);bottom: 0;position: absolute;width: 100%;}*/
.sidebar-nav li a.toggleslide {
  padding: 0 !important;
  height: auto !important;
  margin-top: 10px;
}
.res-menu {
  display: none;
}
.reply-box-short-name {
  background: #d8d8d8;
  border: 2px solid #e8e8e8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2849a3;
  font-weight: 600;
}
/*.profile-tab .edit-pic{display: flex;align-items: center;justify-content: center;}*/
.navbar .navbar-nav li:last-child .nav-link span.profile-name {
  max-width: 130px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  height: 17px;
  width: 130px;
}
.empty-page h3.uname {
  width: 435px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
#wrapper .fullview-grid {
  transition: 0.5s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
}
.feed-wrapper {
  padding-top: 0;
}
.border-box .table thead th {
  white-space: nowrap;
}
.toast-container .toast-title,
.toast-container .toast-message {
  font-family: "Open Sans", sans-serif !important;
}
a.new-link-class {
  text-decoration: none;
  color: #222222;
}
a.new-link-class:hover {
  color: #006bd0;
}
.postdelete-popup .modal-body > p {
  line-height: 23px;
}
.postdelete-popup .modal-body .btn {
  margin-left: 20px;
  margin-bottom: 0;
}
.postdelete-popup .login-btn {
  margin: 35px 0 0;
}
.profile-right .ieeditpic {
  position: absolute;
  width: 100%;
}
.relesepoint-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6c6c6c;
}
.relesepoint-box .btn {
  font-size: 15px;
  padding: 10px 30px;
  height: inherit;
  font-weight: 600;
}
.post-icon .custom-number input {
  width: auto;
}

/******** like -dislike popup **********/
.like-dislike-popup .modal-dialog {
  max-width: 558px;
  min-width: 558px;
}
.like-dislike-popup .modal-body {
  padding: 0;
}
.like-dislike-popup ul.nav {
  box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  -webkit-box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  -moz-box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
}
.like-dislike-popup ul.nav li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.like-dislike-popup ul.nav li a {
  border-bottom: 3px solid #fff;
  color: #ca8500;
  font-weight: 600;
  padding: 15px 10px;
  font-size: 13px;
  color: #6c6c6c;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.like-dislike-popup ul.nav li a .main-img {
  margin-right: 10px;
}
.like-dislike-popup ul.nav li:first-child a {
  margin: 0 25px;
}
.like-dislike-popup ul.nav li a.active {
  border-bottom: 3px solid #eaa529;
  color: #ca8500;
}
.like-dislike-popup ul.detail {
  padding-left: 25px;
  padding-right: 10px;
  height: 360px;
  overflow-y: auto;
}
.like-dislike-popup ul.detail li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.like-dislike-popup ul.detail li .user-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-size: cover;
  background-color: #d8d8d8;
  color: #2849a3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  background-position: center;
}
.like-dislike-popup ul.detail li h3 {
  margin: 0;
  font-size: 13px;
  color: #2b2d42;
  font-weight: 500;
  line-height: inherit;
  display: inline-block;
  padding-right: 15px;
}
.like-dislike-popup ul.detail .user-detail {
  border-bottom: 1px solid #e5f0ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 47px);
  padding: 20px 15px;
  font-size: 13px;
}
.like-dislike-popup ul.detail .user-detail span {
  color: #4f507a;
  white-space: nowrap;
}
.like-dislike-popup p.nodata {
  margin: 10px 0;
  font-size: 13px;
  color: #2b2d42;
  font-weight: 500;
  line-height: inherit;
  text-align: center;
}

button.common-close {
  top: -30px;
  color: #fff;
  right: 0;
}
button.common-close span {
  color: #fff;
}
/******** end like -dislike popup **********/

/******** reaction popup **********/
.reaction-popup .modal-dialog {
  max-width: 558px;
  min-width: 558px;
}
.reaction-popup .modal-body {
  padding: 0;
}
.reaction-popup ul.nav {
  box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  -webkit-box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  -moz-box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
}
.reaction-popup ul.nav li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reaction-popup ul.nav li a {
  height: 52px;
  border-bottom: 3px solid #fff;
  color: #ca8500;
  font-weight: 600;
  padding: 15px;
  font-size: 13px;
  color: #6c6c6c;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.reaction-popup ul.nav li a .main-img {
  margin-right: 5px;
}
.reaction-popup ul.nav li:first-child a {
  margin-left: 15px;
}
.reaction-popup ul.nav li a.active {
  border-bottom: 3px solid #eaa529;
  color: #ca8500;
}
.reaction-popup ul.detail {
  padding-left: 25px;
  padding-right: 10px;
  height: 360px;
  overflow-y: auto;
}
.reaction-popup ul.detail li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reaction-popup ul.detail li .user-img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: #d8d8d8;
  color: #2849a3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.reaction-popup ul.detail li h3 {
  margin: 0;
  font-size: 13px;
  color: #2b2d42;
  font-weight: 500;
  line-height: inherit;
  display: inline-block;
  padding-right: 15px;
}
.reaction-popup ul.detail .user-detail {
  border-bottom: 1px solid #e5f0ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 47px);
  padding: 20px 15px;
  font-size: 13px;
}
.reaction-popup ul.detail .user-detail span {
  color: #4f507a;
  white-space: nowrap;
}
.reaction-popup p.nodata {
  margin: 10px 0;
  font-size: 13px;
  color: #2b2d42;
  font-weight: 500;
  line-height: inherit;
  text-align: center;
}
.reaction-popup .reaction-graph {
  padding: 15px 30px 0;
}
/******** end reaction popup **********/

/******** permission popup **********/
.setpermission-popup .modal-body {
  padding: 25px 30px;
  width: 100%;
  float: left;
}
.setpermission-popup .modal-lg {
  max-width: 757px;
  min-width: 757px;
}
.setpermission-popup .permission-point {
  margin: 54px 0 25px;
  padding-left: 32px;
}
.setpermission-popup .permission-point .d-flex > label {
  margin: 0;
  flex: 0.7;
  line-height: 18px;
}
.setpermission-popup .toggle-onoff .switch {
  border: none;
  background: transparent !important;
}
.setpermission-popup .custom-number {
  padding: 0 8px;
  width: 60px;
  overflow: hidden;
}
.setpermission-popup .custom-number button {
  top: -4px;
}
.setpermission-popup .custom-number button.sub {
  bottom: 0;
  top: auto;
}
.setpermission-popup .permission-point h3 {
  font-size: 16px;
  color: #9da8b7;
  text-transform: uppercase;
}
.setpermission-popup .btn {
  margin: 0 0 15px;
}
.setpermission-popup .save-btn {
  padding: 0 30px;
}
.setpermission-popup .set-point .d-flex {
  align-items: center;
}
/******** end permission popup **********/

/******** profiling question **********/
.profiling-table tbody tr td {
  vertical-align: top;
  padding: 20px 15px;
}
.profiling-table tbody tr td:last-child {
  width: 130px;
  white-space: inherit;
}
.profiling-table tbody tr td:first-child {
  width: calc(100% - 130px);
}
.profiling-table tbody tr td i.next-icon {
  font-size: 25px;
  display: inline-block;
  float: right;
  cursor: pointer;
}
.profiling-table tbody tr td:first-child a {
  font-size: 16px;
  padding-left: 20px;
  white-space: initial;
  display: inline-block;
}
.profiling-tab .box-header {
  align-items: self-start;
}
.profiling-tab .box-header h3 {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
.profiling-tab .box-header h3 span {
  font-size: 14px;
  color: #6c6c6c;
  font-weight: 500;
  margin-top: 2px;
  margin-bottom: 10px;
}
.profiling-tab .rgt-icon .blank-btn:hover {
  background: transparent;
  color: #00a6fb;
}
.profiling-short-detail {
  padding: 10px 20px 20px;
  border-top: 1px solid #ebebeb;
}
.profiling-short-detail h3 {
  color: #ca8500;
  margin: 5px 0 17px;
  font-size: 14px;
}
.profiling-short-detail ul {
  display: flex;
  color: #6c6c6c;
}
.profiling-short-detail ul li {
  margin-right: 100px;
}
.profiling-short-detail ul li:last-child {
  margin-right: 0;
}
.profiling-short-detail ul li span {
  display: block;
  color: #3f3f3f;
  font-weight: 600;
  margin-top: 5px;
}
.profiling-inner-tab .white-box {
  width: 100%;
  float: left;
}
.profiling-inner-tab .box-header {
  height: 55px;
  /*padding: 10px 20px;*/
  padding: 10px 10px;
}
.profiling-inner-tab .box-header h3 a.title-edit {
  margin-left: 12px;
}
.profiling-inner-tab input[type="checkbox"] ~ .checkmark-radio {
  border-radius: 4px;
}
.profiling-inner-tab .profile-qubox {
  width: 100%;
  float: left;
  padding: 15px 25px;
}
.profiling-inner-tab .profile-qubox h3.title {
  font-size: 15px;
  font-weight: 500;
  color: #6c6c6c;
  margin: 0;
}
.profiling-inner-tab .profile-qubox h3.title span {
  position: relative;
  padding-left: 40px;
}
.profiling-inner-tab .profile-qubox h3.title span:before {
  content: "";
  background: rgba(108, 108, 108, 0.7);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 19px;
  top: 9px;
}
.profiling-inner-tab .profile-qubox .qu-title {
  margin-bottom: 20px;
}
/*.profiling-inner-tab label {padding: 10px 0 0 30px;display: block;margin-right: 0;}*/
.profiling-inner-tab .multi-response label {
  width: 45%;
  display: inline-block;
  float: left;
  margin-right: 0;
}
.profiling-inner-tab .multi-response label:nth-child(even) {
  float: right;
}
.profiling-inner-tab .checkmark-radio {
  position: relative;
  left: -15px;
  top: 1px;
  right: auto;
  float: left;
}
.profiling-inner-tab .vote-box {
  /*padding: 20px 0 0;*/
  padding: 0;
  width: 100%;
  float: left;
  min-width: auto;
}
.profiling-inner-tab .small-link {
  color: #00a6fb;
  font-size: 14px;
}
/*.profiling-inner-tab .vote-option,.profiling-inner-tab hr{display: block;width: 100%;float: left;}*/
.profiling-inner-tab .update-btn {
  padding-left: 20px;
  padding-right: 20px;
}
.profiling-inner-tab .single-response label {
  width: 164px;
  display: inline-block;
  margin-right: 22px;
}
.profiling-inner-tab .single-response label:last-child {
  margin-right: 0;
}
.profiling-btn {
  float: right;
  padding: 25px;
}
.profiling-btn .btn {
  margin-left: 25px;
  padding-right: 25px;
  padding-left: 25px;
}
.float-label .form-control-placeholder {
  width: 93%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}
.empty-profile-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 0 15px;
  height: 470px;
}
.empty-profile-page img {
  display: flex;
  margin: 0 auto 36px;
}
.empty-profile-page h2 {
  font-size: 26px;
  color: #6c6c6c;
  margin-bottom: 14px;
}
.empty-profile-page p {
  color: #9da8b7;
}
.empty-profile-page .empty-link {
  cursor: pointer;
  background: transparent;
  border: 1px solid #d9d9d9;
  padding: 10px 22px;
  width: 353px;
  margin: 20px auto 0;
  margin-bottom: 15px;
  text-align: left;
  font-size: 16px;
  text-decoration: none;
  color: #222222;
  border-radius: 3px;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
}
.empty-profile-page .empty-link i {
  color: #6c6c6c;
  font-size: 23px;
  float: right;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
}
.empty-profile-page .empty-link:hover {
  border-color: #00a6fb;
  color: #00a6fb;
}
.empty-profile-page .empty-link:hover i {
  transform: translateX(8px);
  color: #00a6fb;
}
/******** end profiling question **********/

/******** Reward history question **********/
.reward-history-tab .box-header {
  height: 55px;
  padding: 10px 20px;
}
.reward-history-tab .box-header .dropdown > a {
  color: #222222;
}
.reward-short-detail {
  padding: 10px 20px 20px;
  border-top: 1px solid #ebebeb;
}
.reward-short-detail h3 {
  color: #ca8500;
  margin: 5px 0 17px;
  font-size: 14px;
}
.reward-short-detail ul {
  display: flex;
  justify-content: space-between;
  color: #6c6c6c;
}
.reward-short-detail ul li span {
  display: block;
  color: #3f3f3f;
  font-weight: 600;
  margin-top: 5px;
}
.reward-short-detail ul li a.view-bill {
  position: absolute;
  top: -30px;
  right: 0;
}
.reward-short-detail ul li .btn-custom {
  font-weight: 600;
}
.box-header .gray-link {
  color: #6c6c6c;
  font-size: 14px;
}
.reward-history-tab .search-bar {
  margin-right: 0;
}
.reward-history-tab
  .ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row
  .datatable-body-cell {
  padding: 14px 20px 20px;
}
.reward-history-tab .r-history {
  font-size: 14px;
}
.reward-history-tab .nodata {
  font-size: 15px;
  color: #6c6c6c;
  padding: 0 20px 20px;
}
/******** end  Reward history question **********/

/******** Panelist login **********/
.participant-post .attach-file .btn-custom {
  padding: 0 15px;
}
.participant-post .vote-option {
  justify-content: space-between;
}
.participant-post .vote-box label.custom-radio {
  padding-left: 30px;
  max-width: 48%;
  flex: 0 0 48%;
  margin-right: 0;
  transition: 0.15s ease-in-out;
  -webkit-transition: 0.15s ease-in-out;
  -moz-transition: 0.15s ease-in-out;
}
.participant-post .vote-box .checkmark-radio {
  position: relative;
  top: auto;
  left: -15px;
}
.panelist-nav .navbar-nav li:first-child .nav-link {
  padding-right: 2px;
}
.panelist-nav .navbar-nav li:first-child .nav-link .changecomm-name {
  line-height: initial;
  max-width: 370px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  white-space: nowrap;
}
.panelist-nav {
  z-index: 9;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
}
.panellist-banner {
  position: relative;
  background: #ebebeb;
  height: 150px !important;
  /*height: 293px;*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.panellist-banner .penalist-logo {
  object-fit: contain;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  border: 1px solid #ffffff;
  box-shadow: 0 1px 2px 1px rgba(34, 34, 34, 0.13);
}
.panellist-no-banner {
  position: relative;
  background: #ebebeb;
  height: 70px;
}
/*for making same like root user in panelist*/
/*.panellist-no-banner .penalist-logo {
  object-fit: contain;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  border: 1px solid #ffffff;
  box-shadow: 0 1px 2px 1px rgba(34, 34, 34, 0.13);
}*/
.panellist-no-banner .penalist-logo {
  object-fit: contain;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: white;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 15px;
  border: 1px solid #ffffff;
  box-shadow: 0 1px 2px 1px rgba(34, 34, 34, 0.13);
}
.participant-post .vote-box label.progress {
  padding-left: 0;
}
.participant-post .vote-box label.progress span.progress-title {
  position: absolute;
}
.panelist-nav ul.navbar-nav {
  margin-right: -15px;
}
.panelist-nav .navbar-nav li:last-child .dropdown-menu {
  right: 3px;
  z-index: 999;
}
.panelist-nav .navbar-nav li:first-child .dropdown-menu {
  right: -9px;
}
.participant-post
  .vote-box
  label.custom-radio
  input[type="radio"]
  ~ .checkmark-radio:after {
  width: 14px;
  height: 14px;
}

.news-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
}
.news-inner-box {
  display: flex;
}
.news-left {
  width: 194px;
  height: 164px;
  background-size: cover;
  margin-right: 34px;
  background-position: center;
  border-radius: 5px;
}
.news-right {
  width: calc(100% - 228px);
  padding-right: 100px;
}
.news-right a.news-name {
  font-size: 17px;
  color: #222222;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}
.news-right span.date {
  font-size: 12px;
  color: #6c6c6c;
  letter-spacing: 0;
  line-height: 12px;
}
.news-right span.uname {
  font-size: 12px;
  color: #222222;
  letter-spacing: 0;
  line-height: 12px;
  padding-left: 18px;
  position: relative;
  font-weight: 600;
}
.news-right span.uname:before {
  content: "";
  background-color: #9da8b7;
  height: 4px;
  width: 4px;
  display: inline-block;
  margin: 0 7px;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 7px;
}
.news-right p {
  font-size: 14px;
  color: #6c6c6c;
  line-height: 22px;
  margin-top: 12px;
}
.news-box .likedis-btn {
  border-top: 1px solid #e8e8e8;
  padding-top: 16px;
}
.news-right a {
  font-size: 16px;
}
/*.new-profile-tab .nav-pills li a img{position: absolute;left: 20px;top: 0;bottom: 0;margin: auto;}*/
.new-profile-tab {
  margin-bottom: 50px;
}
.new-profile-tab .nav-pills li a .active-img {
  opacity: 0;
  display: none;
}
.new-profile-tab .nav-pills li a.active .active-img {
  opacity: 1;
  display: block;
}
.new-profile-tab .nav-pills li a.active .default-img {
  opacity: 0;
  display: none;
}
.new-profile-tab .nav-pills li a img {
  margin-right: 20px;
}
.new-profile-tab .nav-pills .nav-link {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 18px;
}
.profile-box .custom-progressbar .progress {
  height: 8px;
  background: #f1f3f6;
}
.new-profile-tab .tooltip,
.profile-tab .tooltip {
  display: none;
}
.user-profile .coupon-table tr td:first-child {
  width: 120px;
}
.user-profile .coupon-table tr td .coupon-img {
  border: 1px solid #eee;
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: cover;
  border-radius: 4px;
}

.profile-tab {
  margin-bottom: 50px;
}
.profile-tab .nav-pills li a .active-img {
  opacity: 0;
  display: none;
}
.profile-tab .nav-pills li a.active .active-img {
  opacity: 1;
  display: block;
}
.profile-tab .nav-pills li a.active .default-img {
  opacity: 0;
  display: none;
}
.profile-tab .nav-pills li a img {
  margin-right: 20px;
}
.profile-tab .nav-pills .nav-link {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 18px;
}
.profile-tab .nav-pills .nav-link span {
  color: #222222;
  font-size: 16px;
  line-height: inherit;
}
.profile-tab .nav-pills .nav-link.active span {
  font-weight: 600;
}
.user-profiling-tab .select-cat {
  color: #6c6c6c;
  line-height: 18px;
  margin-bottom: 14px;
  display: block;
}
.user-profiling-tab .blue-box .form-control {
  border-color: #00a6fb;
}
.user-profiling-tab .blue-box span.cat-progess {
  position: absolute;
  top: 14px;
  right: 54px;
  color: #00a6fb;
  font-weight: 600;
  z-index: 2;
}
.user-profiling-tab .blue-box.select-option:before {
  color: #00a6fb;
  z-index: 2;
}
.user-profiling-tab .blue-box .ng-arrow-wrapper {
  opacity: 0;
}

.user-profiling-inner {
  border: 1px solid #e8e8e8;
  padding: 25px 40px;
  border-radius: 5px;
  margin-top: 10px;
  position: relative; /*overflow: hidden;*/
  z-index:9;
}
.user-profiling-inner .progress {
  border-radius: 5px 5px 0 0 !important;
}
/*.user-profiling-inner:before{content: "";background-color: #00A6FB;height: 5px;width: 250px;position: absolute;top: 0;left: 0;border-top-left-radius: 5px;}*/
.user-profiling-inner label.title {
  font-size: 16px;
  margin-bottom: 20px;
}
.user-profiling-inner label.custom-radio {
  width: 450px;
  padding: 10px 0 0 30px;
  background: #f9f9f9;
  display: block;
  flex: none;
  width: 100%;
  margin: 0 0 14px;
}
.user-profiling-inner .single-response label.custom-radio {
  width: 164px;
  display: inline-block;
  margin-right: 22px;
  margin-bottom: 40px;
}
.user-profiling-inner .single-response {
  display: block;
  width: 100%;
  float: left;
}
.user-profiling-inner .single-response label:last-child {
  margin-right: 0;
}
.user-profiling-inner .checkmark-radio {
  position: relative;
  left: -15px;
  top: 1px;
  right: auto;
  float: left;
}
.user-profiling-inner input[type="checkbox"] ~ .checkmark-radio {
  border-radius: 4px;
}
.user-profiling-inner .vote-box {
  padding: 0;
  min-width: auto;
}
.user-profiling-inner .form-group {
  margin-bottom: 40px;
}
.user-profiling-tab .profiling-footer {
  display: flex;
  flex-flow: column;
}
.user-profiling-tab .profiling-footer label {
  font-size: 16px;
  color: #ea1c63;
}
.user-profiling-tab .profiling-footer .comm-next-pre {
  margin: 20px 0 10px;
}
.user-profiling-inner
  .custom-radio
  input[type="radio"]:checked
  ~ .checkmark-radio {
  background-color: #fff;
}
.user-profiling-inner
  .custom-radio
  input[type="radio"]
  ~ .checkmark-radio:after {
  top: 4px;
}
.user-profiling-inner .custom-progressbar {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
}
.user-profiling-inner .progress,
.user-profiling-inner .custom-progressbar .progress-bar {
  border-radius: 0;
}
.user-profiling-inner .custom-progressbar .progress {
  height: 5px;
}
.user-profiling-inner .custom-progressbar .progress {
  background: transparent;
}
.user-profiling-inner .select-option {
  margin-bottom: 20px;
  z-index: 0;
}

.user-points-tab .points-table tr td p {
  font-size: 14px;
  margin-top: 5px;
  white-space: normal;
  width: 250px;
}
.user-points-tab .points-table tr td:first-child {
  width: 50%;
  padding-right: 100px;
}
.user-points-tab
  .points-table.ngx-datatable
  .datatable-body
  .datatable-row-wrapper:first-child
  .datatable-body-row {
  border-top: none;
}
.user-points-tab
  .points-table.ngx-datatable
  .datatable-body
  .datatable-body-row
  .datatable-body-cell
  a {
  color: #006bd0;
  text-decoration: none;
  white-space: pre-wrap;
}
.user-points-tab
  .points-table.ngx-datatable
  .datatable-body
  .datatable-body-row
  .datatable-body-cell {
  padding: 25px 15px;
  white-space: nowrap;
}
.user-points-tab
  .points-table.ngx-datatable
  .datatable-body
  .datatable-body-row
  .datatable-body-cell:first-child,
.user-points-tab
  .points-table.ngx-datatable.fixed-header
  .datatable-header
  .datatable-header-inner
  .datatable-header-cell:first-child {
  padding-left: 0;
}

.user-points-tab .empty-points {
  display: flex;
  flex-flow: column;
  margin-top: 60px;
  width: 560px;
  margin: 0 auto;
  text-align: center;
}
.user-points-tab .empty-points h1 {
  margin-top: 36px;
}
.user-points-tab .empty-points p {
  margin-bottom: 40px;
  color: #767f8c;
}
.user-points-tab .empty-points img {
  width: 69px;
  margin: 0 auto;
}
.user-points-tab .empty-points .empty-link {
  background: transparent;
  border: 1px solid #d9d9d9;
  padding: 10px 22px;
  width: 353px;
  margin: 0 auto;
  margin-bottom: 15px;
  text-align: left;
  font-size: 16px;
  text-decoration: none;
  color: #222222;
  border-radius: 3px;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
}
.user-points-tab .empty-points .empty-link i {
  color: #6c6c6c;
  font-size: 23px;
  float: right;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
  -moz-transition: 0.5s ease-out;
}
.user-points-tab .empty-points .empty-link:hover {
  border-color: #00a6fb;
  color: #00a6fb;
}
.user-points-tab .empty-points .empty-link:hover i {
  transform: translateX(8px);
  color: #00a6fb;
}

.user-post-tab .post-table a {
  color: #006bd0;
  font-size: 12px;
  font-weight: 600;
}
/*.user-post-tab .post-table tr td p{font-size: 14px;white-space: normal;width: 250px;color: #222222;}*/
.user-post-tab .post-table p.post-title {
  padding-right: 10px;
  font-size: 14px;
  color: #222;
  white-space: normal;
}
.user-post-tab
  .post-table.ngx-datatable
  .datatable-body
  .datatable-row-wrapper:first-child
  .datatable-body-row {
  border-top: none;
}
.user-post-tab
  .post-table.ngx-datatable
  .datatable-body
  .datatable-body-row
  .datatable-body-cell {
  padding: 25px 15px;
}
.user-post-tab
  .post-table.ngx-datatable
  .datatable-body
  .datatable-body-row
  .datatable-body-cell:first-child,
.user-post-tab
  .post-table.ngx-datatable.fixed-header
  .datatable-header
  .datatable-header-inner
  .datatable-header-cell:first-child {
  padding-left: 0;
}
.user-post-tab .post-date {
  white-space: nowrap;
}

.user-post-tab .empty-post {
  margin: 0 auto;
  text-align: center;
  height: 450px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
}
.user-post-tab .empty-post img {
  padding-top: 0;
}
.user-post-tab .empty-post h1 {
  margin-top: 0;
  line-height: 26px;
}
.user-post-tab .empty-post p {
  font-weight: 400;
}
.user-post-tab .empty-post a.btn {
  text-decoration: none;
  display: inline-block;
  line-height: 30px;
  font-weight: 600;
}
.user-post-tab .empty-post a.btn:hover {
  color: #fff;
}

.user-tickets-tab .empty-tickets {
  margin: 0 auto;
  width: 500px;
  text-align: center;
  height: 450px;
  padding-top: 120px;
}
.user-tickets-tab .empty-tickets img {
  padding-top: 0;
}
.user-tickets-tab .empty-tickets h1 {
  margin-top: 39px;
  line-height: 26px;
}
.user-tickets-tab .empty-tickets p {
  font-weight: 400;
  margin-bottom: 38px;
}
.user-tickets-tab .empty-tickets a.btn {
  text-decoration: none;
  display: inline-block;
  line-height: 30px;
  font-weight: 600;
}
.user-tickets-tab .empty-tickets a.btn:hover {
  color: #fff;
}

.user-tickets-tab .table tr:first-child td {
  border-top: none;
}
.user-tickets-tab .ticket-raised-table a.ticket-subject {
  font-size: 14px;
  text-decoration: none;
}
.user-tickets-tab
  .ticket-raised-table.ngx-datatable
  .datatable-body
  .datatable-row-wrapper:first-child
  .datatable-body-row {
  border-top: none;
}
.user-tickets-tab
  .ticket-raised-table.ngx-datatable
  .datatable-body
  .datatable-body-row
  .datatable-body-cell {
  padding: 25px 15px;
}
.user-tickets-tab
  .ticket-raised-table.ngx-datatable
  .datatable-body
  .datatable-body-row
  .datatable-body-cell:first-child,
.user-tickets-tab
  .ticket-raised-table.ngx-datatable.fixed-header
  .datatable-header
  .datatable-header-inner
  .datatable-header-cell:first-child {
  padding-left: 0;
}

.ticket-box,
.reticket-box {
  border: 1px solid #e8e8e8;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.ticket-box h4 {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}
.ticket-box h4 span.status {
  font-size: 13px;
  font-weight: 500;
}
.reticket-box h4 {
  font-size: 13px;
  font-weight: 600;
}
.ticket-box label {
  font-size: 12px;
  color: #6c6c6c;
  display: block;
  margin: 0;
}
.ticket-box label span {
  color: #222;
}
.ticket-box p,
.reticket-box p {
  font-size: 14px;
  color: #6c6c6c;
  line-height: 24px;
  margin-bottom: 10px;
}
.ticket-box ul.breadcrumb li a {
  font-size: 14px;
}

.empty-notification {
  padding: 90px 0 100px;
  text-align: center;
  margin: 0 auto;
}
.empty-notification h1 {
  margin-top: 29px;
}

.user-notification-tab h3 {
  display: flex;
  justify-content: space-between;
}
.user-notification-tab h3 a {
  font-size: 14px;
  text-decoration: none;
}
.notification-inner ul li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #e8e8e8;
  padding: 25px 0;
}
.notification-inner ul li img {
  margin-right: 25px;
}
.notification-inner ul li p {
  font-size: 14px;
  color: #767f8c;
  margin: 3px 0 0;
}
.notification-inner ul li .title {
  font-size: 15px;
}
.notification-inner ul li a {
  text-decoration: none;
}
.notification-inner ul li span.time {
  color: #767f8c;
  font-size: 12px;
  white-space: nowrap;
}
.notification-inner ul li:first-child {
  padding-top: 0;
}
.notification-inner ul li:last-child {
  border-bottom: none;
}
.exitcmm-popup h4 {
  font-size: 18px;
  margin: 18px 0 0;
}
.exitcmm-popup .modal-body > p {
  font-size: 18px;
  line-height: 26px;
  margin-top: 17px;
}
.notification-inner ul li span.ago {
  color: #767f8c;
  font-size: 12px;
}

/******** End panelist login **********/
.qu-responsive {
  display: none;
}
.img-error p.error-text {
  margin-top: 16px;
}
.text-editor .img-error p.error-text {
  margin-top: 50px;
}
.lightbox .lb-image {
  height: 100% !important;
}
.member-table a.u-name {
  text-decoration: none;
}
.member-table .switch.switch-small {
  height: 13px !important;
  background: #ebebeb;
}
.member-table .datatable-header .datatable-header-inner .datatable-header-cell {
  display: none;
}
.invitee-tab span.status,
.invitee-tab span.date {
  color: #6c6c6c;
}
/*.invitee-tab  .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:first-child,.invitee-tab .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:first-child {width: 120px !important;}*/
.invitee-tab .ngx-datatable.bootstrap .datatable-body .datatable-body-row {
  border-top: 1px solid #ebebeb;
}
.invitee-tab
  .ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row
  .datatable-body-cell {
  padding: 15px;
}
.edit-panellist .admin-header {
  align-items: center;
  margin-bottom: 25px;
}
.edit-panellist .admin-header h2 {
  margin: 0;
}
.edit-panellist .admin-header .right-sec > span {
  margin-right: 30px;
  margin-left: 10px;
}
.edit-panellist .pic-bg {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.panelists-ranking .ranking-pic {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}
.statistics .rgt-icon .blank-btn {
  margin-right: 0 !important;
}
.participant-post .vote-box {
  min-width: 100%;
}
.participant-post .post-name h3 {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

ul.view-rating {
  flex-flow: column;
  margin-top: 10px;
}
ul.view-rating li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: #222;
}
.polls-tab ul.view-rating li label.custom-radio {
  margin: 0;
  padding: 0;
  width: 450px;
  flex: inherit;
  max-width: initial;
}
.polls-tab ul.view-rating li label span {
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  left: 15px;
}
.polls-tab ul.view-rating li:last-child:before {
  content: none;
}
.polls-tab ul.view-rating li > span {
  font-weight: 500;
  width: 50px;
  margin-right: 10px;
  font-size: 14px;
  white-space: nowrap;
}
.polls-tab ul.view-rating li:last-child {
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.post-progress label.custom-radio {
  padding: 0;
  cursor: inherit;
}
.vote-box .post-progress.width50 .poll-img label.custom-radio {
  padding-left: 0;
}
.post-progress label.custom-radio span {
  position: absolute;
  left: 15px;
  color: #222;
  font-size: 14px;
  width: 95%;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.post-progress label.custom-radio span.label-txt {
  position: relative;
  left: 0;
  top: 0;
  overflow: hidden;
  display: block;
}
.post-progress label.custom-radio span.label-txt > *,.custom-radio i.des > * {
  all: unset;
}
.ans-opt-text-on-hover > *,.custom-radio i.des span, .post-progress label.custom-radio span.label-txt span {
  all: unset !important;
}
.post-progress.width50 {
  justify-content: space-between;
}
.participant-post .vote-box .width50 .poll-img label.custom-radio {
  max-width: calc(100% - 50px);
  flex: 1 1 47%;
  margin-left: 10px;
}
.participant-post .rating-box {
  border: none;
  padding: 0;
}
.participant-post .rating-box h3 {
  font-size: 14px;
}
.participant-post .rating-box .star {
  margin-right: 20px;
  display: inline-block;
  font-size: 0;
}
ngb-rating {
  outline: none;
  margin-top: 20px;
}
.participant-post .rating-box .star:before {
  content: "";
  background-image: url('star-off.7e9468df3b5c3d7e.svg');
  background-repeat: no-repeat;
  opacity: 1;
  display: block;
  width: 40px;
  height: 40px;
}
.participant-post .rating-box .star.filled:before {
  background-image: url('star-fill.be8748079d110820.svg');
}
.profile-tab .edit-pic {
  margin: 0 0 20px;
}
.setting-save {
  margin-top: 20px;
}

.signinup-popup ngb-typeahead-window.dropdown-menu:before,
.signinup-popup ngb-typeahead-window.dropdown-menu:after {
  display: none;
}
.signinup-popup .form-group .pw-text {
  margin-bottom: 23px;
}
.edit-admin .profile-tab {
  margin-bottom: 20px;
}
.rgt-icon .new-admin {
  color: #006bd0;
  border: none;
  margin-right: 30px;
  margin-right: 40px;
  min-width: auto;
  min-height: auto;
}
.rgt-icon .new-admin:hover {
  background: transparent;
  color: #006bd0;
  opacity: 0.98;
}
.create-comm .date-icon a {
  top: 13px;
}
.upload-processing span {
  z-index: 99;
  position: relative;
}
.upload-processing span.animate {
  animation: progressbtn 3s ease-in-out;
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0.25rem;
  z-index: 9;
}
.verification-input input {
  margin-right: 18px !important;
}
section.otp-verify:after {
  content: "";
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.border-box p.member-count {
  color: #ca8500;
  margin-bottom: 15px;
}
.otp-input[_ngcontent-jen-c2]:focus {
  border-color: #eaa529;
}
.recover-popup .custom-radio {
  font-size: 16px;
}
.recover-popup .checkmark-radio {
  top: 1px;
}
.custom-radio .checkmark-radio:after {
  top: 1px;
}
.custom-radio input[type="radio"] ~ .checkmark-radio:after {
  top: 3px;
}

.members-table {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.members-table .datatable-footer .datatable-footer-inner {
  padding: 0;
}
.members-table .datatable-footer .page-count {
  line-height: 40px;
  height: 30px;
}
.feed-btn .btn-cancel {
  background: transparent;
  color: #6c6c6c;
  font-size: 14px;
  padding: 0;
  margin-right: 20px;
}
.otp-nav {
  box-shadow: 0px 4px 4px 0 rgba(34, 34, 34, 0.06);
  -webkit-box-shadow: 0px 4px 4px 0 rgba(34, 34, 34, 0.06);
  -moz-box-shadow: 0px 4px 4px 0 rgba(34, 34, 34, 0.06);
}
.otp-verify .next-btn {
  margin-right: 0;
}
.permission-popup .uploadimg-box {
  padding: 0 20px 10px;
}

/* feed detail*/
.post-images.doc-upload .file-icon {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
}
.post-images.doc-upload .file-icon img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.post-images.doc-upload .post-attachment-file {
  order: 1;
}
body .postreply-box .post-images.doc-upload {
  order: 1;
}

.postdetail .postdetail-reply .repost-img .file-icon {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
}
.postdetail .postdetail-reply .repost-img .file-icon img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.postdetail .postdetail-reply .repost-img .post-attachment-file {
  height: auto;
}

.permission-popup .img-box circle-progress,
.permission-popup .img-box circle-progress svg {
  width: 100%;
  height: 100%;
}
.permission-popup .img-box circle-progress:after {
  content: "";
  background: #ebebeb;
}
.permission-popup .img-box circle-progress svg {
  padding: 10px;
  background: #ebebeb;
}
.step-show .navbar,
.penalist-showdropdown {
  position: absolute;
  z-index: auto;
}
.panelist-nav .last-dropdown {
  width: 200px !important;
}
.penalist-showdropdown .hint-relative {
  background: #f8f8f8;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.penalist-showdropdown .last-dropdown {
  display: block;
  margin-top: 0 !important;
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.15);
  right: -3px !important;
}
.penalist-showdropdown .last-dropdown:before {
  right: 15px !important;
}
.penalist-showdropdown .last-dropdown:after {
  right: 14px !important;
}
.invitee-btn {
  width: 100%;
  text-align: right;
  margin-top: 25px;
}
.invitee-popup .login-btn {
  margin-top: 33px;
}
.invitee-popup button.btn-custom.ml-3 {
  padding: 0 30px;
}
.raise-ticket-popup .signinup-popup .modal-body {
  padding: 30px;
}
.raise-ticket-popup .btn-custom {
  margin: 0;
}
.raise-ticket-popup .footer-btn {
  margin-top: 25px;
}
.raise-ticket-popup .uploadimg-box {
  padding-left: 0;
  padding-right: 0;
  margin-top: 10px;
}
.raise-ticket-popup .uploadimg-box .img-box:nth-child(5) {
  margin-right: 0;
}
/*.raise-ticket-popup .message-box p.error-text{margin: 0;}*/

.report-popup .modal-body {
  padding: 30px;
}
.report-popup .btn-custom {
  margin: 0;
}
.report-popup .footer-btn {
  margin-top: 30px;
}
.report-popup p.des {
  margin-bottom: 25px;
}
.report-popup p.contact-text {
  display: flex;
  font-size: 14px;
  margin-bottom: 0;
  flex-wrap: wrap;
  margin-top: 14px;
}
.report-popup p.contact-text img {
  transform: rotate(8deg);
  margin-right: 7px;
}
.report-popup p.contact-text a {
  text-decoration: none;
  padding-left: 4px;
}
.report-popup p.contact-text span {
  color: #6c6c6c;
  font-size: 14px;
}
.report-popup textarea {
  height: 194px;
}

.panelist-nav .navbar-nav li:last-child .nav-link {
  padding-left: 15px;
  padding-right: 15px;
}
.rewards-box .tooltip img {
  transform: rotate(12deg);
}
.verification-input input:focus {
  border-color: #eaa529 !important;
}
.resend-otp-link {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.new-profile-tab .editcover-box {
  top: 90% !important;
  right: auto !important;
  margin-left: 30px;
}
.addpoll-popup {
  padding: 30px 25px;
}
.addpoll-popup .pollhere-text {
  background: #eaa529;
  font-size: 16px;
  color: #fff;
  border-radius: 7px;
  font-weight: bold;
  padding: 0 4px;
}
.addpoll-popup .addpoll-popup-inner {
  border: 1px solid #e8e8e8;
  padding: 20px;
  border-radius: 5px;
  margin-top: 12px;
}
.permission-popup .addpoll-popup-inner .form-control {
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  font-size: 16px;
}
.permission-popup .addpoll-popup-inner .form-control:focus {
  border: 1.5px solid #eaa529;
  box-shadow: none;
}
.permission-popup .addpoll-popup-inner .error-msg .form-control {
  border: 1.5px solid #d83024;
}
.permission-popup .addpoll-popup-inner p.warning-msg {
  padding: 0;
}
.permission-popup .addpoll-popup-inner .btn {
  float: none;
  margin: 5px 0;
}
.permission-popup .addpoll-popup-inner .form-group {
  margin-bottom: 20px;
}
.permission-popup .addpoll-popup-inner .footer-pollaction p.error-text {
  bottom: -17px;
}
.permission-popup .addpoll-popup-inner .error-msg .form-control.label-textbox,
.permission-popup .addpoll-popup-inner .form-control.label-textbox:focus {
  border: none;
}
.permission-popup .addpoll-popup-inner .rating-box {
  margin-bottom: 15px;
}
.permission-popup .addpoll-popup-inner p.rating-error {
  padding: 10px 0;
  margin-top: -15px;
}
.permission-popup .addpoll-popup-inner .upload-img-box {
  margin-top: 4px;
}
.addpoll-popup-inner .add-qu-option input.textbox::placeholder {
  font-size: 15px;
}
.permission-popup ngb-datepicker.dropdown-menu {
  height: initial;
  max-height: initial;
}
.permission-popup .addpoll-footer .form-control {
  padding: 0 10px;
  font-size: 14px;
}
.permission-popup .addpoll-footer .comm-class:first-child .form-control {
  width: 90px;
}
.permission-popup .addpoll-footer .date-icon a {
  right: 7px;
  top: 9px;
}
.permission-popup .addpoll-footer .date-icon a img {
  width: 17px;
}

.addpoll-qu-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.addpoll-qu-content label.custom-radio .checkmark-radio {
  position: relative;
  top: auto;
  right: auto;
  left: -15px;
  width: 22px;
  height: 22px;
}
.addpoll-qu-content label.custom-radio {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0 0 0 30px;
  margin: 0 44px 20px 0;
  height: 45px;
  align-items: center;
  color: #6c6c6c;
  font-size: 16px;
  display: flex;
}
.addpoll-qu-content label.custom-radio.width50 {
  max-width: 47%;
  flex: 0 0 47%;
  margin-right: 0;
  margin-bottom: 20px;
}
.addpoll-question {
  margin-top: 15px;
}
.addpoll-question .addpoll-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 10px;
}
.addpoll-question .addpoll-header h3 {
  font-size: 15px;
  color: #6c6c6c;
}
.addpoll-question .addpoll-header ul.right {
  display: flex;
  justify-content: flex-end;
}
.addpoll-question .addpoll-header ul.right li {
  color: #6c6c6c;
}
.addpoll-question .addpoll-header ul.right li:last-child {
  padding-left: 12px;
  margin-left: 22px;
  position: relative;
}
.addpoll-question .addpoll-header ul.right li:last-child:before {
  content: "";
  background: rgba(108, 108, 108, 0.7);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 10px;
}
.addpoll-question h3.font-weight-normal {
  margin-bottom: 13px;
  line-height: 24px;
}
.addpoll-question .custom-radio input[type="radio"] ~ .checkmark-radio:after {
  width: 14px;
  height: 14px;
}
.addpoll-popup-inner .add-qu-option {
  position: relative;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0 0 0 30px;
  margin: 0;
  height: 45px;
  align-items: center;
  color: #6c6c6c;
  font-size: 16px;
  display: flex;
}
.addpoll-popup-inner .text-editor .add-qu-option {
  display: block;
  color: #222222;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .text-editor .add-qu-option {
  padding: 0;
  border: none;
  align-items: end;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .text-editor .add-qu-option .custom-radio {
  position: absolute;
  top: 47px;
  left: 22px;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .add-qu-option .angular-editor .angular-editor-wrapper .angular-editor-textarea {
  padding: .5rem .8rem .5rem 50px !important;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .poll-popup-img .add-qu-option .angular-editor .angular-editor-wrapper .angular-editor-textarea {
  padding: .5rem 6rem .5rem 50px !important;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .add-qu-option .angular-editor .angular-editor-wrapper .angular-editor-placeholder {
  padding: .5rem .8rem 1rem 50px;
}
.addpoll-popup-inner .add-qu-option .checkmark-radio {
  top: auto;
  right: auto;
  left: -15px;
  width: 22px;
  height: 22px;
}
.addpoll-popup-inner .add-qu-option input.textbox {
  color: #6c6c6c;
  width: calc(100% - 70px);
  position: absolute;
  opacity: 1;
  top: 0;
  left: 50px;
  height: 100%;
  z-index: 9;
  border: none;
  background: transparent;
}
.addpoll-popup-inner .poll-popup-img .add-qu-option input.textbox {
  width: calc(100% - 160px);
}
.addpoll-popup-inner
  .add-qu-option
  input[type="radio"]
  ~ .checkmark-radio:after {
  width: 14px;
  height: 14px;
}
.permission-popup .addpoll-popup-inner input.label-textbox {
  border: none;
  padding: 0;
  min-height: auto;
  color: #6c6c6c;
}
.addpoll-popup-inner .add-qu-option .upload-img {
  position: absolute;
  right: 15px;
  top: 13px;
  z-index: 99;
  text-decoration: none;
  font-weight: 600;
}
.addpoll-popup-inner .add-qu-option .upload-img input[type="file"] {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.addpoll-popup-inner .text-editor .add-qu-option .upload-img {
  right: 12px;
}
.addpoll-popup .addpoll-popup-inner .footer-pollaction {
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.addpoll-popup .addpoll-popup-inner .addoption {
  margin-bottom: 20px;
}
.addpoll-question .vote-box .rating-box label {
  padding: 0;
}
.addpoll-question .vote-box .rating-box {
  margin-bottom: 10px;
}

.create-comm-box {
  margin-bottom: 100px;
}
.create-comm-box ngb-datepicker.dropdown-menu {
  z-index: 9999;
}
/*
.graph-box{min-height: auto;height:267px;}
.graph-box .canvasjs-chart-canvas{height: 267px !important;}*/

.member-table .custom-progressbar {
  margin: 4px 0 0;
}
.member-table .toggle-onoff.card {
  margin-top: 5px;
  margin-right: 5px;
}
.member-table .toggle-onoff.card .switch.switch-small small {
  top: -2px;
}
.member-table .gray-text {
  font-size: 14px;
  color: #6c6c6c;
}
#members .box-header {
  padding: 15px;
}
.member-white-box .search-bar input[type="text"].search-view {
  width: 575px;
  height: 38px;
}

.toast-container .ngx-toastr {
  display: flex;
  align-items: center;
  color: #000;
  background: #ffffff;
  border: 1px solid #b7b4b4;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.22);
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.22);
  padding-left: 67px;
  font-size: 13px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  padding-right: 28px;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 12px 0px rgba(0, 0, 0, 0.1);
}
.toast-info:before {
  content: "";
  width: 53px;
  height: 100%;
  background: #747474 url('ts-show.9c382600d66ba5d0.svg') no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
}
.toast-error:before {
  content: "";
  width: 53px;
  height: 100%;
  background: #f27918 url('ts-error.232222a1fcf6e319.svg') no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
}
.toast-success:before {
  content: "";
  width: 53px;
  height: 100%;
  background: #459845 url('ts-success.5ca84a1fbbe00442.svg') no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  background-position: center;
}
.toast-close-button {
  content: "";
  width: 23px;
  height: 12px;
  background: url('ts-cross.d8e75c32f0544c23.svg') no-repeat !important;
  position: absolute;
  top: 20px !important;
  right: 0 !important;
  background-position: center;
}
.toast-close-button span {
  opacity: 0;
}
p.no-data {
  font-size: 14px;
}
ngb-datepicker.dropdown-menu:before,
ngb-datepicker.dropdown-menu:after {
  content: none;
}
.permission-popup .addpoll-popup-inner .footer-pollaction .form-group {
  margin-bottom: 0;
}

.lb-outerContainer {
  background: transparent;
}
.lb-dataContainer {
  position: absolute;
  top: -13px;
  text-align: right;
  margin: 0 auto;
  float: left;
  right: 0;
  left: 0;
}
.lb-data .lb-close {
  margin-right: -30px;
  background-size: 57% !important;
  opacity: 1 !important;
}
.lightbox .lb-image {
  border: none !important;
}

.penalist-pollfooter .vote-ratio {
  margin-right: 15px;
  font-size: 18px;
}

.post-progress.odd-polls .poll-img,
.polls-tab .odd-polls .poll-img,
.addpoll-question .odd-polls .poll-img {
  flex: 0 0 60%;
  max-width: 60%;
}

.participant-post .post-progress.odd-polls label.custom-radio,
.polls-tab .post-progress.odd-polls label.custom-radio,
.addpoll-question .post-progress.odd-polls label.custom-radio {
  flex: 0 0 60%;
  max-width: 60%;
}

.participant-post .odd-polls label.custom-radio,
.polls-tab .odd-polls label.custom-radio,
.addpoll-question .odd-polls label.custom-radio,
.root-profiling-box .odd-polls label.custom-radio {
  flex: 0 0 60%;
  max-width: 60%;
}

.participant-post .single-select,
.polls-tab .single-select,
.addpoll-question .single-select {
  margin-bottom: 30px;
  width: 60%;
  position: relative;
}

.participant-post .single-select select,
.polls-tab .single-select select,
.addpoll-question .single-select select {
  background: url('drop-arrow.da7500517f8c4cbd.svg') no-repeat;
  background-position: 97% center;
  color: #6c6c6c;
  z-index: 9;
}

.addpoll-question .single-select select {
  border: 1px solid #d9d9d9;
}

.addcategory-popup .footer-btn .btn-custom {
  margin-top: 30px;
  margin-bottom: 0;
}
.addcategory-popup .modal-body {
  width: 100%;
  float: left;
}
.no-polls-padding {
  margin-bottom: 120px;
}
.no-polls-padding .padding-content {
  padding: 20px;
}
.pollcategory-footer {
  margin-top: 30px;
  width: 100%;
  float: left;
}

.poll-vote-now {
  position: relative;
  color: #00a6fb;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  margin-top: -65px;
  width: 80px;
  float: right;
  cursor: pointer;
  background-color: #fff;
}

.postreply-box .short-name.iefeedimg {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2849a3;
  font-weight: 600;
}

.create-comm-box ngb-typeahead-window.dropdown-menu,
.new-profile-tab ngb-typeahead-window.dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
}
.create-comm-box ngb-typeahead-window.dropdown-menu:after,
.create-comm-box ngb-typeahead-window.dropdown-menu:before,
.new-profile-tab ngb-typeahead-window.dropdown-menu:after,
.new-profile-tab ngb-typeahead-window.dropdown-menu:before,
.profile-tab ngb-typeahead-window.dropdown-menu:after,
.profile-tab ngb-typeahead-window.dropdown-menu:before,
.edit-panellist ngb-typeahead-window.dropdown-menu:after,
.edit-panellist ngb-typeahead-window.dropdown-menu:before {
  content: none;
}

.profile-tab ngb-typeahead-window.dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  z-index: 9999;
  background-clip: inherit;
}
.edit-panellist ngb-typeahead-window.dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  z-index: 9999;
}

.dropdown-item.active {
  color: #006bd0;
  background-color: #e5f0ff;
}
.dropdown-item:active {
  color: #006bd0;
  background-color: transparent;
}
.dropdown-item.active a,
.dropdown-item:active a,
.dropdown-item:hover a,
.dropdown-menu a.dropdown-item:hover {
  color: #006bd0;
}

.create-comm-box .country,
.signinup-popup .country {
  position: relative;
}
.comm-tab .clear-filter a {
  color: #006bd0;
  text-decoration: underline;
}

.participant-post .custom-radio .checkmark-radio:after {
  left: 8px;
  top: 2px;
}

.feed-uploadimg-box {
  border: 2px solid #e8e8e8;
  padding: 10px;
}
.feed-uploadimg-box .uploadimg-box {
  margin-left: 0;
}
.press-esc {
  color: #6c6c6c;
  font-size: 13px;
}
.press-esc a {
  text-decoration: none;
}
.attach-file .post-feed-btn .btn-custom {
  padding: 0 10px;
}

.feed-points.custom-number {
  padding-left: 2px;
  margin-right: 3px;
  margin-top: -7px;
}
.feed-points.custom-number input {
  color: #4f507a;
  font-size: 14px;
  padding: 0;
}
.feed-points.custom-number label {
  color: #4f507a;
  font-size: 14px;
  margin: 0 15px 0 0;
  padding: 0;
}
.community-table
  .ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row
  .datatable-body-cell:nth-child(4)
  .datatable-body-cell-label {
  position: absolute;
}
.community-table .dropdown-item a {
  text-decoration: none;
  width: 100%;
  display: block;
}
.community-table .dropdown-menu-right {
  right: -11px;
  min-width: 133px;
}

.participant-post .postreply-box .right-section {
  margin-top: 19px;
}

.penalist-profile .complete-profile .u-name {
  margin-left: 10px;
}
.penalist-profile .progess-profile,
.panelist-header-img .progess-profile {
  position: relative;
  margin-left: -10px;
}
.penalist-profile .progess-profile .progress-img,
.panelist-header-img .progess-profile .progress-img {
  overflow: hidden;
  border-radius: 50%;
  background-color: #d8d8d8;
  position: absolute;
  top: 15px;
  height: 90px;
  width: 90px;
  left: 15px;
  background-position: center;
  background-size: cover;
}
.penalist-profile .u-name h2 {
  width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: initial;
}
.penalist-profile .complete-profile {
  width: calc(100% - 420px);
}
.penalist-profile .profile-shortname {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 23px;
  font-weight: 600;
}

.closed-status .dropdown-menu:before,
.closed-status .dropdown-toggle::after {
  content: none;
}
.feed-commentbox .attach-file {
  position: relative;
}
.feed-validation {
  position: absolute;
  bottom: -40px;
  left: 0;
}

.task-table .datatable-body .datatable-body-row {
  border-top: 1px solid #e5f0ff;
}
.task-table.ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row
  .datatable-body-cell {
  padding-left: 15px;
}
.task-table .assign-by {
  color: #6c6c6c;
  font-size: 12px;
}

.postlist-table span.gray-text {
  color: #6c6c6c;
}
.raise-ticket-popup .img-box {
  width: 95px;
  height: 80px;
}
.raise-ticket-popup .img-box:last-child {
  margin-right: 0;
}
.raise-ticket-popup .img-box .video {
  border-radius: 0;
}
.raise-ticket-popup .attachment-file p {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ticket-img-box {
  display: flex;
  flex-wrap: wrap;
  /*flex-direction: column-reverse;*/
}
.ticket-img-inner {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
}
.ticket-img-box .video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}
.member-table.ngx-datatable.bootstrap .datatable-header {
  height: 0 !important;
}
.raise-ticket-popup .write-msg textarea {
  color: #222;
}
.uploading-box {
  display: flex;
  margin-top: 10px;
}
.ticket-img-parent {
  width: 130px;
  height: 120px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.ticket-box .attachment-file p,
.reticket-box .attachment-file p {
  width: 100%;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 9px;
  margin-bottom: 0;
}
.ticket-img-parent.doc-upload {
  display: flex;
  width: 100%;
  height: auto;
  order: 1;
}
.ticket-img-parent.doc-upload .post-attachment-file .att-left p {
  line-height: normal;
  color: #000;
}
.ticket-img-parent.doc-upload .file-icon {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
}
.ticket-img-parent.doc-upload .file-icon img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.ticket-img-parent.doc-upload .post-attachment-file {
  /*width: 100%;*/
}
/*.ticket-reward-box .ticket-img-box{display: block;} 
.uploadimg-box {display: block;    float: left;
    width: 100%;}
.uploadimg-box .img-box{float: left;}*/

.postedpoll-root {
  border: 1px solid #d9d9d9;
  box-shadow: none;
  padding: 20px 28px;
  margin-bottom: 10px;
}
.postedpoll-root p.post-text {
  font-size: 16px;
  color: #222222;
  font-weight: 600;
  margin: 0 0 22px;
}
.post-poll .btn {
  height: 24px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 11px;
  color: #ffffff;
  cursor: default !important;
}
.reaction-popup .graph-box {
  min-height: inherit;
}

.coupon-box-main {
  margin: 0;
}
.coupon-box-main .col-md-4 {
  margin-right: 60px;
  padding: 0;
}

.comm-pro-qu {
  border: 1px solid #e8e8e8;
  padding: 30px;
  border-radius: 5px;
  height: 100%;
}
.comm-pro-qu .btn-custom {
  min-width: 122px;
  margin-right: 25px;
  font-weight: 600;
}
.comm-pro-qu h4 {
  margin-bottom: 20px;
  font-weight: 600;
}
.comm-pro-qu .form-group {
  margin-bottom: 30px;
}

.comm-qu-box {
  border: 1px solid #d9d9d9;
  padding: 20px 15px 20px 45px;
  border-radius: 4px;
  position: relative;
}
.comm-qu-box h5 {
  font-size: 16px;
  margin-bottom: 20px;
}
.comm-qu-box h5 span {
  position: absolute;
  background: #eaa529;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  left: 10px;
  font-weight: 600;
}
.comm-qu-option {
  display: flex;
  flex-flow: wrap;
}
.comm-qu-option .comm-qu-option .checkmark-radio {
  position: relative;
  margin-right: 18px;
}
.comm-qu-option .checkmark-radio {
  position: relative;
  margin-right: 10px;
}
.comm-qu-option label.custom-radio {
  margin-right: 21px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 10px 15px;
  width: 30%;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: flex-start;
}
.comm-qu-option label.custom-radio:nth-child(3n) {
  margin-right: 0;
}
.comm-qu-option
  label.custom-radio
  input[type="checkbox"]
  .checkmark-radio:after {
  left: 6px;
}

.comm-pro-qu label.custom-radio input[type="radio"]:checked ~ .checkmark-radio,
.profiling-qu-popup
  label.custom-radio
  input[type="radio"]:checked
  ~ .checkmark-radio {
  background-color: #eaa529;
  border-color: #eaa529;
}

.comm-pro-qu input[type="radio"] ~ .checkmark-radio:after,
.comm-pro-qu label.custom-radio input[type="radio"] ~ .checkmark-radio:after,
.profiling-qu-popup input[type="radio"] ~ .checkmark-radio:after,
.profiling-qu-popup
  label.custom-radio
  input[type="radio"]
  ~ .checkmark-radio:after {
  background: transparent;
}

.comm-pro-qu
  label.custom-radio
  input[type="radio"]:checked
  ~ .checkmark-radio:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background-color: transparent;
}
.comm-qu-box
  label.custom-radio
  input[type="radio"]:checked
  ~ .checkmark-radio:before {
  left: 6px;
  top: 1px;
}
.profiling-qu-popup
  label.custom-radio
  input[type="radio"]:checked
  ~ .checkmark-radio:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  background-color: transparent;
}

.comm-pro-qu .vote-textbox input.textbox {
  color: #222;
}

/* .comm-qu-option label.is-eligibility{border: 2px solid #D83024;} */
.comm-qu-option.screening-qu-added label.is-eligibility,
body .qu-popup-box.screening-qu-popup label.is-eligibility {
  border: 2px solid #00c400;
}

body .qu-popup-box label.is-eligibility {
  border: 2px solid #00c400;
}
.comm-qu-option
  label.is-eligibility
  input[type="checkbox"]:checked
  ~ .checkmark-radio {
  background-color: #00c400;
  border-color: #00c400;
}
/*.comm-qu-option label.is-eligibility input[type="radio"]:checked ~ .checkmark-radio,*/
.comm-qu-option.screening-qu-added
  label.is-eligibility
  input[type="radio"]:checked
  ~ .checkmark-radio,
.qu-popup-box.screening-qu-popup
  label.is-eligibility
  input[type="radio"]:checked
  ~ .checkmark-radio {
  background-color: #00c400;
  border-color: #00c400;
}

.qu-popup-box
  label.is-eligibility
  input[type="radio"]:checked
  ~ .checkmark-radio {
  background-color: #00c400;
  border-color: #00c400;
}
.comm-pro-qu
  .is-eligibility
  label.custom-radio
  input[type="radio"]:checked
  ~ .checkmark-radio,
.comm-pro-qu
  .is-eligibility
  .custom-radio
  input[type="checkbox"]:checked
  ~ .checkmark-radio {
  background-color: #00c400;
  border-color: #00c400;
}
.comm-pro-qu .markas-checkbox .checkmark-radio:after {
  left: 6px;
}
.comm-qu-option i.des {
  font-size: 16px;
  color: #6c6c6c;
}
.is-eligibility label.custom-radio {
  border: 2px solid #00c400;
}
.qu-popup-box
  label.is-eligibility
  input[type="checkbox"]:checked
  ~ .checkmark-radio {
  background-color: #00c400;
  border-color: #00c400;
}

.comm-qu-footer {
  display: flex;
  margin: 0 -15px -20px -45px;
  padding: 15px 20px;
  border-top: 1px solid #d9d9d9;
  justify-content: space-between;
}
.comm-qu-footer a {
  margin-left: 25px;
  color: #06a8ff;
}
.comm-qu-footer span {
  color: #6c6c6c;
}
.comm-qu-box:last-child:after {
  content: "";
  background: #dcdcdc;
  width: calc(100% + 290px);
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -36px;
}
.comm-pro-qu .btn-clear,
.profiling-qu-popup .btn-clear {
  color: #6c6c6c;
  font-size: 14px;
  text-decoration: underline;
  background: transparent;
}
.comm-pro-qu .vote-box {
  padding: 0;
  min-width: 100%;
}
.comm-pro-qu .vote-box .checkmark-radio {
  position: relative;
  top: auto;
  right: auto;
  left: -8px;
}
.comm-pro-qu .vote-box label {
  height: 50px;
  margin: 0;
}
.comm-pro-qu .vote-textbox input.textbox {
  height: 50px;
}
.comm-pro-qu .addoption {
  margin-bottom: 20px;
}
.comm-pro-qu
  .vote-box
  .custom-radio
  input[type="radio"]
  ~ .checkmark-radio:after {
  top: 4px;
}
.profiling-qu-popup .modal-dialog {
  max-width: 757px;
  min-width: 757px;
}
.profiling-qu-popup .modal-body {
  padding: 40px;
}
.profiling-qu-popup h3 {
  color: #767f8c;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 17px;
}
.profiling-qu-popup h3 span {
  font-weight: 500;
  padding-left: 25px;
  position: relative;
}
.profiling-qu-popup h3 span:before {
  content: "";
  background-color: #9da8b7;
  height: 5px;
  width: 5px;
  display: inline-block;
  margin: 0 7px;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 9px;
}
.profiling-qu-popup h2 {
  font-size: 18px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.qu-popup-box label.custom-radio {
  border: 1px solid #d9d9d9;
  padding: 13px 15px;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.qu-popup-box .checkmark-radio {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}
.qu-popup-box i.des {
  font-size: 16px;
}
.profiling-qu-popup .btn {
  float: left;
  margin: 0;
}
.profiling-qu-popup .btn-footer {
  margin-top: 10px;
  display: flex;
}
.profiling-qu-popup .btn-custom {
  margin-right: 25px;
}

.dash-total {
  display: flex;
}
.admin-pic {
  width: 45px;
  height: 45px;
  background-position: center;
  border-radius: 50%;
  background-size: cover;
  margin-right: 10px;
  background-image: url('user-placeholder.554bb38e573d8893.jpeg');
}
.active-admin table tr td span.admin-name {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-size: cover;
  margin-right: 10px;
  font-size: 14px;
  color: #2849a3;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8d8d8;
  border: 2px solid #e8e8e8;
}
.common-search-page {
  padding: 0;
}
.common-search-page .box-header {
  margin: 0;
  padding: 20px;
  flex-flow: column;
  align-items: flex-start;
}
.common-search-page .total-search {
  color: #6c6c6c;
  font-size: 14px;
  margin-bottom: 5px;
}
.common-search-page .box-header h3 {
  margin-bottom: 10px;
}
.common-search-page .serach-item {
  padding: 20px 120px 5px 20px;
  border-bottom: 1px solid #ebebeb;
}
.common-search-page .serach-item:last-child {
  border-bottom: none;
}
.common-search-page .serach-item a.search-title {
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 7px;
  line-height: 16px;
}
.common-search-page .serach-item h6 {
  margin-bottom: 10px;
}
.common-search-page .serach-item h6.serach-comm span {
  color: #6c6c6c;
}
.common-search-page .serach-item p {
  font-size: 12px;
  margin-bottom: 15px;
}
.common-search-page .search-overflow {
  max-height: calc(100vh - 260px);
  overflow-y: auto;
}
.common-search-page .serach-footer {
  border-top: 1px solid #ebebeb;
  padding: 20px;
  display: flex;
  align-items: center;
}
.common-search-page .serach-footer > span {
  color: #6c6c6c;
}
.common-search-page .search-media .search-media-pic {
  width: 26px;
  height: 26px;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  margin-right: 14px;
}
.common-search-page .serach-comm-main {
  display: flex;
}
.common-search-page .serach-item .b-left {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #6c6c6c;
}
.common-search-page .ic-calender {
  height: 100%;
  margin-right: 12px;
}
.custom-pagination {
  justify-content: center;
  align-items: center;
  flex: 1;
}
.custom-pagination ul.ngx-pagination {
  justify-content: center;
}
.ngx-pagination .current span {
  color: #006bd0;
  font-weight: 600;
}
ul.ngx-pagination li.pagination-previous,
ul.ngx-pagination li.pagination-next {
  font-size: 0;
  margin: 0;
}
ul.ngx-pagination li a {
  text-decoration: none;
}
body .common-search-page ul.ngx-pagination li a span {
  font-size: 14px;
  color: #000;
}

.ticket-reward-box .reply-btn {
  height: 34px;
  font-size: 14px;
  line-height: inherit;
}
.ticket-reward-box .message-box {
  margin-left: 20px;
}
.ticket-reward-box .btn {
  font-size: 14px;
  height: 35px;
}
.ticket-reward-box .file-icon {
  border-radius: 50%;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
}
.ticket-reward-box .file-icon img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.ticket-reward-box .dropdown .dropdown-toggle::after {
  vertical-align: 0.12em;
}

.ticket-reward-box .white-box {
  margin-bottom: 20px;
}
.ticket-reward-box .box-header a {
  font-size: 14px;
}
.main-comment-box,
.ticket-reward-reply-box {
  border: 1px solid #e8e8e8;
  padding: 15px 20px;
  border-radius: 4px;
}
.main-comment-box p,
.ticket-reward-reply-box p {
  color: #6c6c6c;
  font-size: 14px;
  margin-bottom: 8px;
}
.main-comment-box h5,
.ticket-reward-reply-box h5 {
  margin-bottom: 12px;
}
.main-comment-box h5 strong,
.ticket-reward-reply-box h5 strong {
  font-weight: 600;
}
.ticket-reward-reply-box {
  background: #fff;
  margin: 0 0 20px 20px;
  width: calc(100% - 20px);
  float: left;
}
.flagged-post {
  margin: 0 -20px;
  border-top: 1px solid #ebebeb;
  padding: 20px;
}
.flagged-post-box {
  border: 1px solid rgba(234, 28, 99, 0.1);
  border-radius: 4px;
  margin-bottom: 20px;
}
.flagged-post-box .flagged-header {
  background: rgba(234, 28, 99, 0.1);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flagged-post-box .flagged-header h4 {
  color: #4f507a;
  margin: 0;
  font-weight: 700;
}
.flagged-post-inner .flagged-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
}
.flagged-post-inner {
  padding: 15px 20px;
}
.flagged-post-inner .flagged-post-header {
  display: flex;
}
.flagged-post-inner h3.flagged-post-title {
  margin: 15px 0 0;
  line-height: 22px;
}
.flagged-post-inner p {
  font-size: 14px;
  margin: 15px 0 5px;
}
.flagged-post .items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.flagged-post .items-header h3 {
  margin-bottom: 0;
}
.flagged-post .poll-collapse, .flagged-post .poll-not-collapse {
  color: #6c6c6c;
}
.flagged-reply-inner {
  padding-left: 60px;
  position: relative;
}
.flagged-reply-inner .reply-text {
  left: 20px;
}
.flagged-post-box:last-child {
  margin-bottom: 0;
}
.ownership-popup .login-btn {
  margin: 25px 0 0;
}
.signinup-popup h6.black-color {
  color: #222;
}

.media-library {
  padding: 0;
}
.media-library table h3 {
  font-size: 14px;
  margin-bottom: 4px;
}
.media-library table span.img-name {
  color: #6c6c6c;
}
.media-library table thead th:first-child {
  width: 95px;
}
.media-library table thead th {
  color: #a09f9f;
  font-size: 11px;
  font-weight: 500;
}
.media-library table td {
  border-color: #ebebeb;
}
.media-library table .media-link {
  text-decoration: none;
}
.media-library .media-img {
  /*width: 95px;height: 80px;*/
  width: 100% !important;
  height: 110px;
  background-size: cover;
  background-position: center;
  display: block;
  border-radius: 5px;
  cursor: pointer;
}
.media-library .box-header {
  margin: 0;
}
.media-library tbody td {
  padding: 15px 20px;
}
.media-library .attachment-file {
  border-radius: 5px; /*width: 95px;*/
  width: 122px;
  height: 110px;
}
.media-library .file-icon {
  background-color: transparent;
  /*padding: 15px 10px;*/
}
.media-library .file-icon span {
  font-size: 10px;
  color: #222;
  white-space: pre-wrap;
}
.media-library h3.file-type {
  font-size: 14px;
}
.media-library-video {
  width: 100% !important;
  height: 110px;
  position: relative;
}
.media-library-video video {
  border-radius: 5px;
  background: #000;
  width: 100% !important;
  height: 100%;
}

.empty-comm-table {
  height: 100%;
  position: relative;
}
.empty-comm-table h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}

.flagged-post-row {
  background: rgba(234, 28, 99, 0.1);
 /* display: flex;
  justify-content: space-between;*/
  padding: 10px 20px;
  margin-bottom: 7px;
  /*align-items: center;*/
  min-height: 54px;
}
.flagged-post-row span {
  color: #ea1c63;
  font-size: 14px;
  display: flex;
  align-items: center;
}
/*.flagged-post-row span:after {content: "";border-style: solid;border-color: #4F507A;width: 6px;height: 6px;margin-left: 7px;border-width: 0px 1px 1px 0px;transition: border-width 150ms ease-in-out;-webkit-transition: border-width 150ms ease-in-out;-moz-transition: border-width 150ms ease-in-out;   display: inline-block;transform: rotate(45deg);}*/
.flagged-post-row .btn-danger {
  color: #ea1c63;
  background: transparent;
  border: 1px solid #ea1c63;
  margin-left: 20px;
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 600;
  min-width: 140px;
  text-decoration: none;
}
/*label.datatable-checkbox {border-radius: 4px;
    border: 1px solid #9DA8B7;
    width: 16px;
    height: 16px;
    background: #D9D9D9;
}
label.datatable-checkbox input[type=checkbox]{opacity: 0;visibility: hidden;}
label.datatable-checkbox input[type=checkbox]:checked{}
*/
.datatable-checkbox input[type="checkbox"]:before {
  background-image: url('check.2be0daf761f45155.svg');
}

.ngx-datatable.postlist-table .datatable-body .datatable-body-row.active {
  background-color: transparent !important;
  color: #000 !important;
}
ngb-datepicker ngb-datepicker-navigation-select > .custom-select {
  min-height: auto;
}
ngb-datepicker .ngb-dp-header {
  margin: 5px 0;
}
ngb-datepicker .bg-light {
  background-color: #fff !important;
  margin-bottom: 5px;
}
ngb-datepicker .ngb-dp-navigation-chevron {
  border-width: 0.1em 0.1em 0 0 !important;
  width: 9px !important;
  height: 9px !important;
}
ngb-datepicker .ngb-dp-arrow-btn {
  -webkit-appearance: none;
}
ngb-datepicker .ngb-dp-arrow-btn:focus {
  outline-width: 0 !important;
}
ngb-datepicker .ngb-dp-weekday {
  color: #6c6c6c !important;
  font-style: normal !important;
  font-weight: 600;
}
ngb-datepicker [ngbDatepickerDayView] {
  font-size: 14px;
}
ngb-datepicker .bg-primary {
  background-color: #00a6fb !important;
  border-radius: 50% !important;
  font-weight: 600;
}
ngb-datepicker .btn-light {
  border-radius: 50% !important;
}
ngb-datepicker .btn-light.focus,
ngb-datepicker-navigation .btn-light:focus {
  box-shadow: none;
  outline: none;
}
ngb-datepicker .btn-light:not(:disabled):not(.disabled).active:focus,
ngb-datepicker .btn-light:not(:disabled):not(.disabled):active:focus,
ngb-datepicker .show > .btn-light.dropdown-toggle:focus {
  box-shadow: none;
}
ngb-datepicker .ngb-dp-day {
  outline: none;
}
ngb-datepicker-navigation-select > .custom-select:first-child {
  margin-right: 5px;
}
ngb-datepicker-navigation .btn-link.disabled,
.btn-link:disabled {
  color: #ccc;
}
.comm-next-pre {
  width: 100%;
  float: left;
  padding-bottom: 15px;
  border-bottom: 1px solid #dcdcdc;
  margin: 25px 0 27px;
}
.comm-next-pre .float-left {
  padding-left: 0;
}
.comm-next-pre .float-right {
  padding-right: 0;
}
.comm-next-pre button {
  cursor: pointer;
  background: transparent;
  border: none;
}
.comm-next-pre button.float-left i {
  margin-right: 6px;
}
.comm-next-pre button.float-right i {
  margin-left: 6px;
}
.comm-next-pre button:disabled {
  cursor: default;
}
.comm-post-des {
  width: calc(100% - 56px);
}
.comm-post-des h3 {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: inherit;
}
.comm-detail {
  table-layout: fixed;
}
.comm-detail .comm-date {
  white-space: nowrap;
}
.post-page .rgt-icon .dropdown-item {
  white-space: inherit;
}
.post-page .rgt-icon a.vertical-dot {
  padding: 0 5px;
}
.post-page .rgt-icon .dropdown-menu-right {
  right: -8px;
  top: 0 !important;
  bottom: auto;
  margin-top: 37px;
}
.edit-panellist .scroll-form {
  max-height: 450px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px 10px 0 0;
  margin-bottom: 15px;
}
.add-community {
  border-top: 1px solid #f1f3f6;
  padding-top: 20px;
}
.add-community h4 {
  margin-bottom: 20px;
  font-weight: 600;
}
.edit-panellist .edit-pic {
  margin-bottom: 25px;
}
.edit-panellist .delete-box input {
  padding-right: 66px;
}
.edit-panellist .close {
  top: -23px;
  right: 0;
}
.edit-panellist .close span {
  color: #fff;
}

.filter-dropdown .cuppa-dropdown .selected-list .c-btn {
  margin-top: 4px;
}
.filter-dropdown .cuppa-dropdown .dropdown-list {
  width: 360px !important;
  margin-top: 0 !important;
  left: 140px !important;
}
.memberFormInput .filter-dropdown .cuppa-dropdown .dropdown-list {
  width: 443px !important;
  margin-top: 0 !important;
  left: 140px !important;
}
.memberFormInput .filter-dropdown .question .pure-checkbox input + label::before {
  content: inherit !important;
}
.memberFormInput .filter-dropdown .question .selected-item {
 background-color: #e5f0ff;
}
.memberFormInput .filter-dropdown .question .cuppa-dropdown ul li label {
  margin: 0 !important;
  width: 100% !important;
  padding-inline:17px !important;
}
.memberFormInput .filter-dropdown .question .pure-checkbox input[type="checkbox"]:checked + label:after{
  content: inherit !important;
}
.memberFormInput .formGroupContainer .filter-dropdown .cuppa-dropdown .dropdown-list {
  left: 33px !important;
}

.filter-dropdown .list-area {
  border-radius: 8px;
}
body .filter-dropdown .cuppa-dropdown ul li label {
  width: 83%;
  margin-left: 46px;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
  font-size: 14px;
  color: #222;
  position: static;
}
.filter-dropdown .cuppa-dropdown .dropdown-list ul li {
  padding: 0 !important;
  position: relative;
}
.filter-dropdown .cuppa-dropdown .arrow-down,
.filter-dropdown .cuppa-dropdown .arrow-up {
  left: 98px;
}
.filter-dropdown .list-filter .c-search svg {
  width: 12px;
}
.filter-dropdown .select-all,
.filter-dropdown .list-filter {
  border-bottom: 1px solid #f3f3f3;
}
.filter-dropdown .pure-checkbox input[type="checkbox"]:checked + label:after {
  content: "" !important;
  transition: transform 0.2s ease-out;
  transform: rotate(-45deg) scale(1);
  display: block !important;
  color: #fff;
}
.filter-dropdown .pure-checkbox input[type="checkbox"]:checked + label:before {
  background: #eaa529;
  border-color: #eaa529;
}
.filter-dropdown .pure-checkbox input[type="checkbox"] + label:before {
  color: #fff;
  border: 1px solid #d9d9d9;
  width: 18px !important;
  height: 18px !important;
  left: 13px !important;
}
.filter-dropdown .nodata-label {
  font-size: 21px;
}
.filter-dropdown .pure-checkbox input[type="checkbox"] + label:after {
  left: 17px !important;
  margin-top: -4px !important;
  color: #fff;
}
.filter-dropdown .select-all label span {
  padding-left: 44px;
}
.filter-dropdown .select-all {
  padding-left: 0 !important;
}
.filter-dropdown .selected-list .countplaceholder {
  position: relative !important;
  top: auto !important;
  transform: none !important;
  right: auto !important;
}
.filter-dropdown .selected-list .c-list .c-token .c-remove svg {
  fill: #222 !important;
}
.filter-dropdown .selected-list .c-list .c-token .c-label {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eliminate-box {
  background: #e5f0ff;
  box-shadow: 0 2px 4px 1px rgba(34, 34, 34, 0.04);
  -webkit-box-shadow: 0 2px 4px 1px rgba(34, 34, 34, 0.04);
  -moz-box-shadow: 0 2px 4px 1px rgba(34, 34, 34, 0.04);
  width: auto;
  position: absolute;
  padding: 18px 16px;
  right: -203px;
  border-radius: 8px;
  top: -70px;
}
.eliminate-box h4 {
  font-size: 16px;
  border-bottom: 1px solid #979797;
  margin: 0;
  padding-bottom: 12px;
  margin-bottom: 10px;
}
.eliminate-box p {
  margin: 0;
  font-size: 16px;
}
.eliminate-box:after {
  content: "";
  border-width: 10px;
  border: 12px solid transparent;
  border-bottom: 12px solid #e5f0ff;
  top: 50%;
  position: absolute;
  align-items: center;
  text-align: center;
  left: -23px;
  border-bottom-width: 10px;
  transform: rotate(-90deg);
}
.eliminate-box:before {
  content: "";
  border-color: transparent transparent #eee transparent;
  border-width: 10px;
  position: absolute;
  height: 0;
  border-style: solid;
  border-bottom-width: 10px;
  top: 50%;
  left: -21px;
  width: 10px;
  transform: rotate(-90deg);
}

/*label.datatable-checkbox input[type="checkbox"]:checked .datatable-checkbox{background: #000;width: 20px;height: 20px;}*/
.ngx-datatable.scroll-vertical.virtualized .datatable-body .datatable-row-wrapper {
  position: relative !important;
}
.pending-class-task-list,
.ngx-datatable.bootstrap
  .datatable-body
  .datatable-body-row.datatable-row-even.pending-class-task-list {
  background: rgba(229, 240, 255, 0.35) !important;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row {
  border-top: 1px solid #e5f0ff !important;
}
.active-filter-comm .dropdown-toggle {
  background: #e5f0ff;
  border-radius: 8px;
  font-size: 13px;
  color: #222222;
  padding: 2px 8px 2px 10px;
}
.active-filter-comm .dropdown-menu {
  left: auto !important;
  right: 0;
  margin-top: 10px;
}
.active-filter-comm .dropdown-toggle::after {
  margin-left: 5px;
  vertical-align: 0.255em;
}
.active-filter-comm .date {
  width: 160px;
  position: relative;
  text-align: center;
}
.active-filter-comm .date a.left-arrow,
.active-filter-comm .date a.right-arrow {
  position: absolute;
  color: #222222;
  font-size: 18px;
  top: 4px;
}
.active-filter-comm .date a.left-arrow {
  left: 0;
}
.active-filter-comm .date a.right-arrow {
  right: 0;
}
.active-filter-comm .last-dropdown .dropdown-menu {
  width: 300px;
}
.active-filter-comm ngb-typeahead-window#ngb-typeahead-0 {
  margin-top: 0;
  border-radius: 0;
  border: none;
  max-height: 210px;
  overflow-y: auto;
}
.active-filter-comm ngb-typeahead-window#ngb-typeahead-0:before,
.active-filter-comm ngb-typeahead-window#ngb-typeahead-0:after {
  display: none;
}
.active-filter-comm ngb-typeahead-window#ngb-typeahead-0 .dropdown-item {
  cursor: pointer;
}
.active-filter-comm .form-control:focus {
  border: none;
}
.active-filter-comm .search-dropdown input {
  font-size: 13px;
  padding: 10px;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.active-filter-comm .search-dropdown img {
  top: 11px;
}
.dropdown.last-dropdown span {
  max-width: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  line-height: 10px;
}
.active-communities-list .box-header {
  padding-top: 5px;
}
body .ngx-datatable.task-table .datatable-footer {
  margin-top: -5px;
}

.root-profiling-box .left {
  display: flex;
  align-items: center;
}
.root-profiling-box .left .response {
  color: #6c6c6c;
  font-size: 15px;
  padding-left: 10px;
  margin-left: 20px;
  position: relative;
}
.root-profiling-box .left .response:last-child:before {
  content: "";
  background: rgba(108, 108, 108, 0.7);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 10px;
}
.root-profiling-box .form-group {
  position: relative;
}
.root-profiling-box .que-checkbox label.custom-radio {
  height: 50px;
  padding: 0 0 0 30px;
}
.root-profiling-box .root-profiling-form .que-checkbox label.custom-radio {
  margin: 0;
}
.root-profiling-box .custom-radio input[type="radio"] ~ .checkmark-radio:after {
  width: 14px;
  height: 14px;
}
.root-profiling-box p.error-text {
  width: 100%;
  float: left;
  margin: 10px 0 18px;
}
.root-profiling-btn .btn-custom {
  min-width: 125px;
}
.root-profiling-btn .btn {
  margin-right: 20px;
}
.root-profiling-box .main-qu {
  font-size: 14px;
  margin-bottom: 25px;
}
.root-profiling-box .single-select {
  width: 60%;
  position: relative;
  margin-bottom: 20px;
}
.root-profiling-box hr {
  width: calc(100% + 50px);
  float: left;
  margin: 0 -25px 0 -25px;
}
.root-profiling-box .vote-box h3.font-weight-normal {
  margin: 20px 0;
}
.root-profiling-box .padding-content {
  padding: 25px;
  width: 100%;
  float: left;
  border-bottom: 1px solid #e8e8e8;
}

.white-box.root-profiling-pagination {
  display: flex;
  padding: 20px;
}
.root-profiling-pagination pagination-controls#questionlist {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0.9;
}
.root-profiling-pagination > span {
  color: #9da8b7;
  font-size: 14px;
}
.root-profiling-box .btn-block {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}
.root-profiling-box .btn-block .btn {
  margin-left: 30px;
  padding: 0 25px;
  font-weight: 600;
}
.root-profiling-box .btn-block .blank-btn {
  border-width: 2px;
  padding: 0 30px;
}
.root-profiling-box ul.right li a {
  color: #06a8ff;
}
.root-profiling-btn button.btn-clear {
  background: transparent;
  color: #006bd0;
}
.root-profiling-form .addoption {
  margin-bottom: 20px;
}

.task-main-list .comm-sortby .cuppa-dropdown .dropdown-list {
  width: 140px !important;
}
.reviewpost-detail .dropdown-item {
  cursor: pointer;
}
.ngx-datatable.bootstrap .active-user:before {
  top: 9px;
}
/*.ticket-reward-reply-box .img-box:after{content: none;}*/
.user-profiling-tab .select-option.blue-box {
  z-index: 1;
}
.communities-main-list .overflow-scroll {
  max-height: 360px;
  height: auto;
}

input[type="search"]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.nopage-main-box .nopage-inner-box {
  border: 2px solid #e5f0ff;
  text-align: center;
  background: #fff;
  padding: 50px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.nopage-main-box {
  width: 50%;
  margin: 50px auto 0;
}
.bg-whitebox {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  z-index: -1;
}
.nopage-main-box .nopage-inner-box img {
  margin-bottom: 55px;
}
.nopage-main-box .nopage-inner-box p {
  color: #6c6c6c;
}
.nopage-main-box .btn {
  float: right;
  min-width: 128px;
  min-height: 45px;
}
.msg-height {
  height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenning-qu ul {
  justify-content: flex-start;
}

body .ng-select .ng-select-container {
  background-color: #fff;
  border-radius: 0;
  border: none;
  min-height: auto;
  align-items: center;
}
body .ng-select.ng-select-single .ng-select-container {
  height: auto;
  margin-top: 3px;
  background: transparent;
  z-index: 99;
}
body .ng-select.ng-select-multiple .ng-select-container {
  height: auto;
  margin-top: 5px;
  background: transparent;
  z-index: 99;
}
body .ng-select .ng-select-container:hover {
  box-shadow: none;
}
body
  .ng-select.ng-select-focused:not(.ng-select-opened)
  > .ng-select-container {
  border-color: transparent;
  box-shadow: none;
}
body .ng-select.ng-select-focused,
.permission-popup .addpoll-popup-inner .ng-select.ng-select-focused{
  border: 1px solid #eaa529;
}


body .ng-select.ng-select-focused + .form-control-placeholder {
  color: #ca8500;
}
body
  .ng-select.ng-select-single
  .ng-select-container
  .ng-value-container
  .ng-input {
  top: 0;
}
.participant-post .post-name,
.postreply-box .post-name {
  width: 100%;
}
.ng-select .ng-clear-wrapper {
  display: none;
}
body .ng-dropdown-panel .ng-dropdown-panel-items {
  max-height: 220px;
}
.dropdownMenu .ng-dropdown-panel .ng-dropdown-panel-items .ng-option{
  padding-block:6px;
  }
body .ng-dropdown-panel.ng-select-bottom {
  border: 1px solid #e3e3e3;
  box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
  border-radius: 4px;
  margin-top: 6px;
  width: calc(100% + 3px);
  left: -1px;
}
body .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,
body
  .ng-dropdown-panel
  .ng-dropdown-panel-items
  .ng-option.ng-option-selected.ng-option-marked {
  color: #222;
  background-color: #e5f0ff;
}
body
  .ng-dropdown-panel
  .ng-dropdown-panel-items
  .ng-option.ng-option-selected
  .ng-option-label,
body
  .ng-dropdown-panel
  .ng-dropdown-panel-items
  .ng-option.ng-option-selected.ng-option-marked
  .ng-option-label {
  font-weight: inherit;
}
body .ng-select .ng-select-container .ng-value-container {
  padding-left: 0;
}
body .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  background-color: transparent;
  border-bottom: 1px solid #ebebeb;
  padding: 15px 17px;
}
body .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
  background-color: rgba(235, 235, 235, 0.5);
}
body .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
body .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
body .ng-select .ng-arrow-wrapper {
  width: 15px;
  padding: 0;
}
body .ng-select .ng-arrow-wrapper .ng-arrow,
body .ng-select.ng-select-opened > .ng-select-container .ng-arrow {
  background: url('select-arrow.1c4a0a69ef356dba.svg') no-repeat;
  border: none !important;
  width: 35px;
  height: 10px;
  top: -1px;
}

.members-table .datatable-body-cell-label {
  word-break: break-all;
}
.header-searchdropdown .date-icon a {
  top: 14px;
}
.rgt-icon ngb-datepicker-navigation .btn {
  min-width: auto;
}
.ng-select,
body .ng-select.ng-select-single .ng-select-container {
  cursor: pointer;
}
.attachment-file .file-bottom p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.ticket-reward-box .img-box {
  background-position: center;
  background-size: cover;
  width: 130px;
  height: 120px;
}
.date-filter p.error-text {
  position: absolute;
}

.rgt-icon .dropdown-menu {
  top: auto !important;
  bottom: 50px;
}

.panelranking-box-new .table_scroll {
  max-height: 400px;
  overflow: auto;
}
.panelranking-box-new .white-box,
.panelranking-box-new .gender-ratio {
  max-height: inherit;
}

.user-profiling-inner .edit-value + .form-control-placeholder {
  color: #ca8500;
}
.subscription-parent {
  margin-top: 22px;
}
.subscription-header-box {
  display: flex;
  justify-content: space-between;
  padding: 18px 40px;
}
.subscription-header-box .sub-pic {
  width: 55px;
  height: 55px;
  background-color: #d8d8d8;
  border-radius: 50%;
  color: #2849a3;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-size: cover;
  background-position: center;
}
.subscription-header-box .subs-name h2 {
  font-size: 16px;
  margin: 0;
}
.subscription-header-box .subs-name span {
  font-size: 12px;
  color: #4f507a;
  letter-spacing: 0;
}
.subscription-header-box > .d-flex {
  align-items: center;
}
.subscription-header-box .subs-name {
  margin-left: 12px;
}
.subscription-parent .plan-desc {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 25px;
  margin-bottom: 25px;
  position: relative;
}
.subscription-parent .plan-desc ul {
  display: flex;
  margin-top: 20px;
}
.subscription-parent .plan-desc ul li {
  display: flex;
  margin-right: 70px;
  flex-flow: column;
  font-weight: 600;
  color: #4d4d4d;
}
.subscription-parent .plan-desc ul li span {
  font-weight: 500;
  color: #6c6c6c;
  font-size: 12px;
  margin-bottom: 10px;
}
.subscription-parent .plan-desc ul li span.remaining {
  color: #ea1c63;
  margin-left: 15px;
}
.subscription-parent .white-box {
  padding: 30px 40px;
}
.subscription-parent .white-box .title {
  font-size: 18px;
}
.plan-desc:after {
  content: "";
  background: #e8e8e8;
  width: calc(100% + 80px);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: -40px;
}
.subscription-parent table {
  width: 50%;
}
.subscription-parent table tr td:first-child {
  width: 250px;
  word-break: break-all;
  padding-left: 0;
}
.subscription-parent table tr td:nth-child(2) {
  width: 190px;
}
.subscription-parent table tr td {
  padding: 24px 5px;
  font-size: 15px;
  border-bottom: 1px solid #e8e8e8;
}
.subscription-parent table tr td span {
  display: block;
  font-size: 13px;
  color: #6c6c6c;
}
.subscription-parent .btn-sec {
  margin-top: 38px;
}
.subscription-parent .btn-sec .btn {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
}
.subscription-parent .btn-sec .btn:first-child {
  margin-right: 30px;
}

.subscription-editpic {
  width: 118px;
  height: 118px;
  margin-bottom: 35px;
  background: #d8d8d8;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 4px 0 rgba(34, 34, 34, 0.15);
  -webkit-box-shadow: 0 4px 4px 0 rgba(34, 34, 34, 0.15);
  -moz-box-shadow: 0 4px 4px 0 rgba(34, 34, 34, 0.15);
  border-radius: 50%;
  position: relative;
}
.subscription-editpic .ieeditpic {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #2849a3;
  font-weight: 600;
  font-size: 28px;
}
.subscription-editpic .edit-top-box a.dropdown-toggle {
  position: absolute;
  bottom: -3px;
  right: -9px;
}
.subscription-editpic .edit-top-box .dropdown-toggle::after {
  display: none;
}
.subscription-editpic .dropdown-menu a input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.subscription-editpic .editcover-box {
  top: 90% !important;
  right: auto !important;
  margin-left: 30px;
}
.subscription-edit .form-group {
  width: 30%;
  position: relative;
}
.subscription-edit .btn {
  min-width: 134px;
}
.subscription-edit .btn-edit {
  margin-top: 30px;
}
.subscription-edit h3 {
  margin-bottom: 30px;
}

.subscription-plan {
  margin-top: 22px;
}
.subscription-plan .title {
  padding: 30px;
  border-bottom: 1px solid #e8e8e8;
  margin: 0;
}
.plan-main {
  padding: 40px 100px;
}
.plan-box h4 {
  font-size: 18px;
  color: #006bd0;
  letter-spacing: 0;
  font-weight: 600;
  margin-bottom: 15px;
}
.plan-box.basic h4 {
  color: #ca8500;
}
.plan-box-inner {
  border-radius: 8px 8px 0 0;
  position: relative;
}
.plan-box-inner.basic {
  padding: 30px;
}
.plan-box-inner .max-width {
  margin: 0 auto;
  padding: 30px;
}
.plan-box-inner .top-sec .max-width {
  padding: 30px 30px 20px;
}
.plan-box h2 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  text-align: center;
}
.plan-box h2 span {
  font-size: 40px;
  color: #000;
  margin-right: 5px;
  font-weight: 600;
}
.plan-box h2 strong {
  font-weight: 600;
  top: -14px;
  position: relative;
  margin-right: 5px;
  color: #656768;
}

.plan-box.basic h2 {
  color: #ca8500;
}
.plan-box.basic h2 span {
  color: #eaa529;
}
.plan-box.basic h2 strong {
  color: #ca8500;
}
.plan-box .btn {
  min-width: 180px;
  font-weight: 600;
  padding: 0 15px;
}

.plan-box-inner .max-width span.plan-type {
  background: #eaa529;
  position: absolute;
  left: 10px;
  top: -7px;
  color: #fff;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 600;
  padding: 0 5px;
}
.plan-box-inner .max-width ul.plan-features {
  min-height: 110px;
  margin-top: 25px;
  text-align: left;
  margin-left: 22px;
}
.plan-box-inner .max-width ul.plan-features li img {
  margin-right: 10px;
}
.plan-box-inner .max-width ul.plan-features li {
  color: #7a7a7a;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 19px;
}
.plan-box-inner .max-width ul.plan-features li:last-child {
  margin-bottom: 0;
}
.plan-box .top-sec {
  background: rgba(229, 240, 255, 0.5);
  border: 1px solid rgba(6, 168, 255, 0.5);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
}
.plan-box.basic .top-sec {
  background: rgba(234, 165, 41, 0.05);
  border: 1px solid #eaa529;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.plan-box-inner .more-features {
  font-size: 12px;
  color: #7a7a7a;
  letter-spacing: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.subscription-plan .plan-box {
  margin-right: 70px;
}
.more-features h6 {
  color: #7a7a7a;
  font-weight: 600;
  margin-left: 22px;
}
.more-features ul.plan-features {
  margin-top: 15px;
}
.empty-text {
  color: #4c4c4c;
  font-weight: 500;
  margin: 16px 0 0;
  text-align: center;
  max-width: 100% !important;
  font-size: 14px !important;
}

.notification-pagination {
  display: flex;
  display: flex;
  align-items: center;
  border-top: 1px solid #e8e8e8;
  padding: 20px 0 0;
}
.notification-pagination pagination-controls {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.notification-pagination ul.ngx-pagination li {
  border: none;
  width: 25px !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.ngx-pagination a:hover,
.ngx-pagination button:hover {
  background-color: rgba(0, 166, 251, 0.1) !important;
  color: #006bd0 !important;
  border-radius: 50%;
  font-weight: 600 !important;
}

.statistics-graph #chartjs-tooltip {
  width: 135px;
}
.statistics-graph h6 {
  padding-left: 20px;
  font-weight: 500;
}
.statistics-graph h6:before {
  position: absolute;
  left: 7px;
}
.statistics-graph p span {
  color: #9da8b7;
  width: 55px;
  display: inline-block;
}

.addpoll-question .form-control {
  padding-top: 0;
  padding-bottom: 0;
}
body .addpoll-question .ng-select .ng-select-container .ng-value-container,
.addpoll-question
  .ng-select
  .ng-select-container
  .ng-value-container
  .ng-placeholder {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 16px;
}
body .addpoll-question .ng-select.ng-select-single .ng-select-container {
  height: 50px;
  margin-top: 0;
}

.addpoll-question .ng-select .ng-has-value .ng-placeholder {
  display: none !important;
}
.addpoll-question .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  font-size: 16px;
}
ul.repost-img li {
  width: 130px;
  height: 120px;
  border-radius: 6px;
  position: relative;
}
ul.repost-img li.repost-attach {
  width: 100%;
  height: auto;
}
ul.repost-img li .repost-media {
  max-width: 100%;
  height: 100%;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}
ul.repost-img li.repost-li:after {
  content: "";
  background: url('ic-largeview.eae7d648ea7631f8.svg') no-repeat;
  height: 24px;
  width: 24px;
  position: absolute;
  background-size: contain;
  bottom: 8px;
  right: 8px;
}
ul.repost-img li.repost-li {
  cursor: pointer;
}
.penalist-bottom .toggle-onoff .switch input:disabled {
  background: transparent;
}
.penalist-bottom .toggle-onoff .switch input:disabled + .slider {
  cursor: not-allowed;
}
.penalist-bottom ul.list-group {
  opacity: 0.8;
}
.permission-popup .penalist-bottom .custom-number {
  opacity: 0.6;
}
.permission-popup .penalist-bottom .custom-number button {
  cursor: not-allowed;
}

@media all and (-ms-high-contrast: none) {
  /* .login-bg .signinup-popup .modal-dialog{height: 100%;min-height: calc(100vh - 30px);display: table; width: auto;margin-right:auto;margin-left: auto;}
      .login-bg .signinup-popup .modal-content{position: absolute;top: 50%;transform: translateY(-50%);}
     */
  body .signinup-popup .modal-dialog {
    display: table !important;
  }
  body .signinup-popup .modal-content {
    display: table-cell;
    vertical-align: middle;
    background-color: transparent;
    box-shadow: none;
  }
  body .signinup-popup .modal-body {
    background-color: #fff;
    border-radius: 5px;
    width: 100%;
    float: left;
  }

  .permission-popup .modal-content {
    flex-direction: unset;
  }
  .permission-popup .modal-content form,
  .common-closepopup .modal-content form,
  .addmember-popup .modal-content form,
  .cong-popup .modal-body,
  .like-dislike-popup .modal-body,
  .reaction-popup .modal-body {
    position: relative;
  }

  /*.login-bg .signinup-popup .modal-dialog{height: calc(100vh - 30px);min-height: inherit;}*/
  .edit-profile img.profile-pic {
    width: auto;
    height: auto;
    border-radius: 4px;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0;
  }
  .ieoverflow {
    overflow: hidden;
  }
  .ieoverflow {
    width: 114px;
    height: 114px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
  }
  .iecoverpage {
    overflow: hidden;
    width: 100%;
    max-height: 174px;
    height: auto;
  }
  .filter-dropdown .btn {
    height: 32px;
    line-height: 19px;
  }
  .edit-pic span.short-name {
    height: 118px;
  }

  .profile-preview img.header-img {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .profile-preview .edit-profile {
    overflow: hidden;
  }
  /*.newpost-box .left-side{flex: 0 0 65%;}*/
  .edit-pic > img {
    width: auto;
    height: 100%;
    border-radius: 0;
  }
  .edit-pic .ieeditpic {
    overflow: hidden;
    width: 118px;
    height: 118px;
    border-radius: 50%;
  }
  .edit-pic > img,
  .edit-pic .ieeditpic > img {
    width: auto;
    height: 100%;
    border-radius: 0;
  }
  /*.iepostimg{width: 98px;height: 98px;border-radius: 50%;overflow: hidden;background: #d8d8d8;border: 5px solid #e8e8e8;}*/
  .root-profile .post-name .iepostimg img {
    width: auto;
    height: 100%;
    border-radius: 0;
    background: none;
    border: 0;
  }
  .iefeedimg {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background-color: #d8d8d8;
    overflow: hidden;
  }
  .iefeedimg img {
    width: auto;
    height: 100%;
    border-radius: 0;
  }
  /*.post-images{overflow: hidden;width: 120px;}*/
  .post-images > img {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  /*.reply-attach img{min-width: 20px;min-height: 20px;}*/
  .date-icon a {
    top: 9px;
  }
  .post-images {
    position: relative;
    overflow: hidden;
  }
  .img-box .video,
  .post-images video {
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*.permission-popup .modal-dialog,.common-closepopup .modal-dialog{height:calc(100vh - 30px);min-height: inherit;}*/
  .navbar {
    left: 0;
  }
  .navbar-collapse {
    flex-grow: inherit;
  }
  .poll-img-box .width50 label.custom-radio {
    flex: 1;
  }
  .intro-tour-hint-wrapper .navigate-btn {
    visibility: visible;
    color: transparent !important;
  }
  .intro-tour-hint-wrapper .navigate-btn:nth-child(1):before,
  .intro-tour-hint-wrapper .navigate-btn:first-child:before {
    color: #fff !important;
  }
  .post-throw .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
    color: #fff !important;
  }
  .permission-popup ngb-datepicker.dropdown-menu {
    height: 290px;
  }
  body .post-statistics .graph-box {
    height: 100%;
    min-height: auto;
  }
  .coupon-popup .coupon-content-popup {
    padding-right: 18px;
  }
  .coupon-popup .coupon-content-popup a {
    display: inline-block;
  }
}
/*  @media all and (-ms-high-contrast:none) and (max-height: 768px){
    .login-bg .register-popup .modal-dialog{height: inherit;min-height: inherit;}
  }*/

/*@-moz-document url-prefix() {
    .login-bg .signinup-popup .modal-dialog{height: calc(100vh - 1vh);min-height: inherit;display: table; width: auto;margin-right:auto;margin-left: auto;}
    .login-bg .signinup-popup .modal-content{position: absolute;top: 50%;transform: translateY(-50%);}
}
@media all and (min--moz-device-pixel-ratio:0) and (max-height: 700px){ 
  .login-bg .signinup-popup .modal-dialog{display: none;}
}*/
.footer-logo {
  max-width: 76px !important;
}

.disable_header {
  pointer-events: none;
  cursor: default;
  background-color: blue;
}
.community-table .ngx-datatable.scroll-horz .datatable-body {
  overflow-x: visible;
}
.community-table .ngx-datatable {
  overflow: visible;
}

.faq-box {
  width: 100%;
  margin-top: 20px;
}

.faq-section {
  margin-top: 30px;
}
.faq-box-header h2 {
  font-size: 23px;
  font-weight: bold;
}

.faq-box-search {
  position: relative;
  /* width: calc(100% - 305px); */
}
/* .faq-search-section.hide-search:after {
  display: none;
} */
.input-wrapper {
  width: 400px;
  position: relative;
  margin-top: 40px;
}
/*.input-wrapper:after {
  content: "";
  background: url(../img/search.svg);
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;  
}*/
.search-svg {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}
.faq-search-section {
  border: 1px solid #e8e8e8;
  color: #767f8c;
  font-size: 14px;
  padding: 10px 47px 10px 20px;
  border-radius: 3px;
  width: 100%;
}

.faq-table thead th {
  color: #767f8c;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  padding: 30px 20px 0;
}
.faq-table tbody td {
  border-top: none;
  border-bottom: 1px solid #e8e8e8;
  font-size: 15px;
  line-height: 20px;
  padding: 25px 20px;
}
.faq-table tbody td h3 {
  color: #000000;
  margin: 0 0 8px;
}
.faq-table tbody td a {
  color: #006bd0;
  font-size: 14px;
  line-height: 15px;
}
.faq-table tbody tr td:first-child {
  padding: 22px 10px;
}
.faq-table tbody tr:last-child td {
  border: none;
}
.faq-table thead th:last-child,
.faq-table tbody td:last-child {
  padding-right: 0;
  width: 140px;
}
.community-guidelines-header h2 {
  display: flex;
  font-weight: bold;
  font-size: 23px;
  padding: 0px 20px;
  font-family: "Open Sans", sans-serif;
}
.community-guidelines-box {
  border: 1px solid #d8dfe9;
  margin: 15px 20px 15px 20px;
  border-radius: 6px;
  padding: 30px 30px 10px 30px;
}

.community-guidelines-table thead th:first-child {
  font-size: 20px;
  font-weight: 700;
  line-height: 17px;
  border: none;
  font-family: "Open Sans", sans-serif;
}
.community-guidelines-table thead th:last-child {
  font-size: 20px;
  font-weight: 700;
  line-height: 17px;
  border: none;
  font-family: "Open Sans", sans-serif;
  padding-left: 0;
}
.community-guidelines-table tbody tr td:first-child {
  font-size: 20px;
  line-height: 17px;
  border: none;
}
.community-guidelines-table tbody tr td:last-child {
  font-size: 20px;
  line-height: 17px;
  border: none;
  padding-left: 0;
}
.community-guidelines-table tbody tr td div h3 {
  font-weight: unset;
  color: #222222;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}
.community-guidelines-table thead th {
  vertical-align: top;
}

@media (max-width: 567px) {
  .community-guidelines-table td {
    white-space: normal !important;
  }
  .community-guidelines-box {
    padding: 10px;
  }
  .white-box {
    padding: 15px;
  }
  .community-guidelines-header h2 {
    font-size: 20px;
  }
  .community-guidelines-table tbody tr td div h3 {
    font-size: 14px;
    line-height: 18px;
  }
}
/*faqs page here*/
.p20 {
  padding: 40px;
}

::placeholder {
  color: #7c8591;
}
.accordian-wrap {
  padding: 40px 90px 40px 40px;
  border: 1px solid #d8dfe9;
  border-radius: 3px;
  margin-top: 50px;
}
.accordian-wrap h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 55px;
  position: relative;
}
.accordian-wrap h3:after {
  content: "";
  width: 52px;
  height: 1px;
  background: #2aa6fa;
  position: absolute;
  bottom: -15px;
  left: 0;
}
.accordian-wrap .panel-heading h4 {
  font-size: 16px;
  position: relative;
  font-family: "Open Sans", sans-serif;
}
.accordian-wrap .collapse.in {
  display: block;
}
.panel-body {
  color: #787878;
  font-size: 16px;
}
.panel.dropup h4 {
  color: #3080d8;
  position: relative;
  margin-bottom: 25px;
}
.accordian-wrap .panel h4:after,
.accordian-wrap .panel.dropup h4:after {
  content: "";
  background: url('down-arrow.943131097038c37a.png') no-repeat;
  position: absolute;
  width: 15px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.accordian-wrap .panel.dropup h4:after {
  background: url('up-arrow.1e281552e5b1bf4e.png') no-repeat;
}
.accordian-wrap .panel-group .panel.panel-default {
  border-bottom: 1px solid #dcdada;
  padding: 30px 0;
}
.error-div {
  color: #ea1c63;
  padding-left: 3px;
  margin-top: 1px;
}
.error-div img {
  width: 15px;
  margin-right: 5px;
  margin-top: -1px;
}
@media (max-width: 767px) {
  .accordian-wrap {
    padding: 20px;
  }
  .white-box {
    padding: 15px;
  }
  .panel.dropup h4 {
    padding-right: 20px;
  }
}
@media (max-width: 567px) {
  .white-box {
    padding: 15px;
  }
  .input-wrapper {
    width: 100%;
  }
  .faq-box-header h2 {
    font-size: 20px;
  }
}

.emoji-size {
  width: 26px;
  height: 20px;
  margin-top: 1px;
}

.postreply-box .carousel_wrapper {
  margin: 0px -20px 0px -20px;
}

.postreply-box .carousel_wrapper .posted-img {
  padding: 5px 2px 5px 2px;
}

.postreply-box .carousel_wrapper .carousel-item {
  height: 400px;
  text-align: center;
}

.postreply-box .carousel_wrapper .carousel-item .pop_pointer {
  cursor: pointer;
}
.postreply-box .carousel_wrapper .carousel-control-prev {
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 20px;
}

.postreply-box .carousel_wrapper .carousel-control-next {
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.5);
  right: 20px;
}
.postreply-box .carousel_wrapper .carousel-item img,
.postreply-box .carousel_wrapper .carousel-item video {
  height: 100%;background: #fff;
}
.postreply-box .carousel_wrapper .carousel-item img {
  width: 100% !important;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.community-tab .tab-content .overflow-recent-posts {
  width: 80%;
}
.community-tab .tab-content .overflow-recent-posts h3 {
  white-space: normal;
  word-break: normal;
}

.media-filename {
  padding-bottom: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow-wrap: break-word;
}
.post-attachment-file .att-left p .reset-width {
  width: unset !important;
}
.post-attachment-file .box-width {
  width: 120% !important;
}

.post-attachment-file .att-left p .file-width {
  width: 211px !important;
}

.ticket-reward-box .doc-block {
  margin: 10px 0 0;
  order: 1;
  width: 100%;
}

.order-block {
  order: 1;
}

.post-images .upload-img {
  position: relative;
  cursor: pointer;
}

.post-images .upload-img:after {
  content: "";
  background: url('ic-largeview.eae7d648ea7631f8.svg') no-repeat;
  height: 24px;
  width: 24px;
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.blk-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  text-align: center;
  border-radius: 6px;
}
.blk-overlay span {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 45px;
  left: 0;
  right: 0;
  height: 25px;
  width: 25px;
  cursor: pointer;
  margin: 0 auto;
}

.blk-overlay span img {
  width: 25px;
}

.permission-popup .modal-body video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  bottom: 0;
  object-fit: contain;
}
.video-modal .closebtn {
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  position: absolute;
  top: -30px;
  right: 0;
}
.video-modal .closebtn img {
  width: 100%;
}
.video-modal .modal-content {
  background: transparent;
}
.permission-popup .modal-body video:focus {
  outline: none;
}
.video-modal .modal-body {
  height: 350px;
}

.feed-list-doc .file-icon {
  border-radius: 50px;
}

.postreply-box .carousel_wrapper .carousel {
  padding-bottom: 5px;
}
.postreply-box .carousel_wrapper .carousel-item video:focus {
  outline: none;
}

.feed-video-overlay {
  width: 100%;
  height: calc(100% - 40px);
  position: absolute;
  cursor: pointer;
  top: 0;
}

.is-chrome .feed-video-overlay {
  width: 100%;
  height: calc(100% - 70px);
}

.polls-tab .poll-feed-wrap {
  border: 1px solid #d9d9d9;
  box-shadow: none;
  padding: 20px 28px;
  margin-bottom: 10px;
}

.polls-tab .poll-feed-wrap.new-design {
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 10px;
}

.polls-tab .poll-feed-wrap h3 {
  font-size: 14px;
  font-weight: 600;
}
.postreply-box .poll-feed-parent {
  padding-top: 10px;
}
.recent-trending-pointer {
  cursor: pointer;
}

.flex-div {
  display: flex !important;
}

.user-post-tab .post-table a.link-nocss {
  font-size: 14px;
  text-decoration: none;
  font-weight: unset;
}

.screening-delete {
  margin: 10px 0 0;
}

.lightbox .lb-outerContainer {
  background: transparent !important;
  margin: 0 auto !important;
  width: 640px !important;
}

.lb-container {
  position: relative;
  margin: 0 auto !important;
  text-align: center;
}

.lightbox .lb-image {
  max-width: inherit;
  max-height: inherit;
  width: 640px !important;
  height: 400px !important;
  object-fit: contain;
  margin: 0 auto !important;
}

.lb-dataContainer {
  width: 650px !important;
}


@media only screen and (max-width: 1024px) {
  .profiling-inner-tab1 .box-header h3 {
    width: auto !important;
  }
}

@media only screen and (max-width: 710px) {
  .lb-dataContainer {
    width: 99% !important;
    top: 5% !important;
  }
}

@media all and (max-width: 710px) and (min-width: 650px) {
  .lb-dataContainer {
    width: 90% !important;
    top: 0% !important;
  }
}

@media only screen and (max-width: 650px) {
  .lightbox .lb-image {
    width: 90% !important;
  }

  .lightbox .lb-outerContainer {
    width: 90% !important;
  }

  .lb-dataContainer {
    width: 90% !important;
    top: 5% !important;
    right: 30px;
  }

  .lb-nav a.lb-next,
  .lb-nav a.lb-prev {
    width: 25px !important;
    height: 25px;
    background-size: contain !important;
    position: absolute;
    top: 50%;
    right: 10px !important;
    transform: translateY(-50%);
  }

  .lb-nav a.lb-prev {
    right: auto !important;
    left: 10px !important;
  }
}

@media only screen and (max-width: 567px) {
  .profiling-inner-tab1 .box-header {
    height: auto;
    clear: both;
    display: block;
  }

  .rgt-icon {
    width: 100%;
    clear: both;
    display: table;
    margin-top: 10px;
  }

  .rgt-icon a.btn-prfile-download {
    width: auto;
    float: left;
  }

  .search-bar .search-icon {
    right: 20px;
    top: 0;
  }

  .profiling-inner-tab1 .dropdown {
    float: right;
    margin-top: 5px;
  }
}

@media (max-width: 567px) {
  .dash-total .comm-box-width {
    margin-right: 2% !important;
  }

  .dash-total .comm-box-width:last-of-type {
    margin-right: 0% !important;
  }

  .dash-total .comm-box-width p {
    font-size: 12px !important;
  }

  .white-box a.btn-poll-download {
    padding: 0 8% 0 8% !important;
    margin-right: unset !important;
  }
}

@media only screen and (max-width: 480px) {
  .lb-dataContainer {
    width: 99% !important;
  }
  .post-attachment-file {
    padding: 5px;
  }
  .file-icon img {
    width: 15px;
    height: 15px;
  }
  .file-icon {
    padding: 3px;
  }
  .post-attachment-file {
    width: 270px;
  }
  .post-attachment-file .att-left p span {
    width: 80% !important;
  }
}

@media only screen and (max-width: 367px) {
  .postdetail-reply .post-attachment-file {
    margin-left: -35px;
  }
}

.rgt-icon a.btn-prfile-download {
  margin-right: 30px !important;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  height: 30px;
  padding: 0 7px;
}

.dash-total .comm-box-width {
  width: 31.75% !important;
}

.white-box a.btn-poll-download {
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  margin-left: 5%;
}

.poll-dropdown {
  padding: 10px 12px 10px 12px !important;
  margin-left: unset !important;
}

.poll-dropdown .cuppa-dropdown {
  position: relative;
  margin-top: 1.5% !important;
}

.paytm_input_box {
  width: 100%;
  padding-top: 10px;
  padding-left: 5px;
  border: 1px solid grey;
  margin-top: 10px;
}

.paytm_overlay .coupon-link {
  display: none;
}

.paytm_overlay .black-paytm-overlay {
  position: absolute;
  width: 91%;
  height: 95px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  border-radius: 5px;
  top: 16px;
  pointer-events: none;
  z-index: 8;
  margin: 0 auto;
}

.paytm_overlay .black-paytm-overlay i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  font-style: normal;
  color: #fff;
  z-index: 9;
  font-size: 20px;
  font-weight: bold;
  transform: translateY(-50%);
}

.coupon-popup .coupon-img img.paytm_logo {
  width: 130px;
  height: 130px;
  margin: 0 auto;
}

.coupon-popup .coupon-img.paytm-coupon-image {
  text-align: center;
}

.paytm-pop-box .coupon-title-paytm {
  display: block;
}

.paytm-error-msg {
  color: #d83024;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  background: transparent;
  border: 0;
  padding: 5px 5px 5px 5px;
}

.paytm-error-msg img {
  margin-right: 5px;
  width: 15px;
}

.coupon-popup .paytm-pop-box .coupon-title {
  display: block;
  margin: 20px 0;
}

.coupon-popup .paytm-pop-box .paytm-resend {
  display: flex;
  margin: 20px 0;
}

.coupon-popup .paytm-terms {
  margin-top: 20px;
}

.coupon-popup .paytm-redeem {
  min-width: 120px;
}
.paytm-redeem:disabled {
  background-color: #dfdfdf;
  color: #9f9f9f;
  cursor: default;
  pointer-events: none;
}

.paytm-login-btn .float-right {
  width: 50%;
}

.paytm-login-btn .float-right .close-btn {
  margin-top: 10px;
}

.paytm-login-btn .float-left {
  width: 100%;
}

.paytm-login-btn .float-left a {
  text-decoration: underline;
}
.paytm-login-btn .float-left a.go-back-disabled {
  text-decoration: underline;
  color: #9f9f9f;
  cursor: default;
  pointer-events: none;
}
.coupon-popup .paytm-pop-box .paytm-resend a.go-back-disabled {
  text-decoration: underline;
  color: #9f9f9f;
  cursor: default;
  pointer-events: none;
}

.common-closepopup .paytm-confirm-modal .paytm-details-trns {
  margin-bottom: 10px;
}
.paytm-confirm-modal .paytm-details-trns a {
  display: inline-block;
  padding: 0px;
  font-size: 13px;
  text-decoration: underline;
}

.paytm-confirm-modal h5.copon-code {
  padding-bottom: 10px;
}
.paytm-confirm-modal h5.copon-code.paytm-amount {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.paytm-confirm-modal h5.copon-code span.transaction-span {
  color: #000;
}
.rewards-wrp.row {
  margin-right: -15px;
  margin-left: -15px;
}
/*.rewards-wrp .col-md-4 {
    padding-right: 15px!important;
    padding-left: 15px!important;
    flex: 0 0 33.333333%!important;
    max-width: 33.333333%!important; margin-right: 0px!important;
}*/
@media only screen and (max-width: 767px) {
  .rewards-wrp .col-md-4 {
    flex: 0 0 48% !important;
    max-width: 48% !important;
  }
}
@media only screen and (max-width: 480px) {
  .coupon-popup.signinup-popup .paytm-redeem,
  .coupon-popup.signinup-popup .close-btn {
    font-size: 14px !important;
  }
  .coupon-popup.signinup-popup .paytm-redeem {
    min-width: auto !important;
    padding: 7px 12px !important;
  }
  .rewards-wrp .col-md-4 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.coupon-box.paytm_overlay .coupon-img {
  opacity: 0;
}

.coupon-box.paytm_overlay .coupon-title h4,
.coupon-box.paytm_overlay .coupon-inner-content,
.coupon-box.paytm_overlay .coupon-title span,
.coupon-box.paytm_overlay p.bottom-text span,
.coupon-box.paytm_overlay p a,
.coupon-box.paytm_overlay .collect-bottom-text {
  text-shadow: 0 0 8px #000;
  color: transparent;
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer */
  -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
  -webkit-user-select: none; /* Chrome, Safari, and Opera */
  -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}

.coupon-popup .paytm-terms .term-des ul li {
  color: #232222;
}
/*3 sections css added here*/
.paytm-cash-rewrds-head h5{font-size: 15.5px;font-weight: 600;}
.paytm-cash-rewrds-head p{font-size: 14px;}
.paytm-cash-rewrds-ul {display: table;width: 100%;margin-bottom: 15px;}
.paytm-cash-rewrds-ul li {font-size: 14px;color: #222222;font-weight: 600;}
.paytm-cash-rewrds-ul li span {display: inline-block;margin-right: 5px;}
.paytm-cash-rewrds-ul li span:last-of-type {margin-right: 0;}
.signinup-popup .paytm-cash-rewrds-redm h6{font-size: 14px;margin-bottom: 5px;font-weight: 600;}
.paytm-cash-rewrds-redm p{font-size: 14px;line-height: 18px}

@media only screen and (max-width: 767px) {
  .paytm-cash-rewrds-ul li {
    font-size: 12px;
  }
  .coupon-popup .paytm-terms .term-des ul {
    padding-left: 18px;
  }
  .coupon-popup .modal-body {
    padding: 15px;
  }
}

.post-desc {
  width: 100%;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  margin-bottom: 15px !important;
}

.dropdown.post-dropdown {
  margin: 0 0 0 0;
}

.postListReport .post-title {
  margin-right: unset;
  margin-left: unset !important;
  margin-top: 0;
  line-height: 20px;
  vertical-align: middle;
}

.myPostList ul.lazyContainer:before {
  content: "You can select a maximum of 20 posts";
  display: flex;
  color: #6c6c6c;
  font-size: 12px;
  line-height: 14px;
  padding-top: 8px;
  padding-left: 18px;
}

.myPostList ul.lazyContainer .scrollable-content {
  margin-top: 15px;
}

.postListReport .cuppa-dropdown .c-btn span span {
  max-width: 90px !important;
}

.postListReport.filter .dropdown {
  margin-right: 20px !important;
}

.postListReport.filter .dropdown.clear-filter {
  margin-right: 0 !important;
}

.postListReport .list-message {
  text-align: center;
  margin: 0;
  padding: 15px 0;
  font-size: initial;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.postListReport .selected-list .c-btn {
  width: 145%;
  position: relative;
  z-index: 9;
}

.postListReport.cuppa-dropdown::after {
  right: -12px;
}

.postListReport .filter-dropdown .selected-list .countplaceholder {
  /*right: 15px !important;*/
  right: 40px !important;
}

.postListReport .countplaceholder::before {
  content: "Post Title ";
  white-space: nowrap;
}

@media only screen and (max-width: 1024px) {
  .post-page.ipad-toggle {
    min-width: 160px;
  }

  .postListReport .dropdown.filter-dropdown {
    margin-left: 0;
  }

  .postListReport .selected-list .c-btn {
    width: 100%;
  }
}

@media only screen and (max-width: 640px) {
  .postListReport .filter-dropdown .cuppa-dropdown .dropdown-list {
    right: -150px;
    width: 270px !important;
  }
}

@media only screen and (max-width: 567px) {
  .post-page .rgt-icon {
    width: auto;
    margin-top: 0;
  }
}

.download-reward-report {
  padding-right: 10px;
  text-decoration: underline !important;
}

.conversionratenote {
  float: right;
  padding-right: 10px;
}

.conversionratelable {
  margin-top: 5px;
}

.rateTooltip {
  font-size: 12px;
  color: #808080;
  display: block;
  width: 50%;
  float: right;
}

.rateTooltipmobile {
  display: none;
  font-size: 12px;
  color: #808080;
}

@media only screen and (max-width: 1200px) {
  .rateTooltip {
    width: 33%;
  }
}

@media only screen and (max-width: 1024px) {
  .tooltip .tooltiptext {
    left: 10px;
  }
}

@media only screen and (max-width: 950px) {
  .rateTooltip {
    width: 30%;
  }
}

@media only screen and (max-width: 850px) {
  .rateTooltipmobile {
    display: block;
  }
  .rateTooltip {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 850px) {
  .pointspermissionbox .tooltip .tooltiptext {
    left: auto;
    right: 0px;
    margin-left: 0px;
    width: 150px;
  }

  .pointspermissionbox .tooltiptext::after {
    left: auto;
    margin-left: 0px;
    right: 5px;
  }
}

@media only screen and (max-width: 480px) {
  .pointspermissionbox.rule-tab label {
    font-size: 12px;
  }
  .pointspermissionbox .conversionratelable {
    font-size: 11px !important;
  }

  .pointspermissionbox .tooltip .tooltiptext {
    left: auto;
    right: 0px;
    margin-left: 0px;
    width: 150px;
  }

  .pointspermissionbox .tooltiptext::after {
    left: auto;
    margin-left: 0px;
    right: 5px;
  }

  .pointspermissionbox .mr-3 {
    margin-right: 3px !important;
  }
}

.clickdisable {
  cursor: text !important;
  pointer-events: none !important;
}

.btn-addPost span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  height: 5px;
  padding: 10px;
  margin-top: 6px;
  margin-right: 6px;
}

.ping-icon {
  margin-top: -4px;
  height: 22px !important;
  width: 22px !important;
}

.feed-points {
  margin-top: -5px;
  padding: 1px;
}

.task-reply-box {
  min-height: 100px !important;
  padding: 25px 25px 25px 25px !important;
}

.white-box.panelists-ranking { 
  height: auto; 
}
.table_scroll { 
  overflow-y: auto; 
  max-height: 320px;
}

.enddate-optional {
  margin:15px 0px 0px -10px;
  color: #6c6c6c;
  opacity: 2;
  font-style:italic;
}

.enddate-optional-mob {
  display:none;
}

.resetEndBtn {
  margin:-17px 0px 0px 0px;
  display:block;
  text-align: right;
}

@media only screen and (max-width: 992px) {
  .enddate-optional-mob {
    display:block;
    margin:0px 0px 0px 0px;
    float:right;
  }

  .enddate-optional-desk {
    display:none;
  }

  .resetEndBtn {
    margin: -17px 0px 0px 0px;
    display: block;
    text-align: right;
  }
}

@media only screen and (max-width: 375px) {
  .enddate-optional-mob, .resetEndBtn {
    font-size:12px;
  }
}
.post-enddate-optional-desk {
  display:inline-block;
  margin-left: 10px;
  color: #6c6c6c;
  font-style:italic;
}

.post-enddate-optional{
  width:50%;
  display:inline-block;
  position: relative;
}

.contributor-post .modal-dialog{
    min-height: 300px;
    overflow-y: visible;
    
    height: auto;
    
} 
.margin-bottom-class{
  margin-bottom: 150px !important;
}

.oneline-email a{
  display: inline-block;
  vertical-align:top;
  margin-left: 5px;
  word-break: break-all;
  width: 80%;
}
.oneline-email img{
  display: inline-block;
}
.root-user-about .oneline-email a{
  margin-left: 0px;
}

[id^="ngb-typeahead-"]{ 
  margin-top: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  max-height: 210px !important;
  overflow-y: auto !important;
} 

.verify-button-class{  
  vertical-align: middle;
  margin-top: 10px;
}

.verify-button-class a{
   text-decoration: none;
}

@media screen and (max-width: 992px) {
    .verify-button-class {
        margin-top: -5px;
        margin-bottom: 5px;
    }
    .gender-m-t-15{
        margin-top: 15px;
    }
}

.paytm-cash-rewrds-ul select{
  padding: 0px 2px;
  border: 0;
  min-height: auto;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  font-weight: 600;
  font-family: "Open Sans",sans-serif;
}

.new-padding-class {
  padding-top : 5rem!important
}

.new-link-class-add-member {
  cursor: pointer;
  border: 1px solid #02a6fa; 
  border-style: dashed;
  border-radius: 4px;
  background-color: #ffffff;
  min-height: 10px;
  padding: 5px 5px;
  color: #000;
  display: block;
  width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  background-clip: padding-box;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

@media screen and (max-width: 1024px) {  
    .new-link-class-add-member{
      font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .create-comm-box .border-box{
      padding: 15px 10px !important;      
    }    
}

@media screen and (max-width: 375px) {
  .new-link-class-add-member{
      font-size: 9.5px;
    }
}

button.float-button-new-posts {
  margin-top: 10px;
  left: 40%;
  position: sticky;
  bottom: auto;
  z-index: 1;
  margin-bottom: 20px;
  top: 70px;
  background-color: #368dea !important;
  border-color: #368dea !important;
  box-shadow: 5px 5px #c3c3c3;
}

.new-poll-button{
  margin-left: 10px;  
  padding: 0px 5px 0px 5px;
  font-size: 12px;
}
.report-details-class{
  padding: 30px 30px 30px 30px;
  border: 1px solid #000;
  height: auto !important;
  overflow-y:visible;
}

.short-name-class{
  padding: 6px 0px 0px 0px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color:#2849a3
}
@media only screen and (max-width: 575px) {
  .right-o {right: -70px;}  
}

.new-comment-class{
  clear: both;
}
.load-more-comment:after{
  content: "\f107";
  font-family: fontawesome;
  transition: 0.5s ease-in all;
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

/*For un */
.unsubscribe-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

#formContent {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 560px;
  position: relative;
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  border-radius: 5px;
}
.unsubscribe-wrap h4{
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}
#formContent .radio-input-wrap{
  font-size: 16px;
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.unsubscribe-wrap .radio-input-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.unsubscribe-wrap .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: #eee;
  border-radius: 50%;
}
.unsubscribe-wrap .radio-input-label {margin-bottom: 0;font-size: 14px;}
.unsubscribe-wrap .btn-wrap {
  text-align: center;
  margin-top: 10px;
}
.unsubscribe-wrap .btn-wrap input[type="submit"],.cancel-button-class{
  width: 110px;
  margin: 0 5px;
  background: #06a8ff;
  border: 1px solid #00a6fb;
  height: 35px;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
}
.cancel-button-class {
  background: 0 0;
  color: #00a6fb;
}
.cancel-button-class:hover {
  background-color: #00a6fb;
  color: #fff;
  transition: .5s ease-in-out;
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
}
#other-reason-area {    
  width: 100%;
  min-height: 90px;
  border-radius: 4px;
  padding: 10px;
  font-size: 14px;
}

#other-reason-area::placeholder {
  font-size:14px; 
}
#other-reason-area:focus {outline:none;}
.unsubscribe-wrap .radio-input-label:hover input ~ .checkmark {
  background-color: #ccc;
}
.unsubscribe-wrap .radio-input-label input:checked ~ .checkmark {
  background-color: #2196F3;
}
.unsubscribe-wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio-input-label input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
.unsubscribe-wrap .radio-input-label .checkmark:after {
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: white;
}
.unsubscribe-wrap .form-input-group label{
  display: block;
  font-size: 14px;
}
.unsubscribe-wrap .form-input-group input{
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ccc;
  min-height: 35px;margin-bottom: 10px;
  padding: 10px;
}
#formContent form{margin-top: 15px;}
.unsubscribe-wrap #formContent .radio-input-wrap{}

.right-side-class{
  text-align: right;
  width: 73%;  
}

.adhoc-points{
  width: 70px;
  margin: 0px 10px 0px 10px;
}

.adhoc-points-span{
  margin-left: 10px;
  clear: both;
}
.adhoc-input-wrapper{
  float: left;
}
.adhoc-table-earn-pts {float: right;margin-bottom: 10px;}
.add-remove-pts {clear: both;}
.adhoc-table-earn-pts tr td:first-of-type {padding: 0 5px;text-align: left;}
.adhoc-table-earn-pts tr td:last-of-type {padding: 0 5px;text-align: right;}
.clear, .scroll-form {clear: both;}
.profile-wrap {}

.right-side-class .switch.switch-small{
  background: #ebebeb;
  border: 1px solid #e3e3e3 !important;
}
 .adhoc-btn-add, .adhoc-btn-remove, .btn-disable.adhoc-btn-remove, .btn-disable.adhoc-btn-add {
    min-width: 30px;
    min-height: 5px;
    margin: 0px 0 0px;
    font-size: 14px;
    background-color: #00a6fb;
    padding-top: 2px;
    padding-bottom: 2px;
 }
 .adhoc-btn-add:hover, .adhoc-btn-remove:hover,
 .adhoc-btn-add.btn-primary:not(:disabled):not(.disabled):active, 
 .adhoc-btn-remove.btn-primary:not(:disabled):not(.disabled):active{
    background-color: #00a6fb;
    border-color:#00a6fb;
 }

 .btn-disable.adhoc-btn-remove, .btn-disable.adhoc-btn-add {
  color: #ffffff;
  background-color:#9da8b7;
 }

@media screen and (max-width: 425px) {
    .adhoc-btn-add, .adhoc-btn-remove, .btn-disable.adhoc-btn-remove, .btn-disable.adhoc-btn-add {
        font-size: 12px;
        padding: 5px 8px;
    }
    .profile-wrap{
      margin-bottom: 10px;
    }
}

@media screen and (max-width: 320px) {
    .adhoc-btn-add, .adhoc-btn-remove, .btn-disable.adhoc-btn-remove, .btn-disable.adhoc-btn-add {
        font-size: 12px;                
        padding: 4px 3px;
    }    
}

.relesepoint-box {padding: 10px 20px 10px 20px;min-height: 62px;}
.relesepoint-box .custom-radio {margin-bottom: 0;}
.release-btn-wrp {width: 164px;}
.release-pt-padding { padding: 20px 20px 10px 35px;    position: relative;}
.release-pt-radio {position: absolute;left: 10px;top: 24px;}

@media screen and (max-width: 992px) {
  .release-btn-wrp {width: 124px;}
}
@media screen and (max-width: 567px) {
  .release-pt-radio .checkmark-radio {height: 15px;width: 15px;}
  .release-pt-radio .custom-radio .checkmark-radio:after{width: 5px;height: 10px;  left: 4px;}
  .release-pt-padding {padding: 20px 20px 10px 20px!important;}
  .release-pt-radio {left: 0;}
  .feed-points {font-size: 11px;}
}
@media screen and (max-width: 375px) {
  .release-pt-radio {left: -7px;top: 25px;}
  .dot-menu__label { margin: 4px 0 0 2px;}
}
@media screen and (max-width: 367px) {
  .release-pt-radio {top: 15px;}
}

.tooltip .tooltiptext.commentmodetooltip, .tooltiptext.permissiontooltip{   
  padding: 5px;
}

.commentmode {
  width: 17px;
}

@media only screen and (min-width: 767px){
  .tooltip .tooltiptext.commentmodetooltip{   
      left: auto;
      margin-left: 0;
      opacity: 1;
      right: 0;
  }

  .tooltip .tooltiptext.commentmodetooltip::after{
    right: 5px;
    left: auto;
    margin-left: 0;
  }
}

/*css added for openBannerImagePopup modal on 15th July*/
.modal-body-inner{
  max-height: 451px;
  overflow: auto;
}
.clear {clear: both;display: table;}
.bannerImagePopup .closebtn{
  text-align: right;
  background: #fff;
}
.aspect-btn-wrap button , .save-btn ,.no-bg-btn:hover {
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
  background-color: #00a6fb;
  box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
  border: 0;
  padding: 5px 8px;
  border: 1px solid #00a6fb;
  transition: all ease .3s;
}
.aspect-btn-wrap button:hover ,.save-btn:hover ,.no-bg-btn {
  background: transparent;
  color: #00a6fb;
  border: 1px solid #00a6fb; 
   padding: 5px 8px;
   border-radius: 3px;
   font-size: 15px;
   transition: all ease .3s;
}
.bannerImagePopup .modal-body {
    padding: 0 10px 10px!important;
}
.mat-slide-wrapper{
  padding-top: 5px;
  border-top: 1px solid #ccc;
}
.choose-btn-wrap {
  padding-bottom: 5px;
  position: relative;
  height: 45px;
}
.reset-btn-wrap , .aspect-btn-wrap {
  float: right;
  width: 50%;
  text-align: right;
}
.reset-btn-wrap {    margin-top: 10px;}
.reset-btn {margin-right: 10px;}
.zoom-btn-wrap {
  display: inline-block;
  width: 75%;
  text-align: right;
}
.zoom-btn-wrap>div , .flip-btn-wrap>div {
  width: 16%;
  text-align: right;
  display: inline-block;
  vertical-align: middle;
}
.zoom-btn-wrap span, .flip-btn-wrap span {
  display: block;
}
.zoom-btn-wrap img {width: 28px;cursor: pointer;}
.range-slider {
  width: 25%;
  display: inline-block;
  padding: 10px 0 0 10px;
}
.zoom-btn-wrap button:first-of-type{
  margin-right: 10px; 
}
.mat-accent .mat-slider-thumb {
  background-color: #3c3b3b;
}
.mat-accent .mat-slider-track-fill , .mat-accent .mat-slider-thumb-label {
    background-color: #bdbdbd;
}
.horizontal-flip {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
}
.input-wrap-inner {
  cursor: pointer;
  font-size: 0;
  position: relative;
}
.hide_file {
  position: absolute;
  z-index: 1000;
  opacity: 0;
  cursor: pointer;
  right: 0;
  top: 0;
  height: 100%;
  font-size: 24px;
  width: 100%;
}
.new-cropper-class {height: 340px; position: relative;display: flex;align-items: center;flex-direction: column;justify-content: center;}
.btn-wrap {text-align: right;}
.upload-file-div {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
image-cropper {z-index: 9!important;}
.new-cropper-class.img-show  .upload-file-div{display: none;}
.upload-file-div img{width: 24px;vertical-align: bottom;}
.load-text {     
  text-align: center;
  width: 100%;
  font-size: 20px;
  font-style: italic;
  color: #464444;    position: absolute;
    top: 50%;
    transform: translateY(-50%);z-index: 999;
}
/*.wrapper-class-for-cropper{display: block; width: 73%; margin:0 auto;height: 330px;}*/ /*-- Commented for future use */
img.source-image {height: 310px; object-position: center;object-fit: contain;}
/*range slider css starts here*/
input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
}
/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #000000;
  background: #3c3b3b;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -7px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}

input[type=range]::-moz-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #000000;
  background: #3c3b3b;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -7px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}
/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #3c3b3b;
  cursor: pointer;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #3c3b3b;
  cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #ccc;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #ccc;
}

input[type=range]::-webkit-slider-runnable-track:focus {
  outline: none;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ccc;
}
input[type=range]:focus::-ms-fill-lower {
  background: #ccc;
}
input[type=range]::-ms-fill-upper {
  background: #ccc;
}
input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}
.new-width-popup{
  /*max-width: 1400px !important;*/
  max-width: 900px !important;
}
.cropped-image-class{
  height: 174px;
  max-height: 174px;
  min-height: 174px;
}
.profile-preview .edit-profile.cropped-edit-profile{
  width: 120px;
  height: 120px;
}
.cropped-preview-banner{
  min-height: 150px;
}
.profile-preview .edit-profile.cropped-logo-class{
      width: 120px;
    height: 120px;
}
.signinup-popup .modal-body.image-cropper-modal{
  padding: 10px 0px;
}
.cropped-button-wrap{
  margin-right: 20px;
}
.profile-banner.edit-cropped-image-display{
  max-height: 100px;
  height: 100px;
}
.iecoverpage.edit-cropped-image-display-cover{  
  height: 100px; 
}
/* deactivate */
.deactivateswitch {
  position: absolute;
  /* display: inline-block; */
  width: 50px;
  height: 21px;
}

.templateControlMsg{
  padding: 5vh 0 5vh 2vh;
}
.bulletin-box .post-name {
  margin-left: 0;
}

.bulletin-part .btn {
  padding: 0 15px;
}

.bulletin-box .new-post-tag {background-color: #007bff;border-color: #005cbf;}
.participate-modal .modal-dialog {max-width: 500px;}
.participate-modal .bulletin-part-pop p {font-size: 12px; font-weight: 500;}
.participate-modal .bulletin-part-pop div span {font-size: 16px; font-weight: 600;}
.participate-modal .bulletin-part-pop div {margin-bottom: 10px;}
.points-span span{display: inline-block;width: 50%;}
.bulletin-modal-footer {display: flex;align-items: flex-end;justify-content: flex-end;margin-top: 10px;margin-bottom: 0!important;}
.bulletin-modal-footer .footer-btn {margin-bottom: 0!important;}
.bulletin-modal-footer .footer-btn a{margin-right: 15px;color: #797676;text-decoration: none;font-size: 17px;}
.mobile-participant-btn {display: none;}
.bulletin-modal-footer .footer-btn .btn{background: #00a6fb;}
.cursor-pointer {cursor: pointer;}
@media (max-width: 992px) {
  .mobile-participant-btn {display: block;margin: 8px 0;}
}

@media (max-width: 480px) {
  .bulletin-box .mobile-post .post-name {width: 100%!important;}
  .bulletin-box .new-post-tag {display: initial;    margin-left: 5px;}
}

.notificationwrap {
  width: 46em;
}
.nav-notification .notificationunread .active-user:after {
    right: 6px;
} 
/*==========css for ACTU-121===============*/
.bulletin-release-point .modal-content{padding: 20px;}
.release-pt-chkbox-wrap-outer {display: flex;justify-content: space-between;align-items: center;margin-bottom: 10px;padding-bottom: 10px;border-bottom: 1px solid #dcdcdc;}
.release-pt-chkbox-wrap label{margin-bottom: 0;}
.release-pt-chkbox-wrap-outer .btn-custom{font-size: 15px;height: 34px;}
/* The container */
.release-pt-label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.release-pt-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark-release {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.deactivateswitch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.deactivateslider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.deactivateslider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 16px;
  left: 3px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .deactivateslider {
  background-color: #2196F3;
}

input:focus + .deactivateslider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .deactivateslider:before {
  transform: translateX(26px);
}

.deactivateslider.round {
  border-radius: 34px;
}

.deactivateslider.round:before {
  border-radius: 50%;
}

/*COM-2955*/
.modal-backdrop.show.invalid-popup-backdrop {
  opacity: 0.9;
}

/*Added for ACTU-65 vstory*/
.mentioned-class{
  background-color:  rgba(9, 30, 66, 0.08);
  border-radius: 10px;
  padding: 0px 5px
}

/*To add pointer cursor in ACTU-65 story */
.mention-menu li{
  cursor: pointer;
}

.mention-dropdown{
  height: auto;
  bottom: 200%;
  top: auto !important;
  margin-bottom: 2px;
  padding: 2px 0px 2px 0px !important;
}

.preview-signup-save-btn.btn-disable, .preview-reset-btn.btn-disable{
  background-color: #9da8b7;
}
.bulletin-validation.popup-bottom p.warning-msg{
  margin: 0px 0 11px;  
}
/* When the checkbox is checked, add a blue background */
.release-pt-label input:checked ~ .checkmark-release {
  background-color: #eaa529;
  border: 1px solid #eaa529;
  border-radius: 4px;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-release:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.release-pt-label input:checked ~ .checkmark-release:after {
  display: block;
}

/* Style the checkmark/indicator */
.release-pt-label .checkmark-release:after {
  left: 6px;
  top: 2px;
  width: 6px;
  height: 13px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg); 
}
.root-user-post-detail .header-inner{justify-content: space-between;}
.root-user-post-detail .postreply-box.mdb-20{margin-bottom: 0;}
.leftside-filter-wrap-mobile .filter-img .dropdown-menu li {cursor: pointer;}
.release-pt-chkbox-wrap-outer .btn-custom:disabled{background-color: #9da8b7;}
.releasePoint-chkbox {display: flex;justify-content: space-between;}

.root-user-post-detail .wt-100:first-of-type .postreply-box.mdb-20 {margin-top: 0;} 
.root-user-post-detail .wt-100 .postreply-box.mdb-20 {margin-top: -30px;}
.cropped-image-class .about-community {margin-top: 37px;}
.releasePoint-chkbox span{padding-right: 10px;}
.activity-box.activity-box1 {    display: block;}
/*css for COM-2816*/
.participant-btn {height: 29px;font-size: 15px;margin-right: 8px;border-radius: 0;}
.bulletin-brd-text {margin-top: 10px;}
.bulletin-brd-text p{font-size: 14px;}
.point-value-div{display: flex;align-items: center;justify-content: space-between;font-weight: 600;}
.instruction-div p{font-size: 14px;}
.bulletin-brd-footer {display: flex;align-items: flex-end;justify-content: flex-end;}
.bulletin-brd-footer button {height: 40px;}
.bulletin-brd-comment-sec .postreply-box {float: none;box-shadow: none;}
/*.postdetail-inner-wrap .bulletin-brd-comment-sec .postreply-box {padding: 10px 10px 0px 10px;}*/
.bulletin-brd-comment-reply .post-name h3 {display: inline-block;}
.bulletin-brd-file .repost-media img {width: 100%;height: 100%;border-radius: 0px;background: transparent;cursor: pointer;}
.mobile-participant-btn {display: none;}
.bulletin-brd-comment-reply{display:block;padding: 5px;min-height: 100px;overflow: auto;height: calc(100% - 120px);}
/*css for COM-2816*/
/*css for ACTU-114*/
.self-msg-div .self-edited-bulletin-msg {width:auto; max-width: 80%;float: right;display: flex;justify-content: space-between;position: relative;    align-items: flex-start;}
.self-msg-div .edited-bulletin-msg{display: block;border: 1px solid #ccc;border-radius: 5px;padding: 10px;position: relative;background:#E5F0FF;}
.post-header div.next-msg-div {float: left;display: block;width: 100%;}
.postreply-box .self-msg-div .post-name{display: inline-block;margin-left: 0;text-align: right;padding-right: 15px;} 
.next-msg-header-div {display: flex;align-items: center;margin-bottom: 5px;}
ul.repost-img.bulletin-brd-file li {width: 80px;height: 80px;cursor: default;}
ul.repost-img.bulletin-brd-file li.repost-li:after {display: none;}
.self-msg-header-div {margin-bottom: 10px;display: flex;justify-content: flex-end;align-items: center;}
.repost-img.bulletin-brd-file li video {width: 100%;height: 100%;max-width: 100%;object-fit: cover;}
.bulletin-brd-file .post-attachment-file .att-right img {width: 18px;height: 18px;min-width: 18px;background: transparent;}
.bulletin-brd-file .post-attachment-file .att-left img {width: 25px;height: 25px;min-width: 25px;background: transparent;}    
.bulletin-brd-file .post-attachment-file .att-left .file-icon {border-radius: 50px;}
ul.repost-img.bulletin-brd-file li .repost-media .post-attachment-file{height: auto;}
.repost-media-wrap {height: 80px;width: 80px;position: relative;}
.bulletin-brd-file .repost-media span.expand-img img{position: absolute;background-size: contain;bottom: 30px;right: 30px;height: 18px;width: 18px;min-width: 18px;}
.self-msg-div .bulletin-brd-file{width: auto;}
ul.repost-img.bulletin-brd-file li {width: 100%;height: 100%;}
.self-msg-div p:after {content: '';}
.self-msg-div .repost-media-wrap1 {float: right;display: flex;align-items: flex-start;justify-content: space-between;}
.edited-bulletin-msg span{    margin-right: 5px;    width: 8px;}
.edited-bulletin-msg span img{    background: transparent;
    width: auto;
    height: auto;
    min-width: auto;
    object-fit: contain;
    border-radius: 0;}
.repost-media-wrap .blk-overlay span img{ width: 100%;height: auto;border-radius: 0px;width: 25px;min-width: 25px;background: transparent;}
.repost-media-wrap .blk-overlay span{ top: 50%;transform: translateY(-50%);}
.dynamic-height-class{ display: flex;align-items: center;}
.self-msg-header-div .dot-menu__label { height: 8px; }
.new-participate-button{
      color: #fff !important;
    background-color: #0062cc !important;
    border-color: #005cbf !important;
}
.edited-bulletin-msg {display: flex;justify-content: flex-end;}
.self-msg-div .dropdown {display: none;transition: all ease 0.3s;}
.self-msg-div .self-edited-bulletin-msg:hover .dropdown {display: block;transition: all ease 0.3s;cursor: pointer;position: absolute;right: 0px;}
.self-msg-div .self-edited-bulletin-msg .dropdown span{width: 8px;}
.self-msg-div .self-edited-bulletin-msg .dropdown span img{width: 100%;min-width: auto;border-radius: 0;height: 100%;background: transparent;object-fit: 
contain;}
.self-msg-div .bulletin-brd-file .repost-media-wrap1, .next-msg-div .bulletin-brd-file .repost-media-wrap1{ height: 155px;
    width: 225px;}
.self-msg-div .bulletin-brd-file .repost-media-wrap, .next-msg-div .bulletin-brd-file .repost-media-wrap{ height: 155px;  width: 210px; z-index: 8;border: 1px solid #E0E0E0;box-sizing: border-box;border-radius: 5px;padding: 5px;margin: 0;}
.postdetail .postreply-box .edited-bulletin-msg .post-text {text-align: left;margin-top: 0;margin-bottom: 0;}
.att-left1 {display: flex;align-items: center;    margin-bottom: 5px;}
.bulletin-file-name {margin-bottom: 0;line-height: normal;}
.bulletin-file-name h6{font-size: 13px;font-weight: 600;    width: 120px;
    overflow: hidden;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;margin-bottom: 0px;}
.document-name-wrap {display: flex;border: 1px solid #ccc;border-radius: 5px;width: 200px;height: 120px;align-items: center;justify-content: center;background: #fff;}
.document-name {    display: flex;align-items: center;}
.bulletin-brd-file .document-name>img {width: 25px;height: 25px;object-fit: contain;background: transparent;}
.file-icon1{
  height: 50px;
  width: 20px;
  padding: 0;
  object-fit: contain;    margin-right: 5px;
}
.file-icon1 img{
  object-fit: contain;
    min-width: auto;
}
.dwnld-link {width: 200px;display: block;text-align: center;text-decoration: none;padding: 10px 0;border: 1px solid #ccc;border-radius: 5px;background: #F1F3F6;margin: 10px auto 0;}
.next-msg-div .edited-bulletin-msg {display: flex;justify-content: flex-start;background: #F5F6FA;}
.postdetail .postreply-box .next-msg-div .edited-bulletin-msg {width: auto;max-width: 80%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;text-align: left;position: relative;display: inline-block;}
.repost-media-wrap {
    height: 200px;
    width: 200px;
    position: relative;
    margin: 0 auto;
}
.next-msg-div .repost-media-wrap {
    height: 100%;
    width: 100%;
    position: relative;
    margin: 0 auto;
}
.repost-media-wrap .remove-media{width: 10px;
    height: 23px;
    display: block;
    position: absolute;
    top: 0;
    right: 4px;}
.repost-media-wrap .remove-media img{width: 100%;object-fit: contain;height: 100%;min-width: 100%;}
.self-msg-div .self-file-attach {width: 268px;display: flex;float: right;justify-content: space-between;}
.self-msg-div .post-attachment-file1 , .next-msg-div .post-attachment-file1{
    position: relative;
    width: 255px;
    padding: 10px;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    border-radius: 5px;
    background: #E5F0FF;
}
.next-msg-div .post-attachment-file1{float: none;background: #F5F6FA;}
.post-attachment-file1 .remove-media{width: 10px;
    height: 23px;
    display: block;
    position: absolute;
    top: 0;
    right: 4px;}
 .post-attachment-file1 .remove-media img{width: 100%;object-fit: contain;height: 100%;min-width: 100%;}
.repost-media-wrap .vid-wrap {    width: 100%;height: 100%;position: relative;}
.vid-wrap .blk-overlay  {border-radius: 0;}
.self-msg-info-div .post-name span.total-no {margin-bottom: 5px;display: inline-block;}
.self-msg-div .bulletin-brd-file .repost-media-wrap {background: #E5F0FF;}
.repost-media-wrap .dropdown {display: none;position: absolute;top: 5px;right: 10px;}
.repost-media-wrap1:hover .dropdown {display: block;}
.media-drpdwn span{display: block;width: 6px;}
.media-drpdwn span img{min-width: 100%;object-fit: contain;}
.self-file-attach .dropdown {display: none;}
.self-file-attach:hover .dropdown {display: block;}
span.edit-icon1 {margin-right: 5px;
    background: #E0E0E0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;    position: absolute;
    left: -40px;
    top: 10px;}
.edited-bulletin-msg span.edit-icon1 img {width: 60%;}
.next-msg-div .edited-bulletin-msg span.edit-icon1{left: auto;top: 10px;right: -40px;}
.modal-backdrop.show.bulletin-video-popup {    opacity: 0.99;}
.modal-participant {padding: 0 15px;}
.self-msg-div .response-dropdown.last-self-msg .dropdown-menu{ top: auto !important;bottom: 20px;}
.self-msg-div .response-dropdown.last-self-msg .dropdown-menu:before,
.self-msg-div .response-dropdown.last-self-msg .dropdown-menu:after {top: auto;right: 9px;bottom: -15px;transform: rotate(180deg);}
.next-msg-header-div .reply-box-short-name{width: 35px;height: 30px;}
.participant-post-header {padding: 5px 10px;}
.postdetail-inner-wrap .bulletin-brd-comment-sec .postreply-box {padding: 6px 10px;}
.postdetail-inner-wrap.root-activity-chat .postreply-box {padding: 4px 20px 4px 10px!important;}
.postdetail-inner-wrap .bulletin-brd-comment-sec .postreply-box .self-msg-div {display: table;width: 100%;margin-top: -3px;}
.postdetail-inner-wrap.root-activity-chat .next-msg-header-div .post-name, 
.postdetail-inner-wrap.root-community-chat .next-msg-header-div .post-name {margin-left: 15px;}
.root-activity-chat .self-msg-div .edited-bulletin-msg {margin-right: 13px;}
.root-activity-chat .post-header div.next-msg-div {margin-bottom: 5px;}
.postdetail-inner-wrap .self-msg-div .edited-bulletin-msg{margin-right: 15px;}
.self-msg-div .response-dropdown .dropdown-menu {right: -10px;left: auto !important;top: 29px !important;}
.flex-auto-a {flex: auto!important;}
.postdetail-inner-wrap .next-msg-header-div .post-name {margin-left: 0px;}
.transcript-video.modal-backdrop.show {opacity: 0.6;}
.file-white-bg {background: #fff;display: flex;justify-content: space-between;padding: 10px;}
.file-icon-wrap {background: rgba(234, 165, 41, 0.3);width: 56.19px;height: 56.19px;    display: inline-block;position: relative;border-radius: 5px;}
.file-icon-wrap img {width: 20px;height: 28px;object-fit: contain;border-radius: 0px;background: transparent;}
.repost-media .file-icon-wrap img {width: 20px;height: 28px;object-fit: contain;border-radius: 0px;background: transparent;min-width: auto;position: absolute;
    left: 0;right: 0;top: 50%;transform: translateY(-50%);margin: 0 auto; cursor:default;}
.download-icon {width: 22.5px;height: 22.5px;cursor: pointer;}
.download-icon img{width: 22.5px;height: 22.5px;min-width:auto;}
.bulletin-file-name span.file-size{font-size: 12px;line-height: 16px;color: #828282;}
.textarea-dropdown {background: #fff;border: 1.64715px solid #F2F2F2;border-radius: 8px;box-shadow: none;}
.textarea-dropdown a {font-size: 14px;line-height: 19px;color: #000000;text-decoration: none;display: flex;align-items: center;padding: 10px;}
.textarea-dropdown img {width: 16px;margin-right: 8px;height: 17px;}
.textarea-dropdown a:hover {background: #E5F0FE;color:  #00A6FB;}
.textarea-dropdown a:first-of-type:hover {border-radius: 8px 8px 0px 0px;}
.textarea-dropdown a:last-of-type:hover {border-radius:  0px 0px 8px 8px;}
.textarea-dropdown-wrap span{width: 30px;height: 30px;display: inline-block;margin-top: 2px;background: #BDBDBD;border-radius: 5px;text-align: center;}
.textarea-dropdown-wrap span img {padding-top: 5px;}
.textarea-dropdown-wrap span:focus, 
.textarea-dropdown-wrap span:active,.textarea-dropdown-wrap span:hover{background: #00A6FB;outline: none;cursor: pointer;}
.bulletin-reply-box textarea{padding: 4px;max-height: 90px;overflow: auto!important;height: auto;min-height: 34px;resize: none;}
.next-msg-header-div .post-name span.total-no {padding-left: 15px;font-size: 11px;}
.dropdown-menu.textarea-dropdown {bottom: 70px;top: auto!important;}
.textarea-dropdown.dropdown-menu:before { top: auto;right: auto;bottom: -10px;left: 10px;transform: rotate(60deg);}
.textarea-dropdown.dropdown-menu:after { top: auto;right: auto;bottom: -8px;left: 10px;transform: rotate(60deg);}
.position-of-user i{font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #EAA534;
    font-style: normal;}
.position-of-user span.total-no {font-size: 11px;}   
.blue-hidden {display: none;}
.textarea-dropdown a:hover .blue-hidden {display: block;}
.textarea-dropdown a:hover .grey-hidden {display: none;}
.root-community-chat .self-msg-div .self-edited-bulletin-msg .dropdown span {width: 6px;display: block;}
.transcript-video + .video-modal .modal-content {box-shadow: none;}
.next-msg-div .response-dropdown.last-self-msg .dropdown-menu{ top: auto !important;bottom: 20px;}
.next-msg-div .response-dropdown.last-self-msg .dropdown-menu:before,
.next-msg-div .response-dropdown.last-self-msg .dropdown-menu:after {top: auto;right: 9px;bottom: -15px;transform: rotate(180deg);}
.releasePoint-chkbox .relasse-point-member{padding-right: 5px; display: inline-block; }
.root-side-filter-drpdown .leftside-filter-wrap-mobile {display: block;}
.root-vote-option{justify-content: flex-start;}
.permission-popup .board-popup .edit-bulletin-date-picker .dropdown-menu { top: 0px !important; bottom: auto !important }
.root-side-filter-drpdown {text-align: left;width: 200px;}
/*css for ACTU-114*/
/*CSS for ACTU 200 */
.post-loader-class{width: 50px;position: relative;top: 50px;}
.bulletin-loader-class{width: 50px;position: relative;top: 230px;}
/*CSS for ACTU 200 */
/*CSS for the story ACTU-188 */
.hand-cursor{cursor: pointer !important;}
/*CSS for the story ACTU-188 */
/* CSS for the story ACTU-284 */
.alter-dimensions{width: 30px !important;  height: 30px !important;}
/* CSS for the story ACTU-284 */
/*CSS for the story ACTU-379 starts here */
.top-margin-class{ top:50px !important; }
/*CSS for the story ACTU-379 ends here */
/*CSS for the story ACTU-380 starts here */
.top-height-class{ top: 50px !important; }
/*CSS for the story ACTU-380 ends here */
/*CSS for the story ACTU-291 Starts Here*/
.loader-inner{position: fixed;z-index: 99999;left: 0px;right: 0px;width: 100px;margin: 0 auto;top: 50%;transform: translateY(-50%);}
.loader-outer:before {content: '';position: fixed;width: 100%;height: 100%;background: rgba(0,0,0,0.5);top: 0;bottom: 0;left: 0;right: 0;z-index: 999;}
.loader-inner img{width:100%;}
/*CSS for the story ACTU-291 ends Here*/
/*CSS for the story ACTU-406 starts here*/
.view-statistics ul {position: relative;}
.view-statistics ul li a {color: #9da8b7;font-size: 14px;line-height: 16px;position: relative;width: 160px;text-align: center;padding: 0 0 12px;text-decoration: none;}
.view-statistics ul li {display: flex;justify-content: center;align-items: center;padding: 5px 0;}
.view-statistics ul li a.active {font-weight: 600;color: #222;}
.view-statistics ul li a.active:before {content: "";position: absolute;left: 0;right: 0;bottom: 0;width: 100%;height: 3px;background: #eaa529;}
.view-statistics .tab-content ul li {justify-content: flex-start;margin: 10px 0 0;border-bottom: 1px solid #e8e8e8;padding: 0 0 8px;}
.view-statistics .tab-content h3 {font-size: 14px;margin-bottom: 3px;}
.all-post-statistics.modal.show .modal-dialog {transform: translate(0,3%);} 
.all-post-statistics .modal-lg {max-width: 80vw;max-height: calc(100vh - 30px);}
.all-post-statistics .modal-content {max-height: 90vh;min-height: 90vh;}
.graph-box-inner {position: relative;margin: auto;height: calc(100vh - 210px);width: 100%;}
.no-data1 {height: 410px;width: 100%;display: flex;align-items: center;justify-content: center;}
.view-statistics-header {display: flex;justify-content: space-between;margin-bottom: 10px;}
.view-statistics-header .date-picker-section {width: 45%;display: flex;justify-content: flex-end;align-items: flex-start;margin-right: 10px;}
.all-post-statistics .modal-content {height: calc(100vh - 60px);}
.graph-box-inner {position: relative;margin: auto;height: 80vh;width: 80vw;}
.view-statistics ul {border-bottom: 0;}
.graph-box1 {position: relative; width: 100%;height: calc(100vh - 187px);}
.all-post-statistics .active-filter-comm .date {margin-top: -4px;}
.all-post-statistics .popup-header {margin: 0 0 15px;}
.all-post-statistics .active-filter-comm .dropdown-menu a.dropdown-item {padding-bottom: 0;text-align: left;}
.all-post-statistics .active-filter-comm .dropdown-menu li {padding: 13px 15px;}
.all-post-statistics .active-filter-comm .dropdown-menu {width: 158px;}
.all-post-statistics .active-filter-comm .dropdown-toggle {width: 76px;}
.no-data1-loader {height: 410px;width: 100px;display: flex;align-items: center;justify-content: center;margin: 0 auto;}
.no-data1-loader img{width: 100%;}
/*CSS for the story ACTU-406 ends here*/
/* CSS for the story ACTU-475 starts here */
.community-switch-tab {
    width: 80%;
}
.active-community-user {
    background: #F5F5F5;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 30px;
}
.active-community-user figure{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;}
.active-community-user figure span:after {

}    
.active-community-user figure img{
    width: 51px;
    height: 51px;
    margin-right: 15px;
    border-radius: 50px;
    object-fit: cover;
    object-position: center;
    border: 2px solid #27AE60;
}
.active-community-user figure figcaption{
    font-size: 18px;
    line-height: 25px;
    color: #222222;
}
.sign-out-wrapper button{
    border: 1px solid #d93025;
    height: 50px;
    border-radius: 5px;
    padding: 0 18px;
    color: #d93025;
    font-weight: 500;
    font-size: 16px;
}
.signed-community {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}
.signed-community-header h4 {
    font-size: 16px;
    line-height: 17px;
    color: #222222;
    font-weight: 600;
    margin-bottom: 15px;
}
.signed-community-header p {
    font-size: 14px;
    line-height: 15px;
    color: #6C6C6C;
    margin-bottom: 0;
}
.add-another-comm {text-align: right;}
.add-another-comm a{
    font-size: 16px;
    line-height: normal;
    text-decoration: none;
    font-weight: 600;
}
.no-community-listed {
    border-radius: 5px;
    display: flex;
    justify-content: center;
    height: 350px;
    flex-direction: column;
    align-items: center;
    border: 1px solid #E8E8E8;
    box-shadow: 0 1px 4px 1px rgb(64 64 64 / 11%);
}
.no-community-listed span img{
    width: 55px;
    height: 55px;
}
.no-community-listed h2{
    font-size: 18px;
    line-height: 25px;
    color: #6C6C6C;
}
.no-community-listed p{
    font-size: 14px;
    line-height: 19px;
    color: #6C6C6C;
    font-weight: normal;
    margin-bottom: 0;
}
.no-community-listed span{
    margin-bottom: 30px;
    display: block;
}
.no-community-listed p{
    font-size: 14px;
    line-height: 19px;
    color: #767F8C;
}
.active-community-user figure span{
    display: block;
    position: relative;
}
.active-community-user figure img.active-green-tick {
    width: 12px;
    height: 12px;
    border: 0;
    position: absolute;
    right: 5px;
    bottom: -1px;
}
.sign-out-wrapper .blank-btn:hover {
    background-color: #d93025;
}
.active-community-list {
    border: 1px solid #E8E8E8;
    border-radius: 5px;
}
.active-community-list figure img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50px;
    /*border: 1px solid #828282;*/
    height: 100%;
}
.active-community-list figure{
    width: 51px;
    height: 51px;
    display: flex;
    margin: 0 10px 0 0;
}
.active-community-list figure{position: relative;}
.active-community-list figure:after {
    content: '';
    border: 1px solid #828282;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
}
.active-community-detail{
  width: calc(100% - 61px);
}
.active-community-detail h6{
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    line-height: normal;
    text-overflow: ellipsis;
}
.active-community-detail a{
    font-weight: 600;
font-size: 14px;
line-height: 14px;
color: #EB5757;
text-decoration: none;
}
.active-community-list li {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #E8E8E8;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}
.sign-out-from-all-communitites .login-btn button{
    min-width: 100px;
}
.signinup-popup.sign-out-from-all-communitites  .modal-body h2{
    font-size: 18px;
    line-height: 26px;
    color: #000000;
}
.signinup-popup.sign-out-from-all-communitites  .modal-body p{
    font-size: 16px;
    line-height: 26px;
    color: #6C6C6C;
}
.sign-out-from-all-communitites.signinup-popup .modal-dialog{
    max-width: 485px;
    min-width: 485px;
}
.add-comm-input-wrap {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    margin-bottom: 30px;
}
.swictch-community-email .breadcrumb{
    margin-bottom: 30px;
}
.add-comm-input {
    width: 62%;
    margin-right: 20px;
}
.add-comm-input input{
    height: 45px;
    border: 1px solid #E8E8E8;
    border-radius: 5px;
    width: 100%;
    padding: 5px 10px;
    font-size: 16px;
}
.add-comm-search-btn {margin-right: 10px;}
.add-comm-search-btn button{width: 140px;height: 50px;}
.switch-community-tooltip.tooltip {
    display: inline-block;
    margin-top: 9px;
}
.switch-community-tooltip.tooltip .tooltiptext {
    left: auto;
    right: 0;
    margin:0;
        top: -50px;
    padding: 7px;
    width: 270px;
    text-align: left;
}
.switch-community-tooltip .tooltiptext::after{
    bottom: -12px;
    border-color: #767f8c transparent transparent transparent;
    left: auto;
    right: 7px;
}
.part-of-comm h3{
    font-size: 16px;
    line-height: 17px;
    color: #222222;
}
.part-of-comm p{
    font-size: 14px;
    line-height: 15px;
    color: #6C6C6C;
}
.comm-login-form .social-media-icon-wrap ul li:first-of-type{
    margin: 0 10px 0 0px;
}
.note-sec {
    background: #E5F0FF;
    padding: 15px;
    width: 333px;
}
.note-sec p{
    font-size: 14px;
    line-height: 19px;
    color: #828282;
    margin-bottom: 0;
}
.comm-login-form .login-bottom .forgot-password {
    float: right;
}
.switch-comm-button {
    margin-top: 30px;
}
.switch-comm-button button{
    margin: 0!important;
}
.switch-comm-button .blank-btn{
    margin-right: 18px!important;
}
.resend-otp {
    position: absolute;
        top: 2px;
    right: 15px;
}
.signinup-popup .form-group .resend-otp p{
    font-size: 16px;
    line-height: 22px;
    color: #006BD3;
}
.otp-timer{
    position: absolute;
        top: 9px;
    right: 15px;
}
.signinup-popup .form-group .otp-timer p{
    font-size: 16px;
    line-height: 22px;
    color: #006BD3;
    margin: 3px 0 0 0;
    cursor: pointer;
}
.otp-timer span{
    font-size: 14px;
    line-height: 25px;
    color: #000000;
}
.active-community-detail a.blue-text{
    color: #00A6FB;
}
.community-logo {
        display: flex;
    align-items: center;
    justify-content: flex-start; 
    margin-bottom: 20px;
}
.community-logo img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50px;
    border: 1px solid #828282;
}
.community-logo p{
    font-size: 18px;
line-height: 25px;
color: #000;
margin-bottom: 0;
}
.comm-login-form.signinup-popup .modal-body > p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}
.comm-login-form hr {
    margin: 15px 0;
}
.display-class{
  display: flex;
  align-items: center;
  width: 100%;
}
.switch-arrow {
  position: absolute;
  right: 20px;
  z-index: 99;
}
.switch-arrow img{
  transform: rotate(-90deg);
}
.comm-login-form .social-media-icon-wrap ul {
    text-align: left;
}
.comm-login-form .form-control-placeholder {
  pointer-events: none;
}
.penalist-logo img {
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
  width: 70px;
  height: 70px;
  display: flex;
  margin: -1px 0px 0px -1px;
}
.logo-with-banner img {
 object-fit: cover;
  object-position: center;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  margin: 0px; 
}
/* CSS for ACTU-475 Ends Here */
/* CSS for the story ACTU-540 starts Here*/
.item{ padding: 10px; box-sizing: border-box;}
.tile { min-height: 150px; display: block;}
.slider-arrow {position: absolute; border: 0;outline: none;background: transparent;padding:0;cursor: pointer;height: 20px;left: 0;}
.slider-arrow .fa {font-size: 27px;color: #006bd0;}
.slider-arrow.up-arrow {top: 5px;}
.slider-arrow.down-arrow {top: 25px;}
.slider-arrow:hover .fa{color:#0249A3 ;}
.myPoint {list-style-type: none;text-align: center;padding: 12px;margin: 0;white-space: nowrap;overflow: auto;box-sizing: border-box;}.myPoint  li {display: inline-block;border-radius: 50%;border: 2px solid rgba(0, 0, 0, 0.55);padding: 4px;margin: 0 3px;transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);transition: 0.4s;}.myPoint  li.active {background: #6b6b6b;transform: scale(1.2);}
.dashboard-active-member{width:100%;text-align: right;}
.dashboard-active-member .item{padding: 0;}
.response-rate{font-size: 26px;color: #006bd0;font-weight: 600;}
.response-name {font-weight: 400;font-size: 12px;line-height: 14px;color: #6C6C6C;width: 80%;float: right;white-space: nowrap;text-overflow: ellipsis;overflow: hidden;}
.dash-total .comm-box{padding: 9px 15px 18px 15px;}
.dash-total .comm-box h3 {margin-bottom: 20px;}
.tooltip-section {display: flex;}
.tooltip-section .tooltip{margin-right:8px;}
.tooltip-section .tooltip .tooltiptext {top: -55px;background: #000000cc;margin-left: -23px;text-align: left;
width: 264px;padding: 10px;}
.tooltip-section .tooltiptext::after {left: 20px;bottom: -16px;border-color: #000000cc transparent transparent;border-width: 8px;}
.tooltip-section .commentmode {width: 18px; height:18px;}
/* CSS for the story ACTU-540 ends Here*/
/* CSS for the story ACTU-574 starts Here*/
.filter-skeleton{padding-top: 15px;height:250px;}
/* CSS for the story ACTU-574 ends Here*/
/* CSS for the story ACTU-580 starts Here*/
.img-verified{height: 20px; width: 20px; margin-left: 5px; margin-top: -2px;}
.verified-text{color: #51A351;}
/* CSS for the story ACTU-580 ends Here*/
/* CSS for the story ACTU-587 starts Here*/
.no-pointer{cursor: none;}
/* CSS for the story ACTU-587 ends Here*/
/* CSS for the story ACTU-582 starts Here*/
.white-box.task-detail {
  min-height: calc(100% - 154px);
  margin-bottom: 0;
  position: relative;
}
.white-box.task-detail.dashboard-tickets {
  min-height: calc(100% - 141px);
  margin-bottom: 0;
}
.tab-content.admin-table .datatable-body {
min-height: 200px;
}
.task-detail .page-content.empty-page {
  padding-top: 30px;
  padding-bottom: 10px;
}
.overflow-scroll.new-tasklist-height {
min-height: 200px;
overflow-y: auto;
height: auto;
}

.overflow-scroll.new-tasklist-height {
  margin-bottom: 0;
  position: relative;
  max-height: 730px;
  background: #fff;
  overflow: auto;
}
.task-detail.dashboard-tickets .overflow-scroll.new-tasklist-height {
  margin-bottom: 0;
  position: relative;
  max-height: 694px;
  background: #fff;
  overflow: auto;
}
.task-detail.activity-tickets .overflow-scroll.new-tasklist-height {
  max-height: 760px;
  background: #fff;
  overflow: auto;
}
.task-detail.account-tickets .overflow-scroll.new-tasklist-height {
  max-height: 700px;
  background: #fff;
  overflow: auto;
}
/*.comm-tab .mdb-30{
background: #fff;
box-shadow: 0 2px 4px 1px rgb(0 0 0 / 4%);
  -webkit-box-shadow: 0 2px 4px 1px rgb(0 0 0 / 4%);
  -moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
}*/
/* CSS for the story ACTU-582 ends Here*/
/* CSS for the story ACTU-593 starts Here*/
.home-icon a img {width: 18px;}
.home-icon:hover .home-tooltip{
  display: block;
}
.home-tooltip { 
    display: none;
    position: absolute;
    background: #000;
    opacity: 0.8;
    border-radius: 8px;
    padding: 12px;
    min-width: 50px;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    top: 30px;
    right: -5px;
    max-width: max-content;
    width: 300px;
  }
 .home-tooltip:before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 9px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent #000 transparent;
 } 
/* CSS for the story ACTU-593 starts Here*/
/* CSS for the story ACTU-598 starts Here*/
.pointer-class{cursor: pointer;}
/* CSS for the story ACTU-598 ends Here*/
/* CSS for the story ACTU-626 starts Here*/
.comments-count-class{ text-align: end;margin-top: 10px;}
.comments-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
}
/* CSS for the story ACTU-626 ends Here*/
/* CSS for the story ACTU-627 starts Here*/
.comm-tab .clear-filter.disable-link-class a{color: #9da8b7;cursor: not-allowed;}
.comm-tab .clear-filter.disable-link-class:hover .home-tooltip{display: block;}
.comm-tab .clear-filter.disable-link-class .home-tooltip{max-width: 450px;width: 450px;opacity: 0.9;right: 0px;z-index: 2;}
.comm-tab .clear-filter.disable-link-class .home-tooltip p{margin-bottom: 0px; font-size: 15px;}
.comm-tab .clear-filter.disable-link-class .home-tooltip:before{right:10px}
.ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell{
  padding: 15px 12px 7px;
}
.myPostList {position: absolute;right: 0;}
.activities-list .post-page .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:first-of-type {
  padding-top: 8px;
}
.activities-list .postListReport.filter .dropdown.clear-filter {
  margin-bottom: 0;
}
/* CSS for the story ACTU-627 ends Here*/
/* CSS for the story COM-COM-3840 starts Here*/
.leftside-filter-tab-content .postdetail-inner-wrap .postreply-box {
  padding: 20px 20px 10px;
}
.leftside-filter-tab-content .postdetail-inner-wrap #messageWrapperForBulletin .postreply-box {
  padding: 10px;
}
.bulletin-brd-comment-sec1 .participant-post-header {
  padding: 5px 0px;
}
.bulletin-brd-comment-sec1 .bulletin-brd-text {
padding:0;
}
/* CSS for the story COM-COM-3840 ends Here*/
/* CSS for the story ACTU-661 starts Here*/
.comment-visibility img{
  background-color: transparent;
  width: 15px;
  height: 15px;
  border-radius: 0;
  object-fit: contain;
  min-width: auto;
  cursor: pointer;
}
.comment-visibility .tooltiptext {
  background: #000000cc;
  text-align: left;
  width: 294px;
  padding: 10px;
  border-radius: 8px;
  display: none;
  position: absolute;
  bottom: 25px;
  left: 0;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  z-index: 9;
}
.comment-visibility {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  padding-right: 10px;
}
.comment-visibility:before, .comment-visibility:after {
    content: '';
    background: #9DA8B7;
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    border-radius: 100%;
}
.comment-visibility:before {
    left: 10px;
    top: 11px;
}
.comment-visibility:after {
    right: 0;
    top: 11px;
}
.comment-visibility img:hover + .tooltiptext{
    display: block;
}
.comment-visibility .tooltiptext::after {
  bottom: -12px;
  left: 26px;
  border-color: #000000cc transparent transparent transparent;
}
.tooltiptext.width-lg {
  width: 325px;
}
.comment-visibility img{
  background-color: transparent;
  width: 15px;
  height: 15px;
  border-radius: 0;
  object-fit: contain;
  min-width: auto;
  cursor: pointer;
}
.comment-visibility .tooltiptext {
  background: #000000cc;
  text-align: left;
  width: 294px;
  padding: 10px;
  border-radius: 8px;
  display: none;
  position: absolute;
  bottom: 25px;
  left: 0;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  z-index: 9;
}
.comment-visibility {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  padding-right: 10px;
}
.comment-visibility:before, .comment-visibility:after {
    content: '';
    background: #9DA8B7;
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    border-radius: 100%;
}
.comment-visibility:before {
    left: 10px;
    top: 11px;
}
.comment-visibility:after {
    right: 0;
    top: 11px;
}
.comment-visibility img:hover + .tooltiptext{
    display: block;
}
.comment-visibility .tooltiptext::after {
  bottom: -12px;
  left: 26px;
  border-color: #000000cc transparent transparent transparent;
}
.tooltiptext.width-lg {
  width: 325px;
}
/* CSS for the story ACTU-661 ends Here*/
/* CSS for the story COM-6679 starts Here*/
.user-profiling-inner.profiling-question label.custom-radio {
  min-height: 45px;
  height: auto;
  padding: 8px 5px 10px 40px;
}
.user-profiling-inner.profiling-question .checkmark-radio {
  position: absolute;
  left: 10px;
  top: 10px;
  right: auto;
  float: none;
  display: inline-block;
  vertical-align: middle;
}
/* CSS for the story COM-6679 ends Here*/
/* CSS for the story ACTU-744 starts Here*/
.bordered-div{border: 2px solid red; cursor: pointer;}
.disabled-media-class{cursor: not-allowed !important;}
.inner-border{border:  1px black dashed;}
.meta-data-loader{display: block;width: 50px;margin: 0 auto;}
.meta-data-loader img{width: 100%;}
/* CSS for the story ACTU-744 ends Here*/
/* CSS for the story ACTU-856 starts here */
.plan-cost-value {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
/* CSS for the story ACTU-856 start here */
/* CSS for the story ACTU-955 starts here */
.signup-loader{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
}
.signup-loader img{
    margin: 0px 0 10px -8px;
    width: 120px;
}
.footer span {
  padding-top: 4px;
}
.footer-logo {
  margin-top: -4px;
}
/* CSS for the story ACTU-856 ends here */
/* CSS for the story ACTU-1077 starts here */
@keyframes custom-progress {
  from {
      width: 0
  }

  to {
      width: 100%
  }
}
/* CSS for the story ACTU-1077 ends here */
/*  css for the story COM-8091  starts here*/
.setting-box p.option-selected{
  visibility: hidden;
}
/*  css for the story COM-8091  end here*/
/*  css for the story ACTU-1181 starts here*/
.postreply-box .vote-box{
  min-width: 100%;
}
.vote-box .odd-polls{
  justify-content: space-between;
}
.vote-box .vote-option{
  justify-content: space-between;
}
.vote-box .single-select {
  width: 75%;
}
.vote-box .rating-box{
    border: none;
    padding: 0;
}
.rating-box .star {
  margin-right: 20px;
  display: inline-block;
  font-size: 0;
}
.rating-box .star:before {
  content: "";
  background-repeat: no-repeat;
  background-image: url('star-off.7e9468df3b5c3d7e.svg');
  opacity: 1;
  display: block;
  width: 40px;
  height: 40px;
}
.rating-box .star.filled:before{
  background-image: url('star-fill.be8748079d110820.svg');

}
 .vote-option label.custom-radio{
  padding-left: 40px;
  max-width: 48%;
  flex: 0 0 48%;
  margin-right: 0;
  transition: 0.15s ease-in-out;
  -webkit-transition: 0.15s ease-in-out;
  -moz-transition: 0.15s ease-in-out;
}

.vote-option span.checkmark-radio{
    left: 10px;
    top: auto;
    width: 20px;
    height: 20px;
}
/* CSS for the story ACTU-1181 starts here */
.participant-post .custom-radio .checkmark-radio:after{
  left: 7px;
  top: 1px;
}
.participant-post .custom-radio input[type="radio"] ~ .checkmark-radio:after{
  top: 2px;
}
.vote-option.poll-img-option label.custom-radio{
  flex: inherit;
  max-width: 100%;
}
.create-comm-box .vote-box .vote-option label.custom-radio {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 24px;
}
.navbar{
  z-index: 9999;
}
.vote-option label.no-spacing{
  padding-left:0px;
}
/* CSS for the story ACTU-1181 ends here */
/*  css for the story COM-7705  starts here*/
.left-side a.clickable{
  position: relative;
  white-space: pre-wrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: inline-block;
  width: 140px;
  text-decoration: none;
  margin-top: 5px;
}
.left-side a.clickable span.tooltiptext {
  visibility: hidden;
  width: 255px;
  background-color: #000000cc;
  color: #ffffff;
  font-size: 12px;
  text-align: left;
  border-radius: 6px;
  padding: 8px;
  position: absolute;
  z-index: 1;
  bottom: -58px;
  left: -10px;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 2px 2px 13px 1px rgba(0,0,0,0.74);
 -webkit-box-shadow: 2px 2px 13px 1px rgba(0,0,0,0.74);
 -moz-box-shadow: 2px 2px 13px 1px rgba(0,0,0,0.74);
}
.left-side a.clickable span.tooltiptext:after{
  left: 20px;
  border-color: transparent transparent #000000cc transparent;
  border-width: 8px;
}
.left-side a.clickable:hover span.tooltiptext {
  visibility: visible;
  opacity: 1;
}
.box-header h3{
  text-transform: capitalize;
}
.newpost-box{
  min-height: 104px;
  height: auto;
}
/*  css for the story COM-7705  end here*/
/*  css for the story ACTU-1246  starts here*/
.dash-total .comm-box-width{
  width: 22.75% !important;
}
.navbar{
  z-index: 999;
}
/*  css for the story ACTU-1246  end here*/
/*  css for the story ACTU-1244 starts here*/
.reaction-popup ul.detail .user-detail span.blue-text {
  color: #01a2e8;
}
.like-dislike-popup ul.detail .user-detail span.blue-text {
  color: #01a2e8;
}
/*  css for the story ACTU-1244 ends here*/
/*  css for the story COM-8091 starts here*/
.sign-up-check-box-sec{
  display: inline-block;
  vertical-align: middle;
}
.sign-up-check-box-sec label.dl-container{
  padding-left: 32px;
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 14px;
}
.sign-up-check-box-sec label.dl-container .dl-checkmark{
  width: 20px;
  height: 20px;
}
.newuser-signup-form .signinup-popup .btn-custom.register-btn{
  display: inline-block;
  margin-top: 0;
  min-width: 125px;
}
/*  css for the story COM-8091 end here*/
/*  css for the story ACTU-1270 starts here*/
.bottom-section.form-group{
  display: inline-block;
  vertical-align: middle;
}
.bottom-section .sign-up-check-box-sec .dl-container .dl-checkmark:after{
  top: 1px;
  right: 5px;
  width: 5px;
  height: 11px;
}
.social-media-icon-wrap span.or-cnt{
  text-align: center;
}
.form-group.bottom-section .sign-up-check-box-sec{
  margin-bottom: 0;
}
.bottom-section .sign-up-check-box-sec label.dl-container{
  padding-left: 0;
  font-size: 13px;
  cursor: default;
}
.newuser-signup-form .signinup-popup .modal-body{
  padding: 20px 38px;
}
/*  css for the story ACTU-1270 starts here*/
/*  css for the story COM-7455 starts here*/
.graph-box1.table-section{
  width: 70%;
  padding: 20px 30px;
}
.graph-box1.table-section table tr th{
  font-weight: normal;
  color: #9da8b7;
  text-transform: uppercase;
}
.status-reprot-section {
  margin-right: 20px;
}
.status-reprot-section a.btn{
  color: #00a6fb;
  border: 1px solid #00a6fb;
  border-radius: 4px;
  padding: 6px 16px;
  margin-right: 15px;
  text-decoration: none;
}
.status-reprot-section a.btn:last-child {
  margin-right: 0;
}
.all-post-statistics .active-filter-comm .dropdown-toggle{
  width: auto;
  padding: 3px 15px;
  color: #9da8b7;
}
.active-filter-comm .dropdown-toggle:after{
  border-color: #9da8b7;
}
.status-reprot-section button.btn{
  color: #00a6fb;
  border: 1px solid #00a6fb;
  background: none;
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 15px;
  margin-right: 5px;
  cursor: pointer;
  text-decoration: none;
  height: auto;
}
.status-reprot-section button.btn:last-child {
  margin-right: 0;
}
.date-picker-section .dropdown-list .list-area ul li.pure-checkbox{
  padding: 7px 10px !important;
  display: block;
}
.date-picker-section .dropdown-list .list-area ul li.pure-checkbox input[type="checkbox"]{
  width: auto;
  height: auto;
  position: static;
  margin: 0 5px 0 0;
}
.date-picker-section .dropdown-list .list-area .select-all input[type="checkbox"]{
  width: auto;
  height: auto;
  position: static;
  margin: 0 5px 0 0;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list{
  background: #e5f0ff;
  color: #9da8b7;
  padding: 8px 15px 10px 10px;
  border-radius: 8px;
  width: 150px;
  margin-top: 5px;
}
.date-picker-section .filter-comm .cuppa-dropdown:after{
  width: 7px;
  height: 7px;
  top: 8px;
  right: 8px;
  border-color: #9da8b7;
}
.date-picker-section .filter-comm .selected-list .c-list .c-token{
  padding: 0 4px 0 0;
}
.date-picker-section .dropdown-list .pure-checkbox input[type=checkbox]:focus+label:before{
  background: none;
}
.date-picker-section .dropdown-list .pure-checkbox input[type=checkbox]:hover+label:before{
  background: none;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list .c-list{
  width: auto;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list .countplaceholder{
  color: #9da8b7;
  right: 7px;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list .c-list .c-token .c-remove{
  right: -10px;
  width: 9px;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list .c-list .c-token .c-remove svg{
  fill: #9da8b7;
}
.graph-box1.table-section{
  width: 100%;  
  padding: 0 30px;
}
.graph-box1.table-section .datatable-body{
  width: 80%;
}
.table-section .ngx-datatable .datatable-footer .datatable-footer-inner{
  padding: 0;
}
.table-section .datatable-footer-inner ul li{
  border-bottom: none;
}
.table-section .datatable-footer-inner ul li a{
  width: auto;
}
.table-section .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell{
  padding: 5px 0;
}
.table-section .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell{
  padding: 15px 0px 7px;
}
.status-reprot-section{
  margin-right: 0;
  margin-left: 10px;
}
.status-reprot-section button.btn.btn-disable{
  color: #ffffff;
  background-color: #9da8b7;
  border: 1px solid #9da8b7;
}
.filter-comm a.refresh-member-filter {
  margin-left: 12px;
}
.cuppa-dropdown .pure-checkbox input[type="checkbox"] + label{
  top: -2px;
}
.status-reprot-section button.btn{
  padding: 5px 9px;
}
.table-section .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell{
  pointer-events: none;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list{
  cursor: pointer;
}
.date-picker-section .filter-comm .cuppa-dropdown:after{
  cursor: pointer;
}
.graph-box1.table-section .datatable-body{
  height: 300px !important;
  overflow-x: hidden !important;
}
.date-picker-section .filter-comm .cuppa-dropdown:after{
  display: none;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list .c-angle-down, .date-picker-section .cuppa-dropdown .selected-list .c-angle-up{
  right: 6px !important;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list .c-angle-down svg, .date-picker-section .cuppa-dropdown .selected-list .c-angle-up svg{
  display: block;
  fill: #9da8b7 !important;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list{
  background: none;
  padding: 0;
}
.date-picker-section .filter-comm .cuppa-dropdown .selected-list .countplaceholder{
  right: 25px;
}
.date-picker-section .filter-comm  .cuppa-dropdown .selected-list .c-btn{
  background: #e5f0ff;
  color: #9da8b7;
  padding: 10px 15px 10px 10px !important;
  border-radius: 8px;
  width: 150px;
  margin-top: 5px;
  min-height: 28px !important;
}
.refresh-member-filter svg{
  margin-top: 4px;
}
.graph-box1.table-section .datatable-body{
  height: auto !important;
  overflow-x: hidden !important;
}
.cuppa-dropdown .pure-checkbox input[type=checkbox]+label{
  font-size: 13px;
}
.all-post-statistics.modal.show .modal-dialog{
  top: 50%;
  transform: translate(0,-50%);
  margin-top: 10px;
}
.all-post-statistics .modal-content {
  min-height: 560px;
  height: 560px;
  max-height: 560px;
}
.graph-box1.table-section{
  height: auto;
}
.view-statistics .graph-box1{
  height: calc(560px - 187px);
}
.cuppa-dropdown .pure-checkbox input[type="checkbox"] + label{
  top: -3px;
}
/*  css for the story COM-7455 ends here*/
/*  css for the story ACTU-1272 starts here*/
.rule-tab .tooltip-main-section{
  width: 300px;
}
.rule-tab .tooltip-main-section label{
  width: auto;
  vertical-align: top;
}
.rule-tab .tooltip-main-section .tooltip.conversionratelable{
  margin-top: 0;
  line-height: normal;
  vertical-align: top;
  margin-left: 5px;
}
/*  css for the story ACTU-1272 starts here*/
/*  css for the story COM-8226 starts here*/
.add-new-category-sections .question-container .vote-box label{
  max-width: 100%;
  flex: 0 0 100%;
  padding: 0 15px;
}
.add-new-category-sections .question-container .custom-radio input[type="radio"] ~ .checkmark-radio:after{
  top: 3px;
}
/*  css for the story COM-8226 ends here*/
/* CSS for the story COM-7467 start here */
.profiling-question-wrap.post-body{
  padding-top: 30px;
}
.members-simple .header-part.mdb-20{
  padding-right: 15px;
}
.member-content-section{
  padding: 0 20px;
}
.top-main-section{
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.member-top-left-section h2{
  display: inline-block;
  margin-right: 30px;
}
.member-top-left-section .switch{
  display: inline-block;
  margin-right: 10px;
}
.member-top-left-section .switch span{
  margin-right: 0;
}
.member-top-left-section span{
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
}
.member-top-right-section ul li{
  display: inline-block;
  padding: 0 14px;
}
.member-top-right-section ul li:first-child{
  padding-left: 0;
}
.member-top-right-section ul li:last-child{
  padding-right: 0;
}
.member-top-right-section ul li a.btn{
  background-color: #00a6fb;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  padding: 5px 22px;
  border-radius: 4px;
}
.member-top-right-section ul li a.btn.no-bg{
  background: none;
  border: 1px solid #00a6fb;
  color: #00a6fb;
}
.member-top-right-section a.back{
  font-size: 16px;
  color: #000000;
  text-decoration: none;
}
.profile-left-sec .edit-pic{
  width: auto;
  height: auto;
  background: none;
  margin: 0;
  border-radius: 0;
  float: left;
}
.profile-left-sec .edit-pic .pic-bg{
  width: 118px;
  height: 118px;
  margin: 0 auto;
  background-color: #d8d8d8;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.progress-section .progress{
  width: 150px;
  height: 3px;
  margin-bottom: 5px;
}
.progress-section .progress span{
  color: #d9d9d9;
}
.contact-main-sec{
  width: 100%;
  margin-top: 15px;
  padding-left: 30px;
}
.contact-main-sec .form-group{
  position: relative;
  margin-bottom: 30px;
}
.two-column-section .form-group.selectbox{
  width: 48%;
  float: left;
  margin-right: 15px;
}
.two-column-section .form-group.age-section{
  width: 48%;
  float: left;
}
.member-right-section .right-side-class.pull-right{
  width: 75%;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  min-height: 50px;
  padding: 10px 10px 15px 20px;
  color: #000;
  border-radius: 10px;
  position: relative;
}
.member-right-section .right-side-class.pull-right .btn-disable.adhoc-btn-remove, .btn-disable.adhoc-btn-add:hover{
  border-color: #9da8b7;
}
.member-right-section label.form-control-placeholder{
  left: 0px;
  padding: 0px 10px;
  font-size: 14px;
  background: #ffffff;
  transform: translate3d(19%,-46%,0);
  -webkit-transform: translate3d(19%,-46%,0);
  -moz-transform: translate3d(19%,-46%,0);
  -ms-transform: translate3d(19%,-46%,0);
  -o-transform: translate3d(19%,-46%,0);
}
.member-right-section .adhoc-points{
  margin: 0px 5px 0px 10px;
}
.member-right-section .adhoc-input-wrapper{
  padding-left: 10px;
  margin-bottom: 10px;
}
.member-right-section .adhoc-table-earn-pts {
  float: none;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 5px;
}
.member-right-section .parts-community-section.right-side-class{
  margin-top: 15px;
  padding-bottom: 80px;
}
.member-white-box .common-table ul.icons-section li{
  display: inline-block;
  padding: 0 10px;
}
.member-white-box .common-table ul.icons-section li:first-child{
  padding-left: 0;
}
.member-white-box .common-table ul.icons-section li:last-child{
  padding-right: 0;
}
.add-member-content-section .social-icon{
  margin-bottom: 15px;
}
.add-member-content-section .social-icon ul li{
  display: inline-block;
  padding: 0 5px;
}
.add-member-content-section .social-icon ul li:first-child{
  padding-left: 0;
}
.add-member-content-section .social-icon ul li:last-child{
  padding-right: 0;
}
.invite-details-top-secton .invitee-left-sec{
  margin-top: 0;
}
.add-member-content-section .invitee-right-sec{
  float: right;
  margin-bottom: 15px;
}
.invite-details-top-secton{
  border-bottom: 1px solid #d1d4d7;
  margin-bottom: 15px;
  padding: 0 15px;
}
.invite-mem-top-secton{
  border-bottom: 1px solid #d1d4d7;
  margin-bottom: 15px;
  padding: 0 15px;
}
.add-member-content-section .invitee-right-sec h6{
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  margin-right: 15px;
  color: #ff5050;
}
.add-member-content-section .invitee-right-sec button.btn-animate{
  height: auto;
  padding: 6px 20px;
  font-size: 16px;
}
.invite-details-top-secton .invitee-left-sec h5{
  font-size: 13px;
  margin-top: 2px;
  margin-bottom: 10px;
}
.show-section .invite-details-top-secton .invitee-left-sec{
  margin-top: 12px;
}
.show-section .invite-details-top-secton .invitee-left-sec h5{
  margin-top: 2px;
}
.member-content-section .member-top-right-section button.btn{
  height: auto;
  padding: 7px 20px;
  font-size: 16px;
  line-height: normal;
}
.member-content-section{
  padding: 0;
}
.member-content-section .top-main-section{
  padding: 0 15px 15px 15px;
}
.member-content-section .profile-left-sec{
  padding-left: 15px;
  display: flex;
}
.member-content-section .member-right-section{
  padding-right: 15px;
}
.profile-left-sec .custom-progressbar{
  width: auto;
}
.add-member-content-section .errors-section{
  padding: 0 30px;
}
.add-member-content-section .errors-section p.error-text{
  display: block;
  width: 100%;
}
.add-member-content-section .errors-section .border-box{
  width: 100%;
  margin-bottom: 20px;
}
.member-top-left-section span.switch.switch-small{
  background: #ebebeb;
  border: 1px solid #e3e3e3!important;
}
.member-top-left-section span{
  vertical-align: middle;
}
.member-top-left-section a{
  vertical-align: middle;
}
.member-top-left-section h2{
  font-size: 22px;
  vertical-align: middle;
}
.custom-tab .selectbox .ng-select.ng-select-single .ng-select-container{
  z-index: 9;
}
.survey-form .ng-select.ng-select-single .ng-select-container{
  z-index: 2!important;
}
.disable-points-activity{
  pointer-events: none;
}
.common-table .datatable-body-cell-label a.remove {
  margin-left: -4px;
}
.member-white-box .ngx-datatable .datatable-header{
  border-top: 1px solid #e5f0ff;
}
.member-top-right-section a.back img{
  vertical-align: top;
}
.add-member-content-section .social-icon ul li a.clr-sec{
  color: #000000;
  text-decoration: none;
}
.profiling-question-wrap .ngx-datatable.fixed-header .datatable-header-cell{
  pointer-events: none;
}
.profiling-question-wrap .ngx-datatable.fixed-header .datatable-header-cell:last-child{
  pointer-events: inherit;
}
.profiling-question-wrap .member-white-box .ngx-datatable.fixed-header .datatable-header-cell:last-child{
  pointer-events: none;
}
.create-activity-tab-width .members-simple table thead th:first-child {
  height: 470px;
  vertical-align: middle;
}
.create-activity-tab-width .members-simple table thead th img {
  width: 53px;
  margin: 0 0 25px 0;
}
.create-activity-tab-width .members-simple table thead th h2{
  font-size: 26px;
  color: #6c6c6c;
  margin-bottom: 8px;
  text-transform: initial;
}
.create-activity-tab-width .members-simple table thead th p{
  font-size: 18px;
  color: #9da8b7;
  text-transform: initial;
  font-weight: normal;
}
.members-simple .add-member-content-section .common-table{
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.members-simple .add-member-content-section table.common-table.table{
  border-top: none;
  border-bottom: none;
}
.add-member-content-section{
  padding: 20px 0;
}
.add-member-content-section .social-icon{
  display: inline-block;
}
.add-member-content-section .social-icon ul li {
  display: inline-block;
  padding: 0 5px;
}
.add-member-content-section .social-icon ul li:first-child{
  padding-left: 0;
}
.add-member-content-section .social-icon ul li:last-child{
  padding-right: 0;
}
.add-member-content-section .social-icon ul li a{
  display: inline-block;
}
.add-member-content-section .social-icon ul li a img{
  width: 30px;
}
.add-member-content-section .social-icon ul li {
  display: inline-block;
  padding: 0 5px;
}
.add-member-content-section .button-section-icon ul li:first-child{
  padding-left: 0;
}
.add-member-content-section .button-section ul li:last-child{
  padding-right: 0;
}
.add-member-content-section .button-section{
  display: inline-block;
  margin-bottom: 20px;
  margin-left: 15px;
}
.add-member-content-section .button-section ul li{
  display: inline-block;
  padding: 0 10px;
}
.add-member-content-section .button-section ul li a.btn{
  background-color: #00a6fb;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  padding: 5px 12px;
  font-size: 16px;
}
.invitee-right-sec{
  float: right;
}
.invitee-left-sec h5{
  font-size: 14px;
}
.invitee-right-sec h6{
  color: #cf4715;
  font-size: 14px;
}
/* CSS for the story COM-7467 end here */
/*  css for the story ACTU-1259 starts here*/
.add-member-content-section p.error-text.warning-msg{
  display: block;
  width: 100%;
}
.add-member-content-section .border-box.file-uploading{
  width: 100%;
}
.add-member-content-section .file-uploading .upload-success{
  min-width: 180px;
}
.add-member-content-section .common-table{
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.add-member-content-section .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell{
  padding: 12px 10px;
}
.add-member-content-section .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell{
  padding: 15px 10px;
}
.signinup-popup .invitee-popup .btn-custom{
  margin: 18px 10px;
}
.add-member-content-section .bootstrap .datatable-body .datatable-body-row{
  border-top: 0.5px solid #e5f0ff !important;
  border-bottom: 0.5px solid #e5f0ff;
}
.add-member-content-section .bootstrap .datatable-body .datatable-body-row:hover{
  border-top: 1px solid #b5b2b2 !important;
  border-bottom: 1px solid #b5b2b2;
}
.add-member-content-section .invitee-left-sec p.error-text.warning-msg{
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin-bottom: 0;
  margin-top: 0;
}
.add-member-content-section .invitee-left-sec h5{
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  margin-right: 15px;
}
.add-member-content-section .ngx-datatable.scroll-horz .datatable-body{
  overflow-x: hidden;
}
.add-member-content-section .datatable-footer .datatable-footer-inner{
  border-top: none;
}
.create-comm-box .loading-class-members{
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-class-members p{
  font-size: 22px;
}
.loading-class-members p span {
  font-size: 26px;
  animation: blinker 1s step-start infinite;
}
@keyframes blinker {  
  50% { opacity: 0; }
}
.add-member-content-section .datatable-header-inner .datatable-header-cell{
  pointer-events: none;
}
.add-member-content-section .datatable-header-inner .datatable-header-cell:last-child{
  pointer-events: inherit;
}
.add-member-content-section .datatable-header-cell a.removeAll{
  margin-left: 0;
}
.add-member-content-section .tooltiptext.private-tiltip.email {
  left: 0;
  right: 70px;
  margin: 0 auto;
  top: 39px;
  width: 240px;
  text-align: center;
}
.add-member-content-section .tooltiptext.private-tiltip.name {
  left: 48px;
  text-align: center;
  width: 150px;
  top: 39px;
}
.add-member-content-section .private-tiltip.tooltiptext:after{
  bottom: auto;
  top: -12px;
  bottom: auto;
  top: -12px;
  transform: rotateX(180deg);
}
.add-member-content-section .datatable-body-cell-label:hover .tooltiptext.private-tiltip {
  display: block;
}
.add-member-content-section .datatable-row-wrapper:last-child .datatable-body-cell:nth-child(2) .tooltiptext {
  top: 10px;
}
.add-member-content-section .datatable-row-wrapper:last-child .datatable-body-cell:nth-child(4) .tooltiptext {
  top: 10px;
}
/* CSS for the story ACTU-1259  ends here */
/* CSS for the story COM-8017  starts here */
.permission-popup .contributor-post-grey-area .btn-custom{
  max-width: 160px;
  width: 100%;
}
/* CSS for the story COM-8017  ends here */
/*  css for the story COM-8295 starts here*/
.postreply-box .post-header .post-name{
 width: 100%;
}
.community-tab .tab-content .post-header .overflow-recent-posts{
  width: auto;
}
/*  css for the story COM-8295 ends here*/
/* CSS for the story COM-8361  starts here */
.subscription-plan .plan-main-b .plan-box .btn{
  width: 80%;
  min-width: 162px;
}
/* CSS for the story COM-8361  ends here */
/*  css for the story COM-8282 starts here*/
.polls-tab.poll-details-section .post-progress.even-polls label.custom-radio.progress{
  padding-left: 0;
}
.polls-tab.poll-details-section .post-progress.odd-polls label.custom-radio.progress{
  padding-left: 0;
}
/*  css for the story COM-8282 end here*/
img.reportBlockImage {
  height: 15px;
  width: 29px;
  min-width: 25px;
  background-color: #ffffff;
  border-radius: 50%;
  object-fit: contain;
}
/*  css for the story com-8478 end here*/
.postreply-box .post-text{
    white-space: pre-wrap;
}
/*  css for the story COM-8478 end here*/
.main-profile-area{
  z-index: 99 !important;
}
.hideSpinner .ngxSpinner { display: none;}
/*  css for the story COM-8512 end here*/
.recent-section ul li h3.recent-trending-pointer{
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 220px;
}
.notification-main-area, .notification-text-area{
  display: block !important;
}
.feed-main-area.postreply-box .post-header .post-name {
  width: 100%;
}
.notfication-area, .notfication-area strong, .notification-sec, .ticket-sec h4, .reviewpost-detail, .ticket-area-section strong, .feed-main-area .post-name h3, .popup-main-sec h2,.profiling-cnt-area tr td a, .common-table a.community-last-section,
.communication-table-section .datatable-body-cell:last-child .datatable-body-cell-label,.profiling-main-area label.title, 
.polls-main-area h3, .profiling-grid-section ul li, .profiling-grid-section ul li span{
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  display: inline-block;
}
table.profiling-cnt-area,table.profiling-cnt-area tbody,  table.profiling-cnt-area tr, table.profiling-cnt-area a{
  display: block;
}
table.profiling-cnt-area td{
  display: inline-block;
}
.member-right-section .parts-community-section .adhoc-table-earn-pts{
  width: 100%;
  text-align: left;
}
.member-right-section .parts-community-section.right-side-class table tr td:first-child{
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  display: inline-block;
}
.member-right-section .parts-community-section .adhoc-table-earn-pts tr td:last-of-type{
  display: flex;
  align-items: center;
}
/*  css for the story COM-8512 end here*/

/*  css for the story COM-8452 starts here*/
.expires-section{
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
.plan-box.basic .expires-section h4{
  font-size: 17px;
  color: #02a6fa;
}
/*  css for the story COM-8452 end here*/
/*  css for the story COM-8657 starts here*/
.bulletin-media.media-popup button.close{
  top: -25px;
  right: 0;
}
.bulletin-media.media-popup button.close span{
  color: #ffffff;
}
/*  css for the story COM-8657 end here*/

/*  css for the story COM-8425 starts here*/
.postreply-box .postdetail-reply span.reply-box-short-name{
  width: 38px;
  height: 32px;
}
/*  css for the story COM-8425 end here*/
/*  css for the story COM-7971 starts here*/
.info-repeat-div .country-section .dropdown-menu{
  width: 93.7% !important;
  top: 52% !important;
  margin: 0 0 0 15px;
}
@media only screen and (max-width: 1920px) {
  .info-repeat-div .country-section .dropdown-menu {
    width: 95.20% !important;
  }
}
@media only screen and (max-width: 1800px) {
  .info-repeat-div .country-section .dropdown-menu {
    width: 93.7% !important;
  }
}
@media only screen and (max-width: 1300px) {
  .info-repeat-div .country-section .dropdown-menu {
    width: 92% !important;
  }
}
.info-repeat-div .country-section .dropdown-menu:before, .info-repeat-div .country-section .dropdown-menu:after{
  display: none;
}
.create-comm-box ngb-typeahead-window.dropdown-menu{
  background-clip: inherit;
}
.signinup-popup .autofill-box .country .dropdown-menu{
  background-clip: inherit;
  height: calc(170px - 20px) !important;
}
.signinup-popup .autofill-box app-control-messages{
  height: 16px;
  display: block;
} 
/*  css for the story COM-7971 end here*/

.key-theme-generate .modal-dialog {
  overflow: visible;
}

.logo-placer {
  display: flex;
  align-items: center;
}
.logo-placer .logo-category-name {
  margin: 0px 10px; color: #2756a3;font-weight: bold; font-size: 16px;
}
.brand-logo,.logo-placer img{
  width: 120px;
  cursor: pointer;
}
.logo-category-name{margin: 0 10px; color: #2756a3;font-weight: bold;}
.app-menu a.dropdown-toggle { cursor: pointer;margin-right: 10px;}
.app-menu a.dropdown-toggle:after{content: none;}
.app-menu .dropdown-menu::before {left: 46px;right: auto}
.app-menu .dropdown-menu:after {left: 45px;right: auto}
.app-menu .dropdown-menu {
  min-width: 220px;
  left: -39px;
  padding: 15px 15px;
}
.create-activity-outer-wrap .angular-editor-toolbar {
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
}
.create-activity-outer-wrap .angular-editor-toolbar .angular-editor-toolbar-set {
  margin-right: 2px !important;
}
.create-activity-outer-wrap .angular-editor .angular-editor-wrapper .angular-editor-textarea {
  padding: .5rem .8rem .5rem !important;
}
.create-activity-outer-wrap .error-msg .angular-editor-textarea {
  border: 2px solid #d83024 !important;
}

button.mat-menu-item span {
  margin-left: 10px;
}
.postreply-box .post-text p {
  font-size: 14px;
  margin-bottom: 0;
}

.truncate-overflow {
  position: relative;
  max-height: calc(20px * 3);
  overflow: hidden;
  padding-right: 1rem;
  margin-bottom: 0 !important;
}
.truncate-overflow::before {
  position: absolute;
  content: "...";
  bottom: 0;
  right: 0;
}
.truncate-overflow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1rem;
  height: 1rem;
  background: white;
}
.create-activity-wrap .form-control.ng-select.ng-select-disabled {
  background: whitesmoke;
}
.product-container {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
}
.product-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 0 0 10px;
  white-space: pre-wrap;
}
.product-box h4, .prime {
  color:#006BD0;
}
.product-box span {
  font-size: 11px;
  color: gray;
}
.product-container .open-new-icon {
  position: absolute;
  right: 6px;
  top: 6px;
}
.product-container .open-new-icon .mat-icon {
  color: #00A6FB;
  height: 15px;
  width: 15px;
  font-size: 15px;
}

.chart-legend span.label{
  margin: 0 0 0 8px;
  white-space: pre;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
}
.chart-legend li {
  cursor: pointer;
}
.chart-legend .legend-item {
  display:flex;
  margin: 3px 0 0 0;
  align-items: center;
}
.chart-legend .legend-item .legend-block{
  width: 16px;
  height:16px;
  border-radius: 50%;
}

.timeContnet{
  flex: 1;
  gap: 15px;
  text-align: start;
}

.curiousBox{
  font-size: 14px;
}

.boxContainer{
  gap: 35px;
}
.boxTime{
  font-weight: 600;
  color: #006bd0;
}
@media only screen and (max-width: 430px){
  .boxContainer{
    gap: 0px;
  }
  .boxTime{
    word-break: break-all;
  }
}
.boxImg{
  width: 105px;
}

.scheduledTitle{
  color: #00a6fb !important;
}

.invite-non-member.tooltip .tooltiptext {
  right: -60px;
  left: auto;
}
.invite-non-member.tooltip .tooltiptext::after {
  right: 62px;
  left: auto;
}
.participationModal .modal-lg {
   max-width: 550px;
   top: 6rem;
}
.participationLink{
  padding: 5px;
  border: 1px dashed #00a6fb;
  border-radius: 4px;
  white-space: nowrap;
  overflow: auto;
}
.participationContainer{
  display: flex;
  align-items: center;
}
.participationContainer .btn {
  width: 100%;
}
#div2-1 {
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100px;
}
#resize-slider.resizer { 
  display: flex;
  align-items: center;
  width: 100%;
  height: 10px;
  cursor: ns-resize;
  margin-bottom: 8px;
}
#resize-slider.resizer .border {
  height: 1px;
  background-color: whitesmoke;
  width: 100%;
}
.content-flex {
  display: flex;
  width: 74%!important;
  place-items: center;
}
.content-flex > span:nth-child(1) {
  flex: 1.4%;
}
.content-flex > span:nth-child(2) {
  flex-grow: 6;
  margin-left: 10px;
  font-weight: 600;
}
.link-input{display: flex;}
.link-input input{border-right: none;color: #222222;font-size: 16px;}
.link-input .btn {min-height: 50px;min-width: 106px;;border-radius: 4px 0px 0px 4px;font-size: 16px;margin-left: -2px;}
.link-input input::placeholder,.link-input input::-webkit-input-placeholder {font-size: 16px;line-height: 20px;}
.create-survey{
  padding: 0px 0px 14px 16px;
}
.create-survey-link{
  color: #008fc3;
  margin-left: 4px;
  font-weight: 600;
  cursor: pointer;
}
.img-alignmnet{
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  min-height: 5px;
  border-radius: 0px 4px 4px 0px;
  min-width: 48px;
  padding: 10px;
  border-left: 1px solid;
  cursor: pointer;
}
.btn-disable-color{
  background-color: #9da8b7!important;
  opacity: 1 !important;
  font-size: 20px;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
.aboutContainer .modal-dialog{
    max-width: 850px !important;
}
.activeCircle {
  height: 6px;
  width: 6px;
  border-radius: 40px;
  background-color: #06a8ff;
  margin-top: 8px;
}
.timeContainer {
  display: flex;
  gap: 5px;
}
.survey-icon{
color: #eaa529!important;padding: 0px 15px 0px 0px;font-size: 19px!important;
}
.transcript .ng-clear-wrapper{
  display: block  !important;
}
.buttonConDown{
background-color: transparent;
outline: none;
border: none;
}
.buttonConDown:disabled{
  opacity: 0.4;
}
.share-survey .card{height: auto;cursor: pointer;}
.share-survey .card h5{font-size: 16px;font-weight: 600;line-height: 22px;margin: 0 0 15px;}
.share-survey .card p{font-size: 13px;line-height: 20px;color: #767F8C;text-align: left;}
.share-survey .card .box-header{margin: 0 0 15px;padding: 0;border: none;}
.share-survey .card-body{padding: 15px 10px;height: 100%;}
.share-survey .card:last-child{margin-right: 0;}
.share-survey .card{width: calc(24% - 6px);border: 1px solid #E8E8E8;border-radius: 6px;margin-right: 2px;}
.share-survey .custom-checkbox{height: 100%;right:-6px;position: absolute;padding: 0}
.share-survey .checkmark{right: -4px;left: auto;top: -23px;border-radius: 50%;border: none;width: 22px;height: 22px;}
.share-survey .custom-checkbox .checkmark:after {left: 8px;top: 3px;}
.share-survey .card.active {border: 2px solid #00A6FB;position: relative;border-radius: 6px;box-shadow: 0 2px 8px 0 rgba(0,0,0,0.14);-webkit-box-shadow: 0 2px 8px 0 rgba(0,0,0,0.14);-moz-box-shadow: 0 2px 8px 0 rgba(0,0,0,0.14);}
.share-survey .card.active h5{color: #222222;}
.share-survey .card.active p{color: #222222;}
.share-survey{display: flex;gap: 25px;justify-content: space-between;}
.paused-status {
  color: #eaa529;
  border: 1px solid #eaa529;
}
.share-survey .card.active .custom-checkbox .checkmark{
  display: block;
  border-color: #eaa529;
  background-color: #eaa529;
}
.status {
  font-size: 13px;
  border-radius: 22px;
  padding: 0 6px;
  display: inline-block;
  min-width: 58px;
  line-height: 17px;
  text-align: center;
}
.card-text{
  text-align: left;
}
.community-section-outer{
  width: 100%;
}
.share-survey .card.active .checkmark:after {
  left: 8px;
  top: 3px;
  width: 6px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
  content: "";
  position: absolute;
}
.share-survey .card .box-header .left{width: 31px;height: 25px;position: relative;display: block;background: url(/assets/img/panel-sprites.png) no-repeat;background-size: 100%;}
.share-survey .card:first-child .box-header .left{background-position: 0 2px;}
.share-survey .card:nth-child(2) .box-header .left{background-position: 0 -121px;}
.share-survey .card:nth-child(3) .box-header .left{background-position: 0 -180px;}
.share-survey .card:nth-child(4) .box-header .left{background-position: 0 -249px;}
.share-survey .card:nth-child(5) .box-header .left{background-position: 0 -252px;}

.share-survey .card.active:first-child .box-header .left{background-position: 0 -28px;}
.share-survey .card.active:nth-child(2) .box-header .left{background-position: 0 -149px;}
.share-survey .card.active:nth-child(3) .box-header .left{background-position:0 -214px;}
.share-survey .card.active:nth-child(4) .box-header .left{background-position: 0 -277px;}
.share-survey .card.active:nth-child(5) .box-header .left{background-position: 0 -277px;}


.megrow .share-survey .card:nth-child(2) .box-header .left{background: url(/assets/img/qr_code_scanner.svg) no-repeat; background-size: contain;}
.megrow .share-survey .card.active:nth-child(2) .box-header .left{background: url(/assets/img/qr_code_scanner_fill.svg) no-repeat; background-size: contain;}


.megrow .share-survey .card:nth-child(3) .box-header .left{background-position: 0 -58px;}
.megrow .share-survey .card:nth-child(4) .box-header .left{background-position: 0 -120px;}
.megrow .share-survey .card:nth-child(5) .box-header .left{background-position: 0 -179px;}
.megrow .share-survey .card:nth-child(6) .box-header .left{background-position: 0 -252px;}

.megrow .share-survey .card.active:nth-child(3) .box-header .left{background-position: 0 -84px;}
.megrow .share-survey .card.active:nth-child(4) .box-header .left{background-position:0 -151px;}
.megrow .share-survey .card.active:nth-child(5) .box-header .left{background-position: 0 -217px;}
.megrow .share-survey .card.active:nth-child(6) .box-header .left{background-position: 0 -277px;}
.prevContainer{
  border-bottom: 1px solid #e3e3e3;
  border-top: 0;
  padding-bottom: 12px !important;
  margin-bottom: 25px !important;
}
.emailCon{
box-shadow: none;
}

@media (min-width: 1500px) {
  .share-survey .card{width: calc(24% - 40px);}
  .share-survey{justify-content: space-between;}
}
.navbar-expand-lg .navbar-nav .dropdownContainer {
  width: 181px;
}
.placeholder{
  background: transparent !important;
  border: 0 !important;
}
.roleUser{
  font-size: 12px;
  color: #4f507a;
  line-height: 17px;
  text-decoration: none;
}
.headerBox{
  padding: 25px 35px !important;
  align-items: center !important;
}

.headerImg{
  width: 55px !important; height: 55px !important;margin-right: 12px !important;
}

.headerUserTitle{
  font-size: 16px;
  margin: 0 !important;
}
.leftSection{
  margin-left: 0 !important;
}

.linkUserMenu{
  height: 58px !important;
  margin-bottom: 20px !important;
}
.outLetProfile{
  padding-right: 0 !important;
}
.communityTitle{
  margin-bottom: 37px !important;
}
.totalCommunity{
  margin-bottom: 0 !important;
  font-size: 16px;
}
.memberTitle{
  min-width: 0 !important;
}
.keyTheme .modal-dialog {
  min-width: 673px;
}
.keyThemeInput > .templateControlMsg {
  padding: 0 !important;
}
.keytheme-action-menu.mat-menu-panel {
  min-width: 395px !important;
  min-height: 485px;
  overflow: hidden;
  margin-top: 30px;
  margin-left: -26px;
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.keytheme-action-menu.mat-menu-panel .form-control{
  min-height: 40px;
  padding: 7px 22px;
}
.keytheme-action-menu.mat-menu-panel .form-control-placeholder{
  padding: 6px 8px 0;
}
.postAdd::after{
  border: 0 !important;
}
.post-poll-box p.error-text {
  margin: 0px 10px 0px 0px !important;
}
.date-time-popover {
  z-index: 1000000;
}
.keythemeDropDown .dropdown-toggle::after{
  display: none !important;
}
.sidebarContainer{
  max-height: calc(99% - 59px);
  overflow-y: scroll;
}
.sidebarContainer::-webkit-scrollbar {
  display: none;
}
.sidebarContainer {
  -ms-overflow-style: none; 
  scrollbar-width: none;
}
.memberEditContainer{
  padding-top: 27px !important;
}
.backMemberContainer{
  padding-left: 27px;
}

.disabled_dropdown  .type-dropdown  .cuppa-dropdown  .selected-list  .c-btn{
    background-color: transparent !important;
}
.polls-tab .padding-content .post-text p {
  font-size: 14px;
  margin-bottom: 0;
}
.polls-tab .padding-content .post-text ul li:last-child {
  padding-left: 0px;
  margin-left: 0px;
}
.polls-tab .padding-content .post-text ul {
  display: block;
}
.grecaptcha-badge { 
  visibility: hidden !important;
}

.otpContainer {
  width: max-content;
}
.codeTitle {
  color: #6c6c6c;
  font-weight: 600;
  font-size: 17px;
}
.alradyAccountText {
  margin-left: 15px;
}
.memberLoginTitle {
  font-weight: 600 !important;
}
.memberDetailsContainer .dropdown-menu {
  max-height: none !important;
}
.memberInfoContainer {
  display: flex;
  gap: 15px;
}
.memberInput {
  flex: 1;
}
.termContainer {
  text-align: start;
}
.codeInputContainer .otp-input:last-child {
  margin: 0 !important;
}
.modalWrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #333;
  opacity: 0.6;
}
.textContainer {
  text-align: start;
}

.member-download-all .modal-dialog{
  max-width: 1210px;
}

.member-download-all .modal-dialog .modal-content .modal-body{
 padding: 0px;
}
.answer-container .modal-dialog{
max-width: 767px;    
}

.tooltip-custom {
  padding-inline: 10px !important;
  width: 400px !important;
}
.tooltip-custom-1{
  padding-inline: 10px !important;
}
.list-d-flex{
  display: flex;
}

.target-audiuence .poll-dropdown {
  padding: 0px !important;
}

.target-audiuence .cuppa-dropdown .selected-list .c-btn {
  padding: 20px 10px !important;
}

.target-audiuence .cuppa-dropdown .selected-list .c-btn:focus {
  padding-left: 10px !important;
}

.target-audiuence .poll-dropdown .cuppa-dropdown {
  margin: 0px !important;
}

.target-audiuence .cuppa-dropdown .selected-list .c-btn {
  padding: 25px 10px !important;
}

.target-audiuence .filter-dropdown .cuppa-dropdown .selected-list .c-btn {
  margin-top: 0px;
}

.target-audiuence .cuppa-dropdown::after {
  display: none;
}

.target-audiuence .cuppa-dropdown .selected-list .c-angle-down svg,
.target-audiuence .cuppa-dropdown .selected-list .c-angle-up svg {

  display: block;
}

.target-audiuence .cuppa-dropdown .selected-list .c-angle-down,
.target-audiuence .cuppa-dropdown .selected-list .c-angle-up {
  right: 10px !important;

}

.target-audiuence .memberFormInput .filter-dropdown .cuppa-dropdown .dropdown-list {
  margin-top: -15px !important;
}

.target-audiuence .filter-dropdown .selected-list .countplaceholder {
  right: 20px!important;
}

.list-d-flex{
  display: flex;
}

.member-filter .cuppa-dropdown .dropdown-list {
  top: inherit !important;
  left: inherit !important;
  right: auto !important;
  transform: translateX(13%) !important;
}

.display-views{
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  text-align: end;
}

.text-align-end{
  float: initial;
  text-align: end;
}

.clear {clear: both;display: block;}
.community-tab .tab-content .overflow-recent-posts.width-auto {width:auto;}
.earned-box-header h3 {margin-bottom: 0;}
.user-profile  .white-box.rewards-box { padding: 30px 40px;}
.page-content.inset {padding-top: 20px; padding-bottom: 20px;}
.dash-total.mdb-30, .white-box.newpost-box.mdb-30, 
.white-box.p-0.mdb-30.communities-main-list, .task-detail
 {margin-bottom: 18px;}
.nav-link {padding: .1rem 1rem;}
.task-main-list .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell{padding: 0.45rem;}
.community-parent.task-main-list .ngx-datatable .datatable-footer .datatable-footer-inner {padding: 5px 15px;}
.edit-admin .profile-tab {padding: 15px 40px;}
.task-detail tr.pending-task > td:last-child:before {top:18px;}
.point-search {margin: 15px 0;}
.user-profile .white-box.rewards-box {padding: 20px 40px 15px 40px;}
.custom-tab h3 { margin-bottom: 20px;}
.nav-pills .nav-link {height: 48px;margin-bottom: 10px;}
.custom-tab .tab-content h3 {margin-bottom: 15px;}
.user-points-tab .points-table.ngx-datatable .datatable-body .datatable-body-row .datatable-body-cell {padding: 20px 15px;}
.reticket-box h4 { margin-bottom: 2px;}
.ticket-img-parent {margin-bottom: 5px;}
.new-profile-tab {margin-bottom: 40px;}
.raise-ticket-popup .footer-btn {margin-top: 15px;}
.community-guidelines-box { padding: 10px 30px 10px 30px;}
.community-guidelines-table tbody tr td:last-child , 
.community-guidelines-table tbody tr td:first-child{padding: 5px 0px;}
.community-guidelines-table tbody tr td:first-child {padding-right: 0;}
.community-guidelines-table tbody tr td:last-child {padding-left: 0;}
.community-guidelines-table tbody tr td div h3 {padding-left: 12px;}
.community-guidelines-table.table {margin-bottom: 0;}
.task-detail.active-admin .table {margin-bottom: 0.5rem;}
.common-table.comm-detail tbody td {padding: 13px 15px;}
.custom-tab .form-group.comm-addadmin  {margin-bottom: 10px;    margin-top: -5px;}
.prenext-footer {padding: 10px 0 0 0;margin: 20px 0 0;}
.create-comm .box-header {margin: -20px -40px 25px;padding: 10px 40px;}
.user-profile .mdb-20 {margin-bottom: 15px;}
.root-profile.user-profile {margin-top: 20px;}
.active-admin table td{padding: 8px;}
.selected-metrics ul.users-option li {margin: 0 15px 12px 0;}
#Statistics ul.users-option  {margin-bottom: 10px;}
#Statistics .mdb-30 {margin-bottom: 20px;}
.white-box.activity-graph .box-header h3 , .white-box.gender-ratio  .box-header h3 ,
.white-box.panelists-ranking .box-header h3 {margin-bottom: 5px;}
.poll-section hr {margin: 10px -30px 10px;}
.new-poll .poll-section .form-group:last-of-type {    margin-bottom: 5px;}
.new-poll .poll-section .form-group.selectbox {    margin-bottom: 17px;}
.polls-tab .padding-content {padding: 10px 25px 17px;}
.new-poll .poll-section .form-group p.error-text {margin: 8px 0 5px;}
.polls-tab .padding-content {padding: 10px 25px 12px;}
.reward-short-detail h3 {margin: 5px 0 10px;}
.reward-short-detail {padding: 10px 20px 10px;}
.reward-history-tab .box-header {height: 48px;}
.empty-profile-page h2, .empty-profile-page p {margin-bottom: 5px;}
.profiling-tab .empty-profile-page .empty-link{margin: 10px auto 0;}
.report-popup .modal-body > h2.nologo {margin-bottom: 10px!important;}
.report-popup p.des {margin-bottom: 10px;}
.ngx-datatable .datatable-footer .datatable-footer-inner {padding: 5px 15px;}
.edit-admin h3 {margin-bottom: 0px;}
.profile-tab .edit-pic {margin: 0 0 15px;}
.post-page .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {padding: 4px 0.75rem; }
.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {padding-top: 8px;padding-bottom: 8px}
.postdetail .header-part.mdb-20 , .members-simple .header-part.mdb-20{margin-bottom: 10px;}
.tab-content .message-box.mb-2 {margin-bottom: 10px!important;}
.addmember-popup h2 {margin-bottom: 10px;}
.addmember-popup .border-box {padding: 10px 20px;}
.or-text { margin: 15px 0;}
.addmember-popup .membert-tbl {margin: 20px 0 10px;}
.addmember-popup .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell {padding: 10px 15px 7px;}
.addmember-popup .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {padding: 0.55rem 0.75rem;}
.addmember-popup .ngx-datatable.bootstrap .datatable-footer .page-count {line-height: 40px;height: 40px;}
.custom-tab .nav-pills .nav-link.completed:after {top: 15px;}
.custom-tab .nav-pills .nav-link.completed:before {top: 14px;}
.add-des {padding: 86px 60px 40px;}
.rule-tab h3 {margin-bottom: 10px;}
.d-flex.mb-3 {    margin-bottom: 5px!important;}
.rule-tab hr {margin: 5px 0 10px;}
.comm-pro-qu h4 {margin-bottom: 10px;}
.comm-pro-qu .form-group {    margin-bottom: 17px;}
.comm-pro-qu {padding: 20px 30px 15px 30px;}
.membert-tbl {margin: 0 0 10px;}
.create-comm-box .border-box {margin: 10px 0;padding: 15px 30px;}
.border-box table {margin-bottom: 5px;}
.profile-tab .table tr td {padding: 20px 10px 10px 0;}
.ownership-popup .login-btn {margin: 18px 0 0;}
.empty-notification h1 {margin-bottom: 5px;}
.setting-box p {    margin: 0 0 15px;}
.setting-box h6 {margin-bottom: 15px;}
.setting-box .custom-checkbox p {margin: 0 0 10px;}
.setting-box {    padding: 14px 23px 10px;}
.reviewpost-detail {padding: 10px 0px 10px 0px;}
.reviewpost-detail .mt-4 { margin-top: 10px!important;}
.reviewpost-detail h4 {margin: 0 0 10px;}
.profile-tab .nav-pills li a img.default-img {margin-right: 20px;width: 20px;}
.overflow-about-community.about-community ul li img {margin-right: 12px;}
.post-tagline.overflow-post-tagline {margin: 15px 0 10px;}
.postdetail .postreply-box .short-name.iefeedimg {margin-right: 10px;}
.postreply-box .carousel_wrapper .carousel-item img {margin: 8px auto;}
.post-list .mdb-20.mdb-sm-0{margin-bottom: 10px;}
.post-body {margin-top: 30px;}
.comm-tab .box-header {padding-top: 10px;}
.community-tab .tab-content .overflow-recent-posts {width: 88%;}
ul.repost-img li .repost-media { background-position: top center;}
.poll-ques-sec {width:88%;}
.poll-vote-now {margin-top: -28px;margin-bottom: 10px!important;}
.edit-panellist .edit-pic {margin-bottom: 15px;}
.edit-panellist .admin-header {margin-bottom: 10px;}
.pnelist-user-profiling .ng-select.ng-select-single 
.ng-select-container .ng-value-container .ng-value {width: 72%;}
.show-member-number .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:first-of-type {padding:0.75rem 0.25rem 0.75rem 0.75rem;}
.posted-poll-pad .white-box {padding: 10px;}
.posted-poll-pad .cuppa-dropdown{margin-top: 10px !important;z-index: 9;}
.posted-poll-pad .cuppa-dropdown::after{right: 5px;}
.posted-poll-pad .cuppa-dropdown .selected-list .c-btn {padding-right: 16px!important;z-index: 9;}
.paytm-cash-rewrds-ul .cuppa-dropdown::after{display: none;}
.paytm-cash-rewrds-ul .cuppa-dropdown .c-btn span span { width: 28px;}
.paytm-cash-rewrds-ul .cuppa-dropdown .c-btn span span:after {
    content: "";
    border-style: solid;
    border-color: #222222;
    vertical-align: 0.08em;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 7px;
}
.paytm-cash-rewrds-ul .cuppa-dropdown .arrow-2 {
    border-bottom: 6px solid transparent !important;
}

.flagged-post-box {margin-top: 15px;}
.post-link-grp a:first-of-type{margin-right: 10px;}
.flagged-post table {width: 100%;}
.flagged-post table tr th{color: #767F8C;font-family: "Open Sans";font-size: 12px;font-weight: 600;letter-spacing: 0;
line-height: 17px;}
.flagged-post table tr td a:nth-child(1) {margin-right: 10px;}
.flagged-post table tr td a:nth-child(2) {color: #ea1c63;}
.flagged-post table tbody tr {border-bottom: 1px solid #E8E8E8;}
.flagged-post table tbody td {color: #222222;font-family: "Open Sans";font-size: 14px;letter-spacing: 0;line-height: 19px;padding: 20px 0;}
.flagged-post-inner {position: relative;}
.pad-lr {padding: 15px 35px 15px 55px;}
.flagged-item-count {font-size: 12px;color: #b5b3b3;display: inline-block;margin-left: 5px;}
.flagged-post-inner .left-navigate , .flagged-post-inner .right-navigate {display: inline-block;transition: 0.5s ease-in all;font-size: 45px;position: absolute;top: 50%;transform: translateY(-50%);cursor: pointer;left: 5px;right: auto;}
.flagged-post-inner .right-navigate {right: 5px;left: auto;}
.flagged-post-inner .left-navigate:after{content: "\f104";font-family: fontawesome;}
.flagged-post-inner .right-navigate:after {content: "\f105";font-family: fontawesome;}
.flagged-post .items-header h3{display: inline-block;vertical-align: text-top;}
.flagged-post-row .btn.btn-danger{float: right;}
.report-details-class {border: 1px solid #E8E8E8;border-radius: 4px;}
.report-details-class > div > strong{margin-bottom: 3px;display: block;color: #222222;font-family: "Open Sans";font-size: 16px;font-weight: 600;line-height: 22px;}
.report-details-text p{ color: #6C6C6C;font-family: "Open Sans";font-size: 13px;letter-spacing: 0;line-height: 21px;}
.report-details-class i { font-style: normal;  color: #6C6C6C;}
.sub-field{color: #222222;font-family: "Open Sans";font-size: 12px;letter-spacing: 0;line-height: 16px;margin-bottom: 3px;}
.post-img-modal .modal-dialog {margin: 0px auto!important;padding-top: 0;max-width: 100%!important;min-width: 100%!important;min-height: 100%!important;}
.modal-post-img{object-fit: contain;object-position: center;position: absolute;left: 0;right: 0;margin: 0 auto; top: 50%;transform: translateY(-50%);max-width: 100%;max-height: 100%;}
.post-img-modal .modal-content{background: transparent;width: 93vw;height: 100vh;margin: 0 auto;}
.post-img-modal .closebtn {background: transparent;right: -30px;position: absolute;z-index: 9;top: 0px;padding: 0;}
.post-img-modal.permission-popup .modal-body video {
    height: 400px;
    width: 800px;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    object-position: center;
}
.popup-next-arrow, .popup-prev-arrow {display: inline-block;position: absolute;top: 50%;transform: translateY(-50%);cursor: pointer; z-index: 9;}
.popup-next-arrow {right: 0;}
.popup-next-arrow:after, .popup-prev-arrow:after {
    content: "\f105";
    font-family: fontawesome;
    color: #ccc;
    transform: none;
    font-size: 55px;
}
.popup-prev-arrow:after {content: "\f104";}
.dark-backdrop.modal-backdrop.show {opacity: 0.99;}
/*css for 2727*/
.social-media-icon-wrap ul li{display: inline-block;vertical-align: middle;color: #fff;font-size: 16px;margin: 0 10px;padding: 10px 20px;border-radius: 50px;cursor: pointer;}
.or-cnt{font-size: 16px;color: #6c6c6c;display: block;margin-bottom: 10px;}
.social-media-icon-wrap ul li i {margin-right: 5px;}
.social-fb-icon {background: #4267B2;}
.social-twitter-icon {background: #00acee;}
.social-google-icon{background: #DB4437;}
.social-media-icon-wrap ul {text-align: center;}
.modal-body.set-new-user-pwd p{margin-bottom:10px; }
.dark-black-drop-set-password.modal-backdrop.show {opacity: 0.9;}
/*css for 2727*/
.board-popup .nav-tabs {border-bottom: 0; background: #00a6fb;padding: 10px;}
.board-popup .nav-tabs .nav-link {border: 0;font-size: 16px;color: #d2cdcd;font-weight: bold;cursor: pointer;}
.board-popup .nav-tabs a{text-decoration: none;} 
.board-popup .nav-tabs .nav-link.active {background: transparent;color: #fff;}
.nav-post {display: flex;}
.permission-popup .board-popup .popup-bottom {width: 31%;padding: 20px 15px;margin-top: -48px;position: relative;z-index: 1;}
.nav-post-inner {width: 70%;}
.permission-popup .uploadimg-box-outer .attach-file {height: 60px;border: 0;border-radius: 0;}
.permission-popup .uploadimg-box-outer .uploadimg-box {padding: 0 10px 5px;}
.permission-popup .uploadimg-box-outer .uploadimg-box .img-box {width: 95px;}
/*.write-msg-fixed-height textarea{height: 343px!important; overflow:scroll!important; margin-bottom: 10px;}
.tab-popup .write-msg-fixed-height textarea{height: 360px!important;}*/
.permission-sec {margin-top: 5px;}
#nav-post .popup-bottom label {flex: auto;}
.signinup-popup #nav-tabContent .btn-custom,.signinup-popup #nav-tabContent .post-btn
{float: none;min-width: 100px;min-height: 30px;font-size: 15px;margin: 0 auto;height: 35px;min-width: 100px;min-height: 30px;display: block;}
.post-btn{position: absolute;bottom: 10px;left: 0;right: 0;}
.contributor-post-wrap {display: flex;}  
.contributor-post-grey-area {background: #ebebeb;width: 31%;padding: 10px;position: relative;}
.contributor-post-grey-area>div{margin-bottom: 10px;}
.contributor-post .modal-dialog {min-height: 230px;}
.board-popup .post-enddate-optional {width: 100%;margin-bottom: 0;}
.board-popup .post-enddate-optional input{width: 100%; background: #fff;min-height: 42px;padding: 10px 10px;}
.contributor-post-grey-area .btn-custom {font-size: 16px;height: 38px;position: absolute;bottom: 10px;left: 0;right: 0;margin: 0 auto;}
.post-enddate-optional-desk {float: right;}
.date-icon a img {width: 100%;}
.board-popup .toggle-onoff.card {margin-right: 0;}
.signinup-popup .board-popup .post-enddate-optional {margin-bottom: 0;}
.permission-popup .board-popup .post-enddate-optional .form-control {background: #fff;}
/*.write-msg-fixed-height-a textarea {height: 410px!important;overflow: scroll!important;}*/
.write-msg-fixed-height-b textarea, .write-msg-fixed-height-a textarea {border: 0;}
.permission-popup .board-popup .popup-bottom .form-control {padding: 10px 10px;margin-bottom:10px;min-height: 43px;}
.contributor-post-wrap .message-box {width: 70%;height: 568px;}
.tab-popup.permission-popup .modal-dialog ,
.editPost-popup.permission-popup .modal-dialog,
.update-post-popup .permission-popup .modal-dialog,
.contributor-post.rm-padding .modal-dialog
{max-width: 800px;min-width: 800px;min-height: 600px;overflow-x: hidden;}
.nav-post-inner {height: 520px;overflow: auto;}
.contributor-post .modal-dialog{max-width: 800px;min-width: 800px;}
.contributor-post.permission-popup .write-msg textarea {height: 290px!important;overflow: scroll!important;border: 0;}
.contributor-post.permission-popup .attach-file { position: absolute;bottom: 0;border-radius: 0;height: 57px;}
.permission-popup .board-popup .dropdown-menu{ top: auto !important;bottom: 0;left: -10px!important;z-index: 999;}
.permission-popup .board-popup .title-input,
.contributor-post .contributor-post-wrap .title-input {border: 0;border-radius: 0;border-bottom:1px solid #ccc;}
.permission-popup .board-popup .write-msg textarea.post-txt { border: 0;}
/*.permission-popup.editPost-popup .uploadimg-box-outer{position: relative;height: 150px;}
.permission-popup.editPost-popup .uploadimg-box-outer .attach-file {position: absolute;bottom: 0;}*/
.contributor-post .contributor-post-grey-area .post-enddate-optional {width: 100%;}
.contributor-post .img-box{width: 92px;}
.editPost-popup .modal-content{border-radius: 0;}
.permission-popup.contributor-post.modal {z-index: 999999;overflow-y: hidden;}

/*css for COM-2796*/
.leftside-filter-wrap {
    margin-top: 40px;
}
.profile-img-wrap {
    background: #fff;
    text-align: center;
    padding: 30px 10px 10px 10px;
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
}

.name-initals{
    width: 120px;
    height: 120px;
    margin: 0 auto;    
    border-radius: 50%;
    border:4px solid #00a6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.name-initals span {
    font-size: 50px;
}
.profile-img-wrap figure {width: 120px;height: 130px;}
.profile-img-wrap figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.profile-holder-name {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 10px;
    word-break: break-word;
}
.profile-completness-wrap {
    margin-top: 5px;
}
.profile-completness-wrap p {
    font-size: 14px;    
    margin-bottom: 0;
}
.profile-completness-wrap p span {
    color: #ca8500;
}
.fliter-ul{
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
}
.fliter-ul li{ 
    padding: 10px 0 10px 35px;
    cursor: pointer;
    border-left: 4px solid transparent;
}
.fliter-ul li.active-fliter{
    background-color: #e5f0ff;
    border-radius: 4px 0px 0px 4px;
    color: #222;
    font-weight: 600;
    border-left: 4px solid #00a6fb;
}
.about-community {
    margin-top: 60px;
}
.leftside-filter-wrap-mobile {display: none;} 

.leftside-filter-wrap-mobile.participation {display: block;margin-right: 10px;}

.leftside-filter-wrap-mobile .filter-img button{
    width:30px;
    padding: 0;
    background: none;
}
.leftside-filter-wrap-mobile .filter-img button img{
    width: 100%;
}
.leftside-filter-wrap-mobile .filter-img .dropdown-toggle::after,.leftside-filter-wrap-mobile .filter-img .dropdown-menu:after {
    display: none;
}
.leftside-filter-wrap-mobile .filter-img .dropdown-menu li {
    padding: 7px 5px;
    border-left: 4px solid transparent;
    font-size: 14px;
}
.leftside-filter-wrap-mobile .filter-img .dropdown-menu li.active-fliter{
    background-color: #e5f0ff;
    color: #222;
    font-weight: 600;
    border-left: 4px solid #00a6fb;
    border-radius: 4px 0px 0px 4px;
}
.filter-img .dropdown-menu.show {
    right: 0!important;
    left: auto!important;
    border: 0;
}
.search-section-input-wrap{justify-content: space-between;}
.search-section-input-wrap .shortby-dropdown {margin-left: 0;padding-right: 20px;}
.leftside-filter-wrap-mobile .dropdown-menu:before {top: -15px;right: 7px;left: auto;border-color: transparent transparent #fff transparent;}
.leftside-filter-outer {flex: 0 0 18.666667%;max-width: 18.666667%;}
.leftside-filter-about-content{flex: 0 0 30.666667%;max-width: 30.666667%;}
.postdetail-inner-wrap .postreply-box {padding: 10px;}
.attach-file ul li {margin-right: 10px;}
.postdetail-inner-wrap .feed-btn .btn-cancel {margin-right: 15px;}
.leftside-filter-about-content .sticky-top, .leftside-filter-outer .sticky-top{top: 70px;z-index: unset;}
.leftside-filter .sticky-top{top: 70px;}
.postdetail-inner-wrap .postreply-box .carousel_wrapper {margin: 0px -10px 0px -10px;}
.coming-soon-section {font-size: 25px;color: #828b96;height: 90vh;display: flex;justify-content: center;align-items: center;}
.new-post-tag{color: #fff;background-color: #007bff;border-color: #005cbf;}
/*css for COM-2796*/
/*css for COM-3131*/
/*.less-zindex {z-index: auto;}*/
/*css for COM-3131*/
/*css for COM-2948*/
.sidebar-nav .ticket .sub_icon:before {
  content: "";
  background-image: url('ic-task.8b2e314d9c29d16e.svg');
  width: 22px;
  height: 22px;
}
.sidebar-nav .ticket a.active .sub_icon:before { 
  background-image: url('active-ic-task.ca601981843469c1.svg');
}
.comm-tab .view-keywards-section-wrap .view-keywards-section-inner{padding: 20px;background-color: #ffffff;}
.comm-tab .edit-template-section {padding: 20px 0;}
.edit-template-section .admin-header {margin-bottom: 20px;}
.view-keywards-table td{padding: 5px 0;display: block;border:0;color: #6c6c6c;font-family: "Open Sans", sans-serif;}
.view-keywards-table td:first-of-type {padding-bottom: 0;}
.view-keywards-table td:last-of-type {padding-bottom: 10px;}
.view-keywards-table tr {border-bottom: 1px solid #dee2e6;}
.communication-page .blue-text{ text-decoration: none; }
.communication-page-filter .cuppa-dropdown:after{display: none;}
.communication-page-filter .cuppa-dropdown .c-btn > span:first-of-type { width: 86px;}
.communication-page-filter .cuppa-dropdown .selected-list .c-btn{padding-right: 0 !important;}
.communication-page-filter .cuppa-dropdown .c-btn > span:first-of-type:after {
    content: "";
    border-style: solid;
    border-color: #222222;
    vertical-align: 0.08em;
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0px;
}
.communication-page-filter .cuppa-dropdown .c-btn span span {
    max-width: 75px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: table-cell;
    overflow: hidden;
}
.template-section-wrapper {display: flex;margin-left: -10px;}
.template-section-outer {width: 66%;background: #fff;border-radius: 5px;box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);padding-left: 15px;padding-right: 15px;margin: 0 15px;}
.view-keywards-section-wrap {background: #fff; width: 33%;border-radius: 5px;
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);}
/*css for COM-2948*/
/* css for COM-2982 */
.signup-edit-wrap , .signup-sec-wrap{width: 50%;float: left;display: flex;align-items: center;justify-content: center;height: 100vh;}
.signup-sec-wrap .signinup-popup .modal-body {padding: 10px 40px;}
.signup-edit-wrap .signup-edit{position: absolute;left: 10px;top: 60px;z-index: 1!important;}
body .signup-edit-wrap .editcover-box.dropdown-menu.show {left: 0 !important;right: auto;}
.signup-edit-wrap form {width: 75%;}
.welcome-text-wrap , .sub-text-wrap {position: relative;}
.welcome-text-wrap, .welcome-text-wrap textarea{min-height: 100px;border-radius: 0;}
.sub-text-wrap , .sub-text-wrap textarea{min-height: 70px;border-radius: 0;}
.sub-text-wrap .form-group .form-control:focus,.welcome-text-wrap .form-group .form-control:focus {background: transparent;color: #fff;border: 1.5px solid #fff !important;}
.welcome-text-wrap .form-group.error-msg .form-control:focus {border: 1.5px solid #d83024;}
.welcome-text-wrap textarea, .sub-text-wrap textarea{background: transparent;border: 0;padding: 10px;color: #fff;padding-right: 45px;resize: none;}
.welcome-text-wrap textarea {font-size: 27px;font-weight: 600;line-height: 35px;}
.sub-text-wrap textarea{font-size: 18px;
    font-weight: 500;
    text-align: left;
    line-height: normal;}
.welcome-text-wrap , .sub-text-wrap {/*border: 2px dashed #fff;*/margin-bottom: 20px;}
.welcome-text-wrap .edit-coverpage, .sub-text-wrap .edit-coverpage{right: 10px;top: 10px;}
.welcome-text-wrap textarea::placeholder, .sub-text-wrap textarea::placeholder {color: #fff;font-size: 16px;}
.login-bg .signup-sec-wrap .signinup-popup .modal-dialog {margin: 0px auto;}
.cancle-save-btn-wrap {position: absolute;bottom: 60px;left: 10px;}
.btn-cancel {color: #fff;border: 1px solid #fff;}
.signup-sec-wrap .signinup-popup {width: 89%;}
.signup-sec-wrap .signinup-popup .modal-dialog {max-width: 100%;min-width: 100%;width: 100%;}
.preview-signup-save-btn, .preview-signup-cancle-btn,.preview-reset-btn, .back-to-form-link {font-weight: 600;width: 84px;height: 40px;
    background: #fff;color: #000;}
.newuser-signup-form .signinup-popup hr {margin: 18px 0;}
.newuser-signup-form .signinup-popup .btn-custom.register-btn {margin: 10px 0 0;}
.newuser-signup-form .signinup-popup .modal-body > p {margin: 0;}
.login-bg-img {background-size: cover;background-repeat: no-repeat;background-position: center center; }
.mobile-sub-welcome-txt {display: none;}    
.newuser-invitee-signup-text, .newuser-signup-form {width: 50%;float: left;}
.newuser-signup-text {padding: 0 50px; }
.subtext-signup-text , .welcm-signup-text{color: #fff;margin-bottom: 30px;}
.welcm-signup-text {font-size: 26px;font-weight: 600;line-height: 30px;}
.subtext-signup-text {font-size: 18px;font-weight: 500;text-align: left;line-height: normal;}
.newuser-signup-form .signinup-popup .modal-body {padding: 20px 40px;}
.newuser-signup-form .signinup-popup {width: 89%;}
.newuser-signup-form .signinup-popup .modal-dialog {max-width: 100%;min-width: 100%;width: 100%;}
.back-to-form-link {box-shadow: 0 2px 6px 0 rgba(34, 34, 34, 0.1);
    border-radius: 4px;font-size: 14px;line-height: 30px;
    padding: 6px 10px;text-align: center;font-weight: 600;text-decoration: none;
    position: absolute;bottom: 64px;width: 120px;left: 20px;}
.sign-up-bg-img-popup.signinup-popup .modal-dialog, .message-popup .modal-dialog {  min-height: calc(100vh - 100px);}
.modal-open .sign-up-bg-img-popup.modal {overflow-x: visible;overflow-y: visible;}
/*.signinup-popup.sign-up-bg-img-popup .modal-content {height: 90vh;}*/
.sign-up-bg-img-popup .modal-body-inner {max-height: 100%;}
.close-preview.preview-sign-up {left: 30%;}
.invitee-login {/*position: absolute;top: 0;left: 0;right: 0;*/background: linear-gradient(180deg,#06a8ff 0,#4f507a 100%);}
.welcome-text-wrap textarea::placeholder {text-align: left;font-size: 27px;}
.sub-text-wrap textarea::placeholder {text-align: left;font-size: 18px;}
.newuser-signup-form-wrap {justify-content: unset;padding-top: 100px;}
.back-to-form-link:hover {color: #000}
.rm-padding-bdy2 .modal-backdrop.show {opacity: 0.99;}
.rm-padding-bdy1 .footer,.rm-padding-bdy2 .footer {position: relative;}

.preview-signup .edit-coverpage .dropdown-toggle{opacity: 0.5;transition: 0.3s;}
.welcome-text-wrap:hover .edit-coverpage .dropdown-toggle, .sub-text-wrap:hover .edit-coverpage .dropdown-toggle{opacity: 1;transition: 0.3s;}
.rm-padding-bdy1, .rm-padding-bdy2, .rm-padding-bdy {padding: 0;}
.sub-text-wrap .color-picker{bottom: 0px!important ;top: auto!important ;right: auto!important;
    left: auto !important;}
.sub-text-wrap .color-picker .arrow.arrow-right {bottom: 25px;top: auto!important;left: -20px!important;
    right: auto!important;border-width: 5px 10px!important;
    border-color: rgba(0, 0, 0, 0) #777 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0)!important;}
/*===================== */   
.customise-walkthrough .intro-tour-hint-wrapper {
    transform: none !important;
    left: 40px !important;
    top: 125px !important;
    right: auto;
}
.customise-walkthrough2 .intro-tour-hint-wrapper {
    transform: none !important;
    left: 43% !important;
    top: 28% !important;
    right: auto;
    transform: translateY(-28%) !important;
}
.customise-walkthrough2 .intro-tour-hint-wrapper .footer .navigate-btn__previous {
    left: 0px;
}
.customise-walkthrough2 .intro-tour-hint-wrapper .footer .navigate-btn__next {
    right: 150px !important;
    bottom: 15px !important;
    color: white;
}
.customise-walkthrough3 .intro-tour-hint-wrapper {
    transform: translateY(-65%) !important;
    left: 43% !important;
    top: 65% !important;
    right: auto;
}
.welcome-text-wrap .edit-coverpage{
    position: absolute!important;
    z-index: 1!important;
}
.sub-text-wrap .edit-coverpage{
    position: absolute!important;
    z-index: 1!important;
}
.customise-walkthrough .intro-tour-hint-wrapper .navigate-btn:first-child {width: 109px;}
.customise-walkthrough .intro-tour-hint-wrapper .navigate-btn {
  background: transparent !important;
  box-shadow: none !important;
  font-size: 14px !important;
  visibility: hidden;
}
.customise-walkthrough .intro-tour-hint-wrapper .navigate-btn:first-child:before {
  content: "Next";
  border: 1px solid #fff;
  padding: 7px 27px;
  border-radius: 5px;
  visibility: visible;
}
.customise-walkthrough2 .intro-tour-hint-wrapper .navigate-btn:first-child:before {
  content: "Previous";
  padding: 7px 16px;
}
.customise-walkthrough2 .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
      content: "Next";
    visibility: visible;
    border: 1px solid #fff;
    padding: 7px 16px;
    border-radius: 5px;
}
.customise-walkthrough2 .intro-tour-hint-wrapper .navigate-btn:nth-child(3) {margin-left: 53px;}
.customise-walkthrough2 .intro-tour-hint-wrapper .navigate-btn:nth-child(3):before {
  content: "Skip";
  visibility: visible;
}
.customise-walkthrough3 .intro-tour-hint-wrapper .navigate-btn:first-child:before {
  content: "Previous";
  padding: 7px 16px;
}
.customise-walkthrough3 .intro-tour-hint-wrapper .navigate-btn:nth-child(2) {width: auto;}
.customise-walkthrough3 .intro-tour-hint-wrapper .navigate-btn:nth-child(2):before {
    content: "Get Started";
    visibility: visible;
    border: 1px solid #fff;
    padding: 7px 16px;
    border-radius: 5px;
    color: white;
}
.newuser-invitee-signup-text {    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;}

.sub-text-wrap .form-group .form-control:active,.welcome-text-wrap .form-group .form-control:active {
    background: transparent;color: #fff;border: 1.5px solid #fff !important;
}
/* css for COM-2982 */
/* css for COM-3271 */
.setpermission-popup .save-btn:hover {padding: 0 30px;font-size: 18px;background: #00a6fb;color: #fff;}
/* css for COM-3271 */
/* css for COM-3269 */
.active-communities-list .dropdown.last-dropdown span{line-height: 18px;vertical-align: bottom;}
.active-communities-list .active-filter-comm .dropdown-toggle::after {vertical-align: initial;}
.active-communities-list .active-filter-comm .weekly-dropdown .dropdown-toggle::after {vertical-align: 0.255em;}
/* css for COM-3269 */
.permission-popup .bulletin-validation .dropdown-menu {
    top: 0 !important;
    bottom: auto;
    left: -10px!important;
    z-index: 999;
}
/*css for COM-2810*/
.activity-box { background-color: #ffffff;
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
    -webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);
    padding: 20px 0px 10px 0px;border-bottom:1px solid #ccc;display: flex;    justify-content: space-between;}
/*.activity-name {width: 32%;display: inline-flex;align-items: center;} */   
.activity-link-grp-outer {width: 68%;display: inline-flex;justify-content: flex-end;}
.activity-link-grp a{font-size: 13px;    margin: 0 3px;}
.bb-btn {background: #007bff;border: 0;color: #fff;width: auto;display: inline-block;white-space: nowrap;font-size: 12px;padding: 0px 5px 0px 5px;border-radius: .25rem;}
.bulletin-brd-text {margin-top: 10px;padding: 0 10px;}
.bulletin-brd-text p{font-size: 14px;}
.activity-box-comment-reply .postreply-box .post-text {font-size: 14px;}
.activity-detail p {font-size: 14px;}
.activity-ul .head1{color: #ea1c63;}
.activity-ul span { width: 22%;display: table-cell;padding: 0 15px;}
.activity-ul span:first-of-type{padding-left: 0;}
.activity-ul {margin-bottom: 10px;}
.activity-ul li {display: table;width: 100%;}
.activity-ul .shortby-dropdown {margin-left: 0;}
.dwnld-links a{display: block;font-size: 12px;}
.post-page .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:last-of-type{text-align: center;overflow: inherit;}
.post-page .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:last-of-type .response-dropdown .dropdown-menu {
    top: 18px !important;
}
.media-library .table-responsive {max-height: 78vh;}
.bb-btn-wrap {margin-left: 4px;}
.release-pt-chkbox-cancle-btn {margin-right: 5px;}
.releasePoint-chkbox-outer {overflow-y: auto;/*min-height: 100px;    */max-height: 78vh;}
.feed-bulletin-side-bar .about-community {margin-top: 35px;}
.post-list h3.post-title.cursor-pntr {cursor: default;}
.post-name.activity-name {margin-left: 0;}
.post-name.activity-name span.total-no {padding-left: 0;}
.post-name.activity-name span.total-no:before {background: transparent;}
/*css for COM-2810*/
/*ACTU-121 and ACTU-122*/
.root-community-chat.postreply-box .post-text {font-size: 14px;}
.postdetail-inner-wrap.root-activity-chat {padding-top: 0;}
.root-community-chat.postreply-box .postreply-box {float: none;box-shadow: none;padding: 3px 10px 3px 10px;}
.root-com-bulletin-box .post-name {margin-left: 5px;}
.root-activity-chat .next-msg-div .dropdown {display: none;transition: all ease 0.3s;    cursor: pointer;}
.root-activity-chat .next-msg-div .self-edited-bulletin-msg:hover .dropdown {display: block;transition: all ease 0.3s;position: absolute;left: 0px;top: 7px;}
.root-activity-chat .next-msg-div .self-edited-bulletin-msg {position: relative;}
.root-activity-chat .next-msg-div .self-edited-bulletin-msg .dropdown span{width: 6px;display: block;}
.root-activity-chat .next-msg-div .self-edited-bulletin-msg .dropdown span img{min-width: 100%;width: 100%;height: 100%;object-fit: contain;background: transparent;border-radius: 0;}
.bulletin-brd-comment-reply {margin-right: 0px;margin-left: 0px;}
.root-activity-chat .activity-box {box-shadow: none;padding: 20px 15px;}
.root-activity-chat.postreply-box {padding: 0;}
.root-activity-chat .reply-box, .root-community-chat.postreply-box  .reply-box{margin: 10px 10px 10px 10px;}
.postdetail.root-activity-chat .postreply-box .next-msg-div .edited-bulletin-msg{padding: 10px 10px 10px 15px;margin-left: 15px;}
.postdetail.root-activity-chat .next-msg-div .response-dropdown .dropdown-menu {left: -6px!important;}
.postdetail.root-activity-chat .next-msg-div .response-dropdown .dropdown-menu:before,
.postdetail.root-activity-chat .next-msg-div .response-dropdown .dropdown-menu:after{right: auto;left: 5px;}
.postdetail.root-activity-chat .next-msg-div .repost-media-wrap1:hover .dropdown {display: block;}
.postdetail.root-activity-chat .next-msg-div .repost-media-wrap1 .dropdown{right: auto;left:-15px;}
.postdetail.root-activity-chat .next-msg-div .repost-media-wrap1 .dropdown span{width: 6px;display: block;}
.postdetail.root-activity-chat .next-msg-div .repost-media-wrap1 .dropdown span img{min-width: 100%;}
.postdetail.root-activity-chat .next-msg-div .next-post-attachment-file .dropdown span{width: 6px;display: block;}
.postdetail.root-activity-chat .next-msg-div .next-post-attachment-file .dropdown span img{min-width: 100%;}
.postdetail.root-activity-chat .next-msg-div .bulletin-brd-file .repost-media-wrap1{display: flex;padding-left: 15px;justify-content: space-between;}
.postdetail.root-activity-chat .next-msg-div .next-post-attachment-file:hover .dropdown {display: block;transition: all ease 0.3s;position: absolute;left: 0px;top: 7px;width: 160px;}
.postdetail.root-activity-chat .next-msg-div .post-attachment-file1 .dropdown span{width: 6px;display: block;}
.postdetail.root-activity-chat .next-msg-div .post-attachment-file1 .dropdown span img{min-width: 100%;}
.next-msg-header-div .reply-box-short-name{width: 35px;height: 30px;}
.postdetail.root-activity-chat .next-post-attachment-file {padding-left: 15px;}
.root-community-chat .next-msg-div .repost-media-wrap1 {display: flex;padding-left: 15px;position: relative;}
.root-community-chat .bulletin-brd-comment-reply {padding: 10px;}
.root-community-chat.postreply-box {padding: 20px 0px 10px 0px;}
.root-community-chat-text {padding: 0 10px;}
.root-community-chat .next-msg-div .dropdown {display: none;transition: all ease 0.3s;    cursor: pointer;}
.root-community-chat .next-msg-div .self-edited-bulletin-msg {position: relative;}
.root-community-chat .next-msg-div .self-edited-bulletin-msg .dropdown span{width: 6px;display: block;}
.root-community-chat .next-msg-div .self-edited-bulletin-msg .dropdown span img{min-width: 100%;width: 100%;height: 100%;object-fit: contain;background: transparent;border-radius: 0;}
.root-community-chat .next-msg-div .self-edited-bulletin-msg:hover .dropdown {display: block;transition: all ease 0.3s;position: absolute;left: 0px;top: 7px;}
.postdetail.root-community-chat .postreply-box .next-msg-div .edited-bulletin-msg{padding: 10px;margin-left: 15px;}
.postdetail.root-community-chat .postreply-box .next-msg-div .edited-bulletin-msg:hover {background: #F1F3F6;}
.postdetail.root-community-chat .next-msg-div .response-dropdown .dropdown-menu {left: -6px!important;}
.postdetail.root-community-chat .next-msg-div .response-dropdown .dropdown-menu:before,
.postdetail.root-community-chat .next-msg-div .response-dropdown .dropdown-menu:after{right: auto;left: 5px;}
.postdetail.root-community-chat .next-msg-div .repost-media-wrap1:hover .dropdown {display: block;}
.postdetail.root-community-chat .next-msg-div .repost-media-wrap1 .dropdown{right: auto;left: 0px;position: absolute;}
.postdetail.root-community-chat .next-msg-div .repost-media-wrap1 .dropdown span{width: 6px;display: block;}
.postdetail.root-community-chat .next-msg-div .repost-media-wrap1 .dropdown span img{min-width: 100%;}
.postdetail.root-community-chat .next-msg-div .next-post-attachment-file:hover .dropdown {display: block;transition: all ease 0.3s;position: absolute;left: 0px;top: 7px;width: 160px;}
.postdetail.root-community-chat .next-msg-div .next-post-attachment-file .dropdown span{width: 6px;display: block;}
.postdetail.root-community-chat .next-msg-div .next-post-attachment-file .dropdown span img{min-width: 100%;}
.bulletin-brd-comment-sec1 .bulletin-brd-comment-reply{margin-left: -10px;margin-right: -10px;}
.postdetail.root-community-chat .next-post-attachment-file {padding-left: 15px;}
.root-community-chat .self-msg-div .self-edited-bulletin-msg {margin-bottom: 3px;}
.root-community-chat .self-msg-div .edited-bulletin-msg {margin-right: 23px;}
.root-community-chat .next-msg-div {margin-bottom: 3px;}
.root-community-chat .self-msg-div .bulletin-brd-file .repost-media-wrap1,
.root-community-chat .next-msg-div .bulletin-brd-file .repost-media-wrap1 {margin-bottom: 3px;}
.less-margin{margin-top: -10px;}
.more-margin {margin-top: 25px;}
.next-file-attch {cursor: default;}
/* css for COM-3147 */
.quotafull-feature-section{
      display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}
.badge-icon-ai span{
  height: 52.08px;
  width: 34.07px;
}
.quotafull-feature-section h3 {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 35px;
    margin-bottom: 15px;
    color: #6C6C6C;
    text-align: center;
}
.quotafull-feature-section p {
  color: #767F8C;
  font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    width: 546px;
    margin: 0 auto;
    text-align: center;
}
.badge-icon-ai{
    margin-bottom: 50px;
    width : 77.42px;
    height : 77.42px;
}
.quotafull-bg {
        background: linear-gradient(180deg,#06a8ff 0,#4f507a 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.quotafull-white-box {
    width: 700px;
height: 500px;
background: #fff;
margin: 0 auto;
border-radius: 10px;
position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
}
.qtafull-logo {
    width: 80px;
    height: 80px;
}
/* css for COM-3147 */
/*CSS for COM-3151*/
.tab-popup .modal-content {border-radius: 0;}
.if-limit-over {display: none;}
.upgrade-bulletin-acc figure{width: 73.33px;height: 73.33px;margin: 0 auto 50px;}
.upgrade-bulletin-acc figure img {width: 100%;}
.upgrade-bulletin-acc {width: 100%;text-align: center;padding: 0px;min-height: 520px;
max-height: 520px;
display: flex;
justify-content: center;
flex-direction: column;}
.upgrade-bulletin-acc h3{font-family: Open Sans;font-style: normal;font-weight: bold;font-size: 26px;line-height: 35px;color: #6C6C6C;margin-bottom: 15px;}
.upgrade-bulletin-acc p {
    font-family: Open Sans;
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
text-align: center;
color: #767F8C;
width: 455px;
margin: 0 auto 30px;}
.upgrade-bulletin-acc button{
    width: 115px;
height: 45px;
font-weight: 600;
font-size: 18px;
line-height: 25px;
text-align: center;
border-radius: 5px;
background-color: #00a6fb;
border: 0;
color: #fff;
cursor: pointer;margin: 0 auto;padding: 0;
 }
 .board-display-none {
    display: none;
 }
/*CSS for COM-3151*/
/* COM-3160 starts*/
.free-trial-heading h5{font-weight: 600;color: #222222;font-size: 20px;}
.subscription-plan-new .plan-box {margin-right: 0;}
.plan-main-b > div{width: 18.97%;display: inline-block;margin-right: 15px;vertical-align: top;}
.plan-main-b > div:last-of-type {margin-right: 0;}
.plan-main-b .plan-box-inner .top-sec .max-width {padding: 30px 18px 18px;}
.plan-main-b .plan-box .btn {width: auto;font-weight: 600;padding: 0 11px;}
.plan-main-b {text-align: center;}
.subscription-header-box {align-items: center;}
@media only screen and (max-width: 1343px) {
    .plan-main-b > div {margin-right: 20px; width: 29.97%;margin-top: 15px;}
}
.nowrap {white-space: nowrap;}
.permission-popup .member-limit-tooltip {overflow: visible;}
.custom-number div.m-tooltip {display: none;background-color: #767f8c;
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  width: 254px;top: 30px;height: auto;}
.custom-number div.m-tooltip:after {
    content: "";
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
border-width: 6px;
border-style: solid;
border-color: transparent transparent #767f8c transparent;right: 5px;
left: auto;
margin-left: 0;
}  
.member-limit-tooltip:hover .m-tooltip {display: block;} 
.max-width h6{ margin-left: 2px;text-align: left;font-size: 16px;}
.plan-box-inner .more-features .max-width ul.plan-features {    margin-left: 0;}
.plan-box-inner .more-features .max-width ul.plan-features li figure img{}
.plan-box-inner .max-width ul.plan-features li.feature-li {display: flex;}
.feature-tool-tip .tooltiptext{padding: 5px;    top: auto;bottom: 24px;}
.feature-tool-tip1:hover .tooltiptext{    visibility: visible;opacity: 1;}
.plan-box-inner .max-width ul.plan-features li.feature-li .tooltip{font-family: "Open Sans", sans-serif;}
.plan-box-inner .max-width ul.plan-features li.feature-li .tooltip .tooltiptext {    min-width: 195px;    max-width: 255px;}
.feature-tool-tip .tooltiptext::after{border-color: #767f8c transparent transparent transparent;bottom: -12px;}
.plan-box-inner .max-width ul.plan-features li .feature-tool-tip img {margin-right: 0px;cursor: pointer;margin-top: -1px;margin-left: 2px;}
.plan-box-inner .max-width ul.plan-features li.feature-li figure {margin-bottom: 0;}
.plan-head-sec {min-height: 65px;max-height: 65px;margin-bottom: 5px;}
.plan-head-sec h4{margin-bottom: 5px;}
.yellow-tick {display: none;}
.basic .yellow-tick {display: inline-block;}
.basic .blue-tick {display: none;}
.plan-box-inner .max-width ul.plan-features li img {margin-right: 5px;}
.fixed-height{min-height: 297px; max-height: 297px;}
.pntr{cursor: pointer;}
.no-pntr{cursor: default;}
/* COM-3160 ends*/
/*CSS for COM-3352*/
.invitee-upgrade-bulletin-acc figure{width: 73.33px;height: 73.33px;margin: 0 auto 50px;}
.invitee-upgrade-bulletin-acc figure img {width: 100%;}
.invitee-upgrade-bulletin-acc {width: 100%;text-align: center;padding: 0px;
display: flex;
justify-content: center;
flex-direction: column;}
.invitee-upgrade-bulletin-acc h3{font-style: normal;font-weight: bold;font-size: 26px;line-height: 35px;color: #6C6C6C;margin-bottom: 15px;text-align: left;}
.invitee-upgrade-bulletin-acc p {
    font-family: Open Sans;
font-style: normal;
font-weight: 600;
font-size: 18px;
line-height: 25px;
text-align: left;
color: #767F8C;
margin: 0 auto 30px;}
.invitee-upgrade-bulletin-acc button.invitee-upgrde-ac{
min-width: 134px;
min-height: 45px;
height: 45px;
font-weight: 600;
font-size: 18px;
line-height: 25px;
text-align: center;
border-radius: 5px;
background: #00a6fb;
border: 0;
color: #fff;
cursor: pointer;padding: 0;display: inline-block;transition: 0.5s ease-in-out;margin-right: 15px;
 }
.invitee-upgrade-bulletin-acc .invitee-login-btn {text-align: right;}
.signinup-popup .invitee-login-btn .btn-custom { margin-top: 0; } 
.invitee-upgrade-bulletin-acc button.invitee-upgrde-ac:hover {background: transparent;color: #00a6fb;border:1px solid #00a6fb;transition: 0.5s ease-in-out;} 
.invitee-login-btn {margin-top: 20px;} 
.invitee-upgrade-bulletin-acc.modal-body {padding: 30px;}
.signinup-popup .btn-custom {font-weight: 500;}
.invitee-upgrade-bulletin-acc .invitee-login-btn {margin-top: 40px;}
.members-note-section {border: 2px solid #EAA529;clear: both;border-radius: 5px;padding: 10px;}
.members-note-section strong{font-size: 12px;}
.members-note-section ul li {font-size: 12px;margin-bottom: 5px;text-indent: -7px;padding-left: 15px;}
.addmember-popup .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {padding: 0.45rem 0.75rem;}
.addmember-popup .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell {padding: 5px 15px 7px;}
.addmember-popup .ngx-datatable.bootstrap .datatable-footer .page-count {line-height: 30px;height: 30px;}
.members-note-section ul li a {text-decoration: none;}
.addmember-popup.signinup-popup .btn-custom {margin-bottom: 0;} 
.addmember-popup .login-btn {margin-bottom:10px;}
/*CSS for COM-3352*/
/* css for COM-3113*/
.reset-link-wrap{background: linear-gradient(rgb(6, 168, 255) 0px, rgb(79, 80, 122) 100%);position: absolute;width: 100%;top: 0;bottom: 0;left: 0;right: 0;}
.link-cntent {position: absolute;top: 50%;transform: translateY(-50%);left: 0;right: 0;}
.link-cntent p{text-align: center;}
.link-cntent figure{width: 81.02px;height: 81.36px;margin: 0 auto 30px;}
.reset-link-wrap .modal-body {min-height: 450px;}
.reset-link-section{font-weight: bold;color: #6C6C6C;text-align: center;}
/* css for COM-3113*/
/* CSS for COM-3119/ACTU-181 */
.participant-post .vote-box label.progress.polltick{/*background: #FFEAC3;*/ border: 1px solid #EAA529;}
.participant-post .vote-box label.progress .selected-poll-answer {display: none;}
.participant-post .vote-box label.progress.polltick .selected-poll-answer {background: #EAA529;display: block;width: 23px;height: 23px;
display: block;border-radius: 50px;text-align: center;position: absolute;right: 5px;margin-bottom: 0;}
.opt-text-on-hover {display: none;position: absolute;width: 100%;background: #767f8c;font-size: 13px;
    z-index: 99;bottom: 55px;border-radius: 8px;padding: 12px 16px;max-width: 300px;color: #fff;left: 0;right: 0;}
.participant-post .vote-box label.custom-radio:hover .opt-text-on-hover{display: block;}
.opt-text-on-hover:after{content:'';width: 0; height: 0; border-left: 7px solid transparent;border-right: 7px solid transparent;border-top: 7px solid #767f8c;bottom: -7px;
position: absolute;right: 10px;text-align: center;margin: 0 auto;}
.selected-poll-answer img{margin-top: -3px; width:15px; height:12px;}
.post-progress label.custom-radio span {width: 90%;}
.participant-post .vote-box label.progress.polltick span {width: 85%;}
.ans-opt-text-on-hover {display: none;position: absolute;width: 100%;background: #767f8c;font-size: 13px;
    z-index: 99;bottom: 55px;border-radius: 8px;padding: 12px 16px;max-width: 300px;color: #fff;left: 0;right: 0;word-break: break-word;}
.ans-opt-text-on-hover:after{content:'';width: 0; height: 0; border-left: 7px solid transparent;border-right: 7px solid transparent;border-top: 7px solid #767f8c;bottom: -7px;
position: absolute;right: 10px;text-align: center;margin: 0 auto;}
.poll-tick-progress {overflow: visible;}
.vote-box label.poll-tick-progress {height: 47px;}
.custom-radio.progress:hover .ans-opt-text-on-hover {display: block;}
.participant-post .vote-box label.progress.polltick .progress-bar{background: #FFEAC3;}
.polls-tab .progress-bar {border-radius: 4px;}
.member_poll.poll-thumb-img {height: auto;border:0;}
.member_poll.poll-thumb-img a {border: 2px solid #d9d9d9;height: 104px;width: 100%;position: relative;}
.member_poll.poll-thumb-img .poll-largeview{ position: absolute;width: 20px;height: 20px;bottom: 0;right: 0;}
.poll-thumb-img.radio-focus h4  {font-weight: normal;}
.participant-post .odd-polls label.custom-radio .opt-text-on-hover{left: auto;right: 0;}
.participant-post .post-progress.odd-polls label.custom-radio .ans-opt-text-on-hover {left: auto;right: 0;}
.participant-post .post-progress.even-polls .poll-img  label.custom-radio span {width: 77%;}
.participant-post .single-select {width: 75%;}
.participant-post .single-select .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {    white-space: normal;
    overflow: initial;text-overflow: unset;}
/* CSS for COM-3119/ACTU-181 */
/* ACTU-191 starts */
.removeAll{font-weight: 400; font-size: 14px; color:#006bd0 !important; margin-left: -3px;}
/* ACTU-191 ends */
/* CSS for ACTU-193 */
.qr-code-button a{width: 100%;height: 44px;background: #FFFFFF;border: 1px solid #00A6FB;border-radius: 5px;
font-style: normal;font-weight: bold;font-size: 14px;line-height: 18px;color: #00A6FB;margin: 0 auto;
text-align: center;padding: 5px 10px;display: flex;padding: 5px 10px;align-items: center;justify-content: center;margin-top: 15px;
}
.qr-code-button a img {width: 18px;height: 18px}
.qr-code-button a:hover {color: #fff; background: #00A6FB;}
.hover-state {display: none;}
.qr-code-button a:hover .hover-state {display: block;}
.qr-code-button a:hover .unhover-state {display: none;}
.qr-code-wrap {display: flex;}
.qr-code-instructions {width: 60%;margin-right: 30px;}
.qr-code-details{width: 40%;padding-top: 30px;}
.qr-code-popup .modal-dialog{max-width: 750px;width: 90%;margin: 5px auto;min-height: 100vh;transition: none;}
.qr-code-instructions h3{font-weight: 600;font-size: 20px;line-height: 33px;color: #000000;margin-bottom: 15px;}
.qr-code-instructions ul li {font-size: 16px;line-height: 22px;color: #6C6C6C;padding-bottom: 15px;position: relative;padding-left: 16px;}
.qr-code-popup .modal-body{padding: 30px 40px;}
.qr-code-img {margin: 0 auto 0px;}
.app-dwnod-links > ul li{display: inline-block;vertical-align: middle;width: 144px;margin-right: 15px;padding-left: 0;padding-bottom: 0;}
.qr-code-details p {font-size: 14px;line-height: 13px;text-align: center;color: #000000;margin-bottom: 30px;}
.copy-code-input {margin-bottom: 35px;}
.copy-code-input input {text-align: center;font-weight: 600;font-size: 16px;line-height: 13px;color: #000000;border: 1px solid #D9D9D9;
box-sizing: border-box;border-radius: 3px;height: 50px;width: 248px;cursor: pointer;}
.signinup-popup .qr-popup-close button{
font-weight: bold;
font-size: 14px;
line-height: 19px;
color: #00A6FB;
width: 198px;
height: 39px;
border: 1px solid #00A6FB;
border-radius: 5px;
margin: 0 auto;
display: block;
float: none;
}
.signinup-popup .qr-popup-close button:hover{
    color:#fff;
}
.app-dwnod-links h3 {margin-bottom: 15px;font-size: 20px;}
.qr-code-img-wrap{
    background-image: url('qr-bg.bebbd15a1f7c94bb.svg');
    display: flex;
    background-size: contain;
    width: 135px;
    height: 135px;
    background-repeat: no-repeat;
    margin: 0 auto 30px;
        justify-content: center;
    align-items: center;
}
.qr-code-img canvas {    text-align: center;margin: 0 auto;}
.qr-mobile-view {display: none;}
.qr-code-instructions > ul li:before {
        content: '';
    position: absolute;
    top: 5px;
    width: 10px;
    height: 10px;
    background: #EAA529;
    border-radius: 5px;
    left: 0;
}
.app-dwnod-links-ul{margin-left: -3px;}
/* CSS for ACTU-193 */
/* COM-3135 CSS*/
.rgt-icon .btn.dwnld-prfle-icon {min-width: 176px;}
.dwnld-all-profile.signinup-popup .modal-body {padding: 50px;}
.education-section, .profession-section, .age-section , .gender-section {display: flex;align-items: center;margin-bottom: 15px;}
.dwnld-all-profile .modal-body .form-field-header{width: 22%;font-weight: 600;
font-size: 16px;line-height: 22px;color: #222222;}
.dwnld-profile-drpdown {width: 78%;}
.age-section-input  {display: flex;align-items: center;}
.age-section-input >div {width: 70px;}
.age-section-input >div:first-of-type {margin-right: 10px;}
.dwnload-section {display: flex;justify-content: space-between;align-items: center;}
.age-section-input .form-control{padding: 10px 15px;text-align: center;}
.signinup-popup .dwnload-cancle-button .btn-custom{float: none;}
.dwnload-cancle-button .btn-width{width: 129px;height: 39px;font-weight: 600;
font-size: 14px;line-height: 19px;border-radius: 5px;margin-top: 0;margin-bottom: 0;min-width: auto;min-height: auto;}
.dwnload-cancle-button .btn-custom.blank-btn{    min-width: 105px;width: 105px;margin-top: 0;min-height: auto;height: 39px;    font-size: 14px;
}
.dwnload-section-checkbox label{font-weight: 600;font-size: 16px;line-height: 22px;color: #222222;width: 140px;margin-bottom: 0;}
.or-text1{font-weight: 600;font-size: 16px;line-height: 22px;}
/* The container */
.dl-container {
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.dl-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.dl-checkmark {
  position: absolute;
  top: 0;
  right: 11px;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
}

/* When the checkbox is checked, add a blue background */
.dl-container input:checked ~ .dl-checkmark {
  background-color: #eaa529;
border-color: #eaa529;
}

/* Create the checkmark/indicator (hidden when not checked) */
.dl-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.dl-container input:checked ~ .dl-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.dl-container .dl-checkmark:after {
    right: 6px;
    top: 2px;
    width: 6px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.dl-container input:disabled ~ .dl-checkmark{
    opacity: 0.5
}
.dl-container:has(input:disabled){
    cursor: default;
}
.note-section span{
    font-weight: bold;
}
.note-section {
    border: 2px solid #EAA529;
    border-radius: 5px;
font-size: 14px;
line-height: 20px;
padding: 10px;
margin-top: 30px;
}
.dwnld-profile-drpdown .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input {padding-left: 0;}
.dwnld-profile-drpdown .ng-select .ng-select-container .ng-value-container .ng-placeholder {font-size: 15px;color: #6c757d;}
.dwnld-profile-drpdown .form-control{padding: 10px 16px;}
.dwnld-profile-drpdown .cuppa-dropdown .selected-list .c-btn {font-size: 14px;color: #BDBDBD;line-height: 18px;}
.dwnld-profile-drpdown .filter-dropdown .cuppa-dropdown .selected-list .c-btn {margin-top: 9px;}
.age-section-input .form-control::placeholder {color: #BDBDBD;}
.dwnld-profile-drpdown .form-control::placeholder {color: #BDBDBD;}
.dwnld-profile-drpdown .filter-dropdown .cuppa-dropdown .dropdown-list {    width: 370px !important;}
.error-set {margin-left: 107px;}
.age-section-wrap .error-text.warning-msg {margin-bottom: 10px;}
body .dwnld-profile-drpdown .filter-dropdown .cuppa-dropdown ul li label {border-bottom: 0;}
.dwnld-profile-drpdown .cuppa-dropdown .arrow-up {display: none;}
.dwnld-all-profile.signinup-popup .modal-dialog {overflow: visible;}
.dwnld-profile-drpdown .poll-dropdown {    min-height: auto;height: 50px;}
.dwnld-profile-drpdown .cuppa-dropdown::after {    right: 2px;border-color: #D9D9D9;}
.dwnld-profile-drpdown .filter-dropdown .selected-list .c-list .c-token .c-remove svg {fill: #000 !important;}
.dwnld-profile-drpdown .filter-dropdown .selected-list .c-list .c-token .c-label { color:#000; }
/* COM-3135 CSS*/
/* CSS for COM-3496 */
.attach-file {position: relative;}
.attach-file.mdb-20 .text-muted.danger {position: absolute;bottom: 0;left: 20px;}
.post-feed-btn {display: flex;}
/* CSS for COM-3496 */
/* CSS for COM-3431   */
.post-deleted1{background: #FFFFFF;box-shadow: 0px 3px 5px rgba(64, 64, 64, 0.11);border-radius: 5px;padding: 20px;clear: both;}
.post-deleted1-header {border-bottom: 1px solid #D9D9D9;display: flex;}
.post-deleted1-header figure {margin-right: 10px;margin-bottom: 10px;}
.post-deleted1-header h4 {font-weight: 600;font-size: 16px;line-height: 26px;color: #000000;}
.post-deleted1 p{font-size: 14px;line-height: 19px;color: #000000;margin-top: 15px;margin-bottom: 0;}
.post-deleted1 a{text-decoration: none;}
/* CSS for COM-3431   */
 /* CSS for COM-3461  */
.sign-up-check-box-sec-wrap {display: flex;align-items: center;justify-content: space-between;}
.sign-up-check-box-sec .dl-checkmark {right: auto;left: 0;top: 2px; border: 1px solid #9da8b7;}
.sign-up-check-box-sec .dl-container{font-size: 15px;color: #6c6c6c;    padding-left: 30px;}
.sign-up-check-box-sec .dl-container a {color: #006BD0;text-decoration: none;font-weight: 600;}
.sign-up-check-box-sec label {padding-left: 35px;}
.signinup-popup .sign-up-check-box-sec-wrap .btn-custom.register-btn {margin-top: 0;}
.sign-up-check-box-sec .dl-container .dl-checkmark:after {top: 2px;}
 /* CSS for COM-3461 */
  /* CSS for COM-3293 */
.link-wrapper {margin-right: 15px;}
.box-header a.download-all-blue-btn {color: #fff;text-decoration: none;font-size: 14px;height: 35px;}
.box-header a.download-all-blue-btn:hover {color: #fff;}
.bulletin-media button.close{top: 10px;}
.mediaspinnerdiv { margin-top: 10%; }
#mediaspinner {
    animation: mediaLoaderframes 1s infinite linear;
    background: transparent;
    border: 1.75vw solid #FFF;
    border-radius: 100%;
    border-top-color: rgb(0, 166, 251);
    width: 20vw;
    height: 20vw;
    padding: 0;
    position: absolute;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-width: 4px;
    top: 50%;
    transform: translateY(-50%);
}
@keyframes mediaLoaderframes {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* CSS for COM-3293 */
/* CSS for  COM-3614*/
.leftside-filter-tab-content .shortby-dropdown .dropdown-menu {right: -10px;}
.all-drpdwn-section .cuppa-dropdown .dropdown-list{right: -21px;}
.all-drpdwn-section1 .cuppa-dropdown .dropdown-list{right: -15px;}
.all-drpdwn-section2 .cuppa-dropdown .dropdown-list{right: -20px;}
.all-drpdwn-section .arrow-up ,.all-drpdwn-section1 .arrow-up {right: 13px;}
.all-drpdwn-section2 .arrow-up {right: 10px;}
/* CSS for COM-3613 */
.communityListDrpdwn .dropdown-list ul {position: relative;}
.postListReport .cuppa-dropdown .dropdown-list,
.communication-page-filter .cuppa-dropdown .dropdown-list,
.communityListDrpdwn .cuppa-dropdown .dropdown-list {z-index: 99;}
.sidebar-nav li a {height: 75px;}
/* CSS for COM-3613 */
/* CSS for COM-3157 */
.payment-stepper-outer-wrap .tab-content>.active {opacity: 1;}
.payment-stepper-outer-wrap .stepper ul{border-bottom: 0;    width: 80%;margin: 0 auto;}
.payment-stepper-outer-wrap .stepper li {height: 80px;display: flex;justify-content: center;align-items: center;
font-size: 18px;line-height: 24px;color: #000000;width: 33.33%;border: 1px solid #E0E0E0;border-right: 0; background: #fff;}
.payment-stepper-outer-wrap .stepper li:first-of-type {border-radius: 10px 0px 0px 10px;}
.payment-stepper-outer-wrap .stepper li:last-of-type {border-right: 1px solid #E0E0E0;border-radius: 0px 10px 10px 0px;}
.payment-stepper-outer-wrap .stepper li.active{border: 2px solid #EAA529;position: relative;}
.payment-stepper-outer-wrap .stepper li a {display: flex;align-items: center;text-decoration: none;}
.payment-stepper-outer-wrap .stepper li .round-tab {    width: 30px;
    height: 30px;
    background: #BDBDBD;
    margin-right: 10px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 28px;}
.payment-stepper-outer-wrap .stepper li  h6{
    font-size: 18px;
    line-height: 24px;
    color: #000000;    
    margin-bottom: 0;
}
.payment-stepper-outer-wrap .stepper li.active .round-tab { background: #EAA529;}
.payment-stepper-outer-wrap .tab-content {background: #fff;border-radius: 10px;padding: 30px;margin-bottom: 30px;}
.billing-detail-wrap {border-bottom: 1px solid #E0E0E0;margin-bottom: 25px;}
.billing-detail-wrap h4{font-size: 18px;line-height: 25px;color: #0249A3;font-weight: 600;}
.info-repeat-div h5 {color: #333333;font-size: 16px;line-height: 24px;margin-bottom: 20px;font-weight: 600;}
.stepper-form-field-wrap {margin-bottom: 20px;}
.stepper-form-field-wrap label{font-size: 12px;line-height: 16px;color: #000;}
.stepper-form-field-wrap input{width: 250px;height: 30px;background: #FAFBFC;border: 1px solid #DFE1E6;font-size: 13px;}
.stepper-form-field-wrap .red-asterik {color: #d83024;}
.info-repeat-div {padding-bottom: 10px;}
.next-stepper-btn-wrap{display: flex;    justify-content: space-between;align-items: flex-end;border-top: 1px solid #E0E0E0;padding-top: 40px;}
.next-stepper {width: 79px;height: 38px;padding: 0;
    color: #fff!important;
    font-size: 16px;
    line-height: 39px;border-radius: 0;}
.plan-table-wrap table{width: 100%;}    
.plan-table-wrap thead{background: #F4F8F9;font-weight: 600;font-size: 16px;line-height: 22px;color: #000;}
.plan-table-wrap thead th{height: 50px;padding: 0 10px;font-weight: 600;text-align: center;}
.plan-table-wrap tbody tr td{padding: 10px;}
.plan-table-wrap thead th:first-of-type, .plan-table-wrap tbody td:first-of-type {width: 40%;    padding-left: 45px;}
.plan-table-wrap thead th:nth-child(2) , .plan-table-wrap tbody td:nth-child(2) {width: 20%;}
.plan-table-wrap thead th:nth-child(3) , .plan-table-wrap tbody td:nth-child(3) {width: 20%;}
.plan-table-wrap thead th:nth-child(4) , .plan-table-wrap tbody td:nth-child(4) {width: 20%;}
.plan-table-wrap {padding-bottom: 20px;border-bottom: 1px solid #E0E0E0;}
.order-details-section h5 {font-weight: 600;margin-bottom:10px;font-size: 16px;line-height: 22px;color: #000000;}
.order-details-section p {font-size: 16px;line-height: 19px;color: #000000;margin-bottom: 10px;}
.order-details-section {padding: 30px 0 30px 0;border-bottom: 1px solid #E0E0E0;}
.order-details-note-section {background: #FFFAE6;border-radius: 5px;padding: 15px;margin-top: 30px;    display: flex;}
.note-icon-section figure{margin-bottom: 0;margin-right: 10px;}
.note-icon-section figure img {width: 22px;height: 22px;}
.note-text-section p{font-size: 16px;color: #000000;}
.note-text-section b{font-size: 16px;line-height: 22px;color: #000000;display: block;}
.note-text-section a {text-decoration: none;}
.tax-section-outer {margin-top: 15px;}
.tax-section-outer table {width: 100%;}
.tax-section-outer table tr td:first-of-type{font-size: 16px;line-height: 22px;color: #000;width: 80%;}
.tax-section-outer table tr td:last-of-type{font-size: 16px;line-height: 22px;color: #000;width: 20%;text-align: center;}
.tax-section-outer table tr td:last-of-type b{margin-left: 10px;font-size: 24px;}
.auto-renew-section figure {margin: 0 5px 0 0;}
.auto-renew-section figure img {width: 20px;height: 20px;    vertical-align: sub;}
.auto-renew-section{ display: flex;    align-items: baseline;    margin: 25px 0 10px 0;}
.auto-renew-section label {font-size: 16px;line-height: 22px;color: #4B5255;}
.auto-renew-section .dl-container input:checked ~ .dl-checkmark {background-color: #0249A3;border-color: #0249A3;}
.auto-renew-section .dl-checkmark {right: -30px;top: 2px;}
.auto-renew-section .dl-container .dl-checkmark:after {height: 11px;}
.terms-section1 a{font-size: 13px;line-height: 16px;color: #0249A3;text-decoration: none;margin-right: 15px;}
.make-stepper {width: 160px;height: 38px;background: #00A6FB;color: #fff!important;font-size: 16px;line-height: 35px;}
/*payment-sucessfull-screen-*/
.payment-sucessfull-screen-outer {background: #FFFFFF;border-radius: 10px;padding: 30px;margin-bottom: 50px;}
.payment-sucessfull-screen-header {display: flex;    justify-content: center;align-items: center;margin-bottom: 25px;}
.payment-sucessfull-screen-header figure{margin:0 15px 0 0;}
.payment-sucessfull-screen-header figure img{width: 50px;height: 50px;}
.payment-sucessfull-screen-header h1{font-size: 32px;line-height: 44px;color: #219653;font-weight: normal;margin-bottom: 0;}
.to-section {position: relative;text-align: center;}
.to-section span{font-size: 24px;line-height: 33px;color: #000000;font-weight: normal;}
.to-section span:after {content: '';
border-bottom:1px solid #E0E0E0;width: 45%;position: absolute;top:18px;right: 0;}
.to-section span:before {content: '';
border-bottom:1px solid #E0E0E0;width: 45%;position: absolute;top:18px;left: 0;}
.name-of-the-company p{font-size: 24px;line-height: 33px;color: #000000;text-align: center;margin-top: 5px;}
.payment-sucessfull-screen-outer .plan-table-wrap {margin-top: 30px;}
.payment-sucessfull-screen-outer .plan-table-wrap tr td{font-size: 16px;line-height: 22px;color: #000000;}
.tax-total-tabel {border-bottom: 1px solid #E0E0E0;}
.tax-total-tabel table{width: 100%;    font-size: 16px;}
.tax-total-tabel table tr td:first-of-type{width: 75%;height: 50px;}
.tax-total-tabel table tr td:nth-child(2){width: 15%;height: 50px;}
.tax-total-tabel table tr td:nth-child(3){width: 10%;height: 50px;}
.tax-total-tabel table.payment-method-table tr td{height: 40px;}
.font-24{font-size: 24px;line-height: 33px;color: #000000;}
.font-24 b{font-size: 600;}
.payment-sucessfull-screen-outer b, .payment-method-table b{font-weight: 600;}
/*===========Invoice HTML===========*/
.payment-invoice {background: #FFFFFF;border-radius: 10px;padding: 30px;margin-bottom: 50px;}
.payment-invoice .payment-sucessfull-screen-header {border-bottom: 1px solid #E0E0E0;margin-bottom: 0;padding-bottom: 25px;}
.brand-logo-address figure {width: 190px;margin-bottom: 0;}
.brand-logo-address {display: flex;justify-content: space-between;align-items:center;border-bottom:  1px solid #E0E0E0;
      padding: 25px 0;}
.brand-logo-address figure img {width: 100%;}
.tax-invoice-wrap h4 {font-size: 24px;line-height: 33px;text-align: center;padding-bottom: 30px;font-weight: bold;}
.tax-invoice h6{font-size: 16px;line-height: 22px;font-weight: bold;color: #0249A3;}
.content-div {font-size: 14px;line-height: 19px;color: #000000;}
.tax-invoice > div.total-amount {font-weight: 600;font-size: 48px;line-height: 65px;color: #000000;}
.tax-invoice > div.total-amount b{font-weight: 600;}
.tax-invoice-wrap {padding: 30px 0;border-bottom: 1px solid #E0E0E0;}
.invoice-table { padding: 30px 0 10px 0;}
.invoice-table table {width: 100%;}
.invoice-table table th {background: #0249A3;}
.invoice-table table th , .invoice-table tr td {padding: 10px 10px;}
.invoice-table thead th{font-weight: 600;font-size: 14px;line-height: 19px;color: #FFFFFF;}
.invoice-table2 table{width: 100%;}
.invoice-table2 table tr{border-bottom: 1px solid #E0E0E0;}
.invoice-table2 table tr td:nth-child(1) {padding-left: 35%;font-weight: 600;font-size: 16px;line-height: 22px;width: 65%;}
.invoice-table2 table tr td:nth-child(2), .invoice-table2 table tr td:nth-child(3) {width: 15%;}
.invoice-table2 table tr td{padding: 10px;}
.download-invoice-section {display: flex;justify-content: flex-end;padding: 30px 0;}
.download-invoice-section button {font-size: 16px;line-height: 17px;background: transparent;border: 1px solid #00a6fb;color: #00a6fb;width: 181.28px;
height: 38px;border-radius: 4px;cursor: pointer;}
.download-invoice-section button span {margin-right: 10px;}
.download-invoice-section button span img {width: 14px;height: 16px;vertical-align: middle;}
.invoice-table2 table tr td.additional-padding{padding-left: 6.5%;}
.billed-to .content-div {width: 150px;}
.address-section {font-weight: 600;font-size: 16px;line-height: 22px;text-align: right;}
body .plan-features .ng-select.ng-select-single .ng-select-container {border: 1px solid #d9d9d9;border-radius: 4px;height: 35px;z-index: 99;}
body .plan-features .ng-select .ng-arrow-wrapper .ng-arrow {top: 1px;right: 5px;}
.plan-features .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-value {padding-left: 5px;}
.payment-stepper-outer-wrap {padding-top: 40px;}

body .plan-table-wrap .ng-select.ng-select-single .ng-select-container {border: 1px solid #d9d9d9;border-radius: 4px;height: 50px;}
body .plan-table-wrap .ng-select .ng-arrow-wrapper .ng-arrow {top: 1px;right: 10px;}
.plan-table-wrap .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-value {padding-left: 5px;}
.plan-table-wrap tbody tr td .custom-number{border: 1px solid #d9d9d9;width: 70px;height: 50px;min-height: 50px;margin: 0 auto;}
.plan-table-wrap tbody tr td .custom-number + p.error-text {margin: 8px 0 0 0;}
.next-stepper-btn-wrap a.blank-btn{line-height: 40px;color: #00A6FB;}
.next-stepper-btn-wrap a.blank-btn:hover { color: #fff;}
.next-stepper-btn-wrap .btn-custom{font-size: 16px;font-weight: 600;width: auto;padding: 0 20px;}
.payment-status-div ul.breadcrumb{margin-top: 25px;}
.form-section-field-wrapper .form-control-placeholder{left: 23px;font-size: 14px;top: 5px;}
.form-section-field-wrapper .form-group {margin-bottom: 25px;}
.form-section-field-wrapper .form-group  p.error-text {margin-top: 5px;}
.members-ng-select .ng-select{width: 90px;margin: 0 auto;}
.plan-table-wrap tbody tr td .custom-number input {height: 100%;}
.plan-table-wrap tbody tr td .custom-number button.add { top: 2px;}
.plan-table-wrap tbody tr td .custom-number button.sub { bottom: 3px;}
.plan-table-wrap tbody tr td.plan-cost input{border: 0;width: 90px;margin: 0 auto;text-align: center;}
.stepper {background: #fff;padding-top: 30px;}
.next-stepper-btn-wrap1 {justify-content: flex-end;}
body .plan-table-wrap .ng-select.ng-select-single .ng-select-container {z-index: 99;}
/*.form-section-field-wrapper .form-control.edit-value label.form-control-placeholder{transform: translate3d(0, -76%, 0);}*/
.error-msg .form-control + ngb-typeahead-window.dropdown-menu + .form-control-placeholder {transform: translate3d(0, -76%, 0);}
.invoice-table tr td.pr-15 {padding-right: 15px;}
.bold-text {font-weight: bold;}
.width-20 {width: 20%;}
.border-bottom{border-bottom: 1px solid #E0E0E0;}
.payment-stepper-outer-wrap ul.breadcrumb li{    margin-right: 10px;}
body .plan-features .ng-select.ng-select-focused {border-color: transparent;}
body .plan-features .ng-dropdown-panel {z-index: 99;}
.whitespace {white-space: nowrap;}
/* CSS for COM-3157 */
/* CSS for COM-3516 */
.width160 {width: 160px;}
.panelist-login {margin-bottom: 5px;margin-top: -5px;width: 160px;}
.signinup-popup.root-popup .modal-dialog{margin-top: -5px;}
.signinup-popup.root-popup.register-popup .modal-dialog{margin-top: 15px;}
.new-logo {margin-bottom: 5px;}
/* CSS for COM-3516 */
/* CSS for COM-4147 */
.ticket-img-parent {margin-bottom: 5px;}
.user-profile .white-box.rewards-box {padding: 20px 40px 15px 40px;}
.community-guidelines-table tbody tr td div h3 {padding-left: 12px;}
.root-profile.user-profile {margin-top: 20px;}
.active-admin table td{padding: 8px;}
.reward-short-detail h3 {margin: 5px 0 10px;}
.addmember-popup .border-box {padding: 10px 20px;}
.comm-pro-qu .form-group {    margin-bottom: 17px;}
.post-body {margin-top: 30px;}
.ng-select-container .ng-value-container .ng-value {width: 72%;}
.memberInput .ng-select-container .ng-value-container .ng-value {width: auto;}
.popup-next-arrow {right: 0;}
.permission-popup .uploadimg-box-outer .uploadimg-box {padding: 0 10px 5px;}
.permission-popup .uploadimg-box-outer .uploadimg-box .img-box {width: 95px;}
.search-section-input-wrap{justify-content: space-between;}
.angular-editor .angular-editor-wrapper p {font-size: 14px;}
.newuser-signup-form .signinup-popup {width: 89%;}
/*  */
.tooltip.conversionratelable .tooltiptext {padding: 5px;}
.exitcmm-popup h4{color: #6c6c6c;}
/*.user-profiling-inner.less-zindex {z-index: 1;}*/
body .ng-dropdown-panel .ng-dropdown-panel-items .ng-option{padding: 12px 17px;}
.dropdown-toggle.vertical-dot {width: 5px;display: block;}
.dropdown-toggle.vertical-dot img {width: 80%;object-fit: contain;height: 70%;}
.postreply-box .carousel-inner {height: auto;}
#new-polls .comm-basicinfo .padding-content {padding: 10px 25px 17px;}
.padding-content .footer-pollaction p.error-text {bottom: -16px;}
.profiling-inner-tab1 .rgt-icon .dropdown-menu { top: auto !important; bottom: auto; }
.comm-pro-qu .vote-textbox input.textbox {height: 48px;margin-top: 1px;}
.picker-plus-icn {
    color: #06a8ff;
    display: flex;
    font-weight: 600;
    font-size: 22px;
    justify-content: center;
    line-height: 22px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border: 1px solid #06a8ff;
    border-radius: 15px;
    margin-left: 10px;
}
#members .header-searchdropdown.scroll-added{
    display: block;
    max-height: 350px;
    min-height: 350px;
    overflow: auto;
}
#invities .header-searchdropdown.scroll-added{
    display: block;
    max-height: 350px;
    min-height: 350px;
    overflow: auto;
}
.vote-textbox input.textbox {height: 48px;margin-top: 1px;}
.user-profiling-tab .select-option.blue-box {z-index: auto;}
.panelist-nav {z-index: 999;}
.user-profiling-inner .select-option {z-index: auto;}
.user-profiling-inner {z-index: auto;}
/* CSS for COM-4147 */
/* CSS for ACTU-228 */
.subscription-logo {width: 150px;height: auto;}
.subscription-bg {
        background: linear-gradient(180deg,#06a8ff 0,#4f507a 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.subscription-white-box {
    width: 700px;
height: 500px;
background: #fff;
margin: 0 auto;
border-radius: 10px;
position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 30px;
}
.subscription-feature-section{
      display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 40px;
}
.subscription-feature-section h3{
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    line-height: 35px;
    color: #6C6C6C;
    margin-bottom: 15px;
}
.subscription-feature-section p {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #767F8C;
    width: 90%;
    margin: 0 auto;
}
/* CSS for ACTU-228 */
/* CSS for COM-3843 */
.exist-account p{color: #6C6C6C;font-size: 16px;line-height: 20px;margin: 0;}
.exist-account p a{color: #006BD0;text-decoration: none;opacity: 1;font-weight: 600;}
.sign-up-check-box-sec {margin-bottom: 15px;}
/* CSS for COM-3843 */
/* CSS for ACTU-509 */
.pnelist-user-profiling .user-profiling-inner label.custom-radio {
    min-height: 45px;
    height: auto;
    text-indent: -20px;
    padding-left: 40px;
    padding-bottom: 10px;
    padding-right: 10px;
}
.pnelist-user-profiling .user-profiling-inner .checkmark-radio {
    left: -30px;
}
/* CSS for ACTU-509 */
/* CSS for COM-5358 */
.root-notification ul li img.dislike {    
    width: 26px;
    transform: scaleY(-1);
    margin-top: 5px;
    margin-right: 16px;
}
.root-notification ul li img.like {
    width: 26px;
    margin-right: 16px;
    margin-top: 4px;
}
/* CSS for COM-5358 */
/* CSS for COM-5691 starts here*/
.navbar .navbar-nav li:last-child .nav-link span.profile-name {width: auto;min-width: 60px;}
.navbar .navbar-nav li:last-child .nav-link{padding-left: 20px;}
/* CSS for COM-5691 ends here*/
/* CSS for the story ACTU-661 starts Here*/
.a-link {    color: #00A6FB; font-size: 18px; }
.create-activity-div {
    flex: 0 0 100%;
    max-width: 100%;
}
.create-dropdown .btn-addcomm{
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    height: 36px;
    margin-top: 22px;
    width: 115px;
    display: flex;
    margin-left: 30px;
}
.create-dropdown .btn-addcomm span{
    margin-right: 10px;
    font-size: 27px;
    font-weight: 400;
}
.create-dropdown .btn-addcomm:after,.create-dropdown .dropdown-menu:after,
.create-dropdown .dropdown-menu:before{
    display: none;
}
.create-dropdown .dropdown-menu-right{
    right: 0;
    width: 334px;
    padding: 0 20px;
    z-index: 99;
}
.create-dropdown .dropdown-item{
    display: flex;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #E0E0E0;
    padding: 15px 0px;
    cursor: pointer;
}
.create-dropdown .dropdown-item .inactive {
    opacity: 0.55;
}
.create-dropdown .dropdown-item b {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #000;
    display: block;
}
.create-dropdown .dropdown-item span{
    font-size: 14px;
    line-height: 19px;
    color: #828282;
    font-weight: normal;
}
.create-dropdown .dropdown-item span img{
    width: 19px;
    margin-right: 15px;
}
.create-dropdown .dropdown-item i{
    width: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.create-dropdown .dropdown-item i img {
    width: 30px;
}
.create-dropdown .dropdown-item div{
    width: 90%;
    position: relative;
}
.create-post-outer-wrap {
/*    margin-top: 30px;*/
    background: #fff;
    padding: 30px;
    padding-bottom: 20px;
}
.create-activity-header {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 20px;
}
.create-activity-header img{
    width: 23px;
    margin-right:17px;
}
.create-post-outer-wrap .attach-file{
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    margin: 20px 0 30px 0;
}
.create-activity-wrap .form-group {
    position: relative;
}
.create-post-outer-wrap .small.attach-file {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    z-index: 1;
}
.create-post-outer-wrap .attach-file ul li {
    width: 90px;
}
.create-post-outer-wrap .small.attach-file ul li {
    width: 40px;
}
.small.attach-file ul li img {
    margin-right: 0px;
}
.small.attach-file ul li {
    margin-right: 10px;
}
.small .new-border {
    padding: 4px 12px;
}
.create-post-outer-wrap .write-msg, .create-bb-outer-wrap .write-msg, 
.create-poll-outer-wrap .write-msg{
    margin-bottom: 30px;
}
.create-post-outer-wrap .write-msg input,.write-msg textarea{
    border: 1px solid #DFE1E6;
}
.create-activity-wrap {
    flex: 0 0 70%;
    max-width: 70%;
}
.setting-section-wrap {
    flex: 0 0 30%;
    max-width: 30%;
}
.setting-section{    
    padding: 25px 30px 10px 30px;
    border-bottom: 1px solid #E0E0E0;
}
.setting-section-bg{
    background: #F2F5F8;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.setting-section-bg h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 20px;
    margin-bottom: 0px;
    padding: 30px 30px 0px 30px;
}
.d-flex.mb-3.setting-field {
    align-items: center;
    margin-bottom: 10px!important;
}
.setting-field label{
    flex: auto;
    margin-bottom: 0;
}
.setting-field .card {
    background: transparent;
    margin-right: 0
}
.setting-field .comment-dropdown select.form-control:not([size]):not([multiple]) {
    width: 100px;
    min-height: 30px;
    padding: 0 10px;
    height: 30px;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
}
.setting-field .toggle-onoff.card .list-group-item {
    padding: 0 0px 5px 5px;
}
.setting-field .comment-dropdown select.form-control {
  background-image: url('grey-dropdown.5e963f77b429d350.png');
  background-position: center right 10px;
  background-repeat: no-repeat; 
}
/*.setting-field .comment-dropdown select.form-control option:after {
    content: '';
    background-image: url(../img/comment-visibility.svg);
    width: 14px;
    height: 14px;
    display: block;
    background-position: center;
    background-size: contain;
}*/
.permission-section {
    padding: 20px 30px 30px 30px;
}
.permission-field.d-flex.mb-3 {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px!important;
}
.permission-field label{
    margin-bottom: 0;
    margin-right: 2px;
}
.permission-section .post-enddate-optional{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
}
.permission-section .post-enddate-optional .form-control{
    min-height: 40px;
    padding: 10px;
    background: #fff;
}
.permission-section .post-enddate-optional  .date-icon a {
    right: 15px;
}
.post-enddate-optional-desk {
    float: none;
    margin-left: 0;
    font-style: normal;
    font-size: 12px;
}
.activity-button-section {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.activity-button-section button {
    font-size: 14px;
    height: 40px;
}
.preview-btn {
    width: 120px;
}
.create-btn {
    width: 110px;
    margin-left: 15px;
}
.activity-button-section .preview-btn:disabled {
    background: transparent;
    border: 1px solid #9DA8B7;
    color: #9DA8B7;
}
.activity-button-section .create-btn:disabled {
    border: 1px solid #9DA8B7;
    background-color: #9DA8B7;
}
.addpoll-popup h4{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
}
.pos-relative {
    position: relative;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner {
    border: 0;
    padding: 0;
}
.addpoll-popup.new-create-activity-poll,
.addpoll-popup.new-create-activity-poll .col-md-9 {
    padding: 0;
}
.addpoll-popup.new-create-activity-poll .row{
    margin-right: 0;
    margin-left: 0;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .footer-pollaction {
    padding-top: 10px;
    border-top: 0;
    justify-content: flex-start;
    margin-bottom: 10px;
}
.post-preview-section {
    width: 100%;
    padding: 30px 0;
}
.new-create-activity-poll .addpoll-footer .comm-class {
    padding-right: 25px;
}
.addpoll-popup.new-create-activity-poll .custom-number {
    max-height: 40px;
    border: 1px solid #D9D9D9;
    width: 80px;
}
.addpoll-popup.new-create-activity-poll .addpoll-footer input {
    min-height: 35px;
    padding-left: 0;
}
.addpoll-popup.new-create-activity-poll  .custom-number button {
    right: 10px;
    top: 2px;
}
.addpoll-popup.new-create-activity-poll .custom-number button.sub {
    bottom: 4px;
    top: auto;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .add-qu-option {
    height: 50px;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .text-editor .add-qu-option {
    height: auto;
}
.addpoll-popup.new-create-activity-poll .add-qu-option .checkmark-radio {
    width: 30px;
    height: 30px;
}
.addpoll-popup.new-create-activity-poll
.addpoll-popup-inner .add-qu-option input[type="radio"] ~ .checkmark-radio:after {
    width: 20px;
    height: 20px;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .add-qu-option .checkmark-radio {
    top: -4px;
}
.addpoll-popup.new-create-activity-poll .custom-radio input[type="radio"] ~ .checkmark-radio:after {
    top: 4px;
}
.post-preview-section .addpoll-qu-content label.custom-radio {
    height: 50px;
}
.post-preview-section .addpoll-qu-content label.custom-radio .checkmark-radio {
    width: 30px;
    height: 30px;
}
.post-preview-section .addpoll-question .custom-radio input[type="radio"] ~ .checkmark-radio:after {
    width: 20px;
    height: 20px;
}
.post-preview-section  .addpoll-popup-inner .add-qu-option .checkmark-radio {
    top: -4px;
}
.post-preview-section  .custom-radio input[type="radio"] ~ .checkmark-radio:after {
    top: 4px;
}
.addpoll-popup.new-create-activity-poll .addpoll-footer input#end_date {
    padding: 10px 25px 9px 20px;
    text-align: center;
}
.new-create-activity-poll.addpoll-footer .poll-enddate input {
    max-width: 180px;
}
.new-create-activity-poll .footer-pollaction .btn.added {
    height: 40px;
}
.new-create-activity-poll .footer-pollaction .btn.added:disabled {
     background: #9DA8B7;
    border: 1px solid #9DA8B7;
    color: #fff;   
}
.new-create-activity-poll.addpoll-popup .pollhere-text{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    color: #333333;
    background:transparent;
}
.create-bb-outer-wrap , .create-poll-outer-wrap {
    background: #fff;
    padding: 30px;
    padding-bottom: 20px;
}
.create-bb-outer-wrap .setting-section{
    border-bottom:0;
}
.create-bb-outer-wrap .activity-button-section button{
    width: 100%;
}
.create-bb-outer-wrap .create-activity-header,
.create-poll-outer-wrap  .create-activity-header{
    margin-bottom: 30px;
}
.member-preview-bb h3{
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
}
.member-preview-bb-inner-wrap .short-name {
    font-size: 15px;
    display: flex;
    align-items: start;
    justify-content: center;
    color: #208BFF;
    font-weight: 600;
    margin-right: 10px;
}
.permission-section .post-enddate-optional {
    margin-top: 10px;
}
.member-preview-bb-inner-wrap{
    border: 1px solid #E0E0E0;
    padding: 30px 20px;
    box-shadow: none;
    float: none;
}
.member-preview-bb .post-name h3 {
    margin-bottom: 0;
}
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper .carousel-item {
    height: 280px;
    max-height: 280px;
}
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper .carousel-item img, 
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper .carousel-item video {
    background: #333333;
}
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper .carousel-control-prev-icon,
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper .carousel-control-next-icon {
    background-image: url('previous1.766f767d57d5a5f3.png');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper .carousel-control-next-icon {
    transform: rotate(180deg);
}
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper .carousel-control-prev {
    background: transparent;
    opacity: 1;
}
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper .carousel-control-next {
    background: transparent;
    opacity: 1;
}
.member-preview-bb-inner-wrap.postreply-box .carousel_wrapper {
    margin: 0px;
}
.member-preview-bb-inner-wrap.postreply-box .carousel-inner {
    height: 280px;
}
.member-preview-bb-inner-wrap .post-attachment-file{
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    padding: 10px 15px;
    width: 310px;
    margin-bottom: 15px;
}
.member-preview-bb-inner-wrap .post-attachment-file .att-left p {
    text-align: left;
    padding-left: 15px;
}
.member-preview-bb-inner-wrap .post-attachment-file .att-left p span{
    width: 188px !important;
}
.member-preview-bb-inner-wrap .preview-poll .vote-box {
    min-width: auto;
}
.member-preview-bb-inner-wrap .postedpoll-root p.post-text{
    display: block;
    width: 100%;
}
/*.member-preview-bb-inner-wrap .vote-box label:nth-child(even) {
    margin-right: 15px;
}
.member-preview-bb-inner-wrap .vote-box label {
    margin-right: 0px;
}*/
.member-preview-bb-inner-wrap .reply-input {
    width: calc(100% - 170px);
    margin-right: 15px;
}
.member-preview-bb-inner-wrap .reply-box .btn-custom {
    width: 105px;
    height: 40px;
}
.upload-img {
    background-image: url('previous1.766f767d57d5a5f3.png');
}
.member-preview-bb .feed-list-doc .file-icon {
    width: 41px;
    height: 41px;
    justify-content: center;
    align-items: center;
}
.file-icon img {
    width: 11px;
    height: 25px;
}
.member-preview-bb .likedis-btn label .like-check {
    height: 38px;
}
.member-preview-bb .reply-attach a {
    margin-left: 18px;
}
.member-preview-bb .reply-box textarea {
    height: 40px;
    outline: none;
}
.member-preview-bb .reply-box-inner .reply-box-short-name {
    width: 39px;
    height: 39px;
}
.member-preview-bb .reply-box textarea {
    resize: none;
}
.like-dislike-sections {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.non-active {
    border: 1px solid #9DA8B7;
    background-color: #9DA8B7;
    cursor: default !important;
}
.addpoll-popup.create-only-poll {
    padding: 0px;
}
.addpoll-popup.create-only-poll .addpoll-popup-inner {
    border: 0;
    padding: 0px 0px 120px 0px;
    border-radius: 5px;
    margin-top: 0;
}
.addpoll-popup.create-only-poll .addpoll-popup-inner .footer-pollaction {
    border-top: 0;
    margin-right: 0;
}
.create-only-poll .custom-number{
    max-height: 40px;
    border: 1px solid #D9D9D9;
    width: 80px;
}
.create-only-poll .addpoll-footer input{
    min-height: 35px;
}
.poll-preview .postreply-box {
       box-shadow: none;
    border-radius: 0;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
}
.create-only-poll .vote-option{
    justify-content: flex-start;
}
.vote-btn {
    display: flex;
    justify-content: flex-end;
}
.create-activity-wrap .error-text{
    margin-top: 7px;
    margin-bottom: 0px;
}
.error-msg-with-char {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.create-activity-wrap .feed-uploadimg-box {
     border: 0; 
    padding: 0;
}
.create-activity-wrap .file-icon img {
    width: 28px;
    height: 28px;
}
.create-activity-wrap .file-icon {
    margin-bottom: 5px;
}
.create-activity-wrap .img-box {
    width: 119px;
    height: 114px;
}
.create-activity-wrap .media-filename {
    font-size: 12px;
    padding: 0 2px 20px 2px;
}
.create-activity-wrap  .pollhere-text{
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 15px;
    display: block;
}
.create-activity-wrap .feed-main-box {
    margin-bottom: 30px;
}
.create-activity-wrap .addpoll-popup .form-group{
    position: relative;
}
.create-activity-wrap .add-poll-popup {
    width: 75%;
}
.create-activity-wrap .new-poll .poll-section .form-group.selectbox {
    z-index: 9;
}
.new-create-activity-poll .dropdown-menu.show {
    display: block;
    top: auto!important;
    bottom: 50px;
}
.new-create-activity-poll .footer-pollaction p.error-text {
    bottom: -35px;
}
.new-create-activity-poll .footer-pollaction .poll-limit p.error-text {
    bottom: -50px;
}
.new-create-activity-poll .footer-pollaction p.error-text span{
    font-size: 12px;
}
.member-preview-bb {
        margin-top: 30px;
}
.member-preview-bb .reply-box-short-name {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}
.addpoll-popup.new-create-activity-poll .add-qu-option.multiple-select .checkmark-radio {
        width: 28px;
    height: 28px;
}
.addpoll-popup.new-create-activity-poll .add-qu-option.multiple-select .checkmark-radio:after {
    width: 7px;
    height: 15px;
    left: 9px;
    top: 4px;
}
.addpoll-popup.new-create-activity-poll .addpoll-popup-inner .add-qu-option.multiple-select .checkmark-radio {
    top: -2px;
}
.new-create-activity-poll .rating-box {
    width: 100%;
}
.star-poll {
    margin-bottom: 15px;    
}
.delete-row {
    padding-top: 12px;
}
.create-post-outer-wrap .write-msg input.error-msg {
    color: #222;
    border: 2px solid #d83024;
}
.post-vote-option {
    margin-bottom: 20px;
}
.star-poll .rating-box{
    width: 100%;
}
.star-poll .rating-box ngb-rating{
    margin-top: 0;
}
.star-poll .rating-box .star{
        margin-right: 10px;
    line-height: normal;
    height: 45px;
    display: flex;
}
.addpoll-popup.new-create-activity-poll .addpoll-footer .custom-number {
    max-height: 40px;
    border: 0;
    width: auto;
    padding: 0;
}
.addpoll-popup.new-create-activity-poll .addpoll-footer input#poll_limit {
    width: 80px;
    min-height: auto;
    height: 40px;
    border: 1px solid #D9D9D9;
    outline: none;
    box-shadow: none
}
.addpoll-popup.new-create-activity-poll .addpoll-footer input#poll_limit.is-invalid  {
    border: 1.5px solid #d83024;
}
.comment-dropdown .ng-select{
    border: 1px solid #D9D9D9;
    box-sizing: border-box;
    border-radius: 5px;
    width: 100px;
    height: 30px;
    padding: 0;
    min-height: auto;
    font-size: 14px;
}
body #comment-visibility.ng-select .ng-arrow-wrapper .ng-arrow {
    border-color: #999 transparent transparent !important;
    border-style: solid !important;
    border-width: 5px 5px 2.5px !important;
    width: auto;
    height: auto;
    background: transparent;
    right: 2px;    
    margin-left: 3px;
}
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
    padding: 5px;
}
body #comment-visibility .ng-dropdown-panel {
    min-width: 162px;
    right: 0;
    left: auto;
}
body #comment-visibility .ng-dropdown-panel .comment-visibility:after,
body #comment-visibility .ng-dropdown-panel .comment-visibility:before,
body #comment-visibility .ng-value-label .comment-visibility:before,
body #comment-visibility .ng-value-label .comment-visibility:after{
    display: none;
}
body #comment-visibility .ng-select-container .ng-value-container .ng-value {
    width: 100%;
}
body #comment-visibility {
    padding: 0 0 0 5px;
    width: 100%;
    z-index: 98;
}
.comment-dropdown {
    width: 100px;
}
body #comment-visibility.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input {
    padding: 0;
}
body #comment-visibility.ng-select div.comment-visibility {
    padding: 0;
}
body #comment-visibility.ng-select div.comment-visibility img{
    margin-top: -1px;
    /*margin-right: 4px;*/
}
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option img{
     margin-top: -1px;
    margin-right: 4px;
}
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
    background-color: transparent;
}
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:hover{
    color: #68d7ff;
} 
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option img.commnet-hover-state {
    display: none;
} 
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:hover img.commnet-normal-state {
    display: none;
} 
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:hover img.commnet-hover-state {
    display: inline-block;
}
body #comment-visibility .ng-value-label .commnet-hover-state {
    display: none;
}
body #comment-visibility.ng-select.ng-select-focused {
    border:1px solid #68d7ff;
}
body #comment-visibility.ng-select.ng-select-opened .ng-arrow-wrapper .ng-arrow,
body #comment-visibility.ng-select.ng-select-focused .ng-arrow-wrapper .ng-arrow{
    border-color: #68d7ff transparent transparent !important;
}
body  #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected, 
body  #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked {
     background-color: transparent; 
}
body #comment-visibility.ng-select > div:focused{
    outline: none;
}
.new-create-activity-poll .addpoll-popup-inner .add-qu-option input.textbox {
    margin-left: 10px;
    width: calc(100% - 80px);
    font-size: 14px;
}
.mtb{
    margin-top: 30px;
    margin-bottom: 20px;
}
.custom-select.is-invalid:focus, .form-control.is-invalid:focus, 
.was-validated .custom-select:invalid:focus, 
.was-validated .form-control:invalid:focus {
    box-shadow: none;
}
.new-create-activity-poll .custom-radio ,
.create-only-poll .custom-radio{
    white-space: nowrap;
}
.del-multiple-option {
    flex: 0 0 8px;
    max-width: 8px;    
    padding-left: 15px;
    padding-right: 15px;
}
.addpoll-question .addpoll-qu-content label.custom-radio .checkmark-radio {
    width: 30px;
    height: 30px;
}
.addpoll-question .custom-radio input[type="radio"] ~ .checkmark-radio:after {
    width: 20px;
    height: 20px;
}
.addpoll-question  .addpoll-popup-inner .add-qu-option .checkmark-radio {
    top: -4px;
}
.addpoll-question   .custom-radio input[type="radio"] ~ .checkmark-radio:after {
    top: 4px;
}
.new-create-activity-poll .addpoll-qu-content label.custom-radio {
    height: 50px;
}
.new-create-activity-poll .addpoll-qu-content label.custom-radio.width50 {
    max-width: 47%;
    flex: 0 0 47%;
}
.new-create-activity-poll .addpoll-qu-content .custom-radio .checkmark-radio:after {
    left: 9px;
    top: 3px;
    width: 8px;
    height: 16px;
}
.small-link.upload-img {
    background-image: none;
}
.new-create-activity-poll .addpoll-popup-inner .add-qu-option input.img-text-box {
    width: calc(100% - 160px);
}
.new-create-activity-poll .addpoll-popup-inner .add-qu-option .upload-img {
    top: 16px;
}
.new-create-activity-poll .addpoll-popup-inner .text-editor .add-qu-option .upload-img {
    top: 50px;
}
.new-create-activity-poll .addpoll-question .odd-polls .poll-img {
    flex: 0 0 48%;
    max-width: 48%;
}
.img-poll-custom-radio i.des{
        width: calc(100% - 0px);
}
.create-bb-outer-wrap .custom-number,
.create-poll-outer-wrap .custom-number{
    width: 69.98px;
    height: 30px;
}
.yes-no-poll-creation .add-qu-option {
    height: 50px;
}

.yes-no-poll-creation label.custom-radio .checkmark-radio {
    width: 30px;
    height: 30px;
}
.addpoll-popup-inner  .yes-no-poll-creation .add-qu-option input[type="radio"] ~ .checkmark-radio:after {
    width: 20px;
    height: 20px;
}
.yes-no-poll-creation .add-qu-option .checkmark-radio {
    top: -4px;
}
.yes-no-poll-creation .custom-radio input[type="radio"] ~ .checkmark-radio:after {
    top: 4px;
}
.create-activity-header + h3 {
    margin-bottom: 15px;
}
.poll-preview  .post-header {
    margin-bottom: 30px;
}
.new-poll .poll-section .form-group.create-poll-textarea {
    margin-bottom: 30px;
}
.polls-tab .vote-box label.height50 {
    height: 50px;
}
.polls-tab .vote-box label.height50 .checkmark-radio{
    width: 30px;
    height: 30px;
}
.polls-tab .vote-box label.height50  input[type="radio"] ~ .checkmark-radio:after {
    width: 20px;
    height: 20px;
}
.polls-tab .vote-box label.height50 input[type="radio"] ~ .checkmark-radio:after {
    top: 4px;
}
.create-only-poll label.height50 {
    height: 50px;
    margin-bottom: 0;
}
.create-only-poll label.height50 .checkmark-radio{
    width: 30px;
    height: 30px;
        top: 8px;
}
.create-only-poll label.height50  input[type="radio"] ~ .checkmark-radio:after {
    width: 20px;
    height: 20px;
}
.create-only-poll label.height50 input[type="radio"] ~ .checkmark-radio:after {
    top: 4px;
}
.poll-preview .post-text {
    margin-bottom: 20px;
}
.create-only-poll .new-poll .poll-section .form-group:last-of-type {
        margin-bottom: 20px;
}
.select-poll-section .add-qu-option{
    height: 50px;
}
.select-poll-section .add-qu-option input.textbox {
    width: calc(100% - 70px);
    margin-left: 10px;
    font-size: 14px;
    color: #222;
}
.star-poll .rating .icon{
    margin-right: 10px;
}
.image-poll-only .poll-thumb-main .checkmark-radio{
    border: none;
    right: -6px;
    left: auto;
    top: -7px;
}
#comment-visibility .comment-visibility + .tooltiptext::after {
    bottom: auto;
    left: auto;
    border-color: transparent transparent transparent #000000cc;
    right: -12px;
    top: 14px;
}
.single-select-preview {
    width: 100%;
    margin-bottom: 20px;
}

.tooltiptext.public-tiltip, .tooltiptext.private-tiltip, .tooltiptext.comment-tltip {
    background: #000000cc;
  text-align: left;
  width: 294px;
  padding: 10px;
  border-radius: 8px;
  display: none;
  position: absolute;
  bottom: auto;
  left: auto;
  color: #fff;    
  font-size: 13px;
  line-height: 17px;
  z-index: 9;
    right: 170px;
    top: 0px;
    height: auto;
    white-space: normal;
}
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:hover
.tooltiptext.public-tiltip {
    display: block;
}
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:hover
.tooltiptext.comment-tltip {
    display: block;
    top: 60px;
}
body #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items .ng-option:hover
.tooltiptext.private-tiltip {
    display: block;
    top: 30px;
}
.edit-.comment-visibility .comment-dropdown {
    width: 90px;
}
.permission-popup .board-popup .popup-bottom .edit-comment-visibility .form-control {
    min-height: 30px;
}
#comment-visibility .ng-dropdown-panel-items{
    overflow: visible;
    overflow-y: visible;
}
body #comment-visibility.ng-select.ng-select-single .ng-select-container {
    margin-top: 3px!important;
}
body #comment-visibility.ng-select .ng-arrow-wrapper {
    padding: 0 15px 0 0px;
    margin-right: 4px;
    margin-top: 2px;
}
body #comment-visibility.ng-select.ng-select-focused .ng-select-container {
    margin-top: 3px;
}
/*.create-post-outer-wrap .write-msg input.error-msg.title-input {
    border: 1px solid #DFE1E6;
}*/
.create-activity-wrap .write-msg-fixed-height-b textarea:focus {
    border-color: #DFE1E6;
}
/*.create-activity-wrap .write-msg-fixed-height-b textarea.error-msg {
    border: 1px solid #DFE1E6;
}*/
.new-create-activity-poll .create-activity-wrap .addpoll-footer .poll-enddate input {
    max-width: 171px;
}
.new-create-activity-poll .addpoll-footer .date-icon a {
    width: 18px;
}
.permission-section .post-enddate-optional-desk {
    margin-top: 5px;
}
.create-activity-wrap .form-control{
    color: #222222;
    font-size: 14px;
}
body .new-create-activity-poll .ng-select .ng-arrow-wrapper .ng-arrow {
        top: 1px;
}
.mb-10 {
    margin-bottom: 10px;
}
.create-activity-wrap .write-msg-fixed-height-b textarea{
    min-height: 98px;
}
.new-create-activity-poll .addpoll-question .addpoll-header h3{
    color: #222222;
    font-size: 16px;
}
.edit-link {
    font-weight: normal;
font-size: 18px;
line-height: 25px;
color: #00A6FB;
}
.new-create-activity-poll .addpoll-question .addpoll-header ul.right li:last-child:before {
    top: 8px;
    width: 7px;
    height: 7px;
}
.new-create-activity-poll .addpoll-question .addpoll-header ul.right li:last-child {
    margin-left: 20px;
}
.new-create-activity-poll .addpoll-question h3.font-weight-normal, .font-14 {
    font-size: 14px!important;
}
.new-create-activity-poll .ng-select div,
.new-create-activity-poll  .ng-select input,
.new-create-activity-poll  .ng-select span {
    font-size: 14px;
}
.member-preview-bb-inner-wrap {
    margin-bottom: 20px;
}
body .member-preview-bb-inner-wrap .ng-select .ng-arrow-wrapper .ng-arrow {
    top: 1px;
}
.member-preview-bb-inner-wrap .reply-attach {
    top: 7px;
}
.create-only-poll .addpoll-popup-inner .add-qu-option input.textbox{
    width: calc(100% - 80px);
    margin-left: 15px;
}
.calendar-top .dropdown-menu.show {
    display: block;
    top: auto!important;
    bottom: 46px;
}
.delete-signle-poll {
    padding-top: 0;
}
.text-editor .delete-signle-poll {
    padding-top: 45px;
}
.poll-preview{

}
.addpoll-qu-content label.single-poll , .multiple-poll-only {
    height: 50px;
}
.create-only-poll .select-poll-section label.height50 .checkmark-radio{ 
    top: 10px;
}
.addpoll-qu-content label.single-poll .checkmark-radio, 
label.multiple-poll-only .checkmark-radio{
    width: 30px;
    height: 30px;
    top: 0;
}
.addpoll-qu-content label.single-poll input[type="radio"] ~ .checkmark-radio:after {
    width: 20px;
    height: 20px;
    top: 4px;
}
.create-activity-wrap .addpoll-popup .form-group.select-poll-section {
    z-index: 8;
}
.front-tab .nav-tabs .nav-link.active {
    color: #6C6C6C;
    font-weight: normal;
    position: relative;
}
.front-tab .nav-tabs .nav-link.active:after {
    content: '';
    width: 100%;
    height: 3px;
    display: block;
    position: absolute;
    bottom: -14px;
    background: #00a6fb;
    left: 0;
    right: 0;
}
.create-dropdown .dropdown-menu a.dropdown-item {
    border-bottom: 1px solid #E0E0E0;
}
.front-tab .nav-tabs .nav-item:first-of-type .nav-link.active:after {
    width: 145%;
    left: -20px;
}
.create-activity-outer-wrap .custom-number {
    max-width: 69px;
}
.member-preview-bb .post-name span.total-no:after {
    /*This code is commented by Ketan Solanki for the story ACTU-661 (Sub Story ACTU-712)*/
    /* content: "";
    background-color: #9da8b7;
    height: 4px;
    width: 4px;
    display: inline-block;
    margin: 0 7px;
    border-radius: 50%;
    position: absolute;
    left: auto;
    top: 8px;
    right: -5px; */
}
.member-preview-bb .post-name span.total-no{
    padding-right: 14px;
}
.iefeedimg + .post-name {margin-left: 10px;}
body .poll-section .ng-dropdown-panel .ng-dropdown-panel-items {
    max-height: 230px;
}
.poll-section .form-group {
    position: relative;
    z-index: 8;
}
.addpoll-popup.new-create-activity-poll .addpoll-footer .custom-number.set-poll-limit {
    max-width: 80px;
}
.postdetail-inner-wrap .comment-visibility::after{
    display: none;
}
.postdetail-inner-wrap .iefeedimg + .post-name {margin-left: 0px;}
.tooltiptext.comment-tooltip {
    width: 150px;
}
.tooltiptext.public-tooltip{
    width: 60px;
}
.tooltiptext.private-tooltip{
    width: 67px;
}
.comment-visibility .tooltiptext.locked-tltip {
    width: 324px;
}
.front-tab {
    position: relative;
    z-index: 10;
    box-shadow: 1px 1px 5px rgba(64, 64, 64, 0.11);
}
.create-activity-tab-width .page-content {
    padding-top: 0px;
}
@media (min-width: 993px) {
    .create-activity-tab-width .page-content.container-fuild {
        padding-right: 27px;
    }
}
.profile-preview .edit-profile.cropped-edit-profile {
    z-index: 11;
}
.create-activity-wrap .write-msg-fixed-height-b.bb-textarea textarea {
    min-height: 200px!important;
}
.less-padding-settings .permission-section {
    padding: 5px 30px 30px 30px;
}
.less-padding-settings .setting-section {
    padding: 25px 30px 5px 30px;
}
.create-poll-setting .setting-section{
    border-bottom: 0;
}
.create-bb-outer-wrap {
    padding-bottom: 60px;
}
.create-poll-setting .permission-section{    
    margin-top: -10px;
}
.create-dropdown .dropdown-menu a.dropdown-item:hover b{
    color: #006bd0;
    transition: all 0.3s ease-in-out;
}
.addpoll-popup.new-create-activity-poll .addpoll-footer input#end_date::placeholder {
    text-align: left;
}
.member-preview-bb-inner-wrap .post-name span.total-no {
    padding-right: 0;
}
.create-activity-outer-wrap {
    box-shadow: 0 2px 4px 1px rgb(0 0 0 / 4%);
}
.member-preview-bb{
    pointer-events: none;
}
.no-border-one{
border-bottom: none !important;
}
/* CSS for the story ACTU-661 ends Here*/
/* CSS for ACTU-733 starts here*/
.poll-preview .member_poll.poll-thumb-img a {
    border: 0;
}
/* CSS for ACTU-733 ends here*/
/* CSS for ACTU-747 starts here*/
.responsive-break{display: none;}
/* CSS for ACTU-747 ends here*/
/* CSS for COM-6805 starts here*/
.subscription-parent table.subscription-community-list {width: 100%;}
.subscription-parent table.subscription-community-list tr td:first-child {
    min-width: 30%;
    width: auto;
    word-break: normal;
}
.subscription-parent table.subscription-community-list tr td:nth-child(2) {
    min-width: 190px;
    width: auto;
}
.subscription-parent table.subscription-community-list tr td {
    vertical-align: top;
}
/* CSS for COM-6805 ends here*/
/* CSS for COM-6806 starts here*/
.imgTypePollOpen{overflow: hidden;}
/* CSS for COM-6806 ends here*/
/* CSS for ACTU-744 strats here*/
.copied-post-section {
    border: 1px solid #DFE1E6;
    padding: 10px;
    position: relative;
    cursor: pointer;
    width: 100%;
    margin: 20px auto 10px;
    background: #f0fbfb;
}
.copied-post-img {
    height: 150px;
}
.copied-post-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.copied-post-text {
    font-size: 14px;
    line-height: normal;
}
.copied-post-link{
    font-size: 13px;
}
.copied-post-2-section {
    display: flex;
    align-items: center;
}
.copied-post-2-section .copied-post-img {
    width: 32%;
    margin: 0;
    margin-right: 10px;
}
.copied-post-meta-data {
   width: 63%;
    margin-right: 3%;
}
.copied-post-only-title-section .copied-post-meta-data,
.copied-post-all-data-section .copied-post-meta-data {
    width: auto;
    margin-left: 2%;
}
.remove-post {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ccc;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    text-align: center;
    color: #222;
    font-size: 21px;
    line-height: 24px;
    cursor: pointer;
}
.contributor-post.permission-popup .write-msg textarea {
    height: 230px!important;
}
.copied-post-title {
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.contributor-post-wrap .message-box {
    min-height: 568px;
    height: auto;
}
.contributor-post.permission-popup .copied-post-section {
    margin: 10px auto 10px;
}
.contributor-post.permission-popup .copied-post-title{
    margin-bottom: 3px;
}
.contributor-post.permission-popup .copied-post-text{
    margin-bottom: 8px;
}
.show-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 256px;
}
.copied-post-section.post-feeds-listing {
    border: 0;
    border-top: 1px solid #DFE1E6;
    border-bottom: 1px solid #DFE1E6;
    margin: 15px -20px 20px -20px;
    width: auto;
}
.attach-file ul li.new-border.disabled-media-class:hover {
    background: #ebebeb;
}
.member-preview-bb-inner-wrap .copied-post-section{
    width: auto;
    margin: 20px -20px 10px;
    border: 0;
    border-top: 1px solid #DFE1E6;
    border-bottom: 1px solid #DFE1E6;
}
.member-preview-bb-inner-wrap .copied-post-meta-data {
    width: 67%;
    margin-right: 0%;
}
/* CSS for ACTU-744 ends here*/
/* CSS for ACTU-743 starts here*/
.member-listing-wrapper .signinup-popup {
    max-width: 587px;
    min-width: 587px;
    min-height: calc(100vh - 180px);
    max-height: calc(100vh - 110px);
    display: flex;
    justify-content: center;
    /*overflow: auto;
    overflow-y: auto;*/
    margin: 0px auto;
    background: #fff;
    border-radius: .3rem;
    padding: 30px 40px;
}
.member-listing-section {
    width: 100%;
}
.member-listing-logo + h2{
    margin: 11px 0 0;
    line-height: 36px;
}
.communities-list .signinup-popup form .modal-body{
    padding: 10px 0px 00px 0px;
}
body.communities-list{
    background: linear-gradient(180deg,#06a8ff 0,#4f507a 100%);
    height: 100vh;
}
.communities-list .signinup-popup .modal-body {
    padding: 30px 0px;
}
.communities-list .login-btn {
    justify-content: flex-end;
    margin: 25px 0 0;
}
.active-community-list li:last-of-type{
    border-bottom: 0;
}
.communities-list .active-community-list{
    min-height: 200px;
    max-height: calc(100vh - 377px);
    overflow: auto;
    box-shadow: inset 0 20px 20px -20px rgb(0 0 0 / 20%);
}
.member-listing-section .modal-body h2 + hr{
    border-color: transparent;
}
/* CSS for ACTU-743 ends here*/
/* CSS for ACTU-824 starts here*/
.account-id-wrap.subscription-header-box .subs-name{
    margin-left: 0;
}
.subscription-header-box.account-id-wrap .d-flex{
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.subscription-header-box.account-id-wrap {
    box-shadow: none;
    border-radius: 5px 5px 0 0;
    margin-bottom: 0;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 40px;
}
.account-id{
    color: #6c6c6c;
    font-weight: 400;
    font-size: 16px;
}
.no-top-border-radius{
    border-radius: 0px 0px 5px 5px;
}
.account-id-wrap.subscription-header-box .subs-name h2 {
    color: #6c6c6c;
    font-weight: 400;
}
/* CSS for ACTU-824 ends here*/
/* CSS for COM-6915 ends here*/
.plan-main-b .plan-box .btn.expired-btn {
    background: transparent;
    color: #02a6fa;
    box-shadow: none;
    cursor:default;
    font-size: 17px;
} 
.payment-stepper-outer-wrap .order-details-section ul {
    width: auto;
}
.payment-stepper-outer-wrap .order-details-section ul li{
    border: 0;
    padding: 0;
    height: auto;
    font-size: 14px;
    width: auto;
    display: block;
}   
.feature-tool-tip .tooltiptext a{color:#FFF;}
.red-aestrik{color:red;}
.plan-main-b .plan-box .btn.expired-btn:before{background-color: transparent;}
/* CSS for COM-6915 ends here*/
/* CSS for ACTU-823 starts here*/
.subscription-comm-dtl ul{
    border-bottom: 0;
    display: flex;
}
.subscription-comm-dtl .nav-tabs li {
    margin-right: 25px;
}
.subscription-comm-dtl .nav-tabs li a{
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    height: 35px;
    display: block;
}
.subscription-comm-dtl .nav-tabs a.active{
    border-bottom: 3px solid #02a6fa;
    padding-bottom: 8px;
    transition: none;
}
#subscription-dtl .header {
    font-size: 16px;
    color: #6c6c6c;
    margin-bottom: 15px;
}
.plan-links, .plan-links:hover {
    color: #00a6fb;
    text-decoration: none;
}
.subscription-comm-dtl .tab-content{
    margin-top: 25px;
}
#subscription-dtl ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.plan-links:first-of-type {
    margin-right: 15px;
}
.plan-box-inner .max-width ul.plan-features:last-of-type {
    margin-left: 0;
}
#Communities-dtl .ngx-datatable.bootstrap {
    border-top: 1px solid #eff2f5;
}
/* CSS for ACTU-823 ends here*/
/* CSS for ACTU-856 starts here*/
.paid-feature-section{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 40px 0;
    width: 100%;
    margin: 0 auto;
    background: #fff;
}
.badge-icon-ai span{
  height: 52.08px;
  width: 34.07px;
}
.paid-feature-section h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.43px;
  line-height: 36px;
  color: #6C6C6C;
}
.paid-feature-section p {
  color: #767F8C;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 0.3px;
  line-height: 28px;
  margin-bottom: 32px;
  text-align: center;
}
.payment-stepper-outer-wrap .stepper ol.plan-features-class  {
    padding: 0;
}
.payment-stepper-outer-wrap .stepper .plan-features-class li {
    height: auto;
    display: block;
    border: 0px; 
    list-style: decimal outside none;
    display: list-item;
    margin: 0 0 5px 1em;
    font-size: 16px;
}
/* CSS for ACTU-856 ends here*/
/* CSS for ACTU-862 starts here*/
.field-list li {
    color: #656768;
    font-weight: 600;
}
.field-list li span {
    margin-right: 5px;
}
.plan-main-b .plan-box .btn {
    margin-top: 15px;
}
.fixed-height {
    min-height: 360px;
    max-height: 360px;
    position: relative;
}
.plan-main-b .plan-box .btn {
    margin-top: 15px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 15px;
}
.payment-stepper-outer-wrap .order-details-section ul li {
    font-size: 16px;
}
.plan-box-inner .max-width ul.plan-features.custom-plan-feature {
    margin-left: 0;
    min-height: auto;
}
.custom-plan-feature-ul {
    margin-top: 15px;
}
.plan-box-inner .max-width ul.plan-features li{
    margin-bottom: 10px;
}
ul.plan-features.custom-plan-feature li img.blue-tick{
    display: block !important;
}
.plan-box h2 {margin-left: -17px;}
.basic .custom-plan-feature-ul .blue-tick {
    display: inline-block;
}

@media only screen and (max-width: 1343px) {
   .plan-main {
        padding: 40px 10px;
    }
    .plan-main-b > div {
        width: 17.97%;
    }
    .plan-box h2 span {
        font-size: 30px;
    }
}
.plan-box-inner .max-width {
    min-height: 671px;
    max-height: 671px;
}
/* CSS for ACTU-862 ends here*/
/* CSS for ACTU-936 starts here*/
.upcoming-plans-section{
    margin-top: 50px;
}
.upcoming-plans-section > h4{
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    height: 35px;
    display: block;
} 
.upcoming-plans-section .datatable-header-cell-template-wrap{
    font-size: 15px;
    color: #6c6c6c;
    margin-bottom: 15px;
    font-weight: 400;
}  
a.blue-text-link {
    color: #00a6fb;
    text-decoration: none;
}
.upcoming-plans-section .ngx-datatable.bootstrap .datatable-body .datatable-body-row 
.datatable-body-cell:first-of-type,
.upcoming-plans-section  .ngx-datatable.fixed-header .datatable-header .datatable-header-inner 
.datatable-header-cell:first-of-type  {
    text-align: left;
}
.upcoming-plans-section .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell,
.upcoming-plans-section  .ngx-datatable.fixed-header .datatable-header .datatable-header-inner 
.datatable-header-cell {
    text-align: center;
}
.no-upcoming-plans{ text-align: center; margin-top: 30px;}
#subscription-dtl .no-upcoming-plans-wrapper ul{margin-bottom: 10px !important;}
#subscription-dtl .no-upcoming-plans-wrapper ul + hr{margin: 5px 0;}
#subscription-dtl .no-upcoming-plans-wrapper .header{text-transform: uppercase;font-size: 15px;}

/* CSS for ACTU-936 ends here*/
/* CSS for ACTU-987 starts here*/
a.btn.btn-custom.btn-animate.community-owner-button {
    height: 40px;
}
/* CSS forACTU-987 ends here*/
/* CSS for ACTU-970 starts here*/
.only-plan-name p {
    font-size: 16px; 
    margin-top: 15px;
    padding: 0px 0px 0px 0px;
}
/* CSS for ACTU-970 ends here*/
/* CSS for COM-7058 stsrts here*/
.cropped-image-class {
    z-index: 9;
}
.cropped-image-class + .front-tab{
    z-index: 8;
}
/* CSS for COM-7058 ends here*/
/* CSS for ACTU-981 ends here*/
.comment-visibility-views .total-comments{
    position: relative;
}
.comment-visibility-views .tooltiptext{
  background: #000000cc;
  text-align: left;
  width: 294px;
  padding: 10px;
  border-radius: 8px;
  display: none;
  position: absolute;
  bottom: 25px;
  left: -100px;
  color: #fff;
  font-size: 14px;
  line-height: 15px;
  z-index: 9;
  font-weight: normal;
}
.total-comments:hover .tooltiptext {
    display: block;
}
.comment-visibility-views .tooltiptext::after {
    border-color: #000000cc transparent transparent transparent;
    bottom: -12px;
}
/* CSS for ACTU-981 ends here*/
/* CSS for ACTU-1021 starts here*/
.no-activity-center{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.no-activity-center h4 {
    font-size: 20px;;
}
/* CSS for ACTU-1021 ends here*/
/* CSS for (COM-7312 starts here*/
#member_count_txt {cursor: default;}
/* CSS for (COM-7312 ends here*/
/* CSS for COM-7413 starts here*/
.member-listing-wrapper .signinup-popup {
    min-height: auto;
}
.communities-list .active-community-list {
    min-height: auto;
}
.signinup-popup .modal-body > h2 {
    margin: 1.5rem 0 0;
    line-height: 36px;
    font-weight: 400;
    font-size: 20px;
}
.member-listing-section .modal-body h2 + hr {
    margin: 10px 0;
}
.member-listing-wrapper {
    position: absolute;
    left: 50%;    
    top: 50%;
    transform: translate(-50%, -50%);
}
/* CSS for COM-7413 ends here*/
/* CSS for COM-7427 starts here*/
.setting-section .justify-content-end .custom-radio{
    padding-left: 30px;
    margin-bottom : 5px;
}
.setting-section .justify-content-end {
    position: relative;
}
.setting-section .justify-content-end .tooltiptext.public-tiltip {
    left: 0;
    top: -60px;
    z-index: 99;
    width: 255px;
}
.setting-section .justify-content-end .tooltiptext.public-tiltip:after {
    bottom: -12px;
    border-color: #000000cc transparent transparent transparent;
}
.setting-section .justify-content-end .custom-radio:hover + .tooltiptext.public-tiltip,
.editPost-popup .justify-content-end .custom-radio:hover + .tooltiptext.public-tiltip,
.setpermission-popup .justify-content-end .custom-radio:hover + .tooltiptext.public-tiltip{
    display: block;
}
.editPost-popup .tooltiptext.public-tiltip{
    top: -65px;
    right: 0;
    z-index: 99;
}
.justify-content-end .tooltiptext.public-tiltip:after {
    border-color: #000000cc transparent transparent transparent;
    bottom: -12px;
}
.permission-popup.editPost-popup .board-popup .popup-bottom .form-control {
    min-height: 30px;
}
.setpermission-popup .tooltiptext.public-tiltip, 
.setpermission-popup .tooltiptext.private-tiltip, 
.setpermission-popup .tooltiptext.comment-tltip{
    right: -60px;
    bottom: auto;
    top: -60px;
}
body .setpermission-popup #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items 
.ng-option:hover .tooltiptext.private-tiltip {
    top: -60px;    
}
body .setpermission-popup #comment-visibility .ng-dropdown-panel .ng-dropdown-panel-items 
.ng-option:hover .tooltiptext.comment-tltip {
    top: -15px;    
}
.setpermission-popup #comment-visibility .comment-visibility + .tooltiptext::after,
.setpermission-popup #comment-visibility .comment-visibility + .tooltiptext::after{
    border-color: #000000cc transparent transparent transparent;
    bottom: -12px;
    left: 50%;
    right: auto;
    top: auto;
}
.setpermission-popup .justify-content-end .tooltiptext.public-tiltip{
    z-index: 99;
}
.editPost-popup .tooltiptext.public-tiltip.position-tooltip {
    right: 170px;
    top: 0px;
}
/* CSS for COM-7427 ends here*/
/* CSS for ACTU-1027 starts here*/
.profiling-tab .box-header {
    padding: 20px;
}
.profiling-tab .search-bar .search-icon {
    top: 5px;
}
.profiling-question-wrap {
    position: relative;
    background: #fff;
}
.add-new-catgry-wrap {
    border-left: 1px solid #ebebeb;
    margin: 20px 0;
    padding: 20px 20px;
}
.add-new-catgry-wrap h4 {

}
.category-list-wrap {
    position: static;
}
.profiling-table tbody tr td:first-child a {
    padding-left: 10px;
}
.profiling-question-wrap .box-header{
    margin: 0;
}
.profiling-question-wrap a.title-edit img{
    width: 17px;
    height: 17px;
    margin: 0 5px;
}
.back-to-catgry a{
    font-size: 14px;
    letter-spacing: 0;
    color: #6c6c6c;
    border: none;
    text-decoration: none;
    margin-right: 15px;
}
.back-to-catgry button{
    font-size: 14px;
    padding: 8px;
    min-height: auto;
    height: 40px;
}
.back-to-catgry a i {
    margin: 3px 4px 0 0;
}
.profiling-inner-tab1 .profiling-short-detail {
    border-top: 0;
    border-bottom: 1px solid #ebebeb;
}
.icon-tooltip{
    background: #000000cc;
    text-align: left;
    padding: 10px;
    border-radius: 8px;
    display: none;
    position: absolute;
    bottom: 25px;
    left: -30px;
    color: #fff;
    font-size: 14px;
    line-height: 15px;
    z-index: 9;
    font-weight: normal;
    right: -50px;
}
.icon-tooltip.del-categry{ 
    right: -66px;
}
.icon-tooltip.dwnld-categry{ 
    right: -90px;
    left: -90px;
}
.dwnld-categry.icon-tooltip:after{ 
    left: 97px;
}
.box-header h3 a.title-edit {
    position: relative;
    z-index: 10;
}
.profiling-question-wrap a:hover .icon-tooltip{
    display: block;
}   
.icon-tooltip:after {
    content: "";
    position: absolute;
    bottom: -12px;
    margin-left: -5px;
    border-width: 6px;
    border-style: solid;
    border-color: #000000cc transparent transparent transparent;
    left: 40px;
    margin-left: 0;
}  
.icon-tooltip.dwnld-categry {

}
/* CSS for ACTU-1027 ends here*/
/* CSS for COM-6983 starts here*/
.file-upload-section h3 i{
    margin-right: 10px;
}
.file-upload-section .grey-button {
   
    margin: 25px 18px 0 18px;
}
.file-upload-section button img{
    width: 17px;
    height: 17px;
    margin: -4px 0px 0 5px;

}
.file-upload-section a{
    color: #00a6fb;
    margin: 15px 0 0 10px;
    display: inline-block;
    vertical-align: middle;
}
.file-upload-section + .mt-5 .btn-custom {
    min-width: 130px;
}
.uploading-successful {
    border: 1px solid;
    width: 240px;
    height: 45px;
}
.uploading-successful:hover {
    background: transparent;
    color: #28a745;
}
.uploading-successful img{
    width: 17px;
}
.uploading-successful p{
   font-size: 16px;
    margin: 0 5px;
}
.uploading-successful p + img{
   width: 15px;
   cursor: pointer;
}
.btn-outline-danger.uploading-successful {
    padding: 0 10px;
}
.import-file button{
    font-size: 16px;
}
.import-file a{
    display: block;
}
.import-note-section p{
    font-size: 13px;
    line-height: normal;
}
.add-new-category-sections {
    border-left: 1px solid #ebebeb;
    padding: 0 35px 0 20px;
}
.add-new-category-sections .form-group{
    position: relative;
}
.footer-btn .btn{
    min-width: 135px;
}
.question-container .vote-box{
    min-width: auto;
    width: 100%;
    padding: 0;
}
.question-container .vote-box label{
    margin: 0 0 5px 0;
}
.question-container .vote-box .checkmark-radio {
    right: auto;
    left: auto;
    top: 10px;
}
.question-container .custom-radio input[type="radio"] ~ .checkmark-radio:after {
    top: 4px;
}
.question-container .vote-textbox input.textbox {
    height: 43px;
    margin-top: 1px;
}
.root-profiling-btn .btn {
    margin-right: 10px;
}
.profiling-tab .search-bar input[type="text"]#search {
    top: -6px;
}
.section-body {
    min-height: 615px;
}
.profiling-inner-tab1 + .add-new-category-sections {
    padding: 0 25px 0 20px;
}
.profiling-inner-tab1 + .add-new-category-sections form{
    min-height: 615px;
    max-height: 615px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 25px 18px 0 0;
}
body .add-new-category-sections .ng-select.ng-select-single .ng-select-container {
    z-index: 998;
}
.text-truncate{
    max-width: 375px;
}
.text-truncate.text-truncate-tooltip:hover + .icon-tooltip{
    display: block;
    z-index: 99;
}
.add-new-category-sections input:-webkit-autofill,
.add-new-category-sections input:-webkit-autofill:hover,
.add-new-category-sections input:-webkit-autofill:focus,
.add-new-category-sections input:-webkit-autofill:active {
  background: transparent !important;
}
.profiling-inner-tab1 datatable-body-cell .text-truncate{
    max-width: -moz-fit-content;
    max-width: fit-content;
}
h4.p-3.text-center{
    margin-top: 9rem!important;
}
/* CSS for COM-6983 ends here*/
/* CSS for COM-7611 starts here*/
.create-activity-tab-width .media-library .media-img,
.create-activity-tab-width .media-library-video,
.create-activity-tab-width .media-library .attachment-file {
    width: 51px !important;
    height: 45px;
}
.create-activity-tab-width .blk-overlay span  {
    top: 50%;
    transform: translateY(-50%);
}
.create-activity-tab-width .media-library   .file-icon img {
    width: 18px;
    height: auto;
}
.create-activity-tab-width .media-library table thead th:first-child {
    height: 470px;
    vertical-align: middle;
}
.create-activity-tab-width .media-library table thead th img{
    width: 53px;
    margin: 0 0 36px 0;
}
.create-activity-tab-width .media-library table h2 {
    font-size: 26px;
    color: #6c6c6c;
    margin-bottom: 5px;
    text-transform: initial;
}
.create-activity-tab-width .media-library table p {
    font-size: 18px;
    text-transform: initial;
    color: #9da8b7;
}
.datatable-body-cell-label .media-link.text-truncate{
    max-width: 97%;
    display: block;
}
/* CSS for COM-7611 ends here*/
/* CSS for ACTU-214 starts here*/
.signinup-popup.root-popup.register-popup .modal-dialog {
    overflow: visible;
}
.newuser-signup-form .tooltiptext.public-tiltip.password-tooltip {
    left: -180px;
    top: 6px;
    width: 164px;
}
.newuser-signup-form .tooltiptext.password-tooltip::after{
    top: 12px;
}
.newuser-signup-form .tooltiptext.public-tiltip {
    left: -310px;
    top: -5px;
}
.newuser-signup-form .tooltiptext::after{
    top: 25px;
    left: auto;
    margin-left: 0;
    border-color: transparent transparent transparent #000000cc;
    right: -12px;
}
.newuser-signup-form .tooltiptext p{
    color: #ccc7c7;
    line-height: 16px;
}/*
.newuser-signup-form .form-group:hover .tooltiptext.public-tiltip {
    display: block;
}*/
.newuser-signup-form .form-group.error-msg:hover .tooltiptext.public-tiltip {
    display: block;
}
/* CSS for ACTU-214 ends here*/
/* CSS for ACTU-1039 starts here*/
.add-new-category-sections ul li:first-of-type{
    border-bottom: 1px solid #ebebeb;
}
.add-new-category-sections ul li img{
    transform: rotate(270deg);
}
.add-new-category-sections ul li h3{
    margin-bottom: 0;
}
.btn-outline-danger.uploading-successful {
    color: #dc3545;
}
.upload-error-btn button{
    min-width: 130px;
}
.import-file button:hover, button.no-hover:hover {
    background-color: #fff;
    color: #00a6fb;
}
.import-file .btn-animate::before , button.no-hover::before {
    background-color: transparent;
}

/* CSS for ACTU-1039 end here*/
/* CSS for COM-7018 ends here*/
.poll-details-section hr {
    margin: 8px 0 12px;
    border-color: #ebebeb;
}
.signinup-popup.poll-details-popup .modal-dialog {
    max-width: 720px;
    min-width: 720px;
}
.disable-download-poll{    
    cursor: not-allowed;
}
.dwnld-links a {
    display: inline-block;
    font-size: 12px;
    vertical-align: middle;
}
.post-page .ngx-datatable.bootstrap .datatable-body 
.datatable-body-row .datatable-body-cell:last-of-type {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}   
.polls-tab.poll-details-section .post-progress.odd-polls label.custom-radio {
    flex: 0 0 49%;
    max-width: 49%;
}  
.polls-tab.poll-details-section .post-progress.even-polls label.custom-radio {
    flex: 0 0 49%;
    max-width: 49%;
}
.post-page .ngx-datatable.bootstrap .datatable-body .datatable-body-row 
.datatable-body-cell:last-of-type a {
    margin: 0 5px 0 0;
}
/* CSS for COM-7018 ends here*/ 
/* CSS for COM-7483 starts here*/
.rgt-icon .new-admin {
    color: #fff;
    padding: 0 10px;
    height: 35px;
}
.rgt-icon .new-admin:hover {
    background: #00a6fb;
    color: #fff;
}
.root-profile.edit-admin > .white-box {
    padding: 30px 30px;
}
.root-profile.edit-admin form .form-control-placeholder {
    left: 23px;
}
.ownscomm-table tr td , .ownscomm-table thead th{
    padding: 10px 6px;
}
.ownscomm-table .text-truncate-tooltip {
    white-space: nowrap;
    width: 200px;
    overflow: hidden;
    display: inline-block;
    text-overflow: ellipsis;
    cursor: pointer;
}
.ownscomm-table .tooltiptext.private-tiltip {
    max-width: 300px;
    min-width: 90px;
    right: auto;
    width: auto;
    bottom: 80%;
    top: auto;
}
.private-tiltip.tooltiptext::after {
    border-color: #000000cc transparent transparent transparent;
    bottom: -11px;
}
.ownscomm-table .text-truncate-tooltip:hover + .tooltiptext.private-tiltip {
    display: block;
}
/*CSS used for ngbtooltip used in datatable starts here*/
.ngx-datatable .datatable-body-cell .datatable-body-cell-label > div[tooltipclass="tooltip-custom-class"] {
    cursor: pointer;
}
.tooltip.show.tooltip-custom-class > * {
    text-align: left!important;
}
.tooltip.show.tooltip-custom-class {
    max-width: 300px!important;
    min-width: 100px!important;
    z-index: 999!important;
}
.tooltip-inner {
    max-width: 100% !important;
    padding: 5px 0!important;
}
.tooltip-custom-class .tooltip-inner span{
    border-bottom: 1px solid #999;
    display: block;
    padding: 2px 5px!important;
    line-height: normal;
}
.view-all.tooltip-custom-class .tooltip-inner {
    padding: 6px 10px!important;
}
.tooltip-custom-class .tooltip-inner span:last-child{
    border-bottom: 0!important;
}
/*CSS used for ngbtooltip used in datatable ends here*/
.tab-content.admin-table .datatable-body {
    min-height: calc(100vh - 332px)!important;
}
/* CSS for COM-7483 ends here*/
.custom-radio.progress.position {
    overflow: inherit;
}
.custom-radio.progress.position span{display: flex;}
.help-tip {
    left: 18px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 26px;
    cursor: default;
}

.help-tip:hover small {
    display: block;
    opacity: 1;
    transition: opacity 0s linear 1s;
}

.help-tip .tooltip {
    font-size: 12px;
}

.help-tip small {
    display: none;
    text-align: left;
    background-color: #000000cc;
    padding: 5px;
    max-width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
    white-space: normal;
    top:30px;
    max-width: 500px;
    width: max-content;
}

.help-tip small:after {
    width: 100%;
    height: 40px;
    content: '';
    position: relative;
    top: -40px;
    left: 0;
    opacity: 0;
}

label.custom-radio.position:hover .opt-text-on-hover {
    display: block;
}

@keyframes gradient {
    0% {
        color: red;
        background-position: left center;
      }
      100% {
        color: blue;
        background-position: right center;
      }
}
/* CSS for COM-8687 ends here*/  
.custom-width .modal-dialog {
    max-width: 48%;
    margin-top: 10%;
  }

  .tooltip.show.info_tooltip {
      max-width: 350px !important;
      min-width: 350px !important;
      z-index: 999 !important;
      padding: 8px !important;
  }

  .tooltip.show.info_tooltip > * {
    text-align: left!important;
    padding: 8px !important;
}
@media only screen and (max-width: 1499px){
    .member_poll.poll-thumb-img:nth-child(4n) {
         margin-right: 40px; 
    }
    .tax-total-tabel table tr td:first-of-type {width: 68%;}
    .display-manual-questions .root-profiling-btn .btn-custom {min-width: 110px;}
}
@media only screen and (max-width: 1230px) {
  .postdetail .feed-btn .btn-cancel {margin-right: 10px;}
  .postdetail .attach-file .post-feed-btn .btn-custom {padding: 0 6px;}
  .postdetail .attach-file ul li {margin-right: 7px;}
  .postdetail .attach-file ul li img {width: 15px; height: 18px;}
  .postdetail .attach-file {height: auto;padding: 5px;display: block;}
  .postdetail .attach-file ul {margin-bottom: 10px;}
  .attach-file.mdb-20 .text-muted.danger { bottom: 15px;left: auto;right: 10px;}
  .community-switch-tab {width: 90%;}
}
@media only screen and (max-width: 567px) {
  .postdetail .attach-file ul {margin-bottom: 0px;}
}
@media only screen and (max-width: 1199px){
    .member_poll.poll-thumb-img:nth-child(4n) {
         margin-right: 10px; 
    }
    #subscription-dtl ul li:last-of-type a{
      display: block;
    }
    .polls-tab.poll-details-section .padding-content{
      padding: 0; 
    }
}
@media only screen and (max-width: 1160px) {
  .name-initals{width: 100px;height: 100px;}
  .profile-img-wrap figure{width: 100px;height: 110px;}
  .fliter-ul li {padding: 5px 5px 5px 10px;}
  .name-initals span {font-size: 40px;}
  .postdetail .postreply-box .right-section {margin-top: 0;}
  .postdetail .postreply-box .right-section .btn {min-width: 80px;height: 30px;}
  .signup-edit-wrap form {width: 93%;}
  .signup-sec-wrap .signinup-popup, .newuser-signup-form .signinup-popup  {width: 95%;}
  .signup-sec-wrap .signinup-popup .modal-body, .newuser-signup-form .signinup-popup .modal-body  {padding: 10px 20px;}
/*  .newuser-signup-text,.signup-edit-wrap, .newuser-signup-text1 {padding-top: 19%;}*/
  .newuser-signup-text {padding: 0 20px;}
  .tax-total-tabel table tr td:first-of-type {width: 58%;}
  .community-switch-tab {width: 100%;}
  .setting-section .justify-content-end .tooltiptext.public-tiltip {left: -60px;}
  .setting-section .justify-content-end .tooltiptext.public-tiltip:after {right: 50px;left: auto;}
  .setting-section .justify-content-end i.des {white-space: unset;width: auto;}
  .setting-section .justify-content-end .checkmark-radio {top: 2px;}
  .add-new-category-sections .root-profiling-btn .btn-custom {min-width: 85px;}
  app-question-details .box-header h3 {width: 65%;}
  app-question-details .box-header h3 div:first-of-type {width: calc(100% - 95px);}
  app-question-details .box-header h3 div:nth-child(2) {width: 95px;} 
}
@media only screen and (max-width: 1047px){
  .create-dropdown .btn-addcomm{margin-left:0;}
  .member-preview-bb .likedis-btn label .like-check {padding: 0 3px;}
  .member-preview-bb .likedis-btn span {margin-left: 4px;font-size: 12px;}
  .likedis-btn label .like-check img {width: 20px;}
}
@media only screen and (max-width: 900px) {
   .name-initals {width: 80px;height: 80px;}
   .profile-img-wrap figure {width: 80px;height: 90px;}
   .profile-completness-wrap p {font-size: 13px;}
   .name-initals span {font-size: 35px;}
    button.float-button-new-posts {left: 35%;}
   .activity-name, .activity-link-grp-outer {width: 100%;float: none;}
   .activity-link-grp-outer { justify-content: flex-start;}
   .create-dropdown .btn-addcomm {width: 40px; font-size: 0;}
   .front-tab{justify-content: space-between;}
   .create-dropdown .btn-addcomm {font-size: 0;padding: 0;justify-content: center;align-items: center;}
   .create-dropdown .btn-addcomm span {margin-right: 0;    margin-top: -7px;}
   .front-tab .nav-link {padding-right: 7px;color: #222;padding-left: 7px;}
   .setting-section-bg h2 {padding: 30px 10px 0px 10px;}
   .setting-section {padding: 30px 15px 10px 15px;}
   .setting-field label {font-size: 12px;}
   .setting-field .comment-dropdown select.form-control:not([size]):not([multiple]) {
    font-size: 12px;    width: 80px;}
   .permission-section {padding: 20px 15px;}
   .permission-field label {font-size: 12px;width: 75%;margin-right: 5px;}
   .custom-number { padding: 2px 4px;}
   .permission-section .post-enddate-optional .form-control {}
   .permission-section .post-enddate-optional .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
      font-size: 12px;
    }
    .permission-section .post-enddate-optional .form-control::-moz-placeholder { /* Firefox 19+ */
      font-size: 12px;
    }
    .permission-section .post-enddate-optional .form-control:-ms-input-placeholder { /* IE 10+ */
      font-size: 12px;
    }
    .permission-section .post-enddate-optional .form-control:-moz-placeholder { /* Firefox 18- */
      font-size: 12px;
    }
    .activity-button-section {text-align: center;display: block;}
    .activity-button-section button {width: 100%;}
    .create-btn {margin-left: 0;margin-top: 10px;}
    .responsive-width {width: 100%;}
    .col-md-9.responsive-width1 {flex: 0 0 100%;max-width: 100%;}
    .delete-signle-poll {    position: absolute;right: -80px;top: 13px;}
    .delete-row.delete-signle-poll {margin-top: 0;}
    .new-create-activity-poll .custom-radio, .create-only-poll .custom-radio {
      white-space: normal;
    }
    .like-dislike-sections .total-comments {font-size: 11px;}
    .total-comments {margin-left: 10px;}
    .front-tab .nav-tabs .nav-item:first-of-type .nav-link.active:after {width: 164%;left: -17px;}
    .front-tab .nav-tabs .nav-item:first-of-type .nav-link.active{ margin-left: -5px;}
    .less-padding-settings .setting-section {padding: 25px 10px 5px 10px;}
    .less-padding-settings .permission-section {padding: 5px 10px 30px 10px;}
    .w-100.remove-100{width: auto!important;}
    .comment-visibility-views .tooltiptext { right: 0; left: auto; }
    .comment-visibility-views .tooltiptext::after {left: auto;right: 30px;}
    .setting-section .justify-content-end .custom-radio {font-size: 12px;}
    .setting-section .justify-content-end .tooltiptext.public-tiltip:after {right: 90px;left: auto;}
    .setting-section .justify-content-end {text-align: right;}
}

@media only screen and (max-width: 849px) {
  .setting-section .justify-content-end .checkmark-radio {left: 36px;}
  .setting-section .justify-content-end .checkmark-radio {height: 18px;width: 18px;}
  .setting-section .justify-content-end .custom-radio .checkmark-radio:after {top: 0px;left: 5px;}
}
@media only screen and (max-width: 1200px) {
  .notificationwrap {
    width: 43em;
  }
}
@media only screen and (max-width: 1086px) {
  .notificationwrap {
    width: 37em;
  }
}
@media only screen and (max-width: 1040px) {
  .plan-table-wrap thead th:first-of-type, .plan-table-wrap tbody td:first-of-type {width: 50%;}
  .plan-table-wrap thead th:nth-child(3), .plan-table-wrap tbody td:nth-child(3) {width: 25%;}
  .plan-table-wrap thead th:nth-child(2), .plan-table-wrap tbody td:nth-child(2) {width: 25%;}
  .tax-total-tabel table tr td:first-of-type {width: 50%;}
  .tax-total-tabel table tr td:nth-child(2) {width: 21%;}
}
@media only screen and (max-width: 992px) {
  .create-comm-box .add-des {padding: 86px 25px 30px;}
  .community-tab .tab-content h3.recent-trending-pointer {width: auto;}
  .tab-popup.permission-popup .modal-dialog, 
  .contributor-post.rm-padding .modal-dialog, .editPost-popup.permission-popup .modal-dialog {max-width: 98%;min-width: 98%;}
  .permission-popup .attach-file {position: relative;}
  .permission-popup .board-popup .dropdown-menu {left: -20px!important;}
  .permission-popup .uploadimg-box-outer .uploadimg-box .img-box  {width: 89px;}
  .permission-popup.contributor-post ngb-datepicker.dropdown-menu {left: -20px!important;}
  .video-modal .modal-body {width: 100%;}
  .post-img-modal.permission-popup .modal-body video {width: 98%;}
  .profile-img-wrap {padding: 30px 5px 5px 5px;}
  .profile-holder-name {font-size: 14px;line-height: normal;}
  .search-section-input-wrap .search-section {    width: calc(100% - 185px);}
  .post-list-box1 {padding: 20px 10px 10px 10px;}
  .post-list-box1.postreply-box .right-section {margin-top: 0;}
  .post-list-box1 .total-view {height: auto;}
  .leftside-filter-tab-content {padding-left: 7px;padding-right: 7px;}
  .leftside-filter-outer {flex: 0 0 16.666667%;max-width: 16.666667%;}
  .leftside-filter-about-content{flex: 0 0 33.333333%;max-width: 33.333333%;}
  .leftside-filter-tab-content .participant-post .post-name h3 {font-size: 12px;}
  .leftside-filter-about-content .community-tab .tab-content .overflow-recent-posts.width-auto{width: 90%;margin-left: 0;}
  .leftside-filter-about-content #menu1 .post-name {margin-left: 0;width: 90%;}
  .community-tab .uname {width: 38px;height: 38px;font-size: 12px;}
  .leftside-filter-tab-content .postreply-box{    padding: 20px 10px 10px 10px;}
  .leftside-filter-tab-content .likedis-btn label .like-check {padding: 0 5px;}
  .post-list-box1.postreply-box .carousel_wrapper {margin: 0 -10px;}
  .notificationwrap {width: auto;}
  .notification-inner ul li {display: inline-block;}
  .notification-inner ul li span.ago {margin-left: 46px;}
  .quotafull-white-box {width: 90%;}
  .quotafull-feature-section p {width: 100%;}
  .subscription-plan-new  .plan-main .col-sm-6{margin-bottom: 20px;}
  .post-poll .btn {padding: 4px 6px;font-size: 10px;height: 19px;}
  .attach-file.mdb-20 .text-muted.danger {width: 80px;}
  .plan-table-wrap thead th:first-of-type, .plan-table-wrap tbody td:first-of-type {width: 40%;}
  .plan-table-wrap thead th:nth-child(3), .plan-table-wrap tbody td:nth-child(3) {width: 30%;}
  .plan-table-wrap thead th:nth-child(2), .plan-table-wrap tbody td:nth-child(2) {width: 30%;}
  .stepper-form-field-wrap input {width: 85%;}
  .tax-section-outer table tr td:first-of-type {width: 70%;}
  .tax-section-outer table tr td:last-of-type {width: 30%;}
  .all-post-statistics .modal-dialog {max-width: 90vw;}
  .view-statistics ul li a {font-size: 13px;}
  .all-post-statistics .active-filter-comm .weekly-dropdown .dropdown-menu {left: auto !important;right: 0!important;}
  .all-post-statistics .active-filter-comm .weekly-dropdown .dropdown-menu:before{top: -16px!important;right: 9px!important;left:auto!important;}
  .all-post-statistics .active-filter-comm .weekly-dropdown .dropdown-menu:after{top: -14px!important;right: 8px!important;left:auto!important;}
  .postreply-box {padding: 20px 15px 10px 15px;}
  .member-preview-bb .likedis-btn span {}
  .member-preview-bb .likedis-btn label .like-check {padding: 0 3px;}
  .member-preview-bb .likedis-btn span {margin-left: 4px;}
  .member-preview-bb .likedis-btn label span.total-no {padding-left: 7px;position: relative;margin-left: 0;}
  .remove-post {font-size: 18px;line-height: 21px;width: 20px;height: 20px;}
  .copied-post-section.post-feeds-listing {margin: 15px -15px 20px -15px;}
  .postreply-box.mdb-20 .copied-post-section.post-feeds-listing {margin: 15px -20px 20px -20px;}
  .postreply-box.mdb-20.post-list.post-list-box1 .copied-post-section.post-feeds-listing {margin: 15px -10px 20px -10px; }
  .root-user-post-detail .postreply-box.mdb-20 .copied-post-section.post-feeds-listing{margin: 15px -15px 20px -15px;}
  .member-preview-bb-inner-wrap .copied-post-section {margin: 20px -15px 10px;}
  #subscription-dtl .header {font-size: 13px;}
  .upgrd-pln button {padding: .375rem .35rem;font-size: 12px;}
  .subscription-parent .white-box.subscription-comm-dtl{padding: 30px 10px;}
  .upcoming-plans-section .datatable-header-cell-template-wrap {font-size: 13px;}
  app-question-details .box-header h3 {width: 55%;}
  .newuser-signup-form .form-group.error-msg:focus .tooltiptext.public-tiltip {
    display: block;}
  .newuser-signup-form .tooltiptext.public-tiltip {left: 0px;top: -65px;}
  .newuser-signup-form .tooltiptext::after {    top: auto;left: 10px;
    border-color: #000000cc transparent transparent transparent;
    right: auto;bottom: -11px;}
  .newuser-signup-form .tooltiptext.public-tiltip.password-tooltip {left: 0;top: -35px;}  
  .newuser-signup-form .tooltiptext.password-tooltip::after {top: 35px;}
  .col-lg-5.col-md-12 .totalcomm {margin-top: 40px;}
}
@media only screen and (max-width: 767px) {
  .custom-tab .nav-pills .nav-link.completed:before {left: 2px;}
  .community-tab .tab-content .overflow-recent-posts.width-auto {width: 100%;}
  .postdetail .postreply-box .post-text { margin: 15px 0 5px 0;}
  .profile-preview .white-box.media-library{padding:10px;}

  .task-table.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {padding-left: 8px;}
  .task-table.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:last-of-type {padding: 15px 0;}
  .task-table.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:last-of-type .datatable-body-cell-label img{width: 100%;}
  .leftside-filter-wrap {display: none;}
  .leftside-filter-wrap-mobile {display: block;position: absolute;right: 10px;text-align: center;z-index: 1;}
  .leftside-filter-wrap-mobile.participation {position: relative;}
  .search-section input[type=search] {background: #fff url('search.d6e4b0ee67e81a01.svg') no-repeat 8px center;width: 15px;height: 15px;min-height: inherit;padding: 10px;;color: transparent;cursor: pointer;display: flex;justify-content: center;border-radius: 25px;-webkit-appearance: textfield;-webkit-box-sizing: content-box;font-family: inherit;font-size: 100%;transition: all .5s;}
  .search-section {width: auto!important;position: relative!important;left: 0px;}
  .search-section-input-wrap .shortby-dropdown {margin-left: 0;  margin-right: 40px;}
  .header-inner{ align-items: stretch;justify-content: space-between;padding-left: 0!important;}
  .search-section input::-webkit-search-decoration,.search-section input::-webkit-search-cancel-button {display: none;}
  .search-section input[type=search]:focus {z-index: 999;position: relative;padding-left: 32px;color: #000;background-color: #fff;cursor: auto;width: calc(100% - 42px);background-color: #fff;}
  .search-section input[type=search]:hover {background-color: #fff;}
  .search-section:after {content: none;}
  .search-section .close-serach{position: absolute;right: 11px;top: 9px;z-index: 99999;font-size: 18px;color: #999;opacity: 0;display: block;}
  .search-section input[type=search]:focus + .close-serach{opacity: 1;transition: 0.9s ease-in all;}
  .search-section input:-moz-placeholder {color: transparent;}
  .search-section input::-webkit-input-placeholder {color: transparent;}  

  .task-table.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {
    padding-left: 8px;}
  .task-table.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:last-of-type {
padding: 15px 0;}
.task-table.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:last-of-type .datatable-body-cell-label img{
  width: 100%;
}
.panellist-banner {    height: 100px!important;}
.leftside-filter-wrap-mobile {z-index: 2;}
  .task-table.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:last-of-type .datatable-body-cell-label img{ 
    width: 100%; }
  .zoom-btn-wrap { width: 74%;}
  .contributor-post .modal-dialog {min-height: 390px;}
  .date-icon a {width: 17px;}
  .nav-post {display: block;}
  .popup-bottom,.nav-post-inner {width: 100%!important;}
  .permission-popup .board-popup .popup-bottom {margin-top: 0;}
  .write-msg-fixed-height-a textarea{height: 100px!important;overflow: scroll!important;}
  .post-btn {position: relative;bottom: 0;}
  .contributor-post-wrap .message-box {height: auto;}
  .contributor-post.permission-popup .attach-file { position: relative; bottom: 0; }
  .nav-post-inner {height: auto;}
  .write-msg-fixed-height textarea, .tab-popup .write-msg-fixed-height textarea {height: 118px!important;overflow:scroll!important; margin-bottom: 10px;}
  .permission-popup .board-popup .dropdown-menu {top: auto !important;bottom: 20px;left: auto!important;right: 0;}
  .write-msg-fixed-height-b textarea {height: 100px!important;overflow: scroll!important;}
  .permission-popup.editPost-popup .uploadimg-box-outer {height: auto;}
  .permission-popup.editPost-popup .uploadimg-box-outer .attach-file {position: relative;bottom: auto;} 
  .panellist-banner { height: 100px!important;}
  .post-img-modal .closebtn {right: 0px;}
  .leftside-filter-about-content, .leftside-filter-outer {flex: auto;max-width: 100%;}
  .leftside-filter-wrap-mobile.post-detail-filter {right: 10px;} 
  .leftside-filter-wrap-mobile.post-detail-filter .filter-img .dropdown-menu.show {right: 0!important;left: auto!important;}
  .leftside-filter-wrap-mobile.post-detail-filter .dropdown-menu:before {left: auto;right: 0;}
  button.float-button-new-posts {left: 50%;transform: translateX(-50%);-moz-transform: translateX(-50%);-webkit-transform: translateX(-50%);}
  .community-tab .tab-content h3 {font-size: 13px;}
  .leftside-filter-about-content .community-tab .tab-content .overflow-recent-posts.width-auto {width: auto!important;}
  .leftside-filter-about-content #menu1 .post-name {margin-left: 10px;width: auto !important;}
  .postdetail .attach-file {display: flex;padding: 0 10px;height: 54px;}
  .leftside-filter-about-content .sticky-top, .leftside-filter-outer .sticky-top{top: 70px;z-index: unset;position: static;}
  .coming-soon-section {height: auto; min-height: 200px;font-size: 20px;}
  .template-section-wrapper {display: block;margin-left: 0;}
  .view-keywards-section-wrap , .template-section-outer {width: 100%;margin: 0;}
  .newuser-signup-text, .newuser-signup-form , .signup-edit-wrap{width: 100%;
    float: none;
    display: block;
    align-items: center;
    justify-content: unset;
    height: auto;
    flex-direction: unset;}
  .signup-edit-wrap form {width: 100%;}
  .signup-sec-wrap .signinup-popup, .newuser-signup-form .signinup-popup {width: 100%;margin: 0 auto;padding: 0 15px;}
  .login-bg .newuser-signup-form .signinup-popup .modal-dialog { max-width: 100%;min-width: 100%; min-height: auto;}
  .newuser-signup-form .signinup-popup .modal-dialog {display: block;min-height: auto;}
  .welcm-signup-text-center {text-align: center;}
  .newuser-signup-form {padding-bottom: 20px;padding-top: 10px;}
  .welcm-signup-text {padding-top: 35px;}
  .welcm-signup-text {font-size: 22px;line-height: 26px;}
  .subtext-signup-text {font-size: 17px;}
  .mobile-sub-welcome-txt {display: block;}  
  .newuser-invitee-signup-text{display: none;}  
  .mobile-welcome-txt {font-size: 19px;color: #6c6c6c;line-height: normal;margin-bottom: 10px;font-weight: 600;}
  .mobile-sub-txt {font-size: 16px;color: #6c6c6c;line-height: normal;margin-bottom: 20px;font-weight: 500;}
  .signup-form-m-t {padding-bottom: 50px;margin-top: 45px;}
  .login-bg {position: relative; margin-top: -55px;height: auto;}
  .login-bg.login-bg-respnsive .newuser-signup-form{height: 100vh;display: flex;}
  .close-preview.preview-sign-up {left: auto;right: 15px;display: block;justify-content: unset;align-items: unset;transform: none;}
  .rm-padding-bdy1 .footer, .rm-padding-bdy .footer, .rm-padding-bdy2 .footer {position: relative;}
  .back-to-form-link { left: 15px;}
  .signup-edit-wrap {align-items: unset;padding-top: 50px;}
  .newuser-signup-text {justify-content: unset;padding-top: 0px;}
  .newuser-signup-form-wrap {justify-content: unset;padding-top: 0px;}
  .signup-edit-wrap, .newuser-signup-text {padding-top: 50px!important;}
  .cancle-save-btn-wrap {position: relative;bottom: 0;}
  .forms-login-section-wrap-outer {/*height: 100vh;display: flex;align-items: center;justify-content: center;*/}
  .bulletin-part .btn{font-size: 13px;height: 28px;padding: 0 10px;}
  .quotafull-feature-section h3 {font-size: 20px;}
  .quotafull-feature-section p {font-size: 16px;line-height: 26px;}

  .qr-mobile-view {display: block;}
  .qr-desktop-view {display: none;}
  .qr-code-popup .modal-body {padding: 20px;}
  .qr-mobile-view .qr-code-instructions, .qr-code-details{ width: 100%;margin-right: 0px;}
  .qr-mobile-view .qr-code-img-wrap {margin: 0 auto 15px;}
  .qr-mobile-view .qr-code-img-wrap {width: 115px;height: 115px;}
  .qr-mobile-view .copy-code-input input {width: 172px;margin:  0 auto;display: block;}
  .qr-mobile-view .app-dwnod-links {text-align: center;}
  .qr-mobile-view .app-dwnod-links h2 {font-weight: 600;font-size: 16.6903px;line-height: 23px;color: #000000;}
  .qr-mobile-view .qr-popup-close {margin-top: 30px;}
  .qr-mobile-view .qr-popup-close button{width: 160.55px;height: 33.21px;}
  .qr-mobile-view .qr-code-instructions h3{font-size: 16px;}
  .qr-mobile-view .qr-code-instructions ul li {font-size: 12px;line-height: 16px;padding-bottom: 10px;}
  .qr-mobile-view .qr-code-details p {margin-bottom: 15px;}
  .qr-mobile-view .copy-code-input {margin-bottom: 20px;}
  .qr-code-instructions ul li:before {top: 2px;}
  .attach-file.mdb-20 .text-muted.danger {width: auto;position: relative;bottom: 0;}
  .imgTypePollOpen{overflow: visible;}
  .signup-loader img {width: 90px;}
  .new-profile-tab ul li:last-child .tooltip{right: auto;transform: translate(calc(100vw - 199px), -41px) !important;}
  .new-profile-tab ul li:last-child .bs-tooltip-top .arrow {left: calc(65% - .4rem);}
}
@media only screen and (max-width: 730px) {
  .permission-popup.contributor-post ngb-datepicker.dropdown-menu {left: -50px!important;}
  .self-file-attach .dropdown, .self-edited-bulletin-msg .dropdown  {display: block;}
  .self-msg-div .self-edited-bulletin-msg:hover .dropdown {position: relative;}
  .self-msg-div .self-edited-bulletin-msg .dropdown span {width: 6px;display: inline-block;}
  .self-msg-div .self-file-attach {width: 276px;}
  .self-msg-div .bulletin-brd-file .repost-media-wrap1 {width: 231px;}
  .self-msg-div .dropdown {display: block;}
  .attach-file.mdb-20 .text-muted.danger {position: absolute;bottom: 0;right: auto;left: 10px;}
  .view-statistics ul li a {font-size: 13px;}
  .all-post-statistics .modal-dialog {max-width: 95vw;}
  .participationModal .modal-dialog {max-width: 95vw;}
  .participationContainer{display: flex;flex-direction: column;gap: 15px;}
  .view-statistics ul li a {font-size: 12px;width: 133px;}
}
@media only screen and (max-width: 600px) { 
  .contributor-post-wrap {display: block;}
  .message-box,.contributor-post-grey-area {width: 100%!important;}
  .contributor-post-grey-area {background: transparent;}
  .contributor-post-grey-area .btn-custom {position: relative;bottom: 0;display: block;}
  .contributor-post.permission-popup .write-msg textarea{height: 100px!important;}
  .contributor-post .contributor-post-grey-area .dropdown-menu {bottom: 0;left: auto!important;right: 0;top: auto !important;}
  .contributor-post.rm-padding .modal-dialog {min-height: auto;}
  .permission-popup.contributor-post ngb-datepicker.dropdown-menu {left: auto!important;right: 0;} 
  .quotafull-white-box{height: 440px;}
  .quotafull-feature-section {margin-top: 30px;}
  .badge-icon-ai {margin-bottom: 40px;}
  .comment-visibility .tooltiptext {font-size: 11px;width: 234px;white-space: normal;}
  .comment-visibility .tooltiptext {width: 214px;padding: 8px;text-align: center;line-height: normal;left: -70px;}
  .comment-visibility .tooltiptext::after {left: 45%;}
  .member-listing-wrapper .signinup-popup {max-width: 90%;min-width: 90%;}
  .member-listing-wrapper {width: 100%;}
}
@media only screen and (max-width: 768px) {
  .postreply-box .carousel_wrapper .carousel-item {height: 320px;}
  .post-img-modal.permission-popup .modal-content { width: 99vw;}
  .post-img-modal .closebtn {right: 15px; top: 20px;} 
  .panellist-banner {    height: 150px!important;}
  .right-side-class {width: 66%;}
  .adhoc-points {width: 40px;margin: 1px 10px 0px 7px;}
  .adhoc-input-wrapper label{font-size: 12px;} 
/*  .signup-edit-wrap , .newuser-signup-text, .newuser-signup-text1{padding-top: 41%;}*/
  .subscription-white-box {width: 90%;}
  .subscription-feature-section h3 {font-size: 20px;}
  .subscription-feature-section p {font-size: 16px;}
  .comments-count-class-wrap {flex: 0 0 100%;max-width: 100%;display: flex;justify-content: space-between;align-items: center;}
  .comments-count-class{ text-align: left;display: inline-flex;}
  .comments-count-class-wrap .right-section {display: inline-flex;margin-right: -10px;}
  .logo-with-banner img {width: 110px;height: 110px;}

}
@media only screen and (max-width: 580px) {
  .postreply-box .carousel_wrapper .carousel-item {height: 300px;}
.show-member-number .ngx-datatable.bootstrap .datatable-body 
.datatable-body-row .datatable-body-cell {font-size: 11px;}
.member-table .gray-text {font-size: 12px;}
.postreply-box .carousel_wrapper {margin: 0px -14px 0px -14px;}
.right-side-class {width: 70%;}
.pull-right.right-side-class {float: none!important;}
.pull-right.right-side-class {width: 100%;}
.edit-pic.pull-left {margin: 0 auto;}
.adhoc-table-earn-pts tr td:first-of-type {padding: 0 5px 0 0px;}
.zoom-btn-wrap { display: block;width: 100%;text-align: center;padding-bottom: 5px;}
.zoom-btn-wrap>div {text-align:center;}
.reset-btn-wrap,.range-slider {width: 100%;text-align: center;}
.range-slider{ margin-bottom: 10px;}
.modal-body-inner {max-height: max-content;}
.new-cropper-class {height: 315px;}
img.source-image {height: 300px;}
}
@media only screen and (max-width: 567px) {
  .postreply-box .carousel_wrapper .carousel-item {height: 280px;}
  .custom-tab .nav-pills .nav-link.completed:after {top: 17px!important;}
  .custom-tab .nav-pills .nav-link.completed:before {top: 15px!important;}
  .poll-ques-sec {width: 100%;}
  .poll-vote-now {margin-top: 0!important;float: none!important;
    text-align: left!important;
    width: auto;margin-bottom: 0!important;}
  .pnelist-user-profiling .ng-select.ng-select-single 
  .ng-select-container .ng-value-container .ng-value {width: 66%;margin-top: -4px;}
  .show-member-number .rgt-icon {width: auto;clear: both; display: flex; margin-top: 0px; }
  .show-member-number .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {padding: 0.68rem 0.60rem;}
  .show-member-number .search-bar .search-icon {right: 10px;}
  .show-member-number .rgt-icon .btn {margin-right: 47px !important;}
  .community-tab .uname { margin-right: 0;}
  .community-tab .recent-img {margin-right: 0;}
  .white-box.media-library {padding: 5px;}
   .participant-post .mobile-post .post-name {width: 100%;margin-left: 0;}
  .pad-lr {padding: 15px 25px 15px 45px!important;}
  .flagged-post-inner .left-navigate:after, .flagged-post-inner .right-navigate:after {font-size: 25px;}
  .post-img-modal.permission-popup .modal-body video {height: 310px;}
  .social-media-icon-wrap ul li { font-size: 0px;width: 35px;height: 35px;text-align: center;padding: 10px 0;}
  .social-media-icon-wrap ul li i {font-size: 16px; margin-right: 0px;}
  .or-cnt {font-size: 14px;}
  .shortby-dropdown {    padding-right: 0;}
  .leftside-filter-about-content .community-tab .tab-content .overflow-recent-posts.width-auto {margin-left: 10px;}
  .notification-inner ul li span.ago {margin-left: 30px;}
  body.rm-padding-bdy,body.rm-padding-bdy1 { padding-bottom: 0px;}
  .login-bg.invitee-login { padding-bottom: 38px;}
  .document-name-wrap {width: 100%;height: 80px;}
  .dwnld-link {width: 100%;}
  .bulletin-file-name span {width: 100px;}
  .file-icon1 {height: 40px;width: 13px;}
  .self-msg-div .bulletin-brd-file .repost-media-wrap1, .next-msg-div .bulletin-brd-file .repost-media-wrap1 {height: 145px;width: 160px;}
  .self-msg-div .bulletin-brd-file .repost-media-wrap, .next-msg-div .bulletin-brd-file .repost-media-wrap {height: 145px;width: 160px;margin-right: 15px;}
  .next-msg-div .next-file-attch {width: 220px;}
   .self-msg-div .self-file-attach{width: 220px;}
   .postreply-box .self-msg-div .post-name {width: 100%!important;padding-right: 25px;}
   .postdetail-inner-wrap  p.error-text{width: 100%;}
   .root-community-chat .bulletin-brd-comment-reply {padding: 10px 0px 10px 0px;}
   .root-community-chat .self-msg-div .repost-media-wrap1:hover .dropdown {right: 7px;}
   .root-community-chat .self-msg-div .self-edited-bulletin-msg .dropdown {right: 7px;}
  .self-msg-div .edited-bulletin-msg .dropdown-menu:before{left: auto;right: 9px;}
  .next-msg-header-div .reply-box-short-name {font-size: 11px;height: 25px;} 
  .root-community-chat .self-msg-div .edited-bulletin-msg {margin-right: 23px;}
  .self-msg-div .post-attachment-file1 {margin-right: 15px;width: 100%;}
  .root-community-chat .next-msg-div {margin-bottom: 0;}
  .root-community-chat .next-msg-div .self-edited-bulletin-msg {margin-bottom: 5px;}
  .root-community-chat.postreply-box .postreply-box {padding: 0px 0 0 10px!important;}
  .root-community-chat .self-msg-div .bulletin-brd-file .repost-media-wrap1, 
  .root-community-chat .next-msg-div .bulletin-brd-file .repost-media-wrap1 {margin-bottom: 5px;}
  .postdetail-inner-wrap.root-activity-chat .postreply-box {padding: 3px 0px!important;}
  .file-icon-wrap {width: 26.19px;height: 26.19px;}
  .bulletin-file-name h6 {width: 80px;}
  .repost-media .file-icon-wrap img {width: 15px;height: 24px;}
  .next-msg-div .post-attachment-file1 {width: 89%;}
  .new-profile-tab .nav-pills .nav-link, .new-profile-tab .nav-pills .nav-link.active {padding: 10px;}
  .add-comm-input-wrap {display: block;position: relative;}
  .add-comm-input {width: 100%;}
  .add-comm-search-btn {margin-right: 40px;text-align: right;margin-top: 15px;}
  .new-profile-tab .tooltip{position: absolute;bottom: 10px;}
  .switch-community-tooltip.tooltip .tooltiptext {top: -64px;width: 260px;}
  .no-community-listed {text-align: center;padding: 0 10px;}
  .home-tooltip {padding: 7px;font-size: 12px;line-height: 16px;}
  .postdetail .postreply-box .comments-count-class-wrap .right-section {margin-top: 0;}
  .comments-count-class-wrap {margin-top: 10px;}
  .panellist-banner .penalist-logo {bottom: -20px;}
  .comment-visibility-views .tooltiptext::after {left: 30px;right: auto;}
  .comment-visibility-views .tooltiptext {right: auto;}
  .new-profile-tab ul li:last-child .bs-tooltip-top .arrow {left: calc(90% - .4rem);}
}
@media only screen and (max-width: 480px) {
  .search-section-input-wrap .shortby-dropdown {margin-left: 0;  margin-right: 0px;}
  .post-attachment-file { padding: 5px;}
  .file-icon img {width: 15px;height: 15px;}
  .file-icon {padding: 3px;}
  .post-attachment-file {width: 270px;}
  .post-attachment-file .att-left p span {width: 80%!important;}
  .post-attachment-file .att-left {width: 90%;}
  .community-tab .tab-content .overflow-recent-posts.width-auto {width:80%;}
  .postreply-box .carousel_wrapper .carousel-item {height: 260px;}
  .pnelist-user-profiling .ng-select.ng-select-single 
  .ng-select-container .ng-value-container .ng-value {width: 56%;}
  .forgot-password, .login-btn a, .login-btn p {font-size: 13px;}
  .login-btn p a {display: block;}
  .board-popup .nav-link {padding: .1rem .5rem;font-size: 14px!important;}
  .panellist-banner .penalist-logo {width: 70px!important;height: 70px!important;    
    bottom: -15px!important;}
  .panellist-banner {background-size: cover;}
  .panellist-banner {height: 100px!important;}
  .post-name h3 {font-size: 13px;}
  .cuppa-dropdown .dropdown-list {right: 0;}
  .new-cropper-class {height: 275px;}
  img.source-image {height: 250px;}
  .wrapper-class-for-cropper {}
  .navbar-expand-lg .nav-notification .dropdown-menu {min-width: 270px;}
  .notification-pagination {display: block;}
  .notification-pagination span {display: block; margin-bottom: 5px;}
  ul.ngx-pagination li {margin: 0 5px;}
  .flagPostResponsive {padding-top: 0px;
    margin-top: 0px; }
    .flagPostResponsive h4 {
    display: inline-block;
    vertical-align: top;
    margin-top: -10px;
    }
    .flagPostResponsive .post-link-grp {
    display: inline-block;
    vertical-align: middle;
    padding-top: 48px;
    margin-top: -10px;
    padding-left: 10px;
    }
    .flagPostResponsive .flagged-header{
      padding-top: 0px;}
    .flagPostResponsive a {width: 43%}
  .bulletin-box .new-post-tag {display: block;}
  .next-msg-header-div .post-name span.total-no {display: block;padding-left: 10px;}
  .next-msg-header-div .post-name span:last-child:before {left: 0;margin: 0;}
  .release-pt-chkbox-wrap-outer .btn-custom {padding: 5px;font-size: 14px;}
  .activity-ul span {width: 27%;padding: 0 8px;font-size: 13px;}
  .bulletin-box .new-post-tag {display: inline;}  
  .textarea-padding-top{padding-top: 130px;}
  .postdetail-inner-wrap .bulletin-brd-comment-sec .postreply-box {padding: 3px 10px!important;}
  .app-dwnod-links > ul li {width: 43%;margin-right: 5px;}
  .app-dwnod-links > ul li a, .app-dwnod-links > ul li a img {width: 100%;}
  .sign-out-wrapper button {height: 38px;padding: 0 8px;color: #d93025;font-weight: 500;font-size: 12px;}
  .active-community-user figure figcaption {font-size: 13px;line-height: 15px;}
  .active-community-user figure img {margin-right: 6px;}
  .active-community-user , .active-community-list li{padding: 10px;}
  .signed-community {display: block;}
  .add-another-comm {margin-top: 20px;}
  .signinup-popup .switch-comm-button .btn-custom {min-width: 100px;margin-bottom: 15px;}
  .comment-visibility-views .tooltiptext {width: 224px;}
}
@media only screen and (max-width: 449px) {
  .home-tooltip {right: 0px;width: 210px;}
  .home-tooltip:before{right: 5px;}
  .comment-visibility .tooltiptext {width: 164px;
    padding: 8px;
    text-align: center;
    line-height: normal;left: -70px;}
    .comment-visibility .tooltiptext::after {left: 45%;}
      .comment-visibility .tooltiptext::after {left: 51%;}
  .post-name span.total-no {padding-left: 12px;}
  .post-name span.total-no::before, .likedis-btn label span.total-no::before {
    left: -4px;top: 5px;}
  .postreply-box .short-name.iefeedimg {font-size: 10px;}
  .iefeedimg {height: 30px;width: 30px;min-width: 30px;}
  .postdetail .postreply-box .short-name.iefeedimg {margin-right: 5px;}
  .comment-visibility img {background-color: transparent;width: 13px;height: 13px;}
  .comment-visibility {padding-left: 10px;}
  .comment-visibility::before {left: 2px;}
  .comment-visibility::after {right: 2px;}
  .new-poll-button{font-size: 10px;}
  .responsive-break {display: block;}
  .new-post-tag.responsive-tags {display: inline-block;}
  .new-post-tag.responsive-tags:first-of-type {margin-left: 5px;}
}
@media only screen and (max-width: 375px) {
  .post-name {width: 75%!important;}
  .ticket-img-box .video {width: 150px;}
  .polls-tab ul li a {padding: 15px 5px;}
  .posted-poll-pad .poll-dropdown {padding: 10px 12px !important;}
  .participant-post .mobile-post .post-name span:last-child {display: inline-block;}
  .post-name span {font-size: 9px!important;}
  .collapse-poll-btn .postpoll-btn {padding: 4px 13px;font-size: 11px;height: 20px;margin-top: -4px;margin-right: -9px;}
  .report-details-class {padding: 15px;}
  .btn-wrap input[type="submit"], .cancel-button-class {width: 100px;}
  #formContent {padding: 20px;} 
  .aspect-btn-wrap {width: 62%;}
  .new-post-tag, .new-poll-button {display: block;    margin-left: 0;}
  .next-msg-header-div .post-name {width: 100%!important;}
  .bulletin-brd-comment-reply {overflow-y: auto;overflow-x: hidden;}
  .bulletin-brd-comment-sec .post-name{width: 100%!important;    overflow: auto;white-space: normal;}
  .self-msg-info-div .post-name span.total-no {margin-bottom: 0;    margin-top: 0;}
  .root-community-chat .self-msg-div .self-edited-bulletin-msg {margin-bottom: 3px;}
  .exist-account {width: 50%;}
  .signinup-popup .btn-custom.register-btn{min-width: 100px;}
  .home-tooltip {right: 0px;width: 210px;}
  .participant-post .mobile-post .post-name {overflow: visible;width: 100%!important;}
  .participant-post .mobile-post .post-name span.tooltiptext:last-child {display: none;white-space: normal;overflow: visible;width: 150px;left: -62px;}
  .participant-post .mobile-post .post-name .comment-visibility:hover span.tooltiptext {display: block;}
  .comment-visibility .tooltiptext::after {left: 51%;}
  .post-name span.total-no {padding-left: 12px;}
  .post-name span.total-no::before, .likedis-btn label span.total-no::before {
    left: -4px;top: 5px;}
  .postreply-box .short-name.iefeedimg {font-size: 10px;}
  .iefeedimg {height: 30px;width: 30px;min-width: 30px;}
  .postdetail .postreply-box .short-name.iefeedimg {margin-right: 5px;}
  .comment-visibility img {background-color: transparent;width: 13px;height: 13px;}
  .comment-visibility {padding-left: 10px;}
  .comment-visibility::before {left: 2px;}
  .comment-visibility::after {right: 2px;}
  .new-poll-button{font-size: 10px;}
  .postdetail-inner-wrap .iefeedimg + .post-name {width: 100%!important;overflow: visible;}  
  .new-post-tag.responsive-tags:first-of-type {margin-right: 10px;}
  .new-profile-tab ul li:last-child .bs-tooltip-top .arrow{right: 6px;}
}
@media only screen and (max-width: 367px) {
  .postdetail-reply .post-attachment-file{margin-left: -35px;}
  .postreply-box .carousel_wrapper {margin: 0 -10px;}
  .post-attachment-file .att-left p { width: 100%;}
  .postreply-box .carousel_wrapper .carousel-item {height: 230px;}
  .pnelist-user-profiling .ng-select.ng-select-single 
  .ng-select-container .ng-value-container .ng-value {width: 48%;}
  .media-library .search-bar input[type="text"].search-view {width: 94%;}
  .postreply-box {padding: 10px!important;}
  .post-icon.col-2 {padding-left: 0;}
  .post-poll .btn {padding: 0 6px;margin-right: -6px;font-size: 10px;height: 20px;}
  .navbar-expand-lg .nav-notification .dropdown-menu {min-width: 212px;}
  .root-community-chat.postreply-box {padding: 20px 0px 10px 0px!important;}
  .signinup-popup .btn-custom.register-btn{min-width: 85px;}
  .home-tooltip {right: 0px;width: 160px;}
  .copied-post-section.post-feeds-listing {margin: 15px -10px 20px -10px;}
  .postreply-box.mdb-20 .copied-post-section.post-feeds-listing {margin: 15px -10px 20px -10px;}
}

@media only screen and (min-height: 720px) {
  .customise-walkthrough2 .intro-tour-hint-wrapper {transform: translateY(-31%) !important;top: 31% !important;}
}
@media only screen and (min-height: 900px) {
  .customise-walkthrough2 .intro-tour-hint-wrapper {transform: translateY(-35%) !important;top: 35% !important;}
  .customise-walkthrough3 .intro-tour-hint-wrapper {transform: translateY(-61%) !important;top: 61% !important;}
}
@media only screen and (min-height: 1024px) {
  .customise-walkthrough2 .intro-tour-hint-wrapper {transform: translateY(-36%) !important;top: 36% !important;}
  .customise-walkthrough3 .intro-tour-hint-wrapper {transform: translateY(-58%) !important;top: 58% !important;}
}
@media only screen and (min-height: 1080px) {
  .customise-walkthrough2 .intro-tour-hint-wrapper {transform: translateY(-36%) !important;top: 36% !important;}
  .customise-walkthrough3 .intro-tour-hint-wrapper {transform: translateY(-58%) !important;top: 58% !important;}
}
@media only screen and (min-height: 1200px) {
  .customise-walkthrough2 .intro-tour-hint-wrapper {transform: translateY(-37%) !important;top: 37% !important;}
}

@media(max-width: 2400px){
	.all-post-statistics .modal-content{width: 80%;margin: 0 auto;}
}
@media(min-width: 993px){
	.container {max-width: 100%;padding: 0px 18px;}
	.page-content.container-fuild{padding-left: 27px;padding-right: 27px;}
	.active-wrapper .fullview-grid {padding-left: 30px;}	
	.front-tab,.front-preview.profile-preview {width: calc(100% + 27px);max-width: initial !important;right: 0;}
	.preview-large .edit-profile {left: 55px;}
}
@media(min-width: 993px){
	.tabContainer {width: 100% !important}
}
@media(min-width: 1500px){	
	.profile-preview .edit-profile {left: 90px;}
	.active-wrapper .fullview-grid {padding-left: 30px;}
	.container,.page-content.container-fuild {max-width: 100%;padding-left: 27px;padding-right: 55px;}
	.profile-right{padding-right: 20%;}	
	.padding-right{padding-right: 20%;}	
	.preview-large .edit-profile {left: 55px;}
	.members-table .datatable-body {overflow-x: hidden;}
	.coupon-box-main .col-md-4{flex: 0 0 22%;max-width: calc(25% - 45px);}
	.coupon-box-main .col-md-4:nth-child(4n){margin-right: 0;}
	.dash-total .comm-box{margin-right: 5%;}		
	.multiple-eliminate-box{right: -193px;}	
}
@media(max-width: 1499px){
	.community-parent .nav-tabs .nav-link{margin: 5px 22px 5px 0;}
/*	.community-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:nth-child(3),.community-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:nth-child(3) {width: 165px!important;}
	.community-table .ngx-datatable.scroll-horz .datatable-body {overflow-x: hidden !important;}*/
	/*.community-table .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell:first-child, .community-table .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell:first-child {width: 65px !important;font-size: 12px;}*/
	.cuppa-dropdown .c-btn span span{white-space: nowrap;text-overflow: ellipsis;display: table-cell;overflow: hidden;max-width: 110px;}
	.subscription-main-area.plan-box-inner .max-width{min-height: 700px;max-height: 700px;}	
	.post-images {width: 118px;height: 100px;}
	.postreply-box .post-images {width: 130px;height: 120px;}
	.postreply-box .post-images.doc-upload{width: 100%;height: auto;}

	.profiling-short-detail ul li {margin-right: 80px;}
	.poll-thumb-img:nth-child(4n){margin-right: 0;}	
    .root-profile .post-name h2{width: 290px;}
    .create-comm-box{margin-bottom: 60px;}
    /*.coupon-box-main .col-md-4{justify-content: center;display: flex;}
	.coupon-box-main .col-md-4:nth-child(3n+1){justify-content: flex-start;display: flex;}
	.coupon-box-main .col-md-4:nth-child(3n){justify-content: flex-end;display: flex;}*/
	.penalist-profile .u-name h2 {width: 290px;}
	.coupon-box-main .col-md-4 {padding: 0;flex: 0 0 33.333333%;max-width: calc(33.33% - 40px);}
	.coupon-box-main .col-md-4:nth-child(3n){margin-right: 0;}
	.dash-total .comm-box p, .newpost-box .right-side p {font-size: 15px;}
	.dash-total .comm-box h3, .newpost-box .right-side h3{font-size: 26px;}
	.newpost-box .left-side{width: calc(100% - 95px);}	
	.newpost-box{padding: 12px;}
	.edit-panellist .scroll-form {max-height: 380px}
	.panelranking-box-new .table_scroll{max-height: 295px;}
	.subscription-plan .plan-box {margin-right: 0;}
	.plan-main{padding: 40px 35px;}
	.all-post-statistics .modal-content{width: 100%;}
}
@media(max-width: 1418px){
	.form-group.bottom-section.last-section{
		display: block;
		text-align: center;
	  }
}
@media(max-width: 1290px){
	.add-member-content-section .button-section ul li{padding: 0 7px;}
	.add-member-content-section .social-icon{padding-right: 10px;}
	.add-member-content-section .ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell{font-size: 13px;}
	.subscription-main-area.plan-box-inner .max-width{padding: 30px 20px;}	
	.modal-container{max-width: 99% !important; margin-inline: 10px;}
}
@media(max-width: 1270px){
	.community-table .ngx-datatable.scroll-horz .datatable-body {overflow-x: auto !important;}
	/*.container {padding: 0 40px;}*/
	.profile-preview .edit-profile {left: 30px;}
	.post-images {width: 100px;height: 90px;}
	.post-images:nth-child(5){margin-right: 0;}
    .post-images > img,.post-images > video {width: 100px;height: 90px;}
    .community-table .ngx-datatable.scroll-horz .datatable-body{width: 100% !important;}
    .edit-admin .white-box, .user-profile .white-box {padding: 20px;}
    .root-profile .post-name .root-name {margin-left: 15px;}
    .custom-tab .nav{width: 100%;}
    .progress-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {right: 680px;top: 75px !important;}
    .mycoupon-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {right: 114px;margin-top: -78px;}
    body .user-profile .earned-profile-box {padding: 0 0 15px;}
    .header-searchdropdown{width: 500px;}
    .member-white-box .search-bar input[type="text"].search-view{width: 500px;}
    .dash-total .comm-box{padding: 10px;}  
    .newpost-box .left-side p {font-size: 13px;} 
    .newpost-box .left-side span.post-time{font-size: 9px}
    .newpost-box .left-side {width: calc(100% - 85px);}
	.newpost-box .right-side{padding: 0;}
	.dash-total .comm-box p, .newpost-box .right-side p{font-size: 14px;}
	.filter-dropdown .selected-list .c-list .c-token .c-label {max-width: 130px;}
	.eliminate-box{right: -193px;}
	.panelranking-box-new .table_scroll{max-height: 240px;}
}
@media(max-width: 1199px){
	/*.container {padding: 0 15px;}*/	
	.newpost-box .left-side {border-right: none;width: 100%;}
	.newpost-box{flex-direction: column;align-items: flex-start;}
	.newpost-box .right-side{flex-direction: row;align-items: center;padding: 0;margin-bottom: 20px;}
	.newpost-box .right-side h3{margin: 0 10px 0 0;}	
	.comm-tab .nav-tabs .nav-link{font-size: 13px;}
	.dash-total .comm-box h3, .newpost-box .right-side h3{font-size: 23px;}	
	.nav-pills .nav-link{min-width: auto;}
	.edit-profile{width: 100px;height: 100px;bottom: -45px;left: 36px;}
	.add-des {padding: 86px 40px 77px;}
	.edit-profile span.addicon{margin-top: 5px}
	.profile-preview .edit-profile{width: 130px;height: 130px;left: 50px;}
	.empty-post img {padding: 10px 0 14px;}
	.empty-post h2 {font-size: 24px;}
	.empty-post p {font-size: 16px;line-height: 24px;margin: 0 0 20px;}	
	.border-box{padding: 20px;}
	.border-box .blank-btn{font-size: 15px;}
	.border-box .upload-success, .border-box .upload-error{min-width: auto;font-size: 15px;}
	.root-profile .post-name h2 {font-size: 22px;width: 220px;}
	.edit-admin .white-box, .user-profile .white-box {padding: 20px;}
	.root-profile .post-name img{width: 80px;height: 80px;}
	.root-profile .totalcomm p{font-size: 15px;}
	.edit-pic{width: 98px;height: 98px;}
	.edit-pic span.short-name {min-height: 98px;}
	.ngx-datatable.scroll-horz .datatable-body {overflow-x: auto !important;}
	.filter .gray-text{font-size: 12px;white-space: nowrap;}
	.filter .dropdown {margin-right: 10px;}
	.filter .dropdown:last-child{margin-right: 0;}
	.cuppa-dropdown::after{right: -3px;}
	.filter .dropdown.date-dropdown {margin-right: 12px;}	
	.color-picker{right: 0;left: 0 !important;top: 100% !important;}
	.color-picker .arrow.arrow-right {top: -10px !important;left: 0 !important;right: -20px !important;margin: 0 auto !important;border-width: 5px 10px !important;border-color: transparent transparent #777 !important;}
	.pannumber-box{width: 100%}
	section.pan-verification {margin-top: 30px;}
	.navbar .navbar-nav li:last-child .nav-link span,.navbar .navbar-nav li:last-child .nav-link span.profile-name {max-width: 115px;}
	.post-statistics .modal-dialog {max-width: 90%;min-width: 90%;}
	.profiling-short-detail ul li {margin-right: 60px;}
	.reward-short-detail ul li .btn-custom{font-size: 14px;padding: 7px;height: auto;}
	.profiling-inner-tab .single-response label{width: 147px;margin-right: 20px;}
	.community-tab ul li a, .polls-tab ul li a{width: 100%;}
	.profiling-btn .btn{margin-left: 15px;}
	.news-right{padding-right: 0;}
	.new-profile-tab .nav-pills .nav-link{padding-left: 12px;font-size: 15px;}
	.new-profile-tab .nav-pills li a img {margin-right: 10px;}
	.user-profiling-inner{padding: 20px;margin-top: 0;}
	.user-profiling-inner .single-response label.custom-radio {width: 30%;margin-right: 12px;margin-bottom: 20px;}
	.complete-profile h2 {font-size: 22px;margin-bottom: 5px;}
	.user-profile .complete-profile p{font-size: 15px;}
	.addpoll-footer{align-items: flex-end}
	.addpoll-footer .comm-class{flex-flow: column;align-items: flex-start !important;padding-right: 10px;}
	.addpoll-footer .label{margin-bottom: 15px;}
	.addpoll-footer input {max-width: 100%;}
	.addpoll-footer .comm-class:last-child{margin-right: 0;}
	.polls-tab .padding-content {padding: 10px 20px 25px;}
	.polls-tab ul li a{padding: 15px 10px;margin: 0 10px 0;}
	.rating-box {padding: 10px;}
	.addmember-popup .modal-dialog {max-width: 90%;min-width: 90%;margin-left: auto;margin-right: auto;}
	.addmember-popup .border-box {padding: 15px;}
	.panelranking-box .pl-0{padding-right: 0 !important;}
	.panelranking-box .pr-0{padding-left: 0 !important;}
	.panelists-ranking {margin-top: 20px;}
	.statistics .mdb-30 {margin-bottom: 20px;}
	.age-map {margin-top: 20px;}
	.post-progress label.custom-radio span{left: 10px;}
	.poll-thumb-img{width: 23.5%;margin-right: 10px;margin-bottom: 10px;}	
	.post-images:nth-child(5){margin-right: 0;}
	.post-images {width: 88px;height: 80px;}
	.user-tickets-tab .empty-tickets{padding-top: 80px;}
	 .header-searchdropdown{width: 400px;padding: 20px;}
    .member-white-box .search-bar input[type="text"].search-view{width:400px;}
    .addpoll-footer label{margin-bottom: 5px;}
    .permission-popup .addpoll-popup-inner .btn{margin-bottom: 0;}
    .coupon-box {width: 100%;}
    .progress-box{min-width: 450px;}

    .progress-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {right: 580px;top: 85px !important;}
    .permission-popup .addpoll-footer .comm-class:first-child .form-control {width: 120px;}
    .addpoll-popup .addpoll-popup-inner .footer-pollaction{padding-bottom: 10px;}
    body .white-box.earned-box{padding: 20px;}
    .coupon-box-main .col-md-4{max-width: calc(33.33% - 20px);margin-right: 30px;}
    .dash-total .comm-box{width: 23.75%;margin-right: 2%;}  
    .dash-total .comm-box p, .newpost-box .right-side p{text-align: right;font-size: 14px;}
    .flagged-post-inner h3.flagged-post-title{font-size: 14px;}
    .reviewpost-detail {padding: 10px 10px 20px;}
    .newpost-box .left-side p{overflow: hidden;white-space: nowrap;text-overflow: ellipsis;margin: 9px 0 10px;}
   	.eliminate-box{display: none;}
    .comm-pro-qu{padding: 15px;}
    .cuppa-dropdown .c-btn span span{max-width: 80px;}
    .comm-tab .filter a{font-size: 12px;}
    .about-community label{max-width: 130px;white-space: nowrap;text-overflow: ellipsis;display: block;overflow: hidden;}
    .date-to{display: none;}
    .header-searchdropdown .form-group.date-icon{margin-bottom: 18px;}
    .reward-history-tab .header-searchdropdown .row {margin-bottom: 0;}
    .reward-history-tab .header-searchdropdown .footer-btn{margin-bottom: 5px;}
    .ipad-toggle .dropdown-toggle::after{margin-left: 8px;}
    .panelranking-box-new .table_scroll{max-height: 350px;}
    .plan-box-inner .top-sec .max-width {padding: 15px;}
	.plan-box h2 span {font-size: 33px}
    .plan-box-inner .max-width ul.plan-features{margin-top: 10px;margin-left: 0;}
    .plan-box .btn {min-width: 100%;padding: 0 15px;font-size: 16px;}
    .plan-box-inner .max-width{padding: 15px;}
    .plan-main {padding: 25px;}  
    .plan-box-inner .max-width ul.plan-features li{margin-bottom: 10px;}  
    .plan-box-inner .max-width ul.plan-features {min-height: 90px;}

}

@media (max-width:1024px) {	
	.modal-container{max-width: 99% !important; margin-inline: 10px;}
	.header-part .card {width: 24%;}
	.about-community, .community-tab {width: auto;}
	.create-comm .custom-tab .tab-content {margin-left: 0;}	
	.navbar .navbar-nav .nav-link.btn-addcomm{font-size: 15px;}
	.page-content.empty-page{padding-top: 20px;}
	.empty-page h3 {margin: 0 0 20px;}
	.empty-page h1 {line-height: 32px;margin: 20px 0 14px;font-size: 22px;}
	.empty-page p {line-height: 22px;font-size: 15px;}	
	.fullpage-empty{height: calc(100vh - 120px) !important;display: flex;justify-content: center;align-items: center;}
	.fullpage-empty .empty-page img{width: 70px;}
	.ngx-datatable.bootstrap {font-size: 13px !important;}	
	.rootfront-nav .container {max-width: 900px;}
	.admin-header .right-sec > span {margin-right: 30px;}
	.root-profile .post-name .root-name {margin-left: 15px;}
	.root-profile .post-name h2{margin-bottom: 7px;}	
	body .responsive-filter .filter-label{display: flex;justify-content: center;align-items: center;color: #222;font-size: 15px;}
	body .responsive-filter .filter-label img{margin-right: 7px;}
	.responsive-filter{display: block;}
	.ipad-none{display: none;}
	.ipad-toggle{display:none;position: absolute;min-width: 140px;background: #fff;z-index: 9;padding: 0 10px;box-shadow: -1px 1px 7px 4px rgba(0, 0, 0, 0.09);top: 27px;border-radius: 4px;}
    .ipad-toggle .date-dropdown a.dropdown-toggle{width: 100%;display: flex;justify-content: space-between;}
    /*.cuppa-dropdown .dropdown-list {width: auto !important;}*/
    .ipad-toggle .dropdown {margin-right: 20px;display: block;width: 100%;border-bottom: 1px solid #eee;padding: 10px 0;}
	.filter .dropdown:last-child{border:none;}
	.ipad-toggle.toggle-show{display: block;}
	.cuppa-dropdown .selected-list .c-angle-down, .cuppa-dropdown .selected-list .c-angle-up {right: 0!important;width: 11px !important;}
	.comm-sortby .cuppa-dropdown .selected-list .c-angle-down, .comm-sortby .cuppa-dropdown .selected-list .c-angle-up{right: -8px !important;}
	.postdetail .postreply-box .right-section .btn{margin-left: 16px;}
	.attach-file .btn-custom{padding: 0 15px;}
	.attach-file{padding: 0 10px;}
	section.pan-verification h1 {font-size: 26px;}
	section.pan-verification.otp-verify p{margin: 0 0 30px;font-size: 16px;}
	section.pan-verification.otp-verify .pannumber-box p{margin: 0 0 30px;}
	.dropdown.filter-dropdown{margin-left: 12px;}
	.profiling-table tbody tr td:first-child a{padding-left: 0;font-size: 15px;}
	.profiling-inner-tab ::placeholder {font-size: 15px;}
	/*.profiling-inner-tab .vote-box{padding: 10px 0 0;}*/
	.vote-box h3{font-size: 15px;}
	.vote-box label{font-size: 15px;}
	.profiling-inner-tab .single-response label{margin-right: 15px;}
	.about-community, .community-tab{padding: 15px;}	
	.profiling-btn .btn {padding-right: 20px;padding-left: 20px;}
	.coupon-table thead th{padding-top: 20px;}
	.rewards-header{margin: 10px 0 0;}
	.coupon-table tbody td a{font-size: 13px;white-space: nowrap;}	
	.user-profiling-inner .form-group {margin-bottom: 20px;}
	.progress-box{min-width: auto;padding: 20px 20px 10px;}
	.progress-box .left-sec{margin-right: 30px;}
	.complete-profile .u-name {margin-left: 20px;}
	.user-points-tab .points-table tr td:first-child{padding-right: 0;}
	.user-points-tab .points-table tr td {padding: 10px;}
	.addmember-popup .modal-body .right-div{max-width: 100%;flex: auto;overflow: scroll;margin-top: 15px;}
	.addmember-popup .modal-body .sm-width.left-div {max-width: 50%;flex: 0 0 50%;}
	.addmember-popup .modal-body .left-div, .addmember-popup .modal-body .right-div{padding: 20px;}
	.selected-metrics ul.users-option li {margin: 0 10px 15px 0;padding: 10px 14px;font-size: 14px;width: 47%;}
	.selected-metrics .close-icon{position: absolute;right: 15px;top: 8px;}
	.navbar .navbar-nav li:last-child .nav-link span.profile-name {max-width: 112px;}
	.news-right a {font-size: 14px;}
	.progress-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {right: 565px;top: 90px !important;}
	.empty-profile-page h2 {font-size: 20px;}
    .empty-profile-page p{font-size: 16px;}
    .empty-profile-page .empty-link{margin-top: 15px;width: 283px;}
    .empty-profile-page{height: 370px;}  
    .coupon-box{padding: 10px;}  
    .coupon-box .coupon-title h4{font-size: 14px;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;width: 100%}
    .coupon-box p img {margin-right: 7px;}
    .poll-vote-now{margin-top: -32px;font-size: 14px;}
    .profiling-inner-tab .box-header h3{width: calc(100% - 60px);}
    .profiling-inner-tab .box-header h3 span{width: 100%;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
    .postreply-box .feed-main-box {margin-left: 0;}
    .panellist-banner{height: 200px;}
    .panellist-banner .penalist-logo {width: 100px;height: 100px;bottom: -25px;}
    .logo-with-banner img {width: 100%;height: 100%;margin: 0;}
    .flagged-post-row .btn-danger{margin-left: 10px;}
    .dash-total .comm-box p{padding-left: 10px;line-height: 18px;}
    .comm-detail tbody td{width: 200px;}
    .comm-qu-option label.custom-radio{width: 90%;}
    .filter-dropdown .selected-list .c-list .c-token .c-label {max-width: 80px;}
    .filter-dropdown .selected-list .countplaceholder{padding-right: 5px;}
    .filter-dropdown .cuppa-dropdown .selected-list .c-angle-down,.filter-dropdown  .cuppa-dropdown .selected-list .c-angle-up {right: -7px!important;}
    .filter-dropdown .selected-list .c-list .c-token{padding-left: 0;}
    .active-communities-list .box-header h3{font-size: 14px;}
    .nopage-main-box {width: 70%;}
    .nopage-main-box .nopage-inner-box{padding: 30px;}
    .pannumber-box p {font-size: 16px;margin-bottom: 22px;}
    .plan-box-inner .top-sec .max-width {padding: 10px;}
    .plan-box .btn {padding: 10px;font-size: 14px;height: auto;}
}
@media (max-width:992px) {	
	.modal-container{max-width: 99% !important; margin-inline: 10px;}
	.container ,.rootfront-nav .container{max-width: 100%;padding: 0 20px;}
	.desk-nav .navbar-toggler {display: block;padding-left: 0;}
	#wrapper.active #sidebar-wrapper {transition: all .4s ease 0s;-webkit-transition: all .4s ease 0s;-moz-transition: all .4s ease 0s;}
	#wrapper.active #sidebar-wrapper{left: 0;opacity:0;visibility: hidden;}
    #wrapper.active .my-class #sidebar-wrapper{left: 133px;opacity: 1;visibility: visible;z-index: 99;}
    #wrapper.active .bg-black{left: 0;opacity:0;visibility: hidden;transition: all .4s ease 0s;-webkit-transition: all .4s ease 0s;-moz-transition: all .4s ease 0s;}
    #wrapper.active .bg-black.my-class{left: 0;opacity: 1;visibility: visible;z-index: 99;width: 100%;background: #0000003b;height: 100vh;z-index: 9999;position: fixed;}
   	#wrapper.rootfront-nav .my-class #sidebar-wrapper {left: 46px;}

	.navbar-expand-lg .navbar-nav {flex-direction: row;}
	.navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid {flex-wrap: nowrap;max-width: 100%;padding-right: 20px;padding-left: 20px;}
	.dropdown.filter-dropdown{margin-left: 0;}
	.navbar .navbar-nav .nav-link.btn-addcomm {font-size: 14px;height: auto;padding: 12px;}
	.navbar-expand-lg .navbar-collapse {display: flex!important;flex-basis: auto;}
	/*.sample.nine button.btn-search{left: 15px;}
	.sample.nine input{display: none;}
	.sample{width: auto;}*/
	.navbar-expand-lg .navbar-nav .dropdown-menu{position: absolute;right: 7px;left: auto;}
	.nav-notification .dropdown-menu:after,.responsive-nav .user-dropdown .dropdown-menu:after{right: 19px;margin: 0;left: auto;}	
	.nav-notification .dropdown-menu:before,.responsive-nav .user-dropdown .dropdown-menu:before{right: 19px;margin: 0;left: auto;}
	.panelist-nav .navbar-toggler{display: none;}

	.fullview-grid {padding-left: 0;}
	.page-content{padding: 20px;}

	.create-comm .box-header {padding: 20px 30px;margin: -20px -30px 20px;}
    .create-comm .white-box {padding: 20px 30px;}
    .add-des {padding: 86px 25px 5px;}
    .profile-preview .edit-profile{left: 10px;;}
    .header-part .nav-tabs .nav-link{padding: 0 15px;}
    .header-part .card {margin-left: 22px;width: 27%;}    
    .border-box .blank-btn {min-width: auto;min-height: 40px;}
    .border-box .btn {font-size: 15px;}
    .border-box .btn.blank-btn{float: left !important;margin: 15px 0 0;}
    .root-profile .post-name .root-name {margin-left: 10px;width: calc(100% - 68px);}
    .root-profile .post-name h2 {font-size: 18px;margin-bottom: 6px;}  
    .root-profile .post-name p{font-size: 15px;}
    .common-table thead th{padding: 10px 10px 7px;white-space: nowrap;}
	.ownscomm-table tr td {padding: 10px;}	
	.profile-tab .nav-pills .nav-link:before{left: 10px;}
	.profile-tab .table tr td{font-size: 14px;}	
	.search-section {width: calc(100% - 276px);}
	.search-section input{min-height: 45px;padding: 10px 35px 10px 10px;}
	.search-section:after{right: 12px;top: 13px;}
	.write-msg textarea {padding: 10px;}
	.postdetail .postreply-box .right-section .btn{margin-left: 12px;min-width: auto;padding: 0 8px;height: 30px;font-size: 14px;line-height: 14px;}
	.post-title {margin: 10px 0;line-height: 20px;}
	.postreply-box .post-text {line-height: 20px;margin: 10px 0;}
	.likedis-btn label:last-child .like-check{margin-right: 0;}	
	.community-tab ul li a{width: 89px;}
   	.community-tab .tab-content h3 {margin-bottom: 0;width: 140px;overflow: hidden;text-overflow: ellipsis;display: block;white-space: normal;}
	.post-name {margin-left: 10px;}	
	.community-tab .tab-content ul li{margin: 12px 0 0;padding: 0 0 12px;}
	.about-community ul li img {margin-right: 10px;}
	.post-name span:last-child:before, .likedis-btn label span.total-no:before{left: 0;}
	.about-community a.edit-icon{margin-top: -5px;right: 10px;}
	.navbar .navbar-nav .nav-link{padding: 5px 12px}
	.nav-notification a span{left: 19px;}
	.navbar .navbar-nav li:last-child .nav-link span{display: none;}

	.panelist-nav .navbar-nav li:last-child .nav-link span {display: block;margin-left: 10px;}		

	.navbar .navbar-nav li:last-child .nav-link span.short-name{display: flex;margin-right: 0;}
	.profile-pic{margin-right: 0;}
	.sample,.sample.nine input:focus{width: 180px;}
	.sample.nine input{width: 150px;}
	.sample.nine button.btn-search{left: 142px;}
	.sample.nine input:focus ~ button.btn-search{left: 172px;}
	.pagination li, .pager li {padding: 0 7px !important;}
   	.task-detail .page-content.empty-page{padding:20px;}
   	.task-detail .empty-page h3{margin-top: 10px;}
   	.onoff-btn{margin-right: 20px;}
   	.toggle-onoff.card{margin-right: 0;}
   	/*.nav-pills .nav-link.active, .nav-pills .show > .nav-link,.user-profile .nav-pills .nav-link{padding-left: 20px;}*/
   	.nav-pills .nav-link.completed {padding-left: 35px;}
   	.pl-30 {padding-right: 15px}
   	.mdb-30 {margin-bottom: 20px;}
   	.comm-tab .filter label,.comm-tab .filter a{font-size: 12px;}
   	.cuppa-dropdown .selected-list .c-btn{font-size: 12px;}
   	.post-images {width: 80px;height: 70px;margin: 0 7px 10px 0;}
    .post-images > img,.post-images > video{width: 80px;height: 70px;}
    .post-tagline {margin: 15px 0 8px;line-height: 16px;} 
    .posted-img{margin-top:10px;} 
    .post-name span{font-size: 11px;}
    .permission-popup .modal-body .img-box {width: 80px;height: 75px;}
    .permission-popup .popup-bottom label{flex: 0.9}
    .permission-popup .attachment-file p{text-overflow: ellipsis;white-space: nowrap;width: 100%;overflow: hidden;}
    .attach-file ul li {margin-right: 10px;}
    .iepostimg,.root-profile .post-name span {border: 3px solid #e8e8e8;width: 58px;height: 58px;}  
    .root-profile .post-name span{font-size: 16px;}  
    .res-menu{display: block;}
	.front-menu{display: none;}
	.permission-popup .modal-dialog,.setpermission-popup .modal-dialog{max-width: 92%;min-width: 92%;margin: 10px auto;}	
 	.setpermission-popup .permission-point{padding-left: 0;margin: 24px 0 15px;}
 	ul.users-option li{margin-right: 15px;padding: 10px 15px;margin-bottom: 20px;}
 	.profiling-short-detail ul li {margin-right: 40px;}
	.profiling-inner-tab .single-response label{margin-right: 12px;width: 130px;}
	.profiling-btn .btn {padding-right: 10px;padding-left: 10px;font-size: 16px;min-width: 110px;height: 40px;}
	.news-box{padding: 15px;}
	.news-left{margin-right: 20px;}
	.news-right a.news-name{width: 100%;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
	.news-right p{height: 60px;overflow: hidden;}
	.participant-post .attach-file ul li{font-size: 0;width: 40px;height: 40px;}
	.participant-post .attach-file ul li img{margin-right: 0;}
	.relesepoint-box .btn{padding: 10px;}
	.relesepoint-box{font-size: 15px;}
	.markas-checkbox{font-size: 13px;}
	.addmember-popup .border-box .btn.blank-btn {margin: 5px 0 0;}
	.addmember-popup .or-text{margin: 15px 0;line-height: 11px;font-size: 15px;}
	.poll-thumb-img{width: 23%;height: 90px;}
	.profile-tab .nav-pills .nav-link{padding-left: 10px;padding-right: 10px;}
	.profile-tab .nav-pills li a img {margin-right: 10px;}
	.profile-tab .nav-pills .nav-link span{font-size: 15px;}
	ul.breadcrumb li a{line-height: 16px;}
	.root-profile .post-name h2{width: 160px;}
	.navbar .navbar-nav li:last-child .dropdown-toggle::after{display: none;}
	.panelist-nav .navbar-nav li:last-child .dropdown-toggle::after{display: inline-block;}
	.pannumber-box {width: 100%;}
	.menu-view .intro-tour-hint-wrapper{right: 0;}	
	.post-throw img {width: 60px;}	
	.profile-tab .table tr td:nth-child(3) {width: 160px;display: block;white-space: pre-wrap;}	
	.members-table .pager li {padding: 0 4px !important;}
	.message-box .feed-step2.hint-relative {width: 340px;}
	.post-throw .intro-tour-hint-wrapper.transformY_50{left: 332px !important;top: 24px !important}
	.menu-walkthrough .intro-tour-hint-wrapper img {position: absolute;top: -24px;transform: rotate(61deg);left: auto;right: 60px;}
	.post-throw .intro-tour-hint-wrapper p{padding-left: 72px !important;}
	.post-throw .intro-tour-hint-wrapper .footer{padding-left: 80px !important;margin-top: -20px;}
	.progress-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {right: 509px;top: 85px !important;}
	.progress-box h4,.progress-box .right-sec label{font-size: 13px;}
	.progress-box .right-sec label{white-space: nowrap;}
	.my-profile .custom-progressbar {width: 270px;}
	.coupon-table tbody td{font-size: 14px;}
	.coupon-table tbody td h3{font-size: 14px;}
	.user-points-tab .empty-points{width: 100%;}
	.user-tickets-tab .empty-tickets{width: 50%;}
	.post-progress.odd-polls .poll-img, .polls-tab .odd-polls .poll-img, .addpoll-question .odd-polls .poll-img{flex: 0 0 100%;max-width: 100%;}
	.participant-post .single-select,.polls-tab .single-select,.addpoll-question .single-select{width: 100%;margin-bottom: 10px;}
	.participant-post .odd-polls label.custom-radio{flex: 0 0 100%;max-width: 100%;}
	.vote-box{min-width: auto;}
	.mycoupon-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {right: 179px;margin-top: -20px;}
	.coupon-box p.bottom-text{display: flex;align-items: center;justify-content: space-between;}
	.coupon-box p.bottom-text a{font-size: 11px;}
	.coupon-box p.bottom-text img {margin-right: 3px;}
	.penalist-menu-walkthrough .intro-tour-hint-wrapper{right: 182px;}
	.panelist-nav .navbar-nav .dropdown-menu{right: 5px;}
	.post-statistics .graph-box{min-height: 270px;}
	.post-statistics .graph-box .canvasjs-chart-canvas{height: 220px !important;}
	.penalist-profile .complete-profile .u-name {margin-left: 0;}
	.penalist-profile .my-profile{padding: 15px;}
	.penalist-profile .u-name h2 {width: 210px;}
	.point-search .point-input{width: calc(100% - 310px);margin-right: 20px;}
	.point-search .point-input input{width: 100%;}
	.menu-walkthrough .intro-tour-hint-wrapper {display: none;}
	.overlay,.hint-overlay,.intro-tour-hint-wrapper{display: none;}
	.coupon-box-main .col-md-4 {max-width: calc(33.33% - 14px); margin-right: 20px;}
	.coupon-box .coupon-title .coupon-inner-content{height: 50px;}
	.flagged-post-row .btn-danger{min-width: auto;padding: 5px 14px;font-size: 14px;}
	.active-communities-list .box-header{flex-wrap: wrap;}
	.filter-comm .dropdown:first-child{margin-left: 0;}
	.active-filter-comm .last-dropdown .dropdown-menu {width: 200px;}
	.active-filter-comm .weekly-dropdown .dropdown-menu {left: 0 !important;right: auto;}
	.active-filter-comm .weekly-dropdown .dropdown-menu:after{left: 8px;right: auto;}
	.active-filter-comm .weekly-dropdown .dropdown-menu:before{left: 9px;right: auto;}
	.media-library .attachment-file,.media-library-video video,.media-library .media-img{width: 85px;}
	.message-popup{min-width: auto;padding: 50px;height: auto;width: 90%;}
	.message-popup h2{font-size: 28px;margin: 35px 0 18px;}
	.social-media-icon-wrap span.or-cnt{margin-top: 15px;}

}
@media (max-width:767px) {
    #wrapper {padding-left: 0;transition: all .4s ease 0s;}
	#sidebar-wrapper {left: 0;}
	#wrapper.active {padding-left: 0;}
	.panellist-no-banner .penalist-logo{width: 70px;height: 70px;top: auto;bottom: -15px;}
	.panellist-no-banner .penalist-logo img{width: 68px;height: 68px;margin: 0;}
	.inside-for-mobile ul.breadcrumb{margin-left: 20px;}
	.search-section.search-for-mobile{left: 30px;margin: 7px;top: 0;}
	.penalist-profile ul li:first-child .tooltip {
		right: auto;
		transform: translate(0, -41px) !important;
	}
	.penalist-profile ul li:first-child .bs-tooltip-top .arrow{
		left: calc(35px - 0.4rem) !important;
  	}
	.penalist-profile ul li:first-child a img{
		width: 18px;
	}

	.penalist-profile ul li .tooltip-inner{
		max-width: max-content !important;
		margin: 0 auto;
		padding: 5px 10px !important;
	}
	.container {padding: 0 20px;}
	.fullview-grid {padding-left: 0;}
	.navbar .navbar-nav li:last-child .nav-link{font-size: 0;}
	.profile-pic{margin-right: 10px;}
	.navbar .navbar-nav .nav-link{padding: 5px 26px 5px 15px;}
	.nav-notification a span{left: 24px;}
	.col-md-4.pl-30 {padding-left: 15px;margin-top: 20px;}
	.desk-nav .navbar-toggler {display: none;}
	.responsive-nav{display: block;}
	.desk-nav{display: none;}	
	.responsive-nav .nav-left{display: flex;}
	.responsive-nav .nav-right{display: flex;align-items: center;}
	.responsive-nav .nav-right .icon-dropdown > a{font-size: 17px;color: #222;background: transparent;-webkit-appearance: none;outline: none;}
	.responsive-nav .nav-right .icon-dropdown .dropdown-menu.show{display: flex;}
	.responsive-nav .nav-right .icon-dropdown .dropdown-menu li{padding: 10px;position: relative;}
	.responsive-nav .nav-right .icon-dropdown .dropdown-menu li a{width: 30px;height: 30px;display: flex;background: #00a6fb1f;justify-content: center;align-items: center;border-radius: 50%;text-decoration: none;}
    .responsive-nav .notification a span {background-color: #ea1c63;border-radius: 50%;height: 17px;width: 17px;top: 7px;display: flex;z-index: 9;color: #fff;position: absolute;font-size: 10px;justify-content: center;font-weight: 600;left: 24px;align-items: center;padding: 2px;}
	.responsive-nav .dropdown-toggle::after{content: none;}
	.responsive-nav .icon-dropdown .dropdown-menu:after{right: 8px;}
	.responsive-nav .user-dropdown>a {padding: 0;margin-left: 15px;}
	.responsive-nav .navbar-toggler{padding-left: 0;}
	.responsive-search{position: fixed;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.58);top: 0;bottom: 0;left: 0;right: 0;display: none;justify-content: center;align-items: center;z-index: 9999;padding: 0 10px;	}
	.responsive-search.open-search{display: flex;}
	.responsive-search form{width: 100%;position: relative;}
	.responsive-search button.close{position: absolute;right: 0;font-size: 21px;color: #fff;z-index: 9;top: -30px;}
	.responsive-search button.close span{color: #fff;}
	.responsive-search form .search-icon{position: absolute;right: 10px;font-size: 21px;color: #fff;z-index: 9;top: 8px;}
	.custom-tab .nav {border-right: none;height: 100%;display: flex;flex-direction: row !important;border-bottom: 1px solid #eee;}
	.custom-tab .nav-pills .nav-link{margin-bottom: -1px;min-height: 50px;border-radius: 4px 4px 0 0;}
	.custom-tab .nav-pills .nav-link.active,.custom-tab .nav-pills .show > .nav-link{border-left: none;border-bottom: 3px solid #00a6fb;}
	.custom-tab .nav-pills .nav-link.completed{padding-left: 30px;}
	.custom-tab .nav-pills .show > .nav-link.completed{padding-left: 30px;}
	.custom-tab h3 {font-size: 16px;margin-bottom: 15px;}    
    .custom-tab .tab-content h3 {font-size: 15px;margin-bottom: 20px;}
    .custom-tab .nav-pills .nav-link.completed:before{top: 18px;left: 3px;}
    .custom-tab .nav-pills .nav-link.completed:after{left: 5px;}  

    .prenext-footer{margin: 0;}
    .header-part .card{width: auto;}   
    .about-community{margin-top: 0;}
    .btn-custom{font-size: 16px;}
    .border-box h4{line-height: 22px;}
  	.nav-pills .nav-link{font-size: 14px;margin-bottom: 10px;}	
   	select.form-control:not([size]):not([multiple]) {height: 45px;}    	
  /* 	.dropdown-menu:after,.dropdown-menu:before{display: none;} */
   	.overflow-scroll {height: 200px;}
   	.comm-overflow{height: auto;}
   	.empty-post {background: #fff;background-color: #ffffff;box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);-webkit-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);-moz-box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.04);border-radius: 4px;margin-bottom: 20px;padding: 20px;}
 	.filter-dropdown.selectcomm-dropdown .dropdown-toggle::after{content: "";}
 	.selectcomm-dropdown .custom-checkbox > span.cname{padding: 10px 0;font-size: 13px;max-width: 165px;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;display: inline-block;}
 	.repost-img {width: 70%;} 	
 	.attach-file{padding: 0 10px;}
 	.permission-popup .attach-file {height: 55px;}
 	.permission-popup .write-msg textarea,.permission-popup .form-control {padding: 10px;} 	 
 	.new-profile-tab .tooltip{display: block;}
	 .penalist-profile .new-profile-tab ul{justify-content: space-between;}
 	.new-profile-tab .nav-pills .nav-link,.new-profile-tab .nav-pills .nav-link.active,.new-profile-tab .nav-pills .show > .nav-link{background: transparent;font-size: 0;margin: 0;text-align: center;height: inherit;border-left: none;justify-content: space-between; } 
 	.new-profile-tab .nav-pills li a img {margin-right: 0;}	
 	.profile-tab .nav-pills .nav-link,.profile-tab .nav-pills .nav-link.active,.profile-tab .nav-pills .show > .nav-link{background: transparent;margin: 0;text-align: center;height: inherit;border-left: none;} 
 	.profile-tab .nav-pills li a img {margin-right: 0;}
 	.profile-tab .nav-pills li.nav-item {width: 33%;overflow: hidden;}	
 	.profile-tab .nav-pills li.nav-item span{text-align: left;width: 100%;text-overflow: ellipsis;white-space: nowrap;display: inline-block;overflow: hidden;line-height: inherit;}

 	.mark-as{padding-left: 15px;margin-top: 10px;}
 	.addmember-popup .modal-body{flex-flow: column;}
 	.addmember-popup .membert-tbl {margin: 0 0 18px;}
 	.selected-metrics ul.users-option li{width: 32%;font-size: 13px;}
 	.selected-metrics ul.users-option li:nth-child(3){margin-right: 0;}
 	.age-map{margin-bottom: 60px;}
 	.nextpoll-btn .total-poll{margin-right: 0;}
 	.nextpoll-btn li.nexpoll a{font-size: 14px;}
 	.nextpoll-btn li.nexpoll a i {margin-left: 2px;font-size: 17px;}
 	.total-votes strong {font-size: 15px;}
 	.profile-tab .nav-pills li a img {margin-right: 10px;}
 	.root-profile .post-name h2{width: 240px;}
 	.filter-dropdown .dropdown-menu{margin-top: 10px;}
 	.navbar .filter-dropdown .dropdown-menu ul{min-width: 220px}
 	.post-throw .intro-tour-hint-wrapper.transformY_50 {right: 0;}
 	.menu-walkthrough .intro-tour-hint-wrapper{display: none;}
 	.post-throw .intro-tour-hint-wrapper p {width: auto;}
 	.invitee-btn{margin-top: 10px;margin-bottom: 10px}
 	.progress-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {top: 89px !important;right: 250px;}
 	.progress-view img{margin-right: 0;}
 	.progress-box .right-sec h2 {font-size: 24px;}
 	.rewards-header .dropdown .btn{padding-right: 0;}
 	.coupon-table{margin-top: 10px;}
 	.rewards-header .dropdown .dropdown-menu {right: -10px;}
 	.user-post-tab .empty-post{height: 250px;}
 	.empty-notification{padding-top: 30px;height: 240px;}
 	.signinup-popup .addpoll-popup-inner .form-control-placeholder {font-size: 14px;width: 93%;overflow: hidden;text-overflow: ellipsis;display: block;white-space: nowrap;}
	.signinup-popup .addpoll-popup-inner .form-control:focus + .form-control-placeholder,
	.signinup-popup .addpoll-popup-inner .form-control.ng-touched + .form-control-placeholder{width: auto;}
	.header-searchdropdown .label-main{margin-bottom: 12px;}
	.header-searchdropdown .row{margin-bottom: 10px;}	
	.markas-checkbox{margin-left: 20px;margin-top: 10px;}
	.poll-thumb-main{margin-bottom: 20px;}	
	.no-polls-padding{margin-bottom: 20px;}
	.profilelist-view img{display: none;}
	.profilelist-view .intro-tour-hint-wrapper p {left: 40px;bottom: 250px;margin: 0;}
	.profilelist-view .intro-tour-hint-wrapper .footer {left: 40px;bottom: 197px;}
	body .white-box.earned-box{margin-bottom: 20px;padding: 15px;}	
	.panelist-nav .navbar-nav li:last-child .dropdown-toggle::after{display:none;}
	.panelist-nav .navbar-nav li:first-child .dropdown-toggle::after{display: inline-block;}
	.panelist-nav .navbar-nav li:last-child .nav-link span {display: none;}
	.panelist-nav .navbar-nav li:last-child  .dropdown-menu:before{right: 20px !important;}
	.panelist-nav .navbar-nav li:last-child  .dropdown-menu:after{right: 19px !important;}	
	.has-third .intro-tour-hint-wrapper .footer {padding-left: 50px !important;}
	.reward-short-detail ul li .btn-custom{padding: 7px 30px;}

	.penalist-profile .progress-box {padding: 10px;flex-flow: column;align-items: flex-start;padding: 10px;}
	.penalist-profile .progress-box .right-sec {display: flex;flex-flow: row; align-items: baseline;justify-content: center;}
	.penalist-profile .progress-box .left-sec {margin-right: 0;}
	.penalist-profile .progress-box .right-sec label:after{content: ":"}
	.penalist-profile .progress-box .right-sec h2 {font-size: 14px;}
	.profilelist-view .intro-tour-hint-wrapper .content {margin-bottom: -40px;}

	.addmember-popup .modal-body .sm-width.left-div {max-width: 100%;flex: auto;}
	/*.panelist-nav .navbar-nav li:last-child .nav-link{padding-right: 0;}*/
	.post-statistics .no-data{height: 200px;position: relative;display: flex;align-items: center;justify-content: center;}

	.coupon-box-main .col-md-4 {max-width: calc(50% - 10px);margin-right: 20px;}	
	.coupon-box-main .col-md-4:nth-child(3n){margin-right:20px;}
	.coupon-box-main .col-md-4:nth-child(2n){margin-right:0;}
	.profiling-qu-popup .modal-dialog{max-width: 92%;min-width: 92%}	
	/*.ticket-reward-box .white-box {margin-bottom: 0;}*/
	.qu-popup-box label.markas-checkbox{margin-bottom: 5px;margin-left: 0;}
	.qu-popup-box.multi-response label.custom-radio,.qu-multi-box label.custom-radio{margin-bottom: 3px;}
	.white-box.root-profiling-pagination{margin-bottom: 15px;}
	.left-side a.clickable{display: block;}
	.app-main-footer{gap: 16px;padding: 12px 24px;}
	.app-main-footer__links{gap: 20px;}
}
@media(max-width: 640px){
	.modal-container{max-width: 99% !important; margin-inline: 10px;}
	.signinup-popup .modal-dialog,.login-bg .signinup-popup .modal-dialog{max-width: 92%;min-width: 92%;margin: 10px auto;min-height: calc(100vh - 95px);}
	.setpermission-popup .permission-point{margin: 24px -15px 10px;}	
	.file-icon img {width: 20px;height: 20px;}
	.file-icon span{font-size: 8px;line-height: 10px;}
	.post-throw .intro-tour-hint-wrapper.transformY_50 {left: 0 !important;top: -66px !important;}
	.message-box .feed-step2.hint-relative {width: 100%;}
	.post-throw .intro-tour-hint-wrapper p {width: 350px;}
	.my-profile .custom-progressbar {width: auto;}
	.rewards-box h3{margin: 0 10px;padding: 10px;}
	.penalist-profile .my-profile {align-items: flex-start;flex-flow: column;}
	.penalist-profile .progress-box{width: 100%;}
	.penalist-profile .progress-box .left-sec,.penalist-profile .custom-progressbar{width: 80%;}
	.progress-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {top: 110px !important;right: auto;left: 30px !important;}
	.progress-view .intro-tour-hint-wrapper.transformY_50.transformX_100  img{display: none;}
	.penalist-profile .complete-profile {width: 100%;}
	.filter-dropdown .cuppa-dropdown .dropdown-list {width: 240px !important;left: auto;right: -70px;}
	.uploading-box{flex-flow: wrap;}	
	.raise-ticket-popup .img-box {width: 80px;height: 75px;margin-bottom: 5px;}	
	.raise-ticket-popup .footer-btn {margin-top: 8px;}
	.posted-poll-pad .filter-dropdown .cuppa-dropdown .dropdown-list {left: -11px;right: auto;}
}
@media(max-width: 567px){
	body{padding-bottom: 80px;}
	.modal-container{max-width: 99% !important; margin-inline: 10px;}
	.search-section.search-for-mobile{left: 30px;margin: 7px;top: 7px;}	
	.inside-for-mobile ul.breadcrumb{margin-left: 30px;margin-top: 12px;}
	.container,.rootfront-nav .container {padding: 0 15px;}
	hr {margin: 20px 0;}         
    p.warning-msg img{margin-right: 7px;width: 13px;}
	/*.login-bg{height: 100%;}*/	
	.social-login{flex-wrap: wrap;}

	/*.signinup-popup .modal-dialog,.login-bg .signinup-popup .modal-dialog{max-width: 100%;width: 100%;min-width: 100%;margin: 0;}*/
	.signinup-popup .facebook-login, .signinup-popup .google-plus-login {font-size: 14px;margin: 0 auto 10px;}
	.signinup-popup .modal-body {padding: 20px;/*max-height: 480px;overflow: scroll;*/}	
	.signinup-popup .modal-body > p{font-size: 14px;}
	.signinup-popup .modal-body > h2{font-size: 20px;line-height: 26px}
    /*.signinup-popup .form-control-placeholder,.custom-tab .form-control-placeholder, .new-poll .form-control-placeholder{left: 12px;}*/
    /*.new-poll input:focus .form-control-placeholder,.edit-value + .form-control-placeholder{padding: 3px 0 0;}*/
    .signinup-popup .btn-custom{margin-top: 5px;font-size: 16px;}
    .form-control, select{padding: 10px 12px;min-height: 45px;font-size: 14px;}  
    .signinup-popup .form-group p{line-height: 16px;}
    .signinup-popup .login-btn .btn-custom{margin-bottom: 0;min-width: 100px;padding: 7px 25px;min-height: initial;height: auto;}
    .signinup-popup h6{font-size: 14px;}
    .signinup-popup p.error-text, .comm-basicinfo p.error-text, p.error-text, .border-box p.error-text{margin: 10px 0;}
   	body .permission-popup .modal-body{padding: 0;}
   	.attach-file{padding: 0 10px;}
   	.attach-file ul li {margin-right: 10px;font-size: 0;width: 35px;height: 35px;background: #eee;border-radius: 50%;}
   	.attach-file ul li img {margin-right: 0;position: absolute;}
   	.permission-popup .popup-bottom{padding: 15px;}

    .input-pw a {right: 14px;}
    .input-pw a img{width: 20px;}
    .login-bottom{margin-top:5px;}
    .login-btn{margin: 15px 0 10px;}
    
    .custom-checkbox{padding-left: 26px;font-size: 14px}
    .forgot-password, .login-btn a,.login-btn p{font-size: 14px;}
    .sendlink {margin: 0;}
    .login-btn p a {margin-left: 3px;}  
    .filter-dropdown .btn{display: none;}
    .filter-dropdown.selectcomm-dropdown .btn{display: block;}    
    .comm-tab .filter{margin: 0;}
    .community-parent .nav-tabs .nav-link {margin: 5px 15px 5px 0;}
    .mdb-30 {margin-bottom: 15px;}
    /*.overflow-scroll {height: auto;}*/
    .create-comm .box-header {padding: 15px;margin: -15px -15px 10px;}
    .create-comm .white-box {padding: 15px;}

    .custom-tab .nav {flex-wrap: nowrap;}
    .overflowscroll{overflow-y: hidden;overflow-x: auto;}
    .end_date .date-icon ngb-datepicker.dropdown-menu.show{right: 0;left: auto !important;}
    .date-icon ngb-datepicker.dropdown-menu:before{display: none;}  
    .profile-banner,.iecoverpage{max-height: 124px;}
    .edit-profile {width: 80px;height: 80px;bottom: -35px;left: 16px;}
	.edit-profile span.addicon {font-size: 21px;line-height: 18px;margin-top: 5px;}
	.edit-profile span{font-size: 12px;}

	.add-des {padding: 60px 15px 1px;}
	.edit-profile a{top: -7px;}  
	.empty-post img {width: 30px;}
	.empty-post h2 {font-size: 20px;}
	.empty-post p {font-size: 14px;line-height: 22px;margin: 0 0 15px;}	
	.header-part .card.tab-card .nav-tabs{display: flex;flex-wrap: nowrap;margin: 0;}	
	.profile-preview .edit-profile {width: 100px;height: 100px;}
	.profile-preview {min-height: 185px;}	
	.border-box .table thead th, .addmember-popup .modal-body .right-div table th,.table td{white-space: nowrap;}
	.or-text {margin: 15px 0;font-size: 14px;}
	.edit-admin .white-box, .user-profile .white-box {padding: 15px;flex-flow: column;align-items: flex-start;}
	.root-profile .totalcomm p {font-size: 14px;margin: 15px 0 0;}	
	ul.breadcrumb li a{font-size: 14px;}	
	.common-table thead th{white-space: nowrap;}
	.rgt-icon .btn {margin-right: 35px !important;}
	.custom-tab .nav-pills .nav-link.completed:after{width: 17px;height: 17px;left: 8px;top: 21px}
	.custom-tab .nav-pills .nav-link.completed:before {width: 6px;height: 10px;margin-top: 5px;left: 4px;}	
	.editcover-box.dropdown-menu > a{font-size: 13px;}
	.sidebar-nav li a{min-height: 80px;padding: 10px 0;}
	.setting-box p{margin: 0 0 10px;}
	.setting-box a,.account-sbox .cname {font-size: 14px;}	
	.empty-page h1 {line-height: 26px;margin: 10px 0 5px;font-size: 19px;}
	.about-community, .community-tab{padding: 15px;}
	.about-community {margin-top: 0;}
	.postreply-box{padding: 15px;}
	.shortby-dropdown {margin-left: 0;padding-right: 20px;}
	.header-part .card {margin-left: 10px;}
	.profile-preview {min-height: 175px;}
	.profile-preview .edit-profile span{font-size: 14px;}
	.front-tab .nav-tabs {margin: 15px 0;}
	.front-tab .nav-link{padding:10px 20px 0 0;}
	.post-body {margin-top: 15px;}
	section.post-body.preview-inner {margin-top: 30px;}
	.mobile-search{width: 34px;height: 34px;background: #fff;border-radius: 50%;text-align: center;display: flex;justify-content: center;align-items: center;box-shadow: 0px 0px 10px 3px #00000014;}

	.search-section {width: 100%;position: absolute;left: 0;}
	.search-section input[type=search] {background: #fff url('search.d6e4b0ee67e81a01.svg') no-repeat 8px center;width: 15px;height: 15px;min-height: inherit;padding: 10px;;color: transparent;cursor: pointer;display: flex;justify-content: center;border-radius: 25px;-webkit-appearance: textfield;-webkit-box-sizing: content-box;font-family: inherit;font-size: 100%;transition: all .5s;}
	.search-section input::-webkit-search-decoration,.search-section input::-webkit-search-cancel-button {display: none;}
	.search-section input[type=search]:focus {z-index: 999;position: relative;padding-left: 32px;color: #000;background-color: #fff;cursor: auto;width: calc(100% - 42px);background-color: #fff;}
	.search-section input[type=search]:hover {background-color: #fff;}
	.search-section:after {content: none;}
	.header-inner{position: relative;padding-left: 35px;justify-content: space-between;}	
	.search-section .close-serach{position: absolute;right: 11px;top: 9px;z-index: 99999;font-size: 18px;color: #999;opacity: 0;display: block;}
	.search-section input[type=search]:focus + .close-serach{opacity: 1;transition: 0.9s ease-in all;}
	.permission-popup .modal-content {width: 100%;}
	.search-section input:-moz-placeholder {color: transparent;}
	.chat-search input::-moz-placeholder {color: transparent;}
	.chat-search input:-ms-input-placeholder {color: transparent;}
	.search-section input::-webkit-input-placeholder {color: transparent;}
	.shortby-dropdown .dropdown-menu {right: 0;left: auto !important;}	
	.postdetail .postreply-box .right-section{justify-content: flex-start;margin-top: 20px;}
	.likedis-btn{margin-top: 10px;}
	.postdetail hr {margin: 20px 0 18px;}
	.reply-text{font-size: 15px;}
	.postdetail-reply {padding-left: 30px;}
	.post-list h3.post-title{font-size: 14px;}
	.postdetail .postreply-box .post-text {font-size: 13px;}
	a.view-reply{font-size: 13px;}
	.mdb-sm-0{margin-bottom: 0;}
	.ngx-datatable .datatable-footer .datatable-footer-inner{flex-flow: column;}
	.ngx-datatable.bootstrap .datatable-footer .datatable-pager{flex: 0 0 100%;max-width: 100%;}
	.pagination li, .pager li {padding: 0 3px !important;}
	.page-content{padding: 15px;}
	.edit-admin h3 {margin-bottom: 10px;}
	.date-icon a,.create-comm .date-icon a{top: 11px;}
	.transfer-popup .login-btn {margin: 25px 0 0;}
	.selectcomm-dropdown .dropdown-menu {min-width: 230px;}
	.selectcomm-dropdown .dropdown-item{padding: 5px 12px;padding-top: 0;}
	.search-bar{margin-right: 10px;}
	.post-attachment-file .att-left p{text-align: left;font-size: 12px}
	.post-attachment-file .att-left p span {font-size: 10px;}    
    .post-attachment-file .att-left .file-size {font-size: 11px;}    
    .post-attachment-file .att-right a{font-size: 0;}
    .post-attachment-file .att-left{align-items: center;}
    .about-community p{font-family: 13px;}
    .repost-img {width: 100%;}
    .post-name span {font-size: 12px;}
    .reply-box{padding: 10px;}
    .reply-input{width: calc(100% - 140px);}   
    .col-md-4.pl-30{margin-top: 0;}
    /*.login-bg .signinup-popup .modal-dialog{min-height: calc(100vh - 95px);} */
    .responsive-nav .user-dropdown>a:focus{outline: none;}
    .attach-file input[type="file"]{z-index: 9;}
    .task-page .newpost-box{margin-top: 15px;}
    .pannumber-box{padding: 20px;}
    section.pan-verification h1{font-size: 24px;line-height: 26px;}
    section.pan-verification.otp-verify p {margin: 0 0 20px;}
    section.pan-verification.otp-verify .pannumber-box p{font-size: 14px;}
    section.pan-verification.otp-verify h2{font-size: 18px;}
    .signinup-popup .modal-body p.recover-alert{padding: 0 0 12px;margin-bottom: 18px}
    .signinup-popup .confirm-msg {margin-bottom: 15px;padding-bottom: 0;}
    .login-btn.otpbtn{margin-top: 0;}
    .empty-page h3.uname {width: 280px;}
    .transfer-popup .modal-body .btn {margin-left: 0;}
    .custom-tab .overflowscroll{padding-left: 0;}
    .front-tab{padding: 0 10px;}
    .login-bg{height: 100%;} 
    .setpermission-popup .btn {min-width: 100px;}
    .setpermission-popup .save-btn {padding: 0 20px;}
    .like-dislike-popup .modal-body{padding: 0;}
    .reaction-popup .modal-body{padding: 0;}
    .profiling-table tbody tr td:first-child a{padding-left: 0;font-size: 14px;} 
    .profiling-tab .box-header .rgt-icon .btn{font-size: 0;margin-right: 30px !important;min-width: auto;}  
    .profiling-tab .box-header .rgt-icon .btn span{margin: 0 !important;padding: 0;box-shadow: 0 0 7px #eee;border-radius: 50%;width: 30px;height: 30px;display: inline-block;line-height: 30px;background: #00a6fb;color: #fff;} 
	.profiling-table tbody tr td{padding: 15px;}
	.profiling-tab .box-header h3 span{margin-bottom: 0;}
	.profiling-short-detail ul{flex-wrap: wrap;}
	.profiling-short-detail ul li {margin: 0 0 15px;width: 50%;}
	.profiling-short-detail{padding-bottom: 5px;}
	.profiling-inner-tab .multi-response label{width: 100%}
	.profiling-inner-tab .box-header h3 a.title-edit {margin-left: 2px;float: left;}
    .profiling-inner-tab .padding-content {padding: 10px 15px 25px;}
    .profiling-inner-tab .padding-content h3.title span {padding-left: 20px;}
    .profiling-inner-tab .padding-content h3.title span:before{left: 9px;}
    .reward-short-detail{padding-bottom: 0;}
    .reward-short-detail ul{flex-wrap: wrap;}
    .reward-short-detail ul li {margin: 0 0 15px;width: 50%;}
    .verification-input {width: auto;}
    .profiling-inner-tab .single-response label {margin-right: 0;width: 100%;}
    .profiling-btn{padding: 15px;float: none;}
    .profiling-btn .btn{min-width: auto;margin-left: 7px;font-size: 15px;}     
    .progress-box{min-width: auto;width: 100%;}
    .new-profile-tab .nav-pills .nav-link,.new-profile-tab .nav-pills .nav-link.active,.new-profile-tab .nav-pills .show > .nav-link{padding: 10px 0;} 
    .innap-ticketpopup p.contact-text{margin: 10px 0;}
    .relesepoint-box{flex-flow: column;align-items: flex-start;padding: 15px;}
    .relesepoint-box .btn{margin-top: 12px;}
    .user-profiling-inner {padding: 15px;}
    .user-profiling-inner .single-response label.custom-radio {width: 100%;margin-right: 0;}
    .user-profiling-inner label.title {font-size: 14px;margin-bottom: 15px;}
    .notification-inner ul li img {margin-right: 10px;}
    .exitcmm-popup h4 {font-size: 15px;margin: 5px 0 0;}
	.exitcmm-popup .modal-body > p{margin-top: 10px;line-height: inherit}
	.exitcmm-popup h4{margin: 8px 0 0;line-height: inherit;}
	.polls-tab ul.nav li a{margin: 0;}
	.polls-tab ul.nav li {width: 33.33%;}
	.polls-tab ul.nav li a span {width: 73%;overflow: hidden;text-overflow: ellipsis;display: inline-block;white-space: nowrap;float: left;}
	.polls-tab .tooltip{display: block;}
	.addpoll-footer {align-items: flex-start;flex-flow: column;margin: 0;}
	.addpoll-footer .form-group{display: block;width: 100%;}
	.addpoll-footer .comm-class{margin-bottom: 15px;padding-right: 0;width: 100%;}
	.poll-section hr{margin: 10px -15px 15px;}
	.polls-tab .padding-content {padding: 10px 15px;}
	.addpoll-footer .poll-enddate input {max-width: 100%;}
	.comm-basicinfo p.error-text{margin-bottom: 8px;}
	.comm-basicinfo .img-error{padding-left: 15px !important;}
	.vote-textbox input.textbox{font-size: 14px;}
	.vote-textbox input.textbox::placeholder  {font-size: 14px;}
	.poll-img{flex: 0 0 100%;max-width: 100%;}
	.polls-tab .padding-content ul li:last-child {padding-left: 10px;margin-left: 10px;}
	.polls-tab .padding-content ul li:last-child:before{left: -2px;}
	.polls-tab ul.right li{width: auto;}
	.vote-box h3{margin-bottom: 10px;line-height: inherit;}
	.polls-tab .vote-box p{font-size: 14px;}
	.vote-box .width50 label.custom-radio {max-width: 100%;flex: 0 0 100%;}
	.upload-img-box{width: 100%;height: 120px;margin-top: 15px;}
	.footer-pollaction p.error-text {position: relative;bottom: auto;}
	.members-simple .header-part .card {width: auto;}
	.edit-panellist .login-btn .btn{min-width: auto;padding: 7px 20px;}
	.addmember-popup .modal-body .left-div, .addmember-popup .modal-body .right-div {padding: 15px;}
	.addmember-popup h2 {margin-bottom: 10px;font-size: 20px;}
	.selected-metrics ul.users-option li {width: 48%;padding: 10px;}
	.selected-metrics ul.users-option li:nth-child(3){margin-right: 10px;}
	.selected-metrics ul.users-option li:nth-child(even){margin-right: 0;}
	.selected-metrics {padding: 0 15px;}
	.selected-metrics ul.users-option li span:before {margin-right: 6px;}
	.participant-post .vote-box label.custom-radio {max-width: 100%;flex: 0 0 100%;}
	.participant-post .vote-box .rating-box h3 {margin-bottom: 0;}	
	/*.participant-post .post-name {width: 120px;}*/
	.uploadimg-box{flex-wrap: wrap;margin-left: 0;}
	.permission-popup .modal-body .img-box {width: 80px;height: 80px;margin-bottom: 10px;}
	.profile-tab .table thead th:first-child{white-space: nowrap;}
	.profile-tab .tooltip{display: block;}
	.root-profile .post-name h2{width:250px;}
	.edit-admin .profile-tab {margin-bottom: 15px;}
	.custom-tab .comm-addadmin{margin: -18px 0 10px;}
	.intro-tour-hint-wrapper p{left: auto;bottom: -70px;right: 0;}
	.intro-tour-hint-wrapper .footer{left: auto;bottom: -120px;right: 0;flex-flow: row;height: auto;}	
	.members-table .pager li {padding: 0 !important;}
	.penalist-menu-walkthrough .intro-tour-hint-wrapper img{right: 0;}
	.invitee-popup button.btn-custom.ml-3 {padding: 0 20px;min-height: 40px;}
	.invitee-popup .login-btn {margin-top: 15px;}
	.raise-ticket-popup .uploadimg-box .img-box {width: 80px;height: 70px; margin-bottom: 10px;}
	.raise-ticket-popup .uploadimg-box{margin-bottom: -40px;}
	.report-popup .footer-btn {margin-top: 15px;}
	.report-popup textarea {height: 120px;}
	.penalist-menu-walkthrough .intro-tour-hint-wrapper{left: 20px !important;top: 300px !important;right: auto;}
	.penalist-menu-walkthrough .intro-tour-hint-wrapper img{display: none;}
	.news-left {width: 174px}
	.news-right a{word-break: break-word;}
	ul.users-option li{width: 100%;margin-right: 5px;margin-bottom: 10px;}
	ul.users-option li:nth-child(2){margin-right: 0;}
	.postreply-box .post-images .upload-img:after{height: 20px;width: 20px;bottom: 5px;right: 5px;}	
	.post-images {width: 73px;height: 65px;}
	.empty-rewards {height: 260px;}
	.empty-rewards img{width: 50px;}
	.empty-rewards .btn{margin-top: 0;}
	.user-points-tab .empty-points h1 {margin-top: 15px;}
	.user-points-tab .empty-points p {margin-bottom: 20px;}
	.user-post-tab .post-table p.post-title {padding-right: 0;}
	.user-points-tab .empty-points{width: 90%;}
	.user-tickets-tab .empty-tickets{width: 90%;}
	.user-tickets-tab .empty-tickets {padding-top: 0;height: 280px;}
	.user-tickets-tab .empty-tickets p{margin-bottom: 15px;}
	.setting-save {margin-top: 20px;}
	.signinup-popup .penalist-register-btn {margin: 25px 0 0;}	
	.addpoll-popup {padding: 10px;}
	.addpoll-popup .addpoll-popup-inner{padding: 15px 12px;}
	.postdelete-popup .login-btn {margin: 15px 0 0;}	
	.rgt-icon .header-searchdropdown .footer-btn .btn {margin-right: 5px !important;min-width: auto;padding: 10px;font-size: 15px;line-height: 15px;font-weight: 500;height: auto;}
	.header-searchdropdown{width: 330px;}
    .member-white-box .search-bar input[type="text"].search-view{width: 330px;}
    .custom-tab.header-searchdropdown .form-control-placeholder{font-size: 14px;}
    .addmember-popup .form-control-placeholder{font-size: 14px;left: 4px;}
    .new-poll .form-control-placeholder{font-size: 14px;left: 12px;}
    .root-profiling-form .form-control-placeholder {font-size: 14px;left: 12px;}
    .poll-thumb-img{height: 75px;}
    .lb-data .lb-close {margin-right: 0;}
    .lb-dataContainer{top: 0;z-index: 999;}
    .empty-profile-page {height: auto;margin: 15px 0 20px;text-align: center;padding: 20px 15px 50px;}
    .addpoll-popup-inner .add-qu-option input.textbox::placeholder {font-size: 14px;}
    .permission-popup .addpoll-popup-inner .upload-img-box {margin-top: 15px;}
    .addpoll-qu-content label.custom-radio.width50 {max-width: 100%;flex: 0 0 100%;}
    .coupon-box {width: 100%;margin-bottom: 15px;}
    .rewards-box h2 {font-size: 16px;} 	
    .rewards-box .box-header a{font-size: 16px;}    
    .cong-popup .modal-body {padding: 0;}
    .panelist-nav .navbar-nav li:first-child .nav-link .changecomm-name{max-width: 130px;}
    .panelist-nav .my-comm{display: none;}
    .panelist-nav .navbar-nav .dropdown-menu{right: 4px !important;}
    .dot-menu__label{height: 10px;}
    .panelist-nav ul.navbar-nav {margin-right: 0;}     
   	.feed-points.custom-number {position: absolute;top: 20px;right: 10px;margin-right: 0;margin-top: -3px;}  
    .feed-points.custom-number label{font-size: 12px;}
    .feed-points.custom-number input{font-size: 12px;}
    .feed-btn .btn-cancel{margin-right: 9px;}    
	.reaction-popup .reaction-graph {padding: 10px;}
	.reaction-popup .reaction-graph .graph-box{margin-bottom: 0}
	.ticket-attachment .img-box {width: 80px;height: 70px;margin: 0 10px 10px 0;}
	.user-profile {margin-top: 20px;}
	.addmember-popup .modal-body .sm-width.left-div {padding: 0;}

	.penalist-profile .progess-profile .progress-img, .panelist-header-img .progess-profile .progress-img {top: 12px;height: 76px;width: 76px;left: 12px;}
	.penalist-profile circle-progress svg {width: 100px;height: 100px;}
	.permission-popup .addpoll-footer .comm-class:first-child .form-control {width: 100%;}
	.addpoll-popup .addpoll-popup-inner .footer-pollaction{padding-bottom: 0;}
	.permission-popup .addpoll-popup-inner .footer-pollaction p.error-text {bottom: 0;}
	.addpoll-popup .pollhere-text{font-size: 13px;}
	.addoption{padding-bottom: 5px;}
	.panellist-banner {height: 150px;}
	 .point-search{flex-flow: column;} 
	.point-search .point-input {width: 100%;margin-right: 0;margin-bottom: 15px;}
 	.point-search .btn{min-width: 120px;}
 	.post-statistics .no-data {height: 140px;}
 	.post-statistics .col-md-6{margin-bottom: 15px;}
 	.participant-post .post-progress.odd-polls label.custom-radio, .polls-tab .post-progress.odd-polls label.custom-radio, .addpoll-question .post-progress.odd-polls label.custom-radio {flex: 0 0 100%;max-width: 100%;}
	.polls-tab .poll-attached-box h3.poll-attached-post{font-size: 12px;margin-bottom: 5px;}
	.polls-tab .poll-attached-box ul.right{justify-content: flex-start;margin-left: 15px;align-items: center;}
	.polls-tab .poll-attached-box ul.right li{font-size: 12px;}
	.coupon-box-main .col-md-4 {max-width: calc(50% - 10px);margin-right: 15px;}
	.rule-tab label {width: 220px;}
	.dash-total{flex-flow: wrap;margin: 0;}
	.dash-total .comm-box {width: 48%;margin-right: 3%;margin-bottom: 15px;}
	.dash-total .comm-box:nth-child(2n){margin-right: 0;}
	.dash-total .comm-box p, .newpost-box .right-side p{font-size: 14px;}
	.common-search-page .serach-item {padding: 15px;}
	.common-search-page .box-header h3{font-size: 15px;}
	.common-search-page .box-header{padding: 15px;}	
	.ticket-reward-box{padding: 15px;}
	.ticket-reward-box .box-header h3{font-size: 13px;}
	.ticket-reward-box .box-header a {font-size: 12px;}
	.reviewpost-detail h4 {margin: 0 0 15px;}
	.reviewpost-detail a{font-size: 13px;margin-bottom: 10px;display: inline-block;}
	.main-comment-box, .ticket-reward-reply-box{padding: 10px;}
	.ticket-reward-reply-box{margin: 0 0 15px 10px;}
	.ticket-reward-box .message-box{margin-left: 10px;}
	.rule-tab hr{width: 100%;margin: 10px 0;}
	.flagged-post-inner {padding: 10px;}
	.flagged-post-inner p {font-size: 13px;margin: 10px 0 5px;}
	.ticket-reward-box .white-box{padding: 15px;}
	.flagged-post .items-header{margin-bottom: 10px;}
	.signinup-popup h6.font-lg {font-size: 15px;line-height: 22px;margin-top: 10px !important;}
	.ownership-popup .login-btn {margin: 15px 0 0;}
	.ownership-popup .form-group.selectbox{margin-bottom: 17px;}
	.comm-detail {table-layout: inherit;}
	.comm-pro-qu{padding: 15px 0;border: none;border-top: 1px solid #E8E8E8;border-radius: 0;}
	.comm-pro-qu select.form-control:not([size]):not([multiple]) {height: auto;min-height: 50px;}
	.comm-pro-qu  .form-control-placeholder{font-size: 15px;}
	.profiling-qu-popup .btn-footer {margin-top: -10px;}
	.comm-qu-box{padding: 10px 10px 10px 25px;}
	.comm-qu-footer{padding: 10px;margin: -10px -10px -10px -25px;}
	.comm-qu-box h5 {font-size: 14px;}
	.comm-qu-box h5 span{left: 3px;}
	.comm-qu-option label.custom-radio {width: 100%;margin-right: 0;}
	.active-communities-list{margin-bottom: 15px;}	
	.white-box.root-profiling-pagination{padding: 15px;}
	.root-profiling-box .single-select {width: 100%;}
	.nopage-main-box {width: 90%;}
	.nopage-main-box h1{font-size: 22px;}
	.nopage-main-box .nopage-inner-box {padding: 15px;}
	.nopage-main-box .nopage-inner-box img {margin-bottom: 15px;width: 65px;margin-top: 10px;}
	.newpost-box .right-side{margin-bottom: 10px;}
	.message-popup h2 {font-size: 21px;margin: 15px 0 10px;}
	.message-popup{padding: 30px;}
	.message-popup p {font-size: 18px;}
	.pannumber-box p {font-size: 16px;}
	.selectcomm-dropdown .cuppa-dropdown::after{top: 0;}
	.common-search-page .serach-footer{flex-flow: column;}
	.common-search-page .serach-footer > span{margin-bottom: 10px;}
	.newpost-box{height: auto;}
	.penalist-profile ul li:first-child .bs-tooltip-top .arrow{
		left: calc(24px - 0.4rem) !important;
  	}
}
@media(max-width: 480px){
	.modal-container{max-width: 99vw;}
	.app-main-footer{align-items: flex-start;gap: 14px;height: auto;min-height: 140px;padding: 18px 24px;flex-flow: column;justify-content: center;}
	.app-main-footer__brand{gap: 8px;}
	.app-main-footer__links{align-items: flex-start;flex: 0 1 auto;flex-wrap: wrap;gap: 14px 24px;justify-content: flex-start;width: 100%;}
	.app-main-footer__language{margin-top: 2px;}
	.news-inner-box{flex-flow: column;align-items: center;}	
	.inside-for-mobile ul.breadcrumb{margin-left: 15px;margin-top: 5px;}
	.search-section.search-for-mobile{left: 15px;margin: 7px;top: 0;width: calc(100% - 206px) !important;}
	.news-left{margin-right: 0;}
	.news-right {width: 100%;text-align: center;margin-top: 20px;}
	.news-right a.news-name{white-space: pre-wrap;font-size: 15px;}
	.news-right p {height: auto;}
	.user-points-tab .empty-points .empty-link{padding: 10px 12px;width: 90%;font-size: 14px;}
	.empty-profile-page .empty-link{padding: 10px 12px;width: 90%;font-size: 14px;}
	.header-searchdropdown {width: 280px;padding: 15px;}
 	.member-white-box .search-bar input[type="text"].search-view{width: 280px;}
 	.reward-history-tab .rgt-icon > a.gray-link {margin-right: 9px;font-size: 12px;}
 	.reward-history-tab .box-header{padding: 10px;}
 	.poll-thumb-img {width: 100%;height: 150px;margin-right: 0;margin-bottom: 30px;}
 	.poll-thumb-main {margin-bottom: 0;}
 	.earned-box .earned-box-header .earned-links a{margin-left: 0;padding: 1px 5px;font-size: 11px;}
 	.earned-box .earned-box-header h3{font-size: 14px;}
 	.rewards-box .box-header{flex-flow: column;align-items: flex-start;}
 	.rewards-box .box-header .right{margin-top: 15px;} 	
 	.rewards-box h3{font-size: 12px;}
 	.rewards-box h3 span{margin-right: 10px;}
 	.point-search{margin: 15px 0;} 
 	.poll-btn-throw .intro-tour-hint-wrapper p{width: 320px;}
 	.poll-btn-throw .intro-tour-hint-wrapper.transformY_50{right: -70px;top: 8px !important;}
 	.poll-btn-throw img{display: none;} 
 	.attach-file .btn-custom {font-size: 0;}
    .attach-file .btn-custom::after{content: "\f1d8";font-family:fontawesome;font-size: 14px;}	
    .penalist-profile .u-name h2 {font-size: 20px;white-space: pre-wrap;width: 100%;}
    .penalist-profile .progress-box .left-sec, .penalist-profile .custom-progressbar {width: 100%;}

    .mycoupon-view .intro-tour-hint-wrapper.transformY_50.transformX_100 {right: auto;margin-top: -80px;left: 31px !important;}
	.mycoupon-view .intro-tour-hint-wrapper .footer {left: 0;}
	.mycoupon-view .intro-tour-hint-wrapper p {left: 0;bottom: 17px;}
	.mycoupon-view img{display: none;}	
	.admin-header .right-sec{flex-flow: column;}	
	.coupon-box-main .col-md-4 {max-width: 100%;margin-right: 0;}	
	.flagged-post{padding: 15px;padding-bottom: 5px;}
	.edit-panellist .delete-box a{top: 13px;right: 10px;}

	.comm-qu-footer a {margin-left: 12px;}
	.filter-comm.active-filter-comm{margin-top: 10px;}
	.common-search-page .serach-item p{margin-bottom: 8px;}
	.reviewpost-detail {padding: 10px 0 5px;}
	.reviewpost-detail .popup-msg{margin: 0;}
	.profiling-qu-popup h2{padding-bottom: 15px;margin-bottom: 15px;}
	.root-profiling-box .left h3 span{display: none;}
	.root-profiling-box .left h3 span.qu-responsive{display: inline-block;}
	.root-profiling-box .padding-content {padding: 15px;}
	.root-profiling-box .padding-content .row h3{font-size: 13px;}
	.root-profiling-box .left .response{font-size: 13px;padding-left: 5px;margin-left: 15px;}
	.root-profiling-box .left .response:last-child:before{top: 8px;}
	.root-profiling-box ul.right li a{font-size: 13px;}	
	.root-profiling-btn .btn-custom {min-width: 88px;height: 37px;padding: 5px;}
 	.root-profiling-btn .btn {margin-right: 10px;}
 	.root-profiling-box .vote-box h3.font-weight-normal {margin: 15px 0;}
 	.white-box.root-profiling-pagination{flex-flow: column;}
 	.root-profiling-pagination pagination-controls#questionlist {display: flex;justify-content: left;align-items: flex-start;flex: 1;}
 	.root-profiling-pagination ul.ngx-pagination{margin-left: -10px;margin-top: 10px;}
 	.user-profiling-tab .profiling-footer label {font-size: 14px;}
 	.communities-main-list .overflow-scroll {max-height: initial}
 	.message-popup.success-popup:after{display: none;}
 	.message-popup {padding: 20px;} 	
	.ds-rdo-checkmark{height: 36px;padding: 0 15px;font-size: 15px;}
	.pannumber-box ul li {margin: 0 10px 10px 0;height: 36px;width: 46%}
	.community-tab.recent-section ul li h3.recent-trending-pointer{width: 90%;}
}
@media(max-width: 375px){	
	.signinup-popup .modal-body {padding: 15px;}
	.recover-bottom > a {white-space: nowrap;margin-right: 10px;}
	.recover-bottom p a {line-height: 18px;}
	.comm-tab .filter label{margin-right: 3px;}
	.filter div[class^="col-"]{padding: 0;}
	.comm-tab .nav-tabs{margin-bottom: 0 !important;}
	.date-icon a{right: 6px;}
	.date-icon a img{width: 15px;}
	.header-inner{flex-flow: wrap;}		
	.row.empty-post{text-align: center;}
	.close-preview{transform: none;-webkit-transform: none;left: 20px;}
	.comm-tab .filter{margin: 0 15px;}
	.rgt-icon .btn {min-width: auto;padding: 0 10px;margin-right: 41px !important;}
	.search-bar{margin-right: 10px;}
	.profile-tab .btn, .prenext-footer .btn{margin-bottom: 0;min-width: auto;padding: 10px 30px;min-height: initial;height: auto;}
	.setting-box{padding: 15px;}
	.header-part .card {margin-left: 7px;}	
	.shortby-dropdown {margin-left: 6px;}
	.dropdown-toggle::after{margin-left: 7px;}
	.header-part .nav-tabs .nav-link {padding: 0 12px;}	
	.onoff-btn{display: flex;margin-bottom: 5px;}
	.border-box {padding: 10px;}
	.transfer-popup .login-btn {margin: 10px 0 0;float: left !important;}	
	.login-btn.sendlink {float: none !important;}
	.transfer-popup  .modal-body > p{margin-top: 10px !important}
	.responsive-nav .navbar-toggler {padding-right: 8px;}
	.responsive-nav span.short-name{margin-right: 0;}
	.navbar-brand{margin-right: 11px;}
	.responsive-nav .user-dropdown>a{margin-left: 11px;}
	.selectcomm-dropdown .dropdown-menu{right: auto;left: 50% !important;transform: translate(-50%, 0);animation: none;}
	.filter-dropdown.selectcomm-dropdown .btn{padding-left: 7px;padding-right: 10px;}
	.filter-dropdown.selectcomm-dropdown .dropdown-toggle::after {margin: 3px 0 0 4px;vertical-align: .2em;}
	.comm-tab .box-header{position: relative;}
	.search-bar{width: 86%;position: absolute;right: 20px;}
	.search-bar input[type="text"].search-view {width: 100%;}
	.post-attachment-file .att-left p{padding-right: 0;}
	.post-attachment-file .att-left .file-size{display: none;}
	.post-name{width: 100%;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;display: inline-block;}
    .post-name span:last-child{/*display: block;*/margin-top: 3px;}
    .post-images {width: 100%;height: auto;margin: 0 0 10px;}
    .post-images > img,.post-images > video {width: 100%;height: 100%;margin: 0;} 
    .reply-box .btn-custom{font-size: 0;width: 30px;height: 30px;padding-left: 0;padding-right: 0;}
    .reply-box img.profile-pic {height: 30px;width: 30px;}
    .reply-input {width: calc(100% - 70px);}
    .reply-box .btn-custom::after{content: "\f086";font-family:fontawesome;font-size: 14px;}
    .reply-box textarea.default-height {height: 30px !important;}
    .permission-popup .d-flex{width: 100%;}
    .permission-popup .custom-number{margin-right: 0 !important;}
    .rgt-icon .btn span {font-size: 18px;}
    .search-bar .search-icon{right: -3px;}       
    .footer{justify-content: center;flex-wrap: wrap;height: 100px;padding: 10px 20px;flex-flow: column}  
    .footer p{margin-bottom: 5px;}  
    body {padding-bottom: 120px;}
    .front-tab .nav-link {padding: 10px 11px 0 0;font-size: 13px;}
    hr {margin: 14px 0;} 
    .like-dislike-popup .modal-body{padding: 0;}
    .like-dislike-popup ul.nav li:first-child a {margin: 0 15px;}   
    .like-dislike-popup ul.detail {padding-left: 15px;}

    .reaction-popup .modal-body{padding: 0;}
    .reaction-popup ul.nav li:first-child a {margin-left: 0;}   
    .reaction-popup ul.detail {padding-left: 15px;}

    .profiling-table tbody tr td:last-child {width: 120px;}   
    .new-profile-tab .nav-pills .nav-link,.new-profile-tab .nav-pills .nav-link.active,.new-profile-tab .nav-pills .show > .nav-link{padding: 0 0 9px;} 
    .new-profile-tab .nav-pills li a img{width: 100%;}
    .profile-tab .nav-pills .nav-link,.profile-tab .nav-pills .nav-link.active,.profile-tab .nav-pills .show > .nav-link{padding: 0 0 9px 10px;} 
    .user-profiling-tab .blue-box span {top: -21px;right: 0;font-size: 12px;}    
    .notification-inner ul li p{width: 180px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;display: block;}
    .polls-tab ul.nav li a span {width: 67%;}
    .polls-tab .rating label .icon{margin-right: 5px;}
    .polls-tab .padding-content .row h3 span{display: none;}
    .polls-tab .padding-content .row h3 span.qu-responsive{display: inline-block;}
    .polls-tab ul.right li {width: auto;font-size: 12px;}
	.polls-tab .padding-content ul.right li:last-child {padding-left: 0;margin-left: 12px;}
	.polls-tab .padding-content ul.right li:last-child:before{left: -6px;top: 8px;width: 3px;height: 3px;}
	.polls-tab .padding-content ul.right li span{font-size: 11px;}
	.polls-tab .padding-content .row h3{font-size: 14px;}
	.members-simple .box-header h3{font-size: 14px;}
	.edit-panellist .admin-header .right-sec {flex-flow: row;}
	.edit-panellist .admin-header .right-sec > span{margin-right: 10px;margin-left: 6px;}
	.edit-panellist h2{font-size: 16px;}
	.edit-panellist .login-btn {margin: 0;}
	.edit-panellist .login-btn{justify-content: center;flex-flow: column;align-items: center;float: none !important;}
	.edit-panellist .login-btn .blank-btn,.edit-panellist .login-btn .btn:first-child{margin-bottom: 10px;}
	.edit-panellist .login-btn .btn{margin-left: 0 !important;width: 100%;}		
	.addmember-popup .login-btn .btn{padding: 7px 12px;}
	.selected-metrics ul.users-option li {width: 100%;}
	.statistics .box-header h3{font-size: 14px;}	
	.poll-thumb-img:nth-child(4n){margin-right: 10px;}
	.poll-thumb-img:nth-child(even){margin-right: 0;}
	.rgt-icon .new-admin{margin-right: 34px !important;}
	.root-profile .post-name h2 {width: 200px;}
	.feed-btn .btn-cancel{margin-right: 7px;}
	.postreply-box .posted-img .post-images{height: 110px;}
	.feed-commentbox {margin-top: 20px;}
	section.pan-verification {width: 100%;}
	.invitee-popup button.btn-custom.ml-3 {padding: 0 10px;margin-left: 10px !important;}
	.raise-ticket-popup .uploadimg-box .img-box {width: 69px;height: 60px;}
	.raise-ticket-popup .btn-custom {min-width: 112px;}
	.report-popup .btn-custom {min-width: 112px;}
	.report-popup p.contact-text {display: block;}
	.panelist-nav .navbar-nav li:first-child .nav-link .changecomm-name{max-width: 80px}
	.post-throw .intro-tour-hint-wrapper p {width: 300px;margin-top: -30px;}
	.rewards-header h3{font-size: 14px;}	
	.verification-input input {margin-right: 12px !important;}
	.user-profiling-tab .blue-box .form-control-placeholder{font-size: 14px}
	.user-profiling-tab .select-cat{margin-bottom: 24px;}
	.user-points-tab .empty-points .empty-link{padding: 8px 10px 8px 8px;display: flex;justify-content: space-between;}
	.empty-profile-page .empty-link{padding: 8px 10px 8px 8px;display: flex;justify-content: space-between;}
	.user-points-tab .empty-points .empty-link i{font-size: 17px;}
	.reaction-popup ul.nav li a{padding: 10px 8px;}
	.reaction-popup ul.detail .user-detail{padding: 15px 0;}
	.header-searchdropdown {width: 250px;}
 	.member-white-box .search-bar input[type="text"].search-view{width: 250px;}
 	.search-bar input[type="text"].search{top: -20px;}
 	.rgt-icon .header-searchdropdown .footer-btn .btn{height: 28px;font-size: 14px;}
 	.rating-box{width: 100%;}
 	.addcategory-popup .footer-btn .btn-custom {margin-top: 20px;margin-bottom: 10px;min-width: 100px;}
 	.profiling-tab .search-bar .search-icon{top: -6px;}
 	.postdetail-reply .post-name{width: calc(100% - 32px);}
 	.addpoll-question .addpoll-header ul.right li{font-size: 12px}
 	.addpoll-question .addpoll-header ul.right li:last-child{padding-left: 6px;margin-left: 12px;}
 	.addpoll-question .addpoll-header ul.right li:last-child:before{top: 5px;}
 	.addpoll-question .rating label{padding: 0;}
 	.postreply-box .reply-box-inner .iefeedimg {height: 30px;width: 30px;min-width: 30px;}
 	.postdetail .postreply-box .post-images {height: 110px;}	
 	.cong-popup .modal-body {padding: 0;} 	
 	.has-third .intro-tour-hint-wrapper .footer {padding-left: 7px !important;}
 	.has-third .intro-tour-hint-wrapper .navigate-btn{margin-left: 0;}
 	.member-white-box .search-bar .search-icon,.invitee-tab .search-bar .search-icon{top: -9px;} 
 	.feed-points.custom-number label{margin: 0 12px 0 0;}	
 	.feed-points.custom-number label {font-size: 11px;}
 	.attach-file .btn-cancel {font-size: 0;}
 	.attach-file .btn-cancel::after {content: "\f00d";font-family: fontawesome;font-size: 20px;color: #9da8b7;}
 	.feed-commentbox .text-muted {font-size: 12px;}

 	.post-throw .intro-tour-hint-wrapper .footer {padding-left: 40px !important;}
 	.ticket-box, .reticket-box{padding: 10px;}
 	.feed-validation {width: 170px;}
 	.feed-validation p.error-text{margin: 0;}
 	.poll-vote-now{margin-top: -11px;font-size: 14px;float: left;text-align: left;}
 	.pagination li a, .pager li a{width: 20px;height: 20px !important;min-width: 20px !important;}
 	.comm-detail .post-name span:last-child {display: inline-block;}
 	.comm-qu-footer{flex-flow: column;}
 	.comm-qu-footer span{margin-bottom: 5px;}
 	.comm-qu-footer a:first-child{margin-left: 0;}
 	.comm-pro-qu .form-group {margin-bottom: 20px;}
 	.comm-pro-qu .btn-custom {min-width: 94px;margin-right: 12px;font-weight: 600;}
 	.filter-dropdown .cuppa-dropdown .selected-list .c-angle-down, .filter-dropdown .cuppa-dropdown .selected-list .c-angle-up {right: -5px!important;}
 	.filter-dropdown .selected-list .c-list .c-token .c-label {max-width: 50px;}
 	.ticket-reward-box .message-box .img-box {width: 90px;height: 70px;}  	
 	.root-profiling-box .left .response{font-size: 12px;}
 	.root-profiling-box .padding-content .row h3 {font-size: 12px;}
 	.root-profiling-box .left .response:last-child:before {top: 6px;} 
 	.ticket-img-inner:last-child,.ticket-reward-reply-box .img-box:last-child{margin-right: 0;}
 	.ticket-reward-reply-box .img-box{margin-bottom: 8px;}
 	.ticket-reward-reply-box .img-box{width: 94px;height: 86px;}
 	.ticket-img-parent {width: 75px;height: 67px;}	
 	.reward-history-tab .search-bar input[type="text"].search {top: -11px;}
 	.rgt-icon ngb-datepicker-navigation .btn{margin-right: 0 !important;}
 	 	
}
/* CSS for the story COM-7464 starts here */
@media(max-width: 1150px){	
	.add-member-content-section .social-icon{
		padding-right: 15px;
	}
	.add-member-content-section .button-section ul li{
		padding: 0 7px;
	}
	.add-member-content-section .button-section ul li a.btn{
		padding: 5px 8px;
		font-size: 14px;
	}
}
/* CSS for the story COM-7464 end here */


@media(max-width: 1354px){	
	.memberInfoContainer{
		display: flex;
		gap: 7px;
		flex-direction: column;
		margin-bottom: 15px;
	}
}

@media(max-width: 850px) and (min-width: 768px){	
	.memberResponsive{
	width: 40%;
	}
	.newuser-signup-form{
		width: 60%;
	}
	
}

@media(max-width: 767px){	
	.newuser-signup-form{
		height: 100vh;
		display: flex;
	}
	.verification-input{
		width: 100%;
		margin-top: 25px;
	}
	.memberButton{
		display: flex;
		flex-direction: column;
		gap: 8px;
	}
	.loginContainer{
		padding-top: 18px !important;
	}
	.memberButtonSignup{
		width: 100%;
	}
	.loginTitle{
		font-size: 17px;
	}
	.codeInputContainer .otp-input{
      width: 45px !important;
	  height: 45px !important;
	}
	.codeInputContainer .otp-input:last-child{
	 margin: 0 !important;
	  }
	.codeInputContainer .wrapper {
		display: flex;
		gap: 20px;
		justify-content: space-between;
	}
	.invitee-login{
		height: 100vh;
	}
	.footer{
		position: absolute !important;
	}
}

@media(max-width: 411px){	
	.mobileTitle{
		font-size: 12px;
	}
}



.ngx-datatable {
  display: block;
  overflow: hidden;
  justify-content: center;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  /**
   * Vertical Scrolling Adjustments
   */
  /**
   * Horizontal Scrolling Adjustments
   */
  /**
   * Fixed Header Height Adjustments
   */
  /**
   * Fixed row height adjustments
   */
  /**
   * Shared Styles
   */
  /**
   * Header Styles
   */
  /**
   * Body Styles
   */
  /**
   * Footer Styles
   */ }
  .ngx-datatable [hidden] {
    display: none !important; }
  .ngx-datatable *,
  .ngx-datatable *:before,
  .ngx-datatable *:after {
    box-sizing: border-box; }
  .ngx-datatable.scroll-vertical .datatable-body {
    overflow-y: auto; }
  .ngx-datatable.scroll-vertical.virtualized .datatable-body .datatable-row-wrapper {
    position: absolute; }
  .ngx-datatable.scroll-horz .datatable-body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
  .ngx-datatable.fixed-header .datatable-header .datatable-header-inner {
    white-space: nowrap; }
    .ngx-datatable.fixed-header .datatable-header .datatable-header-inner .datatable-header-cell {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
  .ngx-datatable.fixed-row .datatable-scroll {
    white-space: nowrap; }
    .ngx-datatable.fixed-row .datatable-scroll .datatable-body-row {
      white-space: nowrap; }
      .ngx-datatable.fixed-row .datatable-scroll .datatable-body-row .datatable-body-cell {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
      .ngx-datatable.fixed-row .datatable-scroll .datatable-body-row .datatable-body-group-cell {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
  .ngx-datatable .datatable-body-row,
  .ngx-datatable .datatable-row-center,
  .ngx-datatable .datatable-header-inner {
    display: flex;
    flex-direction: row;
    -o-flex-flow: row;
    flex-flow: row; }
  .ngx-datatable .datatable-body-cell,
  .ngx-datatable .datatable-header-cell {
    overflow-x: hidden;
    vertical-align: top;
    display: inline-block;
    line-height: 1.625; }
    .ngx-datatable .datatable-body-cell:focus,
    .ngx-datatable .datatable-header-cell:focus {
      outline: none; }
  .ngx-datatable .datatable-row-left,
  .ngx-datatable .datatable-row-right {
    z-index: 9; }
  .ngx-datatable .datatable-row-left,
  .ngx-datatable .datatable-row-center,
  .ngx-datatable .datatable-row-group,
  .ngx-datatable .datatable-row-right {
    position: relative; }
  .ngx-datatable .datatable-header {
    display: block;
    overflow: hidden; }
    .ngx-datatable .datatable-header .datatable-header-inner {
      align-items: stretch;
      -webkit-align-items: stretch; }
    .ngx-datatable .datatable-header .datatable-header-cell {
      position: relative;
      display: inline-block; }
      .ngx-datatable .datatable-header .datatable-header-cell.sortable .datatable-header-cell-wrapper {
        cursor: pointer; }
      .ngx-datatable .datatable-header .datatable-header-cell.longpress .datatable-header-cell-wrapper {
        cursor: move; }
      .ngx-datatable .datatable-header .datatable-header-cell .sort-btn {
        line-height: 100%;
        vertical-align: middle;
        display: inline-block;
        cursor: pointer; }
      .ngx-datatable .datatable-header .datatable-header-cell .resize-handle,
      .ngx-datatable .datatable-header .datatable-header-cell .resize-handle--not-resizable {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        padding: 0 4px;
        visibility: hidden; }
      .ngx-datatable .datatable-header .datatable-header-cell .resize-handle {
        cursor: ew-resize; }
      .ngx-datatable .datatable-header .datatable-header-cell.resizeable:hover .resize-handle {
        visibility: visible; }
      .ngx-datatable .datatable-header .datatable-header-cell:hover .resize-handle--not-resizable {
        visibility: visible; }
      .ngx-datatable .datatable-header .datatable-header-cell .targetMarker {
        position: absolute;
        top: 0;
        bottom: 0; }
        .ngx-datatable .datatable-header .datatable-header-cell .targetMarker.dragFromLeft {
          right: 0; }
        .ngx-datatable .datatable-header .datatable-header-cell .targetMarker.dragFromRight {
          left: 0; }
      .ngx-datatable .datatable-header .datatable-header-cell .datatable-header-cell-template-wrap {
        height: inherit; }
  .ngx-datatable .datatable-body {
    position: relative;
    z-index: 10;
    display: block; }
    .ngx-datatable .datatable-body .datatable-scroll {
      display: inline-block; }
    .ngx-datatable .datatable-body .datatable-row-detail {
      overflow-y: hidden; }
    .ngx-datatable .datatable-body .datatable-row-wrapper {
      display: flex;
      flex-direction: column; }
    .ngx-datatable .datatable-body .datatable-body-row {
      outline: none; }
      .ngx-datatable .datatable-body .datatable-body-row > div {
        display: flex; }
  .ngx-datatable .datatable-footer {
    display: block;
    width: 100%;
    overflow: auto; }
    .ngx-datatable .datatable-footer .datatable-footer-inner {
      display: flex;
      align-items: center;
      width: 100%; }
    .ngx-datatable .datatable-footer .selected-count .page-count {
      flex: 1 1 40%; }
    .ngx-datatable .datatable-footer .selected-count .datatable-pager {
      flex: 1 1 60%; }
    .ngx-datatable .datatable-footer .page-count {
      flex: 1 1 20%; }
    .ngx-datatable .datatable-footer .datatable-pager {
      flex: 1 1 80%;
      text-align: right; }
      .ngx-datatable .datatable-footer .datatable-pager .pager,
      .ngx-datatable .datatable-footer .datatable-pager .pager li {
        padding: 0;
        margin: 0;
        display: inline-block;
        list-style: none; }
      .ngx-datatable .datatable-footer .datatable-pager .pager li,
      .ngx-datatable .datatable-footer .datatable-pager .pager li a {
        outline: none; }
      .ngx-datatable .datatable-footer .datatable-pager .pager li a {
        cursor: pointer;
        display: inline-block; }
      .ngx-datatable .datatable-footer .datatable-pager .pager li.disabled a {
        cursor: not-allowed; }

/*
bootstrap table theme
*/
.ngx-datatable.bootstrap {
  box-shadow: none;
  font-size: 13px;
}
.ngx-datatable.bootstrap .datatable-header {
  height: unset !important;
}
.ngx-datatable.bootstrap .datatable-header .datatable-header-cell {
  vertical-align: bottom;
  padding: 0.75rem;
  border-bottom: 1px solid #d1d4d7;
}
.ngx-datatable.bootstrap .datatable-header .datatable-header-cell .datatable-header-cell-label {
  line-height: 24px;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row {
  vertical-align: top;
  border-top: 1px solid #d1d4d7;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row.datatable-row-even {
  background-color: rgba(0, 0, 0, 0.05);
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row.active {
  background-color: #1483ff;
  color: #fff;
}
.ngx-datatable.bootstrap .datatable-body .datatable-body-row .datatable-body-cell {
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}
.ngx-datatable.bootstrap .datatable-body .empty-row {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
}
.ngx-datatable.bootstrap .datatable-footer {
  background: #424242;
  color: #ededed;
  margin-top: -1px;
}
.ngx-datatable.bootstrap .datatable-footer .page-count {
  line-height: 50px;
  height: 50px;
  padding: 0 1.2rem;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager {
  margin: 0 10px;
  vertical-align: top;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li {
  margin: 10px 0px;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li:not(.disabled).active a, .ngx-datatable.bootstrap .datatable-footer .datatable-pager ul li:not(.disabled):hover a {
  background-color: #545454;
  font-weight: bold;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager a {
  height: 22px;
  min-width: 24px;
  line-height: 22px;
  padding: 0;
  border-radius: 3px;
  margin: 0 3px;
  text-align: center;
  vertical-align: top;
  text-decoration: none;
  vertical-align: bottom;
  color: #ededed;
}
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-left,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-skip,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-right,
.ngx-datatable.bootstrap .datatable-footer .datatable-pager .datatable-icon-prev {
  font-size: 18px;
  line-height: 27px;
  padding: 0 3px;
}
.ngx-datatable.bootstrap .datatable-summary-row .datatable-body-row .datatable-body-cell {
  font-weight: bold;
}
@charset "UTF-8";

@font-face {
  font-family: 'data-table';
  src: url('data-table.19a1c5c211a201d8.eot');
  src: url('data-table.19a1c5c211a201d8.eot?#iefix') format('embedded-opentype'), url('data-table.d233a8724a9532b6.woff') format('woff'),
    url('data-table.4f99927ffc558471.ttf') format('truetype'), url('data-table.029992b38cb863a4.svg#data-table') format('svg');
  font-weight: normal;
  font-style: normal;
}

[data-icon]:before {
  font-family: 'data-table' !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^='datatable-icon-']:before,
[class*=' datatable-icon-']:before {
  font-family: 'data-table' !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.datatable-icon-filter:before {
  content: '\62';
}
.datatable-icon-collapse:before {
  content: '\61';
}
.datatable-icon-expand:before {
  content: '\63';
}
.datatable-icon-close:before {
  content: '\64';
}
.datatable-icon-up:before {
  content: '\65';
}
.datatable-icon-down:before {
  content: '\66';
}
.datatable-icon-sort:before {
  content: '\67';
}
.datatable-icon-done:before {
  content: '\68';
}
.datatable-icon-done-all:before {
  content: '\69';
}
.datatable-icon-search:before {
  content: '\6a';
}
.datatable-icon-pin:before {
  content: '\6b';
}
.datatable-icon-add:before {
  content: '\6d';
}
.datatable-icon-left:before {
  content: '\6f';
}
.datatable-icon-right:before {
  content: '\70';
}
.datatable-icon-skip:before {
  content: '\71';
}
.datatable-icon-prev:before {
  content: '\72';
}

html.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  box-sizing: content-box;
  outline: none;
}

.lightbox .lb-image {
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url('data:image/gif;base64,R0lGODlhIAAgAPUuAOjo6Nzc3M3Nzb+/v7e3t7GxsbW1tbu7u8XFxdHR0djY2MHBwa2trbm5ucnJyaSkpKWlpaGhoeLi4urq6u7u7ubm5vLy8vb29vT09Pr6+v39/aysrK+vr7Ozs8fHx9vb297e3qmpqb29vdPT06amptXV1aCgoMvLy8/Pz9fX18PDw/j4+Ozs7ODg4PDw8KioqOTk5JqampmZmZycnP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJBwAuACwAAAAAIAAgAEAG/0CXcEgECQ6bUGRDbDpdimTo9QoJnlhsYVvojLLgrEAkGiwWiFTYldGsRyHSYz6P2COG9XCw2TAYeXprCQYEhQcKgoouAQ4IHg4CAiMpCiASFRMUFhgXFxkZawEDcnd2Jh2LLiAdLyQvELEFX6pCAQx9fQ21T1wFHCi8TwcGxQYnwk8eBAcHZQnJTh8D1I8OJwmWMBMsFJudoG4u4mAgIwIoCSMKlpjcmxeLCgcPJianEcIKBXR1prVRSMiBUIfDAA8JoC1SMYWKKw/RXCzoE6IixIgC+uDaQCsiAQ4gOSCIOMRXhxIkhRjoYEwhSQTGCAxIyYiAzWYjU35o5oxaIj095J6AWFDmDAIHCVpgubCizRoFKtBAQjeixIdLADRZYBpOQ1An5qYmLKEgQAsYWb95UiUhgIJK7bZRCBMEACH5BAkHADMALAAAAAAZACAAAAb/wJlwSAQJRJxNJMLgHBzE6FBxeD0ey2zEBJESA4sXBHItZ2MJr1DReZFIZfNS9lGXOC83aRzPktQKHCEheW4QBQseCQkeAwZeIAYbG4OEBiNqXgiTnBsemV6BkwwbDCigXioMq6RQqFEBHLKyB69SKAW5BRwltlELugW1vkQHBh3In8RDBs3NactCBM4GvdEzBNMGBNbRB9MEB9DRAwQNBwcC1zMe5wciCOsj7wcDAwrXAe8i9ifrDvwGLEDQjdgHewtUIPBQJxqKBQM9OBDQkBgIBws9CBCQQAEMNRk0SAngoeTGBCMUgKgwgYIFDBcyhPTywSTHEiolsHR5YcVMMkgoOCbACUJny5cxf0ppkWIRzgAtYABg4QKmz5AivUhQ8LTozqo9M9iS0KKFURY8iQQBACH5BAkHAAAALAAAAAAZACAAAAb/QIBwSAShRBzGA8LhHAQgolSoEIVIENJjG+maHgfFFBBQbUKvF3bL7kZMpoFUYTij0xAI++E2yVJEJQUbhCF3JGsRfF0xB0QKg4SFIR0qDgkJHgMhjEUESZIbBiNjAAkvAkQeHAUFTRwOpaUKHa22CbKlCLatsblTAQYdwgVyv1MJBsrKJcdTCMsGxs5EAwQEBgQn1FIH1wQHpNxDBw0H52LjQucHIiKA6gAi7SID4uoL9QMLuPEOA/sW+FI3IiACDwHigVCB4OCleKYOejgh4INChwIEJJAQLxPFBCNKcBwHIiOKBCUUfJAwgaRGlApASKgwwQWGCxkyaNAgC8SIMxEpYs6cQMHChRU6f0lQEFQmzaJHk/6CAeKDU6JGkfJ0VkHCUAo2cerc6mwC0bBayQIIAgAh+QQJBwAuACwAAAAAHAAgAAAG/0CXcEgEJQaFAomUHAhAxGhUMWCErq/X8sF9HRRSYgDB2ZixWgiXG4kMAuFPg2Gmb0JZEkTNbnPARCUGHAUcDHZYS3wPbW0QCUMfBklJhhsGCA4JCQ4LDH0RMzIcQiAHBR2UBQclYS4JBY0mA0MOBrepBieuRAgmMhuRBLfEkLxEJwdEHgbDtwLHxwEE1NQq0ccjDdQHX9i8Dt3d19+uCyIiB07lrgPu7q3sUu8LCx/y8/ULCPf4vQgAPQDyJ8RBQAfxCL5C4MGBAGMKFTA88VCCQhcgHDhEMWIgwRECUCQYkcKiQhAiSSoAAeCiggQlFHwAIWGCQgkpUqxsAQMABToMBCXIpFlhAgULF1Zk0KCBnQQQRI0iVdpUXgUJEooeTbrU34QKWqd2JUiBxVaqTC9iwHAhg9u0roIAACH5BAkHADMALAAAAAAfACAAAAb/wJlwSAQlFoZOKNQpDFAgonQq/CwKjI12E3p5IaGDgjoNeAoFDoeR5XpfJAiENAiQq6ImOt1efiEPgRxjVCkHBkl7axsMfnGADxERLyNTH4eIBgVNBAgnIyMOCxwvgYGSL4RCIAMGBJkGIiVkIx2QkhEcdkICBK+/AndDCBC4kgNVBwcNzAeVwkMCkZIxMR8zJyIiygco0FIIESYyBava2gMe31MbL0QjA/HxqutVUgILAwsL6vXCHgtULEDwzB8ZDwgSeqBnEJwHDw4cRGlIBQFEAQImUpQSESOUjVNQYEyQYBfIISVQJBhR4trJIR9IlkjxocJLIRJY0gQh4WaVTxQKArSQMMGnBAUfeFaY4MJnCxAtYCylgOFmhaFLWbjAcCHDSwASplq4sCKDBg0nJwCYQGFsWbQvKcjlmsGszxkW3Nq9y/Ut3Lsz6u6tFwQAIfkECQcAAAAsAAAAACAAHwAABv9AgHBIBCUQBsOGkVwkQMSodPhBdApYzma7CYU2IsV0CnIQklcsg7H1vl6hQWBMHRjOhnSBw+6G3iQQBWJjCgcEiEkGWXxtfy8QEA8hI1MfAwcNiUkHHgIjIycIBX+BkpOEQyAqByIHmQQLJWMjBpEPuBEFUEMCra+vKHRDHiS4DxERA3UDzQMis8O9xrkRhALOzQnSUQjIyREHACAIKggLCyfcUh3gyR8pCPLyH+tRI+AmJh4oCB4eDgTYk8IhQgwZMQYIcODghIMUA6McIDGgHoCGAjLOiUgnowAUCVpwpAMyASgJI8ckSFCihAKUKaW0TKHgA8yYROApCADiJk5QIS0+8JQAg8LPIRU+9IRRYcLRIRKINqVg4SmACRKmurBwweqECSyoXriQ4SmFCVQxkM2gQcNRCmJXsHX71ILaDGytChmLl65eAH3/EvGbMggAIfkECQcAMQAsAAAAACAAHAAABv/AmHBIjI0QB0KhQCCoEqCidPpBNAzYzrLA2Ww4A8V0ChIkm1jDtuv1qgLj4Ud1ODQIafWSw2iHQh1iYwoLdXV3aXt8Xn8vLxsjUwELAwMihgcDDgIlIwIIBoyOJCQhgkMgDpSVlginRSMGIS+kpAVRQwkICJSUCXFDHrMQD8UDqLvJrsBEKCQQxA8vggke1tYlzEUe0cUHMS0O4icOv9pFBsUPEQ8fCgLw8LjnQyPs6xEeJQkoCQmR9IpwiEAwAoF9IxLCCUhkQMEIDEpITKFAAkMiJx5CSEHxw4cKF3MVNBHBI4iTAEIKSTAywskWEmBMUDlFQswKFVjQlIKzwoQ6CRR2FpkAACgFFxiEDqEA1IUFDBeULqVg4cKFFRmkxsDwFGuGDBq0Wv2qoWxYqWTPao1Bdi2RsmuDAAAh+QQJBwAqACwAAAAAIAAaAAAG/0CVcEhUlRwDkcEgOiASoKJ0GnA0G4Ts0lDoLhTTKUiQbB4IW0OnW2BwEIHwEORYDJKHPHq57jI2GwZgYR8eCAh2d2Z7bBx/gAUlYh6Ghwt2CAIJKSUoDgQFjo8hHINDLZ6UlQ6mRSUNgBshIS8dUUMpAicCAg4eknJCDn+0JC8LQxIJCby8ccFDCbIvJMaDCsvZH9BFHi/U1CIqMCXlJSOt3EIGJBAPECQfLQr09DDqRSMQ7g8PDiABAgC8hY9Ih37vDoBYKKFFhYJFFiB8UECCxQoVJkAkciJCvwgkYGAEMIHCxmgeH0SIQHICCwoWTgpJsLJmSQouLGCQqaJjTT0IFGBiuHCB54CaEThYsED0QgaeDWbIiGGiwVCnGTJo4KkCxIIXCFRg1UCWa5GsZc2e1ap2Ctu2UrbCFRIEACH5BAkHADAALAAAAAAgABkAAAb/QJhwSISVTovBgTAYeEagonQaEKgGooN2STB4VZ/pFJRAqK5NbaPr7RQ6noB4CBIg7oik8rD2GtwFHAQKc3UODh53KklZDQ1+BZGBBSVTLQkCAoceiR4JIyklCQ4HBpIcDBsFhEWimAInDgJhUyUHgRwbugZRdCMjCcEorHMwJwWpuhsqQxUKKaGivcVCCbkbISEbrBIf3goK09RCHtjZIQMwEy0g7QHi40INIS/1Lx8AEvr6APFFI/ZIkDgxAUCFgxX8SSnwAoLAAxMiRmShsMgCEg8cFqDAkaOLikQEPBj5IISFkxgsYAA5JAHJjBdiymRZ7SWEFRkyrFhxgaaxQwgjI7zISTSDzwERkkbgoKFpU6M0NyiNQEDDEA1QQSYwkdSECQdEmtJ8EYErV1o+hziYIcPrgbRTEMiYQQxuEQRCggAAIfkECQcAMQAsAAAAACAAHAAABv/AmHBIjClQHsRApFqcRsWoNAZKJBHNweDAJTQQn2lUkhI4PNeFlnsgGAgER0AslIxQArMDgdWKDg0NbwYdB2FTEiUJiwInZ3xqf4EGlB0dBiVSMAopIyMJeCcCIyUKCiMCIoKVBQUGh0QgHx+cnyMgUykDlq2tBLhDMCAgAQGmwHQCBr0cDAhDEzASEi2yEnRECQUczRscCkITABUV0xXYRSfcG+wLMS4sE/Lk6FEH7OwMARYuFP4TFOoVGYFvQwgBGBLyCyiwiAGDIUIMuEAxIYaGRRZseMHRQIYMKyhewEhEwAsSJzd8XLmC5JAEJCCQmKmhpoaPLoUkgMBz5pBSmxlyxhDwoCiEEEQ0CI2xoGjRAkuLcHD64EDUlxGoOrgqhEPWBxEgwFqKwESEsyasXnUQwezZCOCuDpDh1sQArkIE0DURYg7eGHMfZPqbNwGRIAAh+QQJBwAuACwAAAAAIAAfAAAG/0CXcEh0gUqCEwLhcAhKxajUJVGMEgKBw7NcDL6OzzRaASlKV1TS0f2KDocTaCwEtAIfRSqt5XoHbw0EA2JTExISICABemknbAhecAcEBAcpUhQAFRWIiwoKHx+LewiAcAYEBg2FRCwTsBUwiBVTCggHDQa7BiJzQxYUwq8AE3RCKJW8BR5DFxgW0cIUx0Mjux0F2gpCF97eGBjVRAIG2toqQisZGSve40UD5xwFAez37PBEJdocHBsCMmgYOFBfkQb/NmwYUFCIBoNEEDBQuMHAQ4hSBFDcwAHjlBEKQ4j0KCWByBAvQpCMIgDlixcbVhZZ8JLEiwIyiRQgwZPEgU6cQkZAGEoCwgmgLgw8gLCURKuVCB5Ilfozp4ClU19wk4kgQoSpDwbIDPDCq9kIDALkDDHj7AMoQGOY8PoiAdKkMdBuvUtChNq7Qp4SCQIAIfkECQcAMAAsAQAAAB8AIAAABv9AmHBIlHxKCZRgmVAQn9AhwKgojRIJwcmD6AoCUShl2gJ9qlctF6EaLASgsNA1AVQk5TNS6eAuBgMHKh9hFhQsExN3EgEfKVgCfQh/gQcDTk8XGBYuh4oSoKAtRwKTgAeoB4REF62bFIkTYR8OpwcNBANxQhkZKyuaFhZyQwkiqAQEBg68vb3AF8REJbcGygSEGtoaztJPCcoG4ggwGkPc3lAL4gYdHWDn5unT4h0FBQLz0gf39wv6xDz0K9AAoBwUHApwSGgwzIiFHDYwaBhlBAMGGyRShCIgY0YOG58g8LjBQEgiBkKE2BBiwEkhI168CDEz30sDL0jIDLEqpAdOCBByvnB5UgAJoBB0YtqIAMIDpBCIUkxQIMKDq1c5wDN4YEOEr1gfvEix0YCJr1a/hhgRckEMtF85LN0Y4+xZEVtD1n3QYO7JESfyQgkCACH5BAkHADAALAQAAAAcACAAAAb/QJhwCANIQB/FaFn6EJ9QC6tSOSZHCZTg5EgEoE+MizWptgKKUiKx9SAQCRAYdsFYKCxAFZnCChxuCCoeX0QZGSt1d2VWSmyAbyoLCwpEGhqIdRQTE3p7CgmQCAsDpU5DmBmKFnMBAqOlAwcqcqiZc0QjpLIHBwKWiLhPKSIivb2nMJjCUAm9DQ0EHszMCNAE2IXUYCnRBgQGCdu4AwbmBgjjcw7mHR0H6mAJ7R0G8VAlBfr6908j+/z6DUHBAaDAIQg4KOTQ4KAQAgw2SBzgcITEi78OEri4gYG2ex5CiJS44KCAEC9ejKzUDwGJlylDqOj3D8KDBzALfMS1BsGANw0Rbt58uSHFOA4RkgYVijPECHURTChl+qAAy3EdpCoNSmLATmomwop9cOBqvAImQmxoIKDWnCAAIfkECQcAKQAsBgAAABoAIAAABv/AlFBooUwqsBYoAAINn1Dh5VJkHSWgj2KUUDijwoz4giles9sESlD6PjXwzIpKYVUkSkVJLXAI3G9jGC4sADASAXoJAicOHh4fUXFTg0Z3H3uMDggIHgGSYmApEiWanCoegHCiTwqOnAsDAqy0CrADuJG0oiUquAMHJ7usDrgHByKfw1EKIiLHBwnLYCrQDR7TUQINDQQEA9lQCd0GBA3hTyUEBuUG6EMl7PLvQgny7PQpHgUd/Af5BwoILKCCXgkOAwugoHeAA0KEysI52ECRAYOC6FAwoEiRgwJ0HjaE4LgBQbgRBl6oHLmhQ0QoBwZ4SJDAwwIOEEiofBEihEc+VhwiCBX64AEECC90vuAwgpaMoUWjPiChs8NHVgpiQJWa88WCl2BezDAxlOiDFweu7vrQgGIEExs4HPhDKwgAIfkECQcAJwAsBwAAABkAIAAABv/Ak/CkyWQuGBdlAqgMn9BnEWlZViQgECzKnV6qkyvoo/hIuEPNFAMWf0qjUgutNiJdrAqsBVKUEoABaEYrVEt7ZCMJKAICIGhoFQEKio0ejpBoIIsCDh4ICZmanZ4ICIKiUQqlCCooqVwopioLC4+wTx8ItQMDI7hQHr29DsBPCcMiKsZDJQfPBwPMQinQz9MnzgcEDQ3YCQ0EBAbe0w4G4wbS0wMG7gYI0yUdBvQGocwiBQUd9KjADvYJjGcsQQEOAgsoMOaBg0OEHDw8CRACX5QRBjZo3MCAg4F/J2LMMMFgAKgEHhYUeBEixMYNCo+ZiEAzwoObN0m8YLmxQAk0KDJMCLWJM+fOlhsMLHxSQuhQojchkNDpcgHIIQoaRHiKk4TUECKWQgIh4ADHmw4PYIIUBAAh+QQJBwAAACwEAAAAHAAgAAAG/0CAcEjUZDKXi8VFbDqdGmPSQplYn9hiZqWsViSwSvYZRWKoky8IBBsXjWYXawKTgBSKlpu4vWC8Ei0BCiUlEntPFGofhAkjeohOFYMlIwkCKZFPEimWlwIgmk4gCSgCJw4Jok4lpw4eCKGrQyACrwgqmbNDKB6wCCi7QyMIuAgOwkIpCAvNC8kACgsD1APQCtUi1sklByLe28ICB+QHz8kLDQ3kHskpBPDwqsIDBgT2BAHiBvz87UO2IiXo0KEfgQ9DHJiIgGDPiQIQCXZAJmREjBkRInAYgaUEAQ4QIzbQB8BDjBgZUxZYkGqEAwQGNjDgABKiAQVDPpBIGeGBT0kIQF+8CLFBpkyQBko0UcBgYU+fDyA8EDq0aFEGBHA6CSAiJVQSEEgIJVqUAwKSWBQ0IPGVhNihITgM0Lqn1gGaD0iAHIBCFpYgACH5BAkHADEALAIAAAAeACAAAAb/wJhwSCzGNJqMcck0IjOXC6ZJLT6lFle1+oRiXKwJa7vsRi2USaUCIC8zK6krXZG0Ku7lBa2GtUAgeUwUaxIgHwqBgkYTdocKJRKLRhUBiCUJCpNGAZAJny2bRBIjnwICH6JEJSinAgmqQwoCJw4OArFCH7YevbkxH70Iw78fw8e/KQgqzAi/CQsD0h6/CNLSJ0SKggoHIiIDIiNDIRyTCAfp6QExGzImEc55Ag0H9QfZDybw8LhkIwYICCQgIpWICPAiRHggj4oAAxADGsgWA0SIhA8yFhi3pMSBDhEhithW4oHCjBlJFFDhYMQIBwgMcChQICQBTUQSQDiZEQKJRxcvQmwYymEmzQ4dCKRYooADypQ/gw7dYJTmgVRMAgyA8MAniZ9CpzIoWgABuyrdXjyIGiLs0AILsLoBIUAEzbYgFyTYtiQIACH5BAkHAAAALAAAAQAgAB8AAAb/QIBwSCwaAZqjcqnUZJjQpXN1iVqFGucFg7kys9Oty+JtOjOXi4VCKS/RahdrMnEr45RJBVa3G9d6FRISfkd6MBIgIBWFRSyIIAEfhI1EiQEKJR+Vlh+ZJSWcQxIpJSMJI6JCEqcJKCiqAC2uArWxH7UnukMnBh6FKQ4nDh61LyYxEQyFAh7OCAkeJiYR1Ql2Hwja2ikf1d8Fdg4LCyoqCCAADdTfCGUJA/HxAkIK3w8PJPRWJSLy8ZuEDKiGL98vKCgOKDwg4sA+IQE2RCj4AIKBVEdKLCBAYOGBBemIpAhBkcSLEAYQnBgxolkDAzANEGhwYEDAIiNIQoBAwmSIRw0bGHDgUKBATI4dUyxRUICnyZNAhRYt0AEmAQM2oQQY8KJriJ9Bh0616iBkFAUiNnwFCpRo0Q4IbnoBgWIATKAyVSQweyQIACH5BAkHADEALAAABAAgABwAAAb/wJhwSCwaiRpN5shsFpNLp/QJzVym2Fj1csFkpZkw10L+OldjF4VidmIs6gmA1WZiKCx5BVBn6isSMH1HE4ASLS2DRhOHIAEfBRwcBQWKFQGPHwoRJiYRESODFQqkJSUQn58egy2mI68bqREDgx8JtwkjBJ6fHIMjKAICKCUeng8PoHUgwifCCh/JyA8ddSgO2NggMQfTDxCrXyUIHuUICUIKJN4kKFkKKioI8wjbQgPsIeFOCQP+C/PQDQnAgYRBEi9CGCjBJAWCAyL8DVjgwd6QFCEMvki4YQMBDwJMCXAw4IBJiP8+HBmxYWOIEB0ZSKJkoCaBBg1ODlDQREGHN5cdN8ikVKCmzZwHVKh0EmBB0I6TKHWwSYDAAQEWpSgYwAEq0ak2ESw1AyLBAgIGKFlFMCKrkSAAIfkECQcAMgAsAAAGACAAGgAABv9AmXBILBqPmqNyqUwyn01NBkqVJTXSafWJzV5kjoJge8yYV5c0wRQzhcbkIfqCwVg2kXxkEB/S7RQUEHoRcH0YLoEsE4QRCX1CLosTExV6DxEokDIUABWfEoMPmA6bEzAwEqocEaMPC5sVIC0gtQeuDwWbIB8BHx8gDq4QECN9EgrJKSktHyQQDxAkBn0pIyUj1xIyByQv3y8eZB8J5eUKQgovJN4vG5pUHycC9CgJLUML698bG6VPJTw4OEHwRAoiAQq8CBGi34YGJZR8cIAAgYeLHgTgI5KCQcMNDBhw4HDAgYASJRIIUDFgwIIFFS0GODKCg0ORBXIaMEDggM8/Ay0HqLD4YYkCA/1wFuiwk+dPEUEdzGQSAAEHpUyb9jwgAqgAEFUULMhZQCsBAg24Su0DIgGCtDuBehgBdkkQACH5BAkHADIALAAABwAgABkAAAb/QJlMJSwaj8hkURGZOZTQqOxgMsVMAqlW+ImYIuDGVuv4giOJMVSjIZwjDPWRLWNnOJHHIzKQGzNsGhkZL3l7J35Fg4srEHp6aYkyKxeVlY8PEJGJFxieFhYvehAQiJIYLqAUFAUkjiQLkjIULLW1ByS5Lx2yEwC/ABMnui8hI4kTEhUwzBMfL9AvGwSJEiASLdkTMgMhxRsbT2oSCh8BINdCChsh4Bscm1IgIykK9h8VRSrgDAwcBaaifEiQYMSIEiVAGAlgwN2/AgdKKAmA4oQAAQQTlJBwREGBDf4KiDQgAqO9EQkcIPDgwKIAFAlaJClR4GGBDgYMEDhwQMSAQAELEKxk6UCAQiUKCDzMmXNnz59BhXowKiUAgpFNCTR4+lMoggRHtXxAwJSA1p4+ByBAESDRPAQ/dy5Y4CBhlCAAIfkECQcAJgAsAAAEACAAHAAABv9Ak9CUeA2PyKTyqCDNjMtoFLSJRGJQqXY4sFplpO1W4bU+EmLtIfJ4WBFp6YfEdnfiUke7HUHjlwd7DwV/UQUQDxAQC4VLLySKEAKNSRokl5cjlCYaGpwaL4+hfoUZGZ0aGRuhLyEnlKaxGR2tLxsqlBe6uwMhvhsGlBYYGBfEAiEbyhslhRYUFBYWLhYBDMsMB4UTEyzQ0SYLyxwFr3EAFRUA3CxCChwb5AUdpFoVIBISMDAV7UII8goUMDBJS4sPH0CAaNGiwpEABOR1MGBgQIolIFKMSKEAYQAQAJAoMCBwIsUGCwSMUKAgRQkBAlAkGFGC4weHSUqQNGmgwQFNEQMGLEDgwQFMmSM2Sojy4QBFAlAP/BSqwkPREzETlFgqJYADqFGnCkVA1oFRBVy3fEDQwKfUoEPJehgBohCIEQ4WLDgwgCgKBXWjBAEAIfkECQcAKAAsAAABACAAHwAABv9AlHAoVBCPyGQyIJopn1CUgmMyRaLY4YhkNc1A2aiCFCmXnWEliFN+mAtp5cD9cEcQ8eS4zhfkkyJ8dXh/Rx8kEA8QEAaFSCcQL4sQI45HBySZL3CWRAUvmgudRBsvpiF+o0IhrCEblaoorhu0CbEoHLS0qaoGugyEfxpEGgO0DBwNjhrMKMwCGwwF0yV/GdfMGhkBBRzTBSJ/FxfX10Iq3tMGvFkYGOPjK0XTHQb2sFgUFC4W7u9DHgrYs0fAVpQJACaw2OcCA5EADQYaIHAAgZEkFSRIqFBhgkIKSBQQmDjxgIgBCEakCADiwwcFClhq5DgBJJIUDQgQaHDgwIBPBSoQODghIMGIEgo+gGghAcaEJx8GUDQ54CcCDw4EFFWZFISEp1BAOOjp06pQokaPKmhRIcwHByJOLkBAN+vWDzD+gCghACtdrSUCSIASBAAh+QQFBwAzACwAAAAAHwAgAAAG/8CZcEgECU7EpHJJVDQiJhlzugwMIlhThMoVKjjYcGzQnY5C2EfYZCgvFaGHXI1lHNxJUGEujxRGeEoLEBAPhRAIgUoKLySEECQCikoDjSSOHpNJHyEvjS9tmkQCnZ4vgKJDIiGsIR2pRAYbsxuJsEIctBuStzMMswwMqLe/DBwcCb0zBcfMvLcEBdIFmb0L0wV3vQIFHR0GBiW9Ad/gBguTGkoI5gQEyXgZGupEHwQG7g0H4mUrGfLq5glxgI/AgQMD4FHBcMEfQHozQAwgoA/hAAcfmFCg4ILhhX8Zkig4eHDAAhUIUCgIIEECjAowAEygYMHjRyUpBogQYXKBB04HJ1CMKPEBRIsKMjnWvMAkgAqeA1A6ECAgQQkFRSVUmDCzIxUjJhEg+Fl16MoWWiuwcFEmgACxCKYKLZFCgVG1ikAoSCAARdWrICRQCQIAOw==') no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAtCAYAAADsvzj/AAAFF0lEQVR4Ac2ZW0xcVRSGPTNnhlPKcCsUAeeChkEVxhutDQwzMANaqamNWgpaH+yDIaZp1cRHbgH0gTsxkmDCI/hiRAqgD5qYRgKQ8II6TE00wfgGAcIdKeM/ydrNZIezxxg9m518gRxWmn6s9a9zhvNQJBL5T/gfjokwA5Uw0zWFeHBOugiTsAArfSWZky+iABVowAZSwRkiDSTRz1iHlJMmogATsIDTIAPYgRs8SeTTtXSQSLVKFNkivIQKksDDJFCsquqLmqZdAa/i+yCuPQ1cJHOKjdpJEWGdsIFs8BQoy83NvTEzMzO3t7f318HBweHc3Nxdj8dznWQeIWmpIryENUaiCPgdDsfN+fn5XyLcWV5eDlmt1gBqHgOpbAHIFmESySAHeECF0+m8hd/+vcgxZ3d39wBj9grqCkA6iaiyRBRunJhEpcvl+nBhYeG3iM7Z2dnZgkg1ZSgNqLI6wgebSVTZ7faPlpaW/tSTWF9f36ivr+9AbQkF3iZRhAs2dSInJ+eDUCj0h0Biq7S09BPUBkEhyAKJssKusE6QRCGoQLDfn56eDulJrK6ubgeDwS7UXgTPAztIkXUfUbhxKgLlyMRtBPtXPYm1tbXdqqoqJnEOOGhbJQCTkSJ8sJlEMNoJrFhdicPDw6PKyspe1FaD85yE2YBnLUGwSSIrK+s2bnZLehIbGxubfr+/B7WXSMJJ42QlCcVAES7YJJGdnR0dp7BgnLZKSko6qBPngIvrBEkYIKIT7PLoOKET4TjB7kbty+A8SaRxmcAxQEQn2BUI9q3Z2dl7gk7sINhRiZeoE87jMmGECB/s3JhgR8dJV2Jzc3Pb5/N1UieKKdgsEyaAY5wIk2Dj5GHBRifCgmBHb3adLBNsO3HBNkxEAWZwCmSCx4EPwb4ZJ9jbCHYXSRQDpyDYhomoNFIOUIRMvINO/KQnsbKyshMIBD5D7RVwgQWblzBahD2Sp5jN5jzM+9uLi4s/60mEw+FNbKcvUH8DVIECcAZoXLCliaRaLBbX8PBwb0RwRkZGfkftx+BdUM4+KInDbdxoWUCKoih5CQkJgYGBgS/xs6PjRPb394+ampp+RP174CIoBGcpYypQZIqYY+4dz4DLvb29Y6LONDY2fou6OuAF+SCDZCgj8kQSQDqNihfU9vX1TYlkGhoa7qDuDVBKMpQVrjMG30fYCs6gAHuRmdqurq5JkUxLS8sEaq+CMq4zJGOgCB2Fk8kHJSaTqaazs3Pi2MzQaWtrm0RtDfDFyCQyGUNFOJlEkMlkwLWenp5vRDKtra1TNGYsM5mcjKEifGeYjBfUQUaYmebm5omYzLjFC8C4zyNqTGfcNDZ1/2ABjKHudZLXkTFARJAZN/CqqnqNMqN7Ojo6vqMF4ONkVFmvFUQLQNiZ7u7u76PZAn6S4TJjrIhoAdT+iwXAdQYYKCJaAG/iPhNvAYyj7jXwAngUpAGrDBF+ATCZAuBXFOX60NDQ3TiPM1/hyfoyPf7kgNNSXyvwmSGZMk3T3hocHPwhzlPzJLLFnpZT5PztV5wZNyilbTZFmTnZrxU4GZWXATV4ap4kmeNELlEticjsSHyZq/39/V/j374P2Lk/Pj5+BznxUuDlj1acJ4B8cAH/4er29vbPR0dH58fGxubx/ac2my1Ab3iz5Yc9/gJIB05QCJ4Fz9FXD3gC5HIfi+WKCGQ0GpuzwA7yCDtdS+b/SCFfRPwaQqPxSSaS6JrlwUjR+RtEvCM0ct4sLQAAAABJRU5ErkJggg==') left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAtCAYAAADsvzj/AAAFDUlEQVR4Ac2ZS0xcVRjHvTN3hisw0GIRZ3AeLWHQWqdVsRqgA86AUmpqoy20Whd2YYhprJq45BVAF7yJkQQTluDGiEhBF5qYRsIjYYMKQxNNMO4gQHgjZfxP8pF8ufEe0qQ5pyf5BTKcWfzyff/vnHt5xLQ0wgbsQCfswEY80BWPxx8I5sUlHMBJP0nm4RfRWAUMkAqOgseII8AFDNqjPYwiGuEAySADeEEuOEkE6bNjIIX22riQchHWSo+SRACc1nU9ahjGG+ASfn8Vn+WT0BNUMV0so04kFTwJTodCoeuTk5N3dnd397a3t/8dHx+fzM7OvoG/nQPPADdwscqoF2HBPgJynE5nZGFhYTZuWlNTU3/4fL6b2FMMnmUyTpJRLqKTSAbIQyu9vrW1tRv/n4Uqzfv9/g+x7xUQAh6QxmVUV0SnKRWESMXm5uZ63GJNT0//GQgEPsHeUibD20xTLeKioBdUV1e3rKysrFrJzM3N/eP1ej/F3jImIxgAcsOeDLLAKRAtLCz8HDKWlZmdnf3b4/F8zCojGADyz5F04AUvgPJoNNq2tLS0YSUzNjY2iwHwEWXmFHCzymiqRGwgiaaXD7wIysvKytqWl5e3rGQwAO4iM7ewt4SmmYfLqLpr2U0yZ0FFaWlp597e3r6VDEbzXapMlGQEA0COiEYyTmozP8lcKC4u7lhdXV2zksGhOZeVlXWLy5gHgDwRJsMqE6A2qygoKGhBm60L2izmdruZjGkAyBShxTNzlGTOgvMYAO2iAYDKxKjNSgQDQI6IRWb8VJnXMADaUZlNK5mJiYl5DAC6AQgGgCwRWjaWGR/IB+fD4XDr2trahqDN5lEZ3mbZ5gEgW4QPAD6aK3BotmIArAsqE2MDIMTajGTkinAZ3mb5NAAS58zGIQPgJvaGwVMgk5597ECTLcJl+AB4GVyKRCJfLi4uijLzGzLzHrWYj1pMVyXCB4BBz/J5oAzcwDT7OhaLWZ4zMzMzvyNX79rt9uOUNyewqRSxsbzk0Jh9H3w2MDDwV1yw+vv7Ox0OR4C+q1REAzr1+ON0TpSDD+rq6n7d2dmxusbs9/T0fJOUlBTRNO2gIg6lGSGJYyAXFIFrtbW1P4oq0dnZOYR9F8EZdqaoCDtVgrJBEoXgck1Nzfciia6urlHsu0rSOSADJEkXYRK8EufAlYaGhtsiiba2thFk4kAij75Po1fiOcIkkplEGFQ2NTWNCBz2W1tbb9tstkrsLaDvcQlN5hWFS2SyTFxubGwcFUl0dHT8gH1VTCITJHMJWSLmYAcPMlFfXy9sJ0gkMnGNpEnCXAkJIhYSReAtBHvosGCTRBgEWSV0qc8jPNhMIgyutLS0/CSSSGRC1/Uqkg5aZUKGiDkTQVAMqtrb238+RGJUHGyZb1F4Je4/2FfFwZYr4qRb7QnwEngTwR4+5JxIZOJtcbDlv2lMAR5wBjfUi7h2fCuS6Ovru6Np2nVqvzwmQcFW9+43HeSg10twix0RSfT29v5iGMY7dMLniTOh+N8KghN7lKZTIQgKMiG/IkwkCJELFiL7uMWOYE+lWUL8elRNa51APoqGh4cTN9p7TOJed3f3d4nz5P4l1ITdDU66XK5Ic3PzF0NDQ1ODg4NT+P0rCFbQM3qu4MRWLsIfX7PB0yAEngPP089TwA8yBMFWKmJ+qZBGj7FecJzw0mfpwBBLqBexseAbIBWkESnAEPybQLnIf4JfIzSb+FymAAAAAElFTkSuQmCC') right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 10px;
  zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  max-width: 80%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-controlContainer {
  float: right;
}

.lb-data .lb-turnContainer {
  float: left;
  margin-right: 5px;
}

.lb-data .lb-zoomContainer {
  float: right;
  margin-right: 5px;
}

.lb-data .lb-downloadContainer {
  float: right;
  margin-right: 5px;
}

.lb-data .lb-closeContainer {
  float: right;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAbCAMAAAC6CgRnAAAAPFBMVEX///8AAAD9/f2CgoKAgIAAAAAAAAAAAABLS0sAAAAAAACqqqqqqqq6urpKSkpISEgAAAC7u7u5ubn////zbsMcAAAAE3RSTlMASv6rqwAWS5YMC7/AyZWVFcrJCYaKfAAAAHhJREFUeF590kkOgCAQRFEaFVGc+/53FYmbz6JqBbyQMFSYuoQuV+iTflnstI7ssLXRvMWRaEMs84e2uVckuZe6knL0hiSPObXhj6ChzoEkIolIIpKIO4joICAIeDd7QGIfCCjOKe9HEk8mnxpIAup/F31RPZP9fAG3IAyBSJe0igAAAABJRU5ErkJggg==') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-turnLeft {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAACIElEQVRIicWWPWsUURSG3xM/4hYpjLIhphJiIYugNloIiRoU/QO20UJrU1gE/EAbRReCGkQQEbFLCi0EG5NKEIKYItFSkBhSmMLIipolj8WeWa/rbrIzmdm8MNy599xznjN37pe0QbKwAlyTdFjSoJkt1Nhyko5L6pe0S1KPmxYkzUmalDRpZqXYWQDLVHQuaNsNPAFKrK2fwCOgNy440nlgK1AEftUE/wJMAM/8mQDma/qUgVvAlrjgK8CboF4C7gAHAKvjZ24r1ozMFNAdB7wSvI8BXTFGLe8+kT4A+WbBkd4DF4Czazr/H2so+ICpVYe9DjjUyzhgj3cp8L+RBPwbGI4L9pjjHmMZ2JMkRiIB3cA3hz9oGdjhdx38A+hoJXhf8NtOS1Jbi9gzkhb9/WgVTGUD6GnktV6ZGZLeebVQBUsalTQHDGYFlzTvZWcIPuhlX4bgz14uSdJmr0xLOqTKEZeVRiR9lfS82gJ0AAPApgzBGyMaHTTAKeBTFhMMuOxr+Go944gbl4DOFKFdwPeGWyZQ8MNgBSikCL7v0DKwN2qPZrXMbBY4ImmHmc2mBZbU7mXRzD42k+kx4OR6qUCOBlemep138vf2MAZsjwHKA/eA60mybAfeBifKzSb9hn1y4ok3fVcLg2wDbgMzwAlva/PJ8gp4CvQH/fcHiZZZ7aqTIJle/tV0YMsBD4HHaa6KEH4ReAG8Bs6kDshafwDkXu6L86KiLgAAAABJRU5ErkJggg==') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-turnRight {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAACGUlEQVRIicWXPWgUQRTH/3OJiSCEgJg7FcEmGLkmNoKCYESLYGNrqaDBSkQri4ARDPgBQRBU8CNgE8TCwkIhIqiVYLAQg5UoOZA0Eg1RE/xZ7DsymZzu7HJ7GVgG5r3/+82+3Z33Vlqj4WIdgQ2SBuzaJqlsphlJNUkvJE065xYC3WZJ9yW9ds6NRO8M6AXuAD9JHz+Ae8B2T3/cbIuxwA7gMrAUBJ8BJoEHdj0HaoHPL+CKxThZX4yBbgHeBHdyFegHVj0ewAG7gGvAvKd7BQxHgYEy8METTwA9UWlK9BXgkaf/kwq21Lz1BGdigabvAY4BQ8BUkP7/gi95fueyQE3/JISlgoEdLL9IE1mhFuM88Dsr+LbZvwGVPOA8O+0CFgw81hKogQ97Gam2glmyeb/Ns865960E1+9yqkgYsDUEb7S5ViD0hKQvwHUf/NXm2aLAkvYqqYa7JandFk9LeiZpvEDwZ5s/FshYPew4Pgh0hoa2lh0cAfiifcdnC4h9CvgEDDYy1o/M70C5gT4vtBuYs9ijjRx2ekXiVhPBfSQldvGfpyLLZfFus8AWdxDYk+ZUBTqaADsCHMgjLAEjJE1bltanC3homVsCNmUFV7yKNQdcANoidH4X8xIopWkaBRllZXvb79n2AePAU+Am0G7rh4Bpy9T6zFAPULVP7Qawzlt/x8rRmxuScUNHSZr5xyRdZfTv0JqOvwtaARgflgIWAAAAAElFTkSuQmCC') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-zoomOut {
  display: block;
  float: left;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAAB7UlEQVRIieXWvWsUURTG4XPjJpgmlSFKRAtTWGjAj0ajiSKKFopg/AtELbQTAiI2IaazEhsLK0XEVisbISD4gY2FlQQixiAYxESiBn0sdoKTQHZ3dte18FR3uO97fufcmbmciH8UqVYhUkT0RER3RMxGxMeU0uJfqQoJJ/EAc5bHDzzGWXQ0E9qPZ/iMGziCXnRgPfZgDFN4i2PNgJ7IOryFdVW0a3EZ3zHSCHQfvuFCQd8hzONcPdAuzGC0sLnsP5UVvb2o8RpeY0094CzHXTwqYmjHLIbrhWZ5tuAX+mo1LL2jzkbAWa4XuFRJ05Zb74iIlymlhUbBETERETsrCUq59YaImM5vYlNEXKkBdCelNJF7fh/lRlaNtkqbDUbF6zjf8YeI2LXMmdJURJyvA9obETOVBPmOX0XE7mZ8XBExGBHPa1KihE843QgRffiJrUVMo3iDUnX1qjnu4WFRUxemMVYndBgLha/MzLw3M18s6DucXUDXC0NzSY7jC26ju4q2E1exmA0I8xhqBL4NT7MCbuIoNuYGgQGM4x0mMZJBmwJP2VBwPysgHwt4gjNLvyCGVsAH64avKKRHeSTabJU5awV8rmnwGgscyJ3QVxz8b+EHWgnf789MPon2VsIHlGfv/pZBc/DWdVopfgMdyEl3/DM14wAAAABJRU5ErkJggg==') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-zoomIn {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAABmJLR0QA/wD/AP+gvaeTAAAB+UlEQVRIieXWv29NcRzG8c+XttGlk6aEMOhAQhM/FkpLhDD4kai/QFgYpQliaRobi1gMJoRYmSxNmkhIWVibJkQjQiNaKRpehh7p0bTnntt7XYNnOiff5znv53vvPd/7ifhHSmWNSBHRERHtETEREe9TSjN/pRUSjuMBJv2p73iM02ipJ7QLT/EJ13EQa9CCVdiJQbzGKA7XA3o02+FNrKzgXYEL+Ib+WqC78RVnq8ztxxTOLAXahncYqDo8mz+Rld5SbXAQL7G8wDOCTQXrd/CoGmgzJtBXwQfbC9Y34Cc6i56zLHfdExEtEVG+7QJKKY1GxPOIOFYWvDUiRlJK07WAMw1HxLYiQ1PuenVEjOcXsS4iLi2Qu4gPufvbKaXh3P3bmN3IolpWtFijyh3HOI+hEr7CH1fmuYZ7RZ78jl9ExA60lmparJ6IeFbKiSZ8xMkKvkqvUyd+YGPpmhjAqxoPkLt4WBqahdowjsGqgnP5PkxXfWRm4V1Z+FyVuQPZn8TVqqG5hxzBZ9xCewVvKy5jJvv+p9BbC3wznmQFbuAQ1uYGgW5cwRuMoT+D1gWesqHgflYgr2kM4dTvVxC98+A9S4bPK9JhdiRab5E5ax58sm7wkgW7c5/QF+z7b+F7GwnfY24mH0NzI+HdZmfvroZBc/DG7bRIvwDiiW2v3ei28wAAAABJRU5ErkJggg==') top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-download {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAAaUlEQVR4Ae3VgQVAIQCE4UZplDa70Rrt3gQ5eDry/wRIn1QNoka2l22FsW6C5JwAAQIE6IeF5+HR287tw9x5YzdSedcKKDXOTcZ0UQFTQOnta59RVUxAFTABVcAElAZRuEX1DxYQEV3oA58RWgFolpBxAAAAAElFTkSuQmCC') right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* animation */
@keyframes fadeIn{    
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeOut{    
  0% {opacity: 1;}
  100% {opacity: 0;}
}


@keyframes fadeInOverlay{    
  0% {opacity: 0;}
  100% {opacity: 0.8;}
}

@keyframes fadeOutOverlay{    
  0% {opacity: 0.8;}
  100% {opacity: 0;}
}

.fadeIn{
  animation-name: fadeIn; 
}

.fadeInOverlay{
  animation-name: fadeInOverlay;
}

.fadeOut{
  animation-name: fadeOut;
}

.fadeOutOverlay{
  animation-name: fadeOutOverlay;
}

.animation{
  animation-fill-mode: both;
}

.transition{
  /* For Safari 3.1 to 6.0 */
  -webkit-transition-property: all;
  -webkit-transition-timing-function: ease;
  /* Standard syntax */
  transition-property: all;
  transition-timing-function: ease;
}

.lb-image {
  transition-duration: 0.5s;
      transition-property: transform;
  }

/* animation */

.scalable {
  transition: all 0.2s ease-in-out;
}
.scalable:hover {
  transform: scale(1.1);
}

.intro-tour-hint-wrapper {
  position: absolute !important;
  background-color: var(--step-background-color, #fff);
  z-index: var(--step-z-index, 999);
  text-align: var(--step-align, center);
  font-size: 14px;
  border-radius: var(--step-border-radius, 5px);
  min-width: var(--step-min-width, 300px);
  max-width: var(--step-max-width, none);
  width: var(--step-width, auto);
  box-shadow: var(--step-box-shadow, inset 0 0 30px 0 rgba(0, 0, 0, 0.5));
}
.intro-tour-hint-wrapper .header {
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #8D0876;
  background-color: rgba(0, 178, 242, 0.3);
  border-bottom: var(--header-border, 3px solid #00b2f2);
}
.intro-tour-hint-wrapper .header .header-btn__close {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}
.intro-tour-hint-wrapper .content, .intro-tour-hint-wrapper .footer {
  padding: var(--step-padding, 10px);
}
.intro-tour-hint-wrapper .footer {
  height: 50px;
}
.intro-tour-hint-wrapper .footer .navigate-btn {
  background-color: var(--step-button-background, #ddd);
  box-shadow: var(--step-button-box-shadow, 0 0 15px rgba(0, 0, 0, 0.7));
  color: var(--step-button-color, #a5098a);
  border-radius: var(--step-button-border-radius, 50%);
  height: var(--step-button-height, 30px);
  width: var(--step-button-width, 30px);
  margin-left: 7px;
  font-size: 18px;
  line-height: var(--step-button-height, 30px);
  text-align: center;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}
.intro-tour-hint-wrapper .footer .navigate-btn__previous {
  position: absolute;
  left: 10px;
  bottom: 15px;
}
.intro-tour-hint-wrapper .footer .navigate-btn__next {
  position: absolute;
  right: 10px;
  bottom: 15px;
}
.intro-tour-hint-wrapper .footer .navigate-btn__finish {
  position: absolute;
  right: 10px;
  bottom: 15px;
  border-radius: 0;
  padding-left: var(--step-button-padding, 8px);
  padding-right: var(--step-button-padding, 8px);
  width: auto;
}
.intro-tour-hint-wrapper .footer .navigate-btn:first {
  margin-left: 0;
}

.intro-tour-hint-wrapper.transformX_50.transformY_100 {
  transform: translateX(-50%) translateY(-100%);
}

.intro-tour-hint-wrapper.transformX_50 {
  transform: translateX(-50%);
}

.intro-tour-hint-wrapper.transformY_50 {
  transform: translateY(-50%);
}

.intro-tour-hint-wrapper.transformY_50.transformX_100 {
  transform: translateX(-100%) translateY(-50%);
}

.hint-disabled {
  pointer-events: none;
  cursor: default;
}

.hint-relative {
  position: relative;
}

.overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: calc(var(--step-z-index, 999) - 1);
}
.overlay svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: var(--step-overlay-background, rgba(0, 0, 0, 0.6));
}
.switch.switch-small {
  min-width: 33px;
}

.switch.switch-medium {
  min-width: 50px;
}

.switch.switch-large {
  min-width: 60px;
}

.switch.switch-small > .switch-pane > span {
  font-size: 9px;
}

.switch.switch-medium > .switch-pane > span {
  font-size: 16px;
}

.switch.switch-large > .switch-pane > span {
  font-size: 16px;
}

.switch {
  border: 1px solid #dfdfdf;
  position: relative;
  display: inline-block;
  box-sizing: content-box;
  padding: 0;
  margin: 0;
  cursor: pointer;
  box-shadow: rgb(223, 223, 223) 0 0 0 0 inset;
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
  white-space: nowrap;
}
.switch small {
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: calc(100% - 30px);
  transition: 0.3s ease-out all;
  -webkit-transition: 0.3s ease-out all;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.switch.switch-small {
  height: 20px;
  border-radius: 20px;
}
.switch.switch-small small {
  width: 20px;
  height: 20px;
  right: calc(100% - 20px);
}
.switch.switch-small > .switch-pane > span {
  line-height: 20px;
}
.switch.switch-small > .switch-pane .switch-label-checked {
  padding-right: 25px;
  padding-left: 10px;
}
.switch.switch-small > .switch-pane .switch-label-unchecked {
  padding-left: 25px;
  padding-right: 10px;
}
.switch.switch-medium {
  height: 30px;
  border-radius: 30px;
}
.switch.switch-medium small {
  width: 30px;
  height: 30px;
  right: calc(100% - 30px);
}
.switch.switch-medium > .switch-pane > span {
  line-height: 30px;
}
.switch.switch-medium > .switch-pane .switch-label-checked {
  padding-right: 35px;
  padding-left: 15px;
}
.switch.switch-medium > .switch-pane .switch-label-unchecked {
  padding-left: 35px;
  padding-right: 15px;
}
.switch.switch-large {
  height: 40px;
  border-radius: 40px;
}
.switch.switch-large small {
  width: 40px;
  height: 40px;
  right: calc(100% - 40px);
}
.switch.switch-large > .switch-pane > span {
  line-height: 40px;
}
.switch.switch-large > .switch-pane .switch-label-checked {
  padding-right: 45px;
  padding-left: 20px;
}
.switch.switch-large > .switch-pane .switch-label-unchecked {
  padding-left: 45px;
  padding-right: 20px;
}
.switch.checked {
  background: rgb(100, 189, 99);
}
.switch.checked small {
  right: 0;
  left: auto;
}
.switch.checked .switch-pane {
  top: 0;
}
.switch.checked .switch-pane .switch-label-checked {
  display: block;
}
.switch.checked .switch-pane .switch-label-unchecked {
  display: none;
}
.switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.switch .switch-pane {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  justify-content: flex-start;
  align-items: center;
  top: 0;
  position: relative;
  pointer-events: none;
}
.switch .switch-pane > span {
  display: block;
  min-height: 100%;
}
.switch .switch-pane .switch-label {
  color: black;
}
.switch .switch-pane .switch-label-checked {
  display: none;
}
.switch .switch-pane .switch-label-unchecked {
  display: block;
}
.switch.loading {
  background-color: #f1f1f1;
}
.switch.loading small {
  background-color: transparent;
  border: none;
  box-shadow: none;
  right: 50%;
  transform: translateX(50%);
}
.ng-select.ng-select-opened>.ng-select-container{background:#fff;border-color:#b3b3b3 #ccc #d9d9d9}.ng-select.ng-select-opened>.ng-select-container:hover{box-shadow:none}.ng-select.ng-select-opened>.ng-select-container .ng-arrow{top:-2px;border-color:transparent transparent #999;border-width:0 5px 5px}.ng-select.ng-select-opened>.ng-select-container .ng-arrow:hover{border-color:transparent transparent #333}.ng-select.ng-select-opened.ng-select-top>.ng-select-container{border-top-right-radius:0;border-top-left-radius:0}.ng-select.ng-select-opened.ng-select-right>.ng-select-container{border-top-right-radius:0;border-bottom-right-radius:0}.ng-select.ng-select-opened.ng-select-bottom>.ng-select-container{border-bottom-right-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-opened.ng-select-left>.ng-select-container{border-top-left-radius:0;border-bottom-left-radius:0}.ng-select.ng-select-focused:not(.ng-select-opened)>.ng-select-container{border-color:#007eff;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 0 3px rgba(0,126,255,0.1)}.ng-select.ng-select-disabled>.ng-select-container{background-color:#f9f9f9}.ng-select .ng-has-value .ng-placeholder{display:none}.ng-select .ng-select-container{color:#333;background-color:#fff;border-radius:4px;border:1px solid #ccc;min-height:36px;align-items:center}.ng-select .ng-select-container:hover{box-shadow:0 1px 0 rgba(0,0,0,0.06)}.ng-select .ng-select-container .ng-value-container{align-items:center;padding-left:10px}[dir="rtl"] .ng-select .ng-select-container .ng-value-container{padding-right:10px;padding-left:0}.ng-select .ng-select-container .ng-value-container .ng-placeholder{color:#999}.ng-select.ng-select-single .ng-select-container{height:36px}.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{top:5px;left:0;padding-left:10px;padding-right:50px}[dir="rtl"] .ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input{padding-right:10px;padding-left:50px}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value{background-color:#f9f9f9;border:1px solid #e6e6e6}.ng-select.ng-select-multiple.ng-select-disabled>.ng-select-container .ng-value-container .ng-value .ng-value-label{padding:0 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-top:5px;padding-left:7px}[dir="rtl"] .ng-select.ng-select-multiple .ng-select-container .ng-value-container{padding-right:7px;padding-left:0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{font-size:.9em;margin-bottom:5px;color:#333;background-color:#ebf5ff;border-radius:2px;margin-right:5px}[dir="rtl"] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value{margin-right:0;margin-left:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled{background-color:#f9f9f9}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:5px}[dir="rtl"] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value.ng-value-disabled .ng-value-label{padding-left:0;padding-right:5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-label{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon{display:inline-block;padding:1px 5px}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon:hover{background-color:#d1e8ff}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-right:1px solid #b8dbff}[dir="rtl"] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.left{border-left:1px solid #b8dbff;border-right:none}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:1px solid #b8dbff}[dir="rtl"] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-value .ng-value-icon.right{border-left:0;border-right:1px solid #b8dbff}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 0 3px 3px}[dir="rtl"] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input{padding:0 3px 3px 0}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-input>input{color:#000}.ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{top:5px;padding-bottom:5px;padding-left:3px}[dir="rtl"] .ng-select.ng-select-multiple .ng-select-container .ng-value-container .ng-placeholder{padding-right:3px;padding-left:0}.ng-select .ng-clear-wrapper{color:#999}.ng-select .ng-clear-wrapper:hover .ng-clear{color:#D0021B}.ng-select .ng-spinner-zone{padding:5px 5px 0 0}[dir="rtl"] .ng-select .ng-spinner-zone{padding:5px 0 0 5px}.ng-select .ng-arrow-wrapper{width:25px;padding-right:5px}[dir="rtl"] .ng-select .ng-arrow-wrapper{padding-left:5px;padding-right:0}.ng-select .ng-arrow-wrapper:hover .ng-arrow{border-top-color:#666}.ng-select .ng-arrow-wrapper .ng-arrow{border-color:#999 transparent transparent;border-style:solid;border-width:5px 5px 2.5px}.ng-dropdown-panel{background-color:#fff;border:1px solid #ccc;box-shadow:0 1px 0 rgba(0,0,0,0.06);left:0}.ng-dropdown-panel.ng-select-top{bottom:100%;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-color:#e6e6e6;margin-bottom:-1px}.ng-dropdown-panel.ng-select-top .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.ng-dropdown-panel.ng-select-right{left:100%;top:0;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:#e6e6e6;margin-bottom:-1px}.ng-dropdown-panel.ng-select-right .ng-dropdown-panel-items .ng-option:first-child{border-top-right-radius:4px}.ng-dropdown-panel.ng-select-bottom{top:100%;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-top-color:#e6e6e6;margin-top:-1px}.ng-dropdown-panel.ng-select-bottom .ng-dropdown-panel-items .ng-option:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.ng-dropdown-panel.ng-select-left{left:-100%;top:0;border-top-left-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px;border-bottom-color:#e6e6e6;margin-bottom:-1px}.ng-dropdown-panel.ng-select-left .ng-dropdown-panel-items .ng-option:first-child{border-top-left-radius:4px}.ng-dropdown-panel .ng-dropdown-header{border-bottom:1px solid #ccc;padding:5px 7px}.ng-dropdown-panel .ng-dropdown-footer{border-top:1px solid #ccc;padding:5px 7px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup{-webkit-user-select:none;user-select:none;padding:8px 10px;font-weight:500;color:rgba(0,0,0,0.54);cursor:pointer}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-disabled{cursor:default}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-marked{background-color:#f5faff}.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-optgroup.ng-option-selected.ng-option-marked{color:rgba(0,0,0,0.54);background-color:#ebf5ff;font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option{background-color:#fff;color:rgba(0,0,0,0.87);padding:8px 10px}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked{color:#333;background-color:#ebf5ff}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected .ng-option-label,.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-selected.ng-option-marked .ng-option-label{font-weight:600}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked{background-color:#f5faff;color:#333}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-disabled{color:#ccc}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-left:22px}[dir="rtl"] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-child{padding-right:22px;padding-left:0}.ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{font-size:80%;font-weight:400;padding-right:5px}[dir="rtl"] .ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-tag-label{padding-left:5px;padding-right:0}[dir="rtl"] .ng-dropdown-panel{direction:rtl;text-align:right}

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-clip-rotate,
.la-ball-clip-rotate > div {
    position: relative;
    box-sizing: border-box;
}

.la-ball-clip-rotate {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-ball-clip-rotate.la-dark {
    color: #333;
}

.la-ball-clip-rotate > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-clip-rotate {
    width: 32px;
    height: 32px;
}

.la-ball-clip-rotate > div {
    width: 32px;
    height: 32px;
    background: transparent;
    border-width: 2px;
    border-bottom-color: transparent;
    border-radius: 100%;
    animation: ball-clip-rotate .75s linear infinite;
}

.la-ball-clip-rotate.la-sm {
    width: 16px;
    height: 16px;
}

.la-ball-clip-rotate.la-sm > div {
    width: 16px;
    height: 16px;
    border-width: 1px;
}

.la-ball-clip-rotate.la-2x {
    width: 64px;
    height: 64px;
}

.la-ball-clip-rotate.la-2x > div {
    width: 64px;
    height: 64px;
    border-width: 4px;
}

.la-ball-clip-rotate.la-3x {
    width: 96px;
    height: 96px;
}

.la-ball-clip-rotate.la-3x > div {
    width: 96px;
    height: 96px;
    border-width: 6px;
}

/*
 * Animation
 */
@keyframes ball-clip-rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

