html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}


body {
  font-size: 1.6rem;
  font-family: proxima-nova, sans-serif;
}

* {
  box-sizing: border-box;
}

body.welcome .skip-to-main {
  position: fixed;
  z-index: 10000;
  background: white;
  border: none;
  padding: 5px 10px;
  top: 0;
  transform: translateY(-100%);
  transition: transform 0.3s;
  color: #0071EB;
}

body.welcome .skip-to-main:focus {
  transform: translateY(0%);
  text-decoration: underline;
}

body.welcome footer a.back-to-top {
  position: fixed;
  z-index: 10000;
  background: white;
  border: none;
  padding: 5px 10px;
  bottom: 25px;
  left: 0;
  transform: translateY(calc(100% + 25px));
  transition: transform 0.3s;
  color: #0071EB;
}

body.welcome footer a.back-to-top:focus {
  transform: translateY(0%);
  text-decoration: underline;
}

a {
  text-decoration: unset;
}
.dropdown-menu.show{
  width: fit-content;
}
.page-wrapper {
  display: flex;
  overflow-y: hidden;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl{
  padding-right: 15px;
  padding-left: 15px;
}
.page-wrapper > aside {
  flex: 0 0 260px;
  padding: 30px;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
thead tr {
  --bs-table-bg: transparent;
  --bs-body-bg: transparent;
  background-color: transparent;
}


.page-wrapper > aside.collapsed {
  flex: 0 0 80px;
  padding: 30px 0;
}

.page-wrapper > aside .logo {
  display: block;
  text-align: center;
}

.page-wrapper > aside .logo img {
  width: 118px;
  height: 118px;
  transition: all .3s;
}

.page-wrapper > aside.collapsed .logo img {
  width: 40px;
  height: 40px;
}

.page-wrapper > aside .collapse-toggle {
  margin-top: 80px;
}

.page-wrapper > aside .collapse-toggle:hover {
  background-color: transparent;
}

.page-wrapper > aside .collapse-toggle i {
  font-size: 2.2rem;
  position: relative;
  top: 2px;
}

.page-wrapper > aside.collapsed .collapse-toggle i {
  transform: rotate(180deg);
}

.page-wrapper > .mid-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f2f2f2;
  padding-left: 83px;
}

.page-wrapper > .mid-content.collapsed-content {
  padding-left: 135px;
}

.page-wrapper > .mid-content > main {
  flex-grow: 1;
  padding: 34px 0;
}

.page-wrapper > .mid-content > header {
  height: 80px;
  line-height: 80px;
  border-bottom: 1px solid #e0dcd9;
  padding: 0;
  z-index: 5;
}

.container.custom {
  margin-left: 0;
  padding-left: 0;
}

.page-title {
  margin-bottom: 40px;
  font-weight: 700;
  color: #2c2929;
  font-size: 3rem;
}

.main-layout header {
  padding: 8px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header a.logo {
  display: inline-block;
  text-decoration: none;
}

header a.logo.with-text img {
  width: 64px;
  height: 64px;
  margin-right: 20px;
}

.logo-text {
  text-transform: uppercase;
  font-family: 'proxima-nova', sans-serif;
  color: #2c2929;
  font-weight: 300;
  font-size: 1.8rem;
  display: inline-block;
  cursor: pointer;
}

.logo-text strong {
  /* font-family: 'proxima-nova', sans-serif; */
  font-weight: 900;
  color: #d1282e;
}

.project-selector {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  vertical-align: middle;
  text-align: center;
  line-height: 44px;
  font-size: 2rem;
  cursor: pointer;
}

.project-selector .dropdown {
  display: none;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 285px;
}

.project-selector .dropdown a {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 300;
  color: #2c2929;
  display: block;
  text-align: left;
  padding-left: 18px;
}

.project-selector .dropdown a:hover,
.project-selector .dropdown a.active {
  background-color: rgba(45, 136, 255, .1);
  text-decoration: none;
}

.project-selector .dropdown a span {
 /* color: #e0dcd9; */
  margin-right: 18px;
}
.project-selector .dropdown a span.icon-takeout_icon {
  font-size: 1.2rem;
}
.project-selector .dropdown a:hover span,
.project-selector .dropdown a.active span {
  color: #404041;
}

.project-selector.expanded .dropdown {
  display: block;
  position: absolute;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 4px 0;
  z-index: 1;
}

nav.primary {
  display: block;
  margin-top: 40px;
}

nav.primary a {
  display: block;
  color: #2c2929;
  font-weight: 500;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  border-radius: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  background-color: transparent;
  transition: background .3s, color .3s;
}

aside.collapsed nav.primary a {
  border-radius: 0;
  height: 60px;
  line-height: 60px;
  margin-bottom: 0;
  text-align: center;
}

nav.primary a i,
nav.primary a span[class^="icon-"] {
  margin-right: 10px;
  font-size: 2rem;
  position: relative;
  top: 2px;
}

aside.collapsed nav.primary a span[class^="icon-"] {
  margin-right: 0;
}


nav.primary a:hover, nav.primary a.active {
  background-color: #789d90;
  color: #fff;
  text-decoration: none;
}

nav.primary a.active {
  text-align: center;
}

aside.collapsed nav.primary a span {
  display: none;
}

aside.collapsed nav.primary a span[class^="icon-"] {
  display: inline-block;
  opacity: 1;
}

aside.collapsed nav.primary a span.icon-angle-left {
  transform: rotate(180deg);
}

aside.collapsed nav.primary.learnwithme {
  margin-top: 40px;
}

nav.primary a {
  margin: 20px 0;
}

nav.primary.learnwithme a:hover,
nav.primary.learnwithme a.active {
  background-color: #f19933;
    color: #000000;
}

nav.primary.guest-side a:hover,
nav.primary.guest-side a.active {
  background-color: rgba(209, 40, 46, 1);
}
nav.primary.pandaschoollunch a:hover,
nav.primary.pandaschoollunch a.active {
  background-color: #627F29;
}
nav.primary.achievementsaward a:hover,
nav.primary.achievementsaward a.active {
  background-color: #62778D;
}
nav.primary.teacherappreciationrequest a:hover,
nav.primary.teacherappreciationrequest a.active {
  background-color: rgb(77, 104, 134);
}
nav.primary.virtualFundraiser a:hover,
nav.primary.virtualFundraiser a.active {
  background-color: rgba(96, 169, 177, 1);
}
nav.primary.readwithme a:hover,
nav.primary.readwithme a.active {
  background-color: #29799E;
}

nav.primary.global a:hover,
nav.primary.global a.active {
  background-color: #d1282e;
}

nav.primary .wrap {
  margin-left: -30px;
  margin-right: -30px;
  overflow: hidden;
  height: 60px;
  line-height: 60px;

  font-weight: 500;
  border-radius: 0;

}

nav.primary.learnwithme .wrap {
  color: #2c2929;
  background-color: rgba(241, 153, 51, 0.1);
  border-left: 4px solid rgba(241, 153, 51, 0.5);
}

nav.primary.fundraiser .wrap {
  color: #2c2929;
  background-color: rgba(120, 157, 144, 0.1);
  border-left: 4px solid rgba(120, 157, 144, 0.5);
}
nav.primary.fundraiser.guest-side .wrap {
  color: #2c2929;
  background-color: rgba(209, 40, 46, 0.1);
  border-left: 4px solid rgba(209, 40, 46, 0.5);
}

nav.primary.achievementsaward .wrap {
  color: #2c2929;
  background-color: rgba(145, 161, 178, 0.1);
  border-left: 4px solid rgba(145, 161, 178, 0.5);
}
nav.primary.teacherappreciationrequest .wrap {
  color: #4d6886;
  background-color: rgba(77, 104, 134, 0.1);
  border-left: 4px solid rgba(77, 104, 134, 0.5);
}

nav.primary.pandaschoollunch .wrap {
  color: #2c2929;
  background-color: rgba(135, 166, 78, 0.1);
  border-left: 4px solid rgba(135, 166, 78, 0.5);
}
nav.primary.virtualFundraiser .wrap {
  color: #2c2929;
  background-color: rgba(96, 169, 177, 0.1);
  border-left: 4px solid  rgba(96, 169, 177, 0.5);
}
nav.primary.readwithme .wrap {
  color: #2c2929;
  background-color: rgba(94, 177, 214, 0.1);
  border-left: 4px solid  rgba(94, 177, 214, 0.5);
}

nav.primary .wrap.expandable {
  position: relative;
}

nav.primary.learnwithme .wrap.expandable {
  background-color: rgba(241, 153, 51, 0.3);
  border-left: 4px solid rgb(241, 153, 51);
  position: relative;
}

nav.primary.fundraiser .wrap.expandable {
  background-color: rgba(120, 157, 144, 0.3);
  border-left: 4px solid rgba(120, 157, 144, 1);
  position: relative;
  color: white;
}
nav.primary.fundraiser.guest-side .wrap.expandable {
  background-color: rgba(209, 40, 46, 0.3);
  border-left: 4px solid rgba(209, 40, 46, 1);
  position: relative;
  color: white;
}

nav.primary.pandaschoollunch .wrap.expandable {
  background-color: rgba(135, 166, 78, 0.3);
  border-left: 4px solid rgba(135, 166, 78, 1);
  position: relative;

}

nav.primary.achievementsaward .wrap.expandable {
  background-color: rgba(145, 161, 178, 0.3);
  border-left: 4px solid rgba(145, 161, 178, 1);
  position: relative;

}
nav.primary.teacherappreciationrequest .wrap.expandable {
  background-color: rgba(77, 104, 134, 0.3);
  border-left: 4px solid rgba(77, 104, 134, 1);
  position: relative;

}
nav.primary.virtualFundraiser .wrap.expandable {
  background-color: rgba(96, 169, 177, 0.3);
  border-left: 4px solid rgba(96, 169, 177, 1);
  position: relative;

}
nav.primary.readwithme .wrap.expandable {
  background-color: rgba(94, 177, 214, 0.3);
  border-left: 4px solid rgba(94, 177, 214, 1);
  position: relative;

}

aside.collapsed nav.primary .wrap {
  margin-left: 0;
  margin-right: 0;
}

nav.primary .wrap.expandable .icon-angle-down {
  display: block;
  position: absolute;
  width: 30px;
  height: 44px;
  right: 10px;
  top: 8px;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
}

nav.primary.fundraiser .wrap.expandable .icon-angle-down {
  color: black;
}

aside nav.primary .wrap a {
  margin: 10px 30px 10px 26px;
}

aside.collapsed nav.primary .wrap a {
  margin: 0;
}

nav.primary .wrap.expandable a:hover {
  background-color: transparent;
  color: #2c2929;
}

nav.primary a.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

nav.primary .separator {
  height: 10px;
}

aside.collapsed nav.primary .wrap.expandable {
  display: none;
}

aside.collapsed nav.primary a {
  margin-top: 0;
}

nav.primary .secondary-menu {
  display: none;
}

/*
 icon color on psl event
nav.primary.pandaschoollunch a span:first-child{
  color: rgba(135, 166, 78, 1);
}*/


header .notifications-wrapper {
  position: relative;
  margin-top: 20px;
  margin-right: 20px;
  float: right;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: normal;
}

header .notifications-dropdown {
  background-color: transparent;
  border: 0;
  line-height: initial;
  height: 40px;
  width: 40px;
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  outline: none;
}

header .notifications-dropdown:active {
  outline: none;
}

header .notifications-dropdown.has-new::before {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #d1282e;
  border-radius: 50%;
  right: 5px;
  top: 5px;
}

header .notifications {
  border: 1px solid #afafaf;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 0;
  top: 120%;
  padding: 10px 15px;
  width: 430px;
  display: none;
  min-height: 50px;
}

header .notifications-wrapper.expanded .notifications {
  display: block;
}

header .notifications .notification {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2c2929;
  text-decoration: none;
  padding: 10px 0 10px 5px;
  gap: 5px;
  font-size: 1.4rem;
  text-overflow: ellipsis;
  border-top: 1px solid #ccc;
  position: relative;
}
header .notifications .notification svg{
  width: 12px;
  height: 20px;

}


header .notifications .notification:first-child {
  border-top: 0;
}

header .user-profile {
  float: right;
  margin-top: 20px;
  position: relative;
  width: 63px;
  height: 40px;
}

header .user-profile .avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #545454;
  text-align: center;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  font-weight: 700;
  background-color: #e0dcd9;
}

header .user-profile .fa-angle-down {
  vertical-align: top;
  width: 1.7rem;
  height: 1.9rem;
  color: #706f6f;
  cursor: pointer;
  margin-top: 10px;
}

header .user-profile .dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 16rem;
  background-color: #fff;
  padding: 10px 15px;
  display: none;
  line-height: initial;

  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  border: 0;
}

header .user-profile.expanded .dropdown {
  display: block;
}

header .user-profile .dropdown a {
  display: block;
  color: #2c2929;
  transition: all 0.3s;
  white-space: nowrap;
  padding: 5px 15px;
  height: 36px;
  line-height: 32px;
}

header .user-profile .dropdown a:hover {
  color: #000;
  text-decoration: none;
}

header .user-profile .dropdown a.current-user {
  color: #2c2929;
  font-weight: 500;
  font-size: 1.6rem;
}

header .user-profile .dropdown a.logout-btn {
  color: #d1282e;
}

footer {
  padding: 35px 0 40px 0;
  color: #6E6E6E;
  font-size: 1.2rem;
  font-weight: 700;
}

footer .socials a {
  color: #828282;
  font-size: 2rem;
  margin-left: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials.squares a {
  color: #706f6f;
  font-size: 2rem;
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  border: 1px solid #706f6f;
  display: inline-block;
  text-align: center;
  line-height: 30px;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-control {
  height: 50px;
  font-size: 1.6rem;
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid #d7d7d7;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}
textarea.form-control{
  height: auto;
}
select.form-control{
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
label{
  margin-bottom: .5rem;
}
.modal-footer{
  padding: 1rem;
}
.row > [class^="col"]{
  position: relative;
}
.row > [class^="col"]:has(.require-field){
  --bs-gutter-x: 3rem;
}
.active.day.text-secondary {
  color: white !important;
}

.form-control:not(:disabled):hover {
  border-color: #2c2929;
  background-color: transparent;
}

.form-control:focus,
.form-control:active {
  border-color: #2d88ff;
  background-color: transparent;
}

.form-control:hover:focus,
.form-control:hover:active {
  border-color: #2d88ff;
  background-color: transparent;
}

.form-control::placeholder {
  color: #4F4F4F;
}

.form-group.has-error:after {
  content: '';
  width: 8px;
  height: 8px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 2.2rem;
  background-color: #ff4646;
  border-radius: 70%;
}

.form-group.labeled.has-error:after {
  top: 3.8rem;
}

.form-group.no-exclamation.has-error:after {
  display: none;
}

.has-error .form-control {
  border-color: #ff4646;
}

.has-error textarea.form-control {
  border-bottom: 2px solid #ff4646 !important;
}

.has-error .control-label,
.has-error .help-block, #org-name-note.with-errors {
  color: #CC0000;
}

.form-control:active,
.form-control:focus {
  outline: none;
  box-shadow: none;
}

.form-group .suggestions {
  display: block;
  position: absolute;
  border: 1px solid #979797;
  width: 100%;
  z-index: 1;
  max-height: 250px;
  overflow: auto;
}

.form-group .suggestions .item {
  background-color: #fff;
  padding: 7px 15px 7px 30px;
  cursor: pointer;
  position: relative;
}

.form-group .suggestions .item:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #979797;
  margin-right: 10px;
  position: absolute;
  left: 7px;
  top: 9px;
}

.form-group .suggestions .item.selected:before,
.form-group .suggestions .item:hover:before {
  background-color: #ccc;
}

.dropdown-menu {
  font-size: 1.6rem;
}

.btn {
  font-size: 1.4rem;
  padding: 0 25px;
  height: 40px;
  line-height: 38px;
  border-radius: 4px;
  white-space: nowrap;
}

.btn:focus {
  outline: solid 2px black;
}

.btn.modified {
  font-size: 1.5rem;
  padding: 5px 25px;
  height: auto;
  line-height: 38px;
}

.organization-update-form .for-zip-code-disable::after, .visible-on-single-payment .for-zip-code-disable::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2000;

}

.drag-and-drop-area {
  background-color: #eee;
  width: 400px;
  height: 130px;
  font-size: 14px;
  color: #4D4D4D;
  padding: 40px 70px;
  text-align: center;
  position: relative;
  display: inline-block;
  margin-right: 30px;
}

.drag-and-drop-area.crop-mode {
  margin-bottom: 18px;
  height: auto;
}

.drag-and-drop-area input[type='file'] {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.drag-and-drop-area.crop-mode input[type='file'] {
  display: none;
}

.drag-and-drop-area .photo {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.drag-and-drop-area .photo.organization-drag-and-drop-img-area img {
  width: auto !important;
  max-height: 130px;
  max-width: 230px;
}

.nav-link {
  padding: 1rem 2rem;
}

.nav-tabs .nav-link {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.help-block {
  font-size: 1.3rem;
  padding-top: 0.5rem;
}

.control-label {
  color: #646D73;
}

.nav-tabs {
  border-bottom: 0;
}

.nav-tabs .nav-link {
  border: 0;
  border-bottom: 2px solid #aaaaaa;
  border-radius: 0;
  margin-right: 30px;
  padding-left: 0;
  padding-right: 30px;
  color: #6E6E6E;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  font-weight: 500;
  border-bottom: 2px solid #D1282E;
  color: #495057;
  /* text-transform: uppercase; */
  /* font-size: 1.2rem; */
}

.loading-mask {
  position: relative;
}

.loading-mask:before {
  content: ' ';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5) url(../img/spinner.gif) center center no-repeat;
  background-size: 32px;
  z-index: 500000;
}
.promote-loading-mask:before {
  position: relative;
  content: ' ';
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(242 242 242) url(../img/spinner.gif) center center no-repeat;
  background-size: 32px;
  z-index: 500000;
}
.modal-footer.loading-mask:before {
  background: none;
}

.modal {
  text-align: center;
  padding: 0 !important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal.common-modal {
  z-index: 1000000;
}

.modal.common-modal#charity-terms-condition-modal .modal-dialog {
  min-width: 600px;
}
.modal.common-modal .modal-dialog {
  min-width: 500px;
}

.modal.common-modal.address-validation-modal .modal-dialog {
  min-width: 800px;
}
.modal.common-modal.enrollment-edit-event-modal .modal-dialog {
  min-width: 1000px;
}
.modal.common-modal.achievement-awards-edit-modal .modal-dialog {
  min-width: 1000px;
}
.modal.common-modal.address-validation-modal form{
  overflow-x: auto;

}
.modal.common-modal.address-validation-modal .address-container
{
 min-width: 500px;
}
.remove-organization-avatar {
  margin: 20px;
  display: none;
}

.modal.common-modal .modal-content {
  position: relative;
  border: 0px;
  border-radius: 0px;
  text-align: center;
  padding: 30px 60px 30px 60px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.modal.common-modal .modal-content .modal-header {
  border-bottom: 0;
  text-align: center;
  font-weight: bold;
  display: block;
}

.modal.common-modal .modal-content .modal-footer {
  border-top: 0;
  text-align: center;
  display: block;
}

.modal.common-modal .modal-content.custom:before {
  content: '';
  display: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: static;
  background-color: #fff;
  left: 0;
  right: 0;
  top: -40px;
  margin: auto;
  margin-bottom: 14px;
  border: 1px solid #979797;
  font-size: 32px;
  line-height: 70px;
  text-align: center;

  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.modal.common-modal .modal-content .modal-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: static;
  background-color: #fff;
  margin: auto;
  margin-bottom: 14px;
  border: 1px solid #979797;
  text-align: center;
}


.modal.common-modal .modal-content .modal-type-icon svg{
  width: auto;
  height: 30px;
}
.modal.common-modal .modal-content:has(.modal-type-icon):before{
  display: none;
}

.modal.common-modal.large-modal .modal-content {
  width: 1000px;
}

.modal.common-modal.small-modal .modal-content {
  width: 350px;
  padding: 10px 20px 10px 20px;
}

.modal.common-modal .modal-content.error .modal-type-icon svg {
  color: #ff4646;
}

.modal.common-modal .modal-content.event-icon:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  font-size: 50px;
  border: 0;
  display: inline-block;
  line-height: 80px;
  content: '\e917';
  color: #ccc;
  background-color: #e6e6e6;
}
.modal.common-modal .modal-content.sent-icon:before{
  display: none;
}
.modal.common-modal .modal-content.sent-icon .modal-type-icon {
  border: 0;
  color: #fff;
  background-color: #e6e6e6;
}

.modal.common-modal .modal-content.sent-icon-lny:before {
  width: 100px;
  height: 100px;
  display: inline-block;
  content: "";
  background-image: url("/img/explore-lunar-new-year/lny_lantern.png");
  border-radius: unset;
  border: none;
  background-size: 100px 100px;
}

.modal.common-modal .modal-content.large-title .modal-header .text-content {
  font-size: 2.4rem;
}

.modal.common-modal .modal-content.message .modal-type-icon svg {
  color: #007bff;
}

.modal.common-modal .modal-content.success .modal-type-icon {
  color: #ffffff;
  background-color: #92de8d;
  border-color: #92de8d;
}

.modal.common-modal .modal-content .fa-xmark {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 17px;
  height: 23px;
  color: #000;
  cursor: pointer;
  z-index: 1;
}

.aside-modal {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 50;
  transition: all 1s;
  overflow: visible;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  padding-bottom: 20px;
}

.aside-modal.visible {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.aside-modal-shadow {
  display: block;
  position: absolute;
  top: 0;
  background-color: transparent;
  width: 200vw;
  height: 100%;
  transition: background .3s;
}

.aside-modal.visible .aside-modal-shadow {
  left: -100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.aside-modal > .content {
  position: absolute;
  top: 0;
  left: 30%;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #fff;
  padding-left: 30px;
  overflow: auto;
}
.aside-modal > .content.md {
  left: unset;
  width: 700px;
}
.aside-modal > .content.md-lg {
  left: unset;
  width: 900px;
}
.aside-modal > .content.lg {
  left: unset;
  width: 1024px;
}

.aside-modal .close-btn {
  cursor: pointer;
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #f2f2f2;
  color: #b3b3b3;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}
.aside-modal .modal-footer{
  border:none;
}
@media (max-width: 1100px) {
  .aside-modal > .content.lg{
    left: 10% !important;
    width: unset !important;
  }
}
@media (max-width: 912px) {
  .aside-modal > .content.md-lg{
    left: 10% !important;
    width: unset !important;
  }
}
@media (max-width: 767px) {
  .aside-modal > .content{
    left: 10% !important;
    width: unset !important;
  }
}
.aside-modal .close-btn i {
  font-size: 2rem;
}

.default-dropdown {
  display: inline-block;
  position: relative;
}

.default-dropdown:before {
  border-radius: 5px;
}

.default-dropdown button {
  width: 100%;
  height: 40px;
  border: 1px solid #D1282E;
  border-radius: 5px;
  background-color: white;
  color: #D1282E;
}

.default-dropdown.show button {
  border-radius: 5px 5px 0 0;
}

.default-dropdown button:hover,
.default-dropdown.show button,
.default-dropdown button:active,
.default-dropdown button:focus {
  background-color: #fcf1f2 !important;
  color: #D1282E !important;
  box-shadow: none !important;
  border: 1px solid #D1282E !important;
}

.default-dropdown.show .dropdown-item {
  color: #D1282E;
  text-align: center;
  cursor: pointer;
  padding-left: 0px;
  padding-right: 0px;
}

.default-dropdown.show .dropdown-item:active {
  background-color: white;
}

.default-dropdown .dropdown-menu.show {
  border: 1px solid #D1282E;
  border-top: none;
  border-radius: 0 0 7px 7px;
  width: 100%;
  display: inline-block;
  top: -1px !important;
  background-color: white;
}

.aside-modal h2 span {
  display: inline-block;
}

.search_icon {
  float: left;
  width: 20px;
  height: 4rem;
  padding-top: 5px;
  color: #767676;
  font-size: 2rem;
  margin-right: 20px;
}

.add-new-organization-btn i {
  font-size: 18px;
  color: #2d88ff;
  position: relative;
  top: 2px;
  right: 3px;
}

.add-new-event-btn i, .delete-organization-btn i {
  font-size: 18px;
  position: relative;
  top: 2px;
  right: 3px;
}

.search_input {
  display: inline-block;
  width: calc(100% - 40px);
  background-color: #ffffff;
  color: black;
  border-radius: 4px;
  border: 1px solid #afafaf;
  height: 40px;
}

.search_input:focus {
  background-color: #ebebeb;
  color: black;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.modal-search-container .icon-search {
  position: absolute;
  top: 12px;
  right: 10px;
  color: #767676;
}

.modal-search-container {
  width: 100%;
  position: relative;
  height: 40px;
  top: 0;
  /* margin-top: 16px; */
}

.modal-search-container .form-group {
  position: absolute;
  z-index: 3;
  width: 100%;
}

.modal-search-container .modal-search-content .form-group {
  position: static;
  width: 100%;
}

.modal-search-content {
  max-width: 780px;
  width: 220%;
  min-height: 250px;
  border: 1px solid #aaaaaa;
  position: absolute;
  z-index: 2;
  right: -10px;
  top: -10px;
  background-color: white;
  display: none;
  border-radius: 5px;
  padding: 55px 30px 30px 10px;
}

.modal-search-content.ticket-search {
  max-width: 500px;
/*  max-height: 550px;
  overflow: auto;*/
}
.modal-search-content.small-search {
  max-width: 425px;
}

.modal-search-container.user .modal-search-content {
  width: 160%;
  min-height: 100px;
  padding: 60px 20px 10px 20px;
}

.modal-search-content i {
  color: #767676;
}

.data-table-actions {
 /* width: auto;*/
  height: 45px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
}

.data-table-actions input[type='checkbox'],
.modal-search-container.user input[type='checkbox'] {
  width: 18px;
  height: 18px;
}

.data-table-actions label {
  margin-left: 5px;
  cursor: pointer;
}

.address-container {
  max-height: 400px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-top: 20px;
}

.address-container input {
  position: relative;
  top: 4px;
  margin-left: 20px;
  width: 17px;
  height: 17px;
}

.mc-logo {
  padding: 0px 6px 0px 6px;
  border: 1px solid #ccc;
}

.relative-main {
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
  min-height: 700px;
}

.aside-modal .nav-tabs .nav-link.active {
  background-color: transparent;
}

.aside-modal .form-control {
  background-color: transparent;
}

.aside-modal .form-control[readonly],
.aside-modal .form-control[disabled],
.aside-modal select.form-control[disabled]{
  background-color: #e9ecef;
}

.aside-modal .edit-header {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: left;
}

.n {
  width: 8px;
  height: 8px;
  background-color: #d1282e;
  border-radius: 50%;
  float: right;
  margin-top: 16px;
  display: none;
}
nav .secondary-menu .item.program-selector-btn{
  position: relative;
}
nav .secondary-menu .n{
  position: absolute;
  right: 1px;
  top: -2px;
}
.project-selector .dropdown>a{
 position: relative;
}
.project-selector .dropdown>a .n {
  position: absolute;
  right: -10px;
  top: -2px;
}
.notifications-list .n {
  float: none;
  display: inline-block;
  margin-right: 8px;
  margin-top: 0px;
}

.ticket-subject b.n {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  top: -2px;
  float: none;
  margin-top: 0px;
}

.edit-sales-date-modal input.form-control[readonly][name="paymentDate"] {
  background-color: transparent;
}
.modal.common-modal .modal-content.success{
  min-width: 450px;
}
@media(max-width:768px){
  .modal.common-modal .modal-content.success{
    min-width: unset;
  }
}
.showN {
  display: inline-block;
}

.aside-modal .edit-header h2 {
  margin-left: 15px;
  text-transform: capitalize;
}

.btn-primary {
  background-color: #d1282e;
  border-color: #d1282e;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #e6494f;
  border-color: #e6494f;
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #0a0a0a;
  background-color: #E6E6E6;
  border-color: #E6E6E6;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  background-color: #e6494f;
  border-color: #e6494f;
}

.btn-primary.focus, .btn-primary:focus {
  box-shadow: none;
}

.btn-default {
  color: #2c2929;
}


.btn-default:hover, .btn-default:active, .btn-default.active {
  color: #D1282E;
  box-shadow: none;
}

.btn-default {
  background-color: #dddddd;
}

.btn-secondary {
  background-color: #3F7D67;
  border-color: #3F7D67;
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: #4F6D64;
  border-color: #4F6D64;
}

.btn-secondary.disabled, .btn-secondary:disabled {
  color: #4A4A4A;
  background-color: #E6E6E6;
  border-color: #E6E6E6;
}

.btn-secondary.active, .btn-secondary:active {
  background-color: #4F6D64;
  border-color: #4F6D64;
}

.btn.btn-text {
  background-color: transparent;
  font-weight: 500;
  outline: none;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
  background-color: #4F6D64;
  border-color: #4F6D64;
}

.btn-secondary.focus, .btn-secondary:focus {
  box-shadow: none;
}


.btn-outline-primary {
  background-color: transparent;
  border-color: #D1282E;
  color: #D1282E;
}

.btn-outline-primary:hover {
  background-color: #fcf1f2;
  border-color: #D1282E;
  color: #D1282E;
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #b3b3b3;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  cursor: not-allowed;
}

.btn-outline-primary.active, .btn-outline-primary:active {
  color: #FFFFFF;
  background-color: #e6494f;
  border-color: #e6494f;
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
  background-color: #fcf1f2;
  border-color: #D1282E;
  color: #D1282E;
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
  box-shadow: none;
}

.text-primary {
  color: #2C2929;
}

.text-secondary {
  /*color: #646D73;*/
  --bs-secondary-rgb: 100, 109, 115;
}

.text-danger {
  color: #CC0000;
  --bs-danger-rgb: 204, 0, 0;
}

.text-success {
  color: #87A64E;
}


.file-upload-field input[type="file"] {
  display: none;
}
.csv-upload-field input[type="file"] {
  display: none;
}

.file-upload-field label {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.csv-upload-field label {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.file-upload-field label svg.fa-paperclip {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
}
.csv-upload-field label i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
}

.footer-nav a {
  color: white;
  padding: 4px 8px 4px 8px;
  font-weight: bold;
}

.v-hidden {
  visibility: hidden;
  position: absolute;
}

.rotate-90-deg {
  transform: rotate(90deg);
}

.rotate-270-deg {
  transform: rotate(270deg);
}

.footer-nav a {
  margin-left: 20px;
}

.footer-nav a:first-child {
  margin-right: 20px;
}

.footer-nav a:first-child:hover {
  text-decoration: none;
  cursor: auto;
}

alert.alert-warning.text-center {
  margin-top: 10px;
}

.user-abbr {
  display: inline-block;
  background-color: rgba(120, 157, 144, .2);
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 50%;
  font-size: 1.6rem;
  vertical-align: top;
  font-weight: bold;
  color: #4D6A64;
}

.dropdown-item {
  cursor: pointer;
  color: #2c2929;
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 16px;
  padding-right: 16px;
  height: 36px;
  line-height: 32px;
}

.dropdown-item:active {
  background-color: #D1282E;
  color: #fff;
}

.stat-box {
  padding: 10px 24px 10px 16px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  margin-bottom: 20px;
  transition: all .3s;
}

.stat-box.medium,
.stat-box.medium:hover {
  padding: 20px 24px;
}

.stat-box.ticket-count,
.stat-box.ticket-count:hover {
  padding: 11px 24px;
}

.stat-box:hover {
  padding-right: 16px;
}

.stat-box.shadowed {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
}

.stat-box.ticket-count {
  display: block;
}

.stat-box.ticket-count .value {
  color: #d1282e;
  font-size: 2.6rem;
  min-height: 39px;
}

.stat-box.ticket-count .label {
  color: #2c2929;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.stat-box.ticket-count:hover,
.stat-box.ticket-count.active {
  background-color: #d1282e;
}

.stat-box.ticket-count.active .value,
.stat-box.ticket-count.active .label,
.stat-box.ticket-count:hover .value,
.stat-box.ticket-count:hover .label {
  color: #fff;
}

.stat-box.large {
  display: block;
  position: relative;
  padding: 14px 24px;
}

.stat-box.large h5 {
  color: #2c2929;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.stat-box .v-line {
  height: 20px;
  width: 2px;
  border-radius: 2px;
  margin-right: 10px;
}

.stat-box .v-line.purple {
  background-image: linear-gradient(180deg, #d35de9 0%, #792dff 100%);
}

.stat-box .v-line.orange {
  background-image: linear-gradient(180deg, #ff861d 0%, #f63744 100%);
}

.stat-box .v-line.green {
  background-image: linear-gradient(180deg, #54b987 0%, #4ad2d2 100%);
}

.stat-box .value.primary-circle {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background-color: #d1282e;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  margin-right: 20px;
  text-align: center;
}

.stat-box .value {
  font-size: 2.4rem;
  font-weight: 700;
  color: #2c2929;
}

.stat-box .primary-circle + .label {
  line-height: 40px;
}

.stat-box .v-line + .label {
  line-height: 20px;
}

.stat-box .v-line + .label + .value {
  line-height: 20px;
}

.stat-box .label {
  font-size: 1.4rem;
  color: #2c2929;
  font-weight: 500;
  text-decoration: none;
  flex-grow: 1;
}

.stat-box .label.upper {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 500;
}

a.stat-box:hover {
  text-decoration: none;
}

.stat-box span.icon-angle-right {
  color: #2c2929;
  font-size: 2rem;
  line-height: 40px;
}

.stat-box.highlighted {
  background-color: #68ab93;
  background-image: linear-gradient(to right, #68ab93 0%, #6baf97 100%);
  flex-wrap: wrap;
  padding: 25px 24px;
}

.stat-box.highlighted .label {
  width: 100%;
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.stat-box.highlighted .value {
  width: 50%;
  font-size: 1.8rem;
  color: #ffffff;
}

.stat-box.highlighted .value label {
  opacity: 0.5;
  font-size: 1.2rem;
  font-weight: 300;
  display: block;
}

.chart-box {
  padding: 22px 24px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.chart-box h5 {
  color: #2c2929;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.chart-box h6 {
  color: #706f6f;
  font-weight: 300;
  font-size: 1.2rem;
}

.chart-box span.icon-stats {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 2.4rem;
  color: #2c2929;
}

.chart-box .final-value {
  margin-top: 28px;
  color: #f19933;
  font-size: 4.2rem;
  font-weight: 700;
}

.chart-box .final-value span {
  font-size: 2.4rem;
}

.nav-tabs {
  border-bottom: 1px solid #cccccc;
}

.nav-tabs .nav-link {
  border-bottom: 0;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: transparent;
  border-bottom: 2px solid #d1282e;
}

.declined-event-popup-table th, .declined-event-popup-table td {
  vertical-align: middle !important;
}

.c-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  color: #2c2929;
  font-size: 2rem;
  text-align: center;
  line-height: 39px;
}

select.custom-select-style {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 4px;
  border: 1px solid #afafaf;
  height: 40px;
  background: #fff url(../img/icons/angle-down.png) no-repeat right 12px center;
}

select.custom-select-style:focus,
select.custom-select-style:hover,
select.custom-select-style:active {
  background: #fff url(../img/icons/angle-down.png) no-repeat right 12px center;
  border-color: #afafaf !important;
}

.dropdown-toggle.btn.btn-outline-primary::after {
  margin-left: 10px;
}

.modal-search-content form {
  padding-left: 15px;
  padding-bottom: 15px;
}

.modal-search-content form label {
  color: #495057;
  font-weight: 500;
}

.modal-search-content form label i {
  color: #495057;
}

.template {
  display: none;
}

.store-area-selector-panel,
.store-number-selector-panel {
  height: 250px;
  padding: 0 15px;
}

.store-area-selector-panel > .row,
.store-number-selector-panel > .row {
  border: 1px solid #cccccc;
}

.store-area-selector-panel > .row > div,
.store-number-selector-panel > .row > div {
  border-left: 1px solid #cccccc;
  height: 250px;
}

.store-area-selector-panel > .row > div:first-child,
.store-number-selector-panel > .row > div:first-child {
  border-left: 0;
}

.store-area-selector-panel > .row > div .header,
.store-number-selector-panel > .row > div .header {
  border-bottom: 1px solid #cccccc;
  height: 50px;
}

.store-area-selector-panel > .row > div .header h5,
.store-number-selector-panel > .row > div .header h5 {
  margin: 15px 0 5px 0;
  font-size: 16px;
}

.store-area-selector-panel .list,
.store-number-selector-panel .list {
  height: 185px;
  overflow: auto;
  padding: 0;
}

.store-area-selector-panel .list .item,
.store-number-selector-panel .list .item {
  padding: 0 15px;
  height: 30px;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  text-align: left;
}

.store-area-selector-panel.read-only .list .item:hover,
.store-number-selector-panel.read-only .list .item:hover {
  background: #fff;
  border-color: #ddd;
  cursor: default;
}

.store-area-selector-panel .list .item:hover,
.store-number-selector-panel .list .item:hover {
  background: #ddd;
  border-color: #ddd;
}

.store-area-selector-panel.read-only .list .item.selected:hover,
.store-number-selector-panel.read-only .list .item.selected:hover,
.store-area-selector-panel .list .item.selected,
.store-number-selector-panel .list .item.selected {
  background: #999;
  border-color: #999;
}

.recipient-list {
  max-height: 270px;
  overflow: auto;
}

#blackout-modal .store-area-selector-panel > .row > div .header {
  tex-align: left;
}

#blackout-modal #store-area-selector {
  min-width: 840px;
}
.default-datatable .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 25px;
}
.default-datatable .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.default-datatable .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.default-datatable .switch .slider.round:before {
  border-radius: 50%;
}
.default-datatable .switch .slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
.default-datatable .switch .slider.round {
  border-radius: 34px;
}
.default-datatable .switch  input:checked + .slider {
  background-color: #779c8e;
}
.default-datatable .switch input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}
.recipient-list .recipient {
  background: #fff;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  position: relative;
  padding: 0 40px 0 10px;
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 10px;
}

.recipient-list .recipient > div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recipient-list .recipient > div > span {
  display: inline-block;
  margin-left: 5px;
}

.organization-description-textarea, .organization-description-textarea:focus, .organization-description-textarea:hover {
  background-color: #eee !important;
}

.aside-modal .organization-description-textarea,
.aside-modal .organization-description-textarea:focus,
.aside-modal .organization-description-textarea:hover {
  background-color: transparent !important;
}

.recipient-list .recipient .fa-xmark {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0 !important;
  bottom: 0;
  right: 10px;
  margin: auto;
  cursor: pointer;
  left: auto !important;
}

.recipient-list .recipient .fa-xmark:hover {
  background: #000;
  color: #fff;
}

.go-back-btn {
  color: #2c2929;
  font-size: 1.2rem;
  font-weight: 500;
}

.disable-input::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2000;
}

.datepicker-days table tbody tr td:not(.disabled) {
  color: black;
}

.datepicker-days table tbody tr td.active {
  color: white;
}

.go-back-btn i {
  color: #afafaf;
  font-size: 1.8rem;
  vertical-align: middle;
  margin-right: 10px;
}

.custom-input {
  background: url(../img/icons/angle-down.png) no-repeat right 12px center;
}

.visible-xs {
  display: none;
}
.copy-icon{
  position: absolute;
  fill: gray;
  cursor: pointer;
  top: 46px;
  right: 7px;
}
.mobile-menu {
  display: block;
  overflow: hidden;
  transition: all .3s;
  position: absolute;
  left: 0;
  top: 70px;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
}

.mobile-menu .content {
  background-color: #fff;
  padding: 50px 15px 40px 15px;
}

header.mobile-menu-expanded .mobile-menu {
  display: none;
  opacity: 1;
  visibility: visible;
}

.mobile-menu .btn.btn-default {
  background-color: #f2f2f2;
}

.header-right-col {
  line-height: 64px;
}

.back-to-parent.desktop {
  font-size: 1.2rem;
  display: block;
  line-height: 16px;
  position: relative;
  top: -30px;
  color: #0248B1;
}
a{
    /*#0248B1;*/
    --bs-link-color-rgb: 2, 72, 177;
}

.info-box {
  width: 460px;
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  text-align: left;
  margin: 100px auto 0 auto;
}

.get-started .large-icon {
  width: 72px;
  height: 72px;
  background-color: #e6e6e6;
  color: #cccccc;
  font-size: 3.2rem;
  text-align: center;
  line-height: 72px;
  border-radius: 50%;
  margin: 0 auto;
}

.promote-content .dropdown-toggle.btn::after {
  display: none;
}

.promote-content .dropdown-toggle.btn i {
  font-size: 1.6rem;
  margin-right: 9px;
  position: relative;
  top: 1px;
}

.promote-content .default-dropdown button {
  background-color: transparent;
}

.promote-content button.promote-landing-btn {
  background-color: #d1282e;
  border-color: #d1282e;
  color: #FFFFFF;
}

.promote-links {
  background-color: #ebebeb;
  max-width: 450px;
  margin-top: 42px;
  padding: 21px;
}

.promote-links a {
  font-size: 1.4rem;
}

.promote-links i {
  font-size: 1.9rem;
  position: relative;
  top: 2px;
  margin-right: 6px;
  color: #b8b8b8;
}

.promote-event-modal > .content {
  background-color: #f2f2f2;
}

.helpful-tips {
  list-style-type: none;
  margin-top: 25px;
  padding: 0px;
}

.helpful-tips li {
  background-color: #fef4d7;
  margin-bottom: 10px;
  border-radius: 8px;
  padding: 10px;
}

.create-event-guest-number-tooltip {
  color: #979797;
  margin-left: 10px;
}

.event-card .card-content {
  background-color: #f8f7ee;
  border-radius: 4px;
  padding: 15px;
}
.event-card .card-content.vfr ,
.event-card .card-content.nfr {
  position: relative;
  padding-bottom: 5px;
}
.vfr-frandly-name,
.nfr-frandly-name{
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
}

.event-card.vfr:before{
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: #5190B9;
}
.event-card.nfr:before{
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: #00816D;
}

.common-modal .event-card {
  padding: 8px;
}
.common-modal.view-event-modal .event-card {
  padding: 0px;
}

.common-modal.view-event-modal .view-event-details-header {
  margin-bottom: 20px;
}
.slider .tooltip{
  margin-top: 0;
  position: absolute;
  transform: translateX(-50%);
}
.slider .tooltip.bs-tooltip-top .tooltip-inner, .slider .tooltip.bs-tooltip-bottom .tooltip-inner{
  position: static;
}
.tooltip-inner {
  background-color: white;
  font-size: 1.3rem;
  padding: 10px;
  opacity: 1;
  filter: alpha(opacity=100);
  color: black;
  border: 1px solid #cccccc;
  border-radius: 8px;
  text-align: left;
}

.tooltip.show {
  opacity: 1;
  filter: alpha(opacity=100);
}

.bs-tooltip-top {
  top: -20px !important;
}

.bs-tooltip-top .arrow:before {
  border-top-color: white !important;
}
.address-validation-error-message{
  display: none;
}
.event-creation-select{
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  display: inline-block;
  width: fit-content;
  background-color: white;
  padding: 30px 30px;
  border-radius: 16px;
  max-width: 420px;
}
.event-creation-select p{
  padding-left: 3px;
  padding-top: 10px;
}
.event-creation-select img{
  width: 100%;
}
.event-creation-select a{
  width: 100%;
  height: 43px;
  font-size: 18px;
  border-radius: 10px;
  margin-top: 10px;
}
.event-card label {
  display: block;
  color: #4F6D64;
  margin-bottom: 0;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.reporter-role {
  background-color: #f2f2f2;
  padding: 3px;
  border-radius: 5px;
  text-align: center;
  font-size: 1.2rem;
}

.event-card time {
  font-weight: bold;
  font-size: 1.7rem;
}

.event-card time span {
  color: #4F6D64;
}

textarea[name="emailAddressForCheck"] {
  min-height: 80px;
}

.event-card time small {
  display: block;
  font-size: 1.4rem;
}
.reward-page .modal-search-content{
  max-width: 500px;
}
picture.preview {
  width: 250px;
  height: 200px;
  display: block;
  background-color: #cccccc;
  margin-bottom: 1.5rem;
}
.guest-text{
  padding: 10px 16px;
  background: #f8ddc0;
  border-radius: 4px;
  text-align:left;
}
.common-modal.preview-modal .modal-body {
  min-height: 400px;
}

.common-modal.preview-modal {
  font-family: proxima-nova, sans-serif;
}

.info-box .info {
  flex: 0 0 90px;
  background-color: #82a79a;
  color: #9bb9ae;
  font-size: 4rem;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  text-align: center;
}

.reporter-email-view {
  max-width: 40px;
  word-break: break-all;
  font-size: 10px;
}

.inline-input {
  display: inline;
  max-width: 150px;
}

table.dataTable tr.child ul.dtr-details .dropdown img {
  display: none;
}

table.dataTable tr.child ul.dtr-details li span.dtr-title {
  font-weight: bold;
}

table.dataTable tr.child ul.dtr-details .dropdown .dropdown-menu {
  display: block;
  position: static;
  box-shadow: none;
}
table.dataTable tr.child ul.dtr-details .dropdown .dropdown-menu:empty{
  min-height: unset !important;
  opacity: 0;
}
.table-dot{
  width: 8px;
  height: 8px;
  background-color: #d1282e;
  border-radius: 50%;
  position: absolute;
  top: calc( 50% - 6px );
  left: 5px;
}
.relative-tr tr{
  position: relative;
}
table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before, table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
  left: 9px !important;
}

.info-box .info::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.after-reset {
  display: none;
}

.info-box .info i {
  vertical-align: middle;
}

.info-box .text {
  padding: 25px;
}

.info-box .text h6, .info-box .text .box-title {
  font-weight: bold;
  color: #2c2929;
  font-size: 1.3rem;
}

.info-box .text p {
  font-size: 1.2rem;
  color: #595959;
  margin-bottom: 0;
}
.icon-takeout_icon{
  font-size: 1.7rem;
}
nav.primary a i, nav.primary a span[class^="icon-"].icon-takeout_icon{
  font-size: 1.7rem;
}

.red-cube {
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: #dc3545;
}

.green-cube {
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: #28a745;
}

.datepicker td, .datepicker th.dow {
  width: 40px;
  height: 40px;
}

.datepicker td {
  height: 26px;
}

.datepicker th.dow {
  text-transform: uppercase;
}

.datepicker-dropdown {
  padding: 5px 15px 15px 15px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 4px;
}

.datepicker-dropdown.datepicker-orient-top:before,
.datepicker-dropdown.datepicker-orient-top:after {
  display: none;
}

.datepicker thead tr:last-child {
  border-top: 1px solid #e8e5e3;
}

.datepicker thead tr:nth-child(2) {
  height: 40px;
}

.classical-modal.modal.common-modal .modal-content {
  padding: 15px 36px 15px 36px;
}

.classical-modal.modal.common-modal .modal-dialog {
  min-width: 550px;
}

.component-template {
  display: none;
}

.video-modal {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.video-modal.show {
  display: block;
}

.video-modal .video-container iframe {
  width: 1000px;
  height: 522px;
}

.video-modal .video-container {
  position: absolute;
  max-width: 1000px;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.video-modal .close-video {
  position: absolute;
  right: 0px;
  top: -65px;
  font-size: 45px;
  cursor: pointer;
  z-index: 101;
}

.video-modal .close-video i {
  color: #d1282e;
  cursor: pointer;
}

.one-word {
  background-color: transparent;
  border: 1px solid #d1282e;
  color: #d1282e;
  border-radius: 3px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
  padding-left: 27px;
  height: 28px;
  line-height: 28px;
  padding-right: 10px;
  text-align: left;
  position: relative;
  font-size: 1.4rem;
}

.one-word .cut-out-word {
  color: #d1282e !important;
  font-size: 1.6rem;
  line-height: 20px;
}

.cut-out-word {
  font-size: 2.1rem;
  position: absolute;
  left: 5px;
  top: 3px;
  cursor: pointer;
  width: 12px;
  height: 20px;
}

.open-ticket-list span.n, .resolved-ticket-list span.n {
  float: left;
  margin-top: 4px;
  margin-right: 10px;
  display: inline-block;
}

label[for="select-upcoming-events-checkbox"] {
  margin-right: 5px;
  margin-top: 5px;
}
.meal-builder-item.row{
  padding-right: 15px;
}
#select-upcoming-events-checkbox {
  width: 18px;
  height: 18px;
  position: relative;
  top: 4px;
}
.get-started a.btn.btn-primary{
  font-size:1.4rem;
}
.clear-location{
  position: absolute;
  right: 0px;
  padding: 10px;
  margin-top: -48px;
}
.for-mobile-view {
  display: none !important;
}
.custom-scrollbar::-webkit-scrollbar {
  -webkit-appearance: none;
}
.custom-scrollbar::-webkit-scrollbar:vertical {
  width: 12px;
}
.custom-scrollbar::-webkit-scrollbar:horizontal {
  height: 12px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  border: 2px solid #e1e0dc;
}
.custom-scrollbar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color:#e1e0dc;
}
.no-warp{
  white-space: nowrap;
}
td .no-warp{
  display: block;
}

.require-field{
  color: #D1282E;
  position: absolute;
  left: 2px;
  font-size: 2.2rem;
  top: 7px;
  line-height: 8px;
}

.preview-buttons{
  position: absolute;
  top: 90px;
  right: 3%;
}

.container.custom {
  padding-right: 80px;
}


@media (max-width: 1199px) {
  .container.custom {
    padding-right: 30px;
  }

  .nav-tabs .nav-link {
    font-size: 1.2rem;
  }
  .preview-buttons{
    position: static;
  }
}

@media (min-height: 1000px) {
  .page-wrapper > aside .collapse-toggle {
    margin-top: 0;
    position: absolute;
    bottom: 30px;
    margin-bottom: 0;
  }
}
@media (min-height: 930px) {
  .page-wrapper > aside {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 10;
    width: 260px;
  //  min-height: 910px;

  }

  nav.primary a {
    height: 38px;
    margin: 14px 0;
  }

  .page-wrapper > aside.collapsed {
    width: 80px;
  }

  .page-wrapper > .mid-content {
    padding-left: 343px;
  }

  .page-wrapper > aside.collapsed .collapse-toggle {
    left: 0;
    right: 0;
  }
}

@media (max-width: 767px) {
  .preview-buttons button{
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
  }
  .classical-modal.modal.common-modal .modal-dialog {
    min-width: auto;
  }
  .modal.common-modal.address-validation-modal .modal-dialog {
    min-width: auto;
  }

  .modal.common-modal.enrollment-edit-event-modal .modal-dialog {
    min-width: auto;
  }
  .project-selector {
    position: absolute;
    z-index: 10;
  }
  .address-container table tr th span{
    display: block;
  }
  .logo-text {
    margin-right: 0;
    vertical-align: middle;
    line-height: 18px;
    width: calc( 100% - 69px);

    font-size: 1.3rem;
  }
  .project-selector.expanded .dropdown {
    left: -38px;
  }
  .for-mobile-view{
    display: block !important;
  }
  .create-delivery-actions.for-mobile-view{
    display: flex !important;
  }
  .for-desktop-view{
    display: none !important;
  }
  .preview-dropdown {
    display: none;
  }

  .logo-text strong {
    display: block;
  }

  header .notifications {
    width: 300px;
  }

  header a.logo.with-text img {
    margin-right: 15px;
  }

  .hidden-xs {
    display: none;
  }

  .visible-xs {
    display: block;
  }

  .organization-action-btn > div {
    text-align: center !important;
    margin-bottom: 15px;
  }

  a.mobile-menu-toggle,
  a.mobile-menu-toggle:hover,
  a.mobile-menu-toggle:visited,
  a.mobile-menu-toggle:active {
    color: #706f6f;
    font-size: 2.4rem;
  }

  header {
    padding: 11px 10px;
    margin-bottom: 27px;
    height: 70px;
  }

  header.mobile-menu-expanded .mobile-menu {
    display: block;
  }


  header a.logo.with-text img {
    width: 48px;
    height: 48px;
  }

  .header-right-col {
    line-height: 48px;
  }

  .page-wrapper > aside {
    display: none;
  }

  .page-wrapper > .mid-content {
    padding: 0;
    width: 100%;
  }
  .page-wrapper > .mid-content.collapsed-content{
    padding: 0;
  }

  .page-wrapper > .mid-content > header {
    height: 70px;
    background-color: #fff;
    padding: 11px 25px;
  }

  header .notifications-wrapper {
    margin: 6px 20px 0 0;
  }

  .default-header-col {
    line-height: 48px;
  }

  .page-wrapper > .mid-content > header .logo-img {
    height: 48px;
    width: 48px;
    display: inline-block;
    margin-right: 15px;
  }

  .page-wrapper > .mid-content > header .mobile-menu-toggle {
    float: right;
  }

  .page-wrapper > .mid-content > header a {
    text-decoration: none;
  }

  .page-wrapper > .mid-content > header .mobile-menu a:first-child {
    border-top: 0;
  }

  .page-wrapper > .mid-content > header .mobile-menu {
    display: block;
  }

  .page-wrapper > .mid-content > header .mobile-menu a {
    display: block;
    color: #2c2929;
    font-weight: 500;
    padding: 10px 15px;
    line-height: 30px;
    height: 50px;
    font-size: 1.6rem;
    text-align: center;
    border-top: 1px solid #e6dede;
  }

  .page-wrapper > .mid-content > header .mobile-menu a.active {
    color: #d1282e;
    font-weight: bold;
  }

  .page-wrapper > .mid-content > header .mobile-menu .divider {
    border-bottom: 1px solid #d1282e;
  }

  .page-wrapper > .mid-content > header .mobile-menu .divider + a {
    border-top: 0;
  }

  .page-wrapper > .mid-content > header .mobile-menu .content {
    padding: 15px;
  }

  .page-wrapper > .mid-content > main {
    padding: 0 25px;
  }

  .page-title {
    margin-bottom: 15px;
    font-size: 2.4rem;
    text-align: center;
  }

  .chart-area canvas {
    max-width: 100%;
  }

  footer {
    padding-left: 25px;
    padding-right: 25px;
  }

  .container.custom {
    padding-right: 0;
  }

  .modal-search-container {
    margin-top: 15px;
  }

  .container.custom {
    width: 100%;
    max-width: 100%;
  }

  .back-to-parent.desktop {
    display: none;
  }

  .drag-and-drop-area {
    width: 100%;
  }

  .info-box {
    width: 100%;
  }

  .info-box .info {
    font-size: 3.2rem;
    flex: 0 0 70px;
  }

  .info-box .text {
    padding: 15px;
  }

  .modal.common-modal .modal-dialog {
    min-width: 90%;
    width: 90%;
  }
  .modal.common-modal#charity-terms-condition-modal .modal-dialog {
    min-width: 90%;
    width: 90%;
  }

  .modal.common-modal .modal-content {
    padding: 20px;
  }
  .google-maps-modal {
    width: 100%;
    height: 328px;
    left: 0;
    top: 50%;
    transform: translateY(-112%);
  }
  .event-creation-select{
    margin-left: 0;
    margin-right: 0;
    padding: 15px;
    width: 100%;
  }
  .event-creation-select a {
    width: 100%;
    height: unset;
    font-size: unset;
    margin-top: unset;
  }
}

@media (max-width: 400px) {
  .logo-text {
    font-size: 1.3rem;
  }
  .event-creation-select a {
    width: 100%;
    font-size: 1.4rem;
  }
  header .notifications {
    width: calc(100% - 18px);
    position: fixed;
    top: 65px;
    left: 5px;
  }

  .page-wrapper > .mid-content > header {
    padding: 11px 7px;
  }
}

@font-face {
  font-family: 'icomoon';
  src:  url('/icons/icomoon/fonts/icomoon.eot?g3ipfl');
  src:  url('/icons/icomoon/fonts/icomoon.eot?g3ipfl#iefix') format('embedded-opentype'),
  url('/icons/icomoon/fonts/icomoon.ttf?g3ipfl') format('truetype'),
  url('/icons/icomoon/fonts/icomoon.woff?g3ipfl') format('woff'),
  url('/icons/icomoon/fonts/icomoon.svg?g3ipfl#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-rewards_icon:before {
  content: "\e92d";
}
.icon-invite_icon:before {
  content: "\e92e";
}
.icon-taw:before {
  content: "\e92c";
}
.icon-Achievement-awards:before {
  content: "\e92b";
}
.icon-vfr_icon_dark_24px:before {
  content: "\e92a";
}

.icon-calculator_icon:before {
  content: "\e927";
}
.icon-pricetier_icon:before {
  content: "\e928";
}
.icon-takeout_icon:before {
  content: "\e929";
}

.icon-store:before {
  content: "\e900";
}

.icon-user:before {
  content: "\e901";
}

.icon-question:before {
  content: "\e902";
}

.icon-accounts-payable:before {
  content: "\e903";
}

.icon-search:before {
  content: "\e904";
}

.icon-location:before {
  content: "\e905";
}

.icon-amount:before {
  content: "\e906";
}

.icon-notification:before {
  content: "\e907";
}

.icon-filter .path1:before {
  content: "\e908";
}

.icon-filter .path2:before {
  content: "\e909";
  margin-left: -1em;
}

.icon-filter .path3:before {
  content: "\e90a";
  margin-left: -1em;
}

.icon-filter .path4:before {
  content: "\e90b";
  margin-left: -1em;
  color: #fff;
}

.icon-filter .path5:before {
  content: "\e90c";
  margin-left: -1em;
}

.icon-filter .path6:before {
  content: "\e90d";
  margin-left: -1em;
  color: #fff;
}

.icon-filter .path7:before {
  content: "\e90e";
  margin-left: -1em;
}

.icon-filter .path8:before {
  content: "\e90f";
  margin-left: -1em;
  color: #fff;
}

.icon-filter .path9:before {
  content: "\e910";
  margin-left: -1em;
}

.icon-dot-menu:before {
  content: "\e911";
}

.icon-declined-events:before {
  content: "\e912";
}

.icon-stats:before {
  content: "\e913";
}

.icon-settings:before {
  content: "\e914";
}

.icon-add-event:before {
  content: "\e915";
}

.icon-help:before {
  content: "\e916";
}

.icon-events:before {
  content: "\e917";
}

.icon-event-sales:before {
  content: "\e918";
}

.icon-dashboard:before {
  content: "\e919";
}

.icon-angle-left:before {
  content: "\e91a";
}

.icon-angle-right:before {
  content: "\e91a";
  transform: rotate(180deg);
  display: inline-block;
}

.icon-angle-up:before {
  content: "\e91a";
  transform: rotate(90deg);
  display: inline-block;
}

.icon-complete-events:before {
  content: "\e91b";
}

.icon-messages:before {
  content: "\e91c";
}

.icon-organizations:before {
  content: "\e91d";
}

.icon-heart:before {
  content: "\e91e";
}

.icon-school:before {
  content: "\e91f";
}

.icon-lwm:before {
  content: "\e920";
}

.icon-angle-down:before {
  content: "\e921";
}

.icon-sponsor:before {
  content: "\e922";
}

.icon-vending:before {
  content: "\e923";
}

.icon-readpaw:before {
  content: "\e924";
}

.icon-instagram:before {
  content: "\e925";
}

.icon-users:before {
  content: "\e926";
}

.google-maps-modal {
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: 8px solid #fff;
  position: absolute;
  width: 444px;
  height: 328px;
  left: 105%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.google-maps-modal.visible {
  visibility: visible;
  opacity: 1;
}

.google-maps-modal:before {
  content: '';
  display: block;
  position: absolute;
  left: -10px;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(-45deg) translateY(-50%);
  border: 8px solid #fff;
}

.google-maps-modal > div {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.user-permission-section{
  padding: 10px;
  background-color: #F2F2F2;
  display: none;
}
.aside-modal .user-permission-section label{
  margin-bottom: 25px;
}
.aside-modal .user-permission-section small{
  font-size: 1.6rem;
  position: relative;
  top: -3px;
  margin-left: 10px;
}.aside-modal .user-permission-section input{
  width: 18px;
  height: 18px;
}
.aside-modal .user-permission-section{
  padding: 25px;
  padding-bottom: 0;
}
.pac-container{
  z-index: 10000001;
}
.activity-log-aside-modal table tr th:last-child{
 min-width: 330px;
}
input[name="pendingSalesData"] {
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  left: -1px;
}
.dataTables_empty .color-indicator{
  display:none;
}
.medium-checkbox{
  width: 18px;
  height: 18px;
  position: relative;
  top: 3px;
}
.coupon-pool-table tr td:first-child{
  word-break: break-all;
}
.search-container-md{
  max-width: 380px;
  width: 380px;
  padding-top: 74px;
}
.view-request-modal.modal.common-modal .modal-content{
  padding: 18px 20px 20px 21px;
}
.view-request-modal.modal.common-modal .modal-dialog {
   min-width: 360px;
 }
.with-clear-btn{
  padding-right: 115px;
}
.failed-event{
  display: inline-block;
  margin-left: 5px;
  color: white;
  background-color: #d1282e;
  padding: 0px 3px;
  font-size: 10px;
  border-radius: 3px;
  padding-top: 1px;
}
[for="select-all-organisation-checkbox"]{
  position: relative;
  top: 3px;
}
.store-add-manually-btn{
  font-size: 23px;
  color: #767693;
  margin-top: 4px;
  cursor: pointer;
}

.example.nfr,
.example.vfr{
  display: none;
}
.reopened-stores-events .edit-event-btn{
  display: none;
}

.countdown{
  min-width: 80px;
  text-align: center;
}
.ap-organization-draft-indicator{
  text-align: right;
}

.ap-organization-draft-indicator span{
  color: #dc3545;
  font-weight: bold;
  border: 1px solid;
  padding: 3px 8px;
  border-radius: 5px;
}

textarea[name="emailAddressForCheck"]#emailAddressForCheck,
textarea[name="emailAddress2ForCheck"]#emailAddress2ForCheck{
  min-height: 50px;
  height: 50px;
  resize: none;
}
.verification-indicator{
  border-radius: 50%;
  font-size: 12px;
  background: #dc3545;
  color: white;
  display: none;
  text-align: center;
  width: 18px;
  height: 18px;
  position: relative;
  top: -4px;
}
.charity-upload-documents-container .drag-drop-area{
  border:1px dashed #cccccc;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;

}
.charity-upload-documents-container .disabled-drag-end-drop{
    pointer-events: none;
    opacity: 0.5;
}
.charity-org-verification-banner{
  padding: 15px 26px;
  background: transparent linear-gradient(90deg, #D1282E 0%, #F19933 66%, #FBDC7A 100%) 0% 0% no-repeat padding-box;
  border-radius: 7px;
  box-shadow: 0px 7px 10px #958f8f6b;
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
  letter-spacing: 0px;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 19px;
  cursor:pointer;
  text-decoration: none;
}

.charity-org-verification-banner .icon-angle-down{
  transform: rotate(-90deg);
  color: white;
  font-size: 18px;
}
.charity-org-verification-banner img{
  position: relative;
  top: -2px;
}
.charity-icon{
  width: 20px;
  position: relative;
  top: -3px;
  left: -2px;
}
.progress-container {
  width: 100%;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom:5px;
  overflow: hidden;
}
.progress-bar {
  height: 25px;
  width: 0;
  background-color: #4caf50;
  text-align: center;
  color: white;
  line-height: 30px;
}
.bold{
  font-weight: bold;
}
.reward-status{
  border-radius: 12px;
  padding:3px 14px;
  font-size: 12px;
  line-height: 15px;
  color: #4D4C4C;
  background: #e8e8e8;
}
.reward-status.available{
  background: #d9fbd6;
  color:#347130;
}
.reward-status.redeemed{
  background: #bfddff;
  color:#1062C1;
}
.reward-container input[name="applyReward"]{
  width: 18px;
  height: 18px;
  position: relative;
  top: 4px;
}
.reward-container{
  border: 1px solid #AFAFAF;
  border-radius: 4px;
  padding:24px ;
  margin-bottom: 20px;
}
.a2a_kit:has(.landing-share-btn){
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.a2a_kit .landing-share-btn{
  border:1px solid rgba(112, 112, 112, 0.3);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s;
}
.a2a_kit:has(.landing-share-btn) .landing-share-btn{
  margin: 0 6px;
}
.a2a_kit .landing-share-btn:hover{
  background-color:  rgba(112, 112, 112, 0.08);
}
.a2a_kit .landing-share-btn.a2a_button_twitter img{
  width: 12px;
  height: 12px;
}
.a2a_kit .landing-share-btn img{
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.twitter-new-footer-logo{
  height: 18px;
  width: 18px;
  object-fit: contain;
}
footer .socials{
  display: flex;
  align-items: center;
  justify-content: end;
}
footer .socials a:first-child{
  margin-left: 0;
}


.segment-row .remove-segment-row{
  width: 24px;
  height: 24px;
  background-color: #D1282E;
  cursor:pointer;
  line-height: 27px;
  text-align: center;
  border-radius: 50%;
  color:white;
}
.segment-row .form-group{
  margin-bottom: 0;
}
.segment-builder .add-or-btn,
.segment-builder .add-or-btn:active,
.segment-builder .add-or-btn:focus
{
 backdrop-filter: none;
  outline: none;
  border: none;
  box-shadow: none;
  color:#ff861d;
  text-decoration: underline;
  background: transparent;
  cursor: pointer;
  font-weight: bold;
}

.segment-builder .line{
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  background-color: white;
}
.segment-builder .line div{

  width: 100%;
  display: inline-block;
  height: 2px;
  background: #80808063;
  position: relative;
  top: 10px;
  border-radius: 10px;
}
.segment-builder .line span{
  white-space: nowrap;
  font-weight: bold;
  padding-right: 20px;
}
.segment-builder .or-line{
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}
.segment-builder .or-line div{

  width: 100%;
  display: inline-block;
  height: 1px;
  background: rgba(163, 163, 163, 0.39);
  position: relative;
  top: 10px;
  border-radius: 10px;
}
.segment-builder .or-line span{
  white-space: nowrap;
  font-weight: normal;
  font-size: 12px;
  padding-right: 20px;
}
.segment-builder .content .segment-row:first-child .or-line{
  display: none;
}
.segment-builder .condition{
  background: #8080800f;
  padding: 10px;
  border-radius:8px;
}

.circle{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.statistics-for-mobile section{
  display: flex;
  flex-wrap:  wrap;
  justify-content: space-around;
}
.statistics-for-mobile section article{
  padding: 17px 20px 0 20px;
  border-radius: 4px;
  background: #F8F7EE;
  margin: 0 5px 10px 5px;
  min-width: 225px;
}
.noClick {
  pointer-events: none;
}
.charity-banner{
  border:1px solid  #d1282e;
  padding: 15px;
  background: white;
  border-radius: 7px;
  margin-bottom: 20px;
}
#charity-terms-condition-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  position: relative;
  top: 4px;
}
.event-card.org{
  padding-top: 15px;
}
.event-card.org:before {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
}
.event-card.org.status-pending:before{
  background: #d1282e;
}
.event-card.org.status-pending .status:before{
  background: #d1282e;
}
.event-card.org.status-rejected:before{
  background: #d1282e;
}
.event-card.org.status-rejected .status:before{
  background: #d1282e;
}
.event-card.org.status-sent:before{
  background: #fbdc7a;
}
.event-card.org.status-sent .status:before{
  background: #fbdc7a;
}
.event-card.org.status-pending_verification_task_response:before{
  background: #fbdc7a;
}
.event-card.org.status-pending_verification_task_response .status:before{
  background: #fbdc7a;
}
.event-card.org.status-approved:before{
  background: #5cb85c;
}
.event-card.org.status-approved .status:before{
  background: #5cb85c;
}
.event-card.org .card-content  {
  background: white;
}
.event-card.org .status{
  margin-bottom: 0;
}
.event-card.org .org-name{
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  padding-bottom: 3px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #6E6E6E;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

}
.event-card.org .card-content{
  height: unset;
  color:#6E6E6E;
}
.event-card.org .promote-button{
  bottom: 15px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.event-card.org hr{
  margin-left: -25px;
  margin-right: -25px;
  position: absolute;
  bottom: 44px;
  width: 100%;
}
.event-card.org .icon-search{
  background: #fbdc7a;
  border-radius: 50%;
  color: white;
  padding: 4px;
}
.preview-text{
  padding-left: 7px;
  padding-right: 7px;
  text-align: center;
}
.event-card .status-pending_charity_status_verification.status::before {
  background-color: #d1282e;
}

.event-card .pending_charity_document_submission.status::before {
  background-color: #d1282e;
}

.event-card.org .success-text  .success-text-wrapper{
  width: 24px;
  border-radius: 50%;
  height: 24px;
  background-color: #92de8d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  vertical-align: middle;
}
.event-card.org .success-text  .success-text-wrapper svg{
  width: 10px;
}


.event-card.org  .declined-reason p{
  font-style: italic;
}
@media only screen and (min-width: 993px) {
  .event-card.org .card-content{
    height: 126px;
  }
}
@media only screen and (min-width: 1150px) {
  .event-card.org .card-content{
    height: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  .event-card.org .card-content{
    height: 170px;
  }
}
@media only screen and (min-width: 1350px) {
  .event-card.org .card-content{
    height: 140px;
  }
}
@media only screen and (min-width: 1600px) {
  .event-card.org .card-content{
    height: 120px;
  }
}
@media only screen and (min-width: 1645px) {
  .event-card.org .card-content{
    height: 100px;
  }
}




@media only screen and (max-width: 590px) {
    .statistics-for-mobile section article{
        min-width: 100%;
    }
}
.statistics-for-mobile section article label{
  text-transform: uppercase;
  color:#47746d;
  font-size: 12px;
  font-weight: normal;
  display: block;
}
.statistics-for-mobile section article span{
    font-size: 16px;
  color: #000000;
  display: block;

  margin-bottom: 17px;
}
.sortable-label{
  position: relative;
  cursor: pointer;
  width: 61px;
}
.sortable-label:before{
  color: black;
  content: "\2191";
  font-size: 2.2rem;
  position: absolute;
  top: 2px;
  right: 2px;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.sortable-label:after{
  color: black;
  content: "\2193";
  font-size: 2.2rem;
  position: absolute;
  top: 2px;
  right: 8px;
  display: block;
  opacity: 0.7;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.custom-multiselect {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1;
  left: 15px;
  top: -270px;
  width: 500px;
  border-radius: 4px;
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.custom-multiselect .save-grade-btn {
  width: 100%;
  text-align: center;
  margin-top: 22px;
}
@media only screen and (max-width: 590px) {
  .custom-multiselect{
    width: unset;
  }
  .sales-transaction-modal.for-guest .stat-box {
    text-align: center;
  }
  .sales-transaction-modal.for-guest .download-btn-container {
    text-align: center !important;
  }
  .sales-transaction-modal.for-guest .content  {
    padding-right: 15px;
  }
  .sales-transaction-modal.for-guest   .search_input{
    width: calc(100% - 60px);
  }
  .sales-transaction-modal.for-guest   .search_icon{
    width: 40px;
  }
  .sales-transaction-modal.for-guest .modal-search-content  {
   left: -15px;
    width: unset;
    max-width: unset;
  }
}
table.address-events.dataTable tbody tr td:nth-child(8),
table.address-events.dataTable tbody tr td:nth-child(9),
table.address-events.dataTable tbody tr td:nth-child(10){
  overflow-wrap: anywhere;
  min-width: 90px;
}
.tempus-dominus-widget{
  width: 30rem !important;
  padding: 20px !important;
}
@media(max-width:768px){
    .tempus-dominus-widget{
        width: 90% !important;
    }
}

.tox .tox-promotion, .tox:not([dir=rtl]) .tox-statusbar__branding{
  display: none;
}

.xlny-edit-part-2-form .google-maps-modal {
    left: -105%;
}
.payment-details{
  background-color: #FFFFFF;
  padding: 7px 12px;
  border: 1px solid #CDD4DA;
  border-radius: 3px;
  margin-top: 8px;
}
.payment-details hr{
  color: #CDD4DA;
  margin: 3px 0;
}
.payment-details h4{
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
}
.payment-details p{
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 12px;
}
.payment-details p span{
  color:#789F92;
}
.payment-details .check-status{
  text-transform: uppercase;
  color: #212529;
}
.service-link-form-group{
  margin-top: -10px;
}
.service-link-form-group a.disabled{
  pointer-events: none;
  cursor: default ;
  opacity: 0.75;
}
.check-tooltip{
  margin-left: 3px;
  margin-bottom: 2px;
  width: 13px;
}
.service-link-form-group{
  margin-top: -10px;
}

.xlny-edit-part-2-form .google-maps-modal {
  left: -105%;
}
.track-shipment{
  border: 1px solid #789D90;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 7px;
  padding: 0px 6px 2px 6px;
  display: inline-block;
}
.track-shipment a{
  display: inline-block;
  margin-left: 5px;
  text-decoration: underline;
  font-size: 12px;
  line-height: 8px;
  letter-spacing: 0px;
  color: #000000;
  text-transform: uppercase;
}
.tox .tox-promotion, .tox:not([dir=rtl]) .tox-statusbar__branding{
    display: none;
}
.tempus-dominus-widget{
    width: 30rem !important;
    padding: 20px !important;
}
@media(max-width:768px){
    .tempus-dominus-widget{
        width: 90% !important;
    }
}
.ml-0, .mx-0 {
  margin-left: 0 !important;
}
.pl-0, .px-0 {
  padding-left: 0 !important;
}
.pr-0{
  padding-right: 0 !important;
}
.bg-info{
  --bs-info-rgb: 23, 162, 184;
}
.visible-on-single-payment .payment-details-container label[for="paymentInCareOf"],
.visible-on-multi-payment .payment-details-container label[for="paymentInCareOf"]{
  height: 84px;
  display: flex;
  align-items: end;
}

@media (max-width: 1100px) {
  .visible-on-single-payment .payment-details-container label[for="paymentInCareOf"],
  .visible-on-multi-payment .payment-details-container label[for="paymentInCareOf"]{
    height: 24px;
  }
}

@media (min-width: 1480px) {
  .visible-on-single-payment .payment-details-container label[for="paymentInCareOf"],
  .visible-on-multi-payment .payment-details-container label[for="paymentInCareOf"]{
    height: 60px;
  }
}

.payment-details-container .col-sm-6 {
  min-width: 50%;
}

@media(max-width:768px){
  .payment-details-container .col-sm-6{
    min-width: 100%;
  }
}

.payment-payable-label {
  border: 1px solid #D1282E;
  border-radius: 4px;
  padding: 5px;
}

.payment-payable-label:after {
  right: 6px;
}
.processing-file-detail-modal .container>.row{
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.cut-long-text{
  max-width: 250px;
  display: inline-block;
  word-break: break-all;
}

.twitter-share-btn{
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 4px;
  margin: 0 2px;
}
.twitter-share-btn:hover{
  background: #000000cc;
}
.twitter-share-btn img{
  width: 65%
}
.organization-document-table tr td:nth-child(3){
  max-width: 250px;
}
.support-modal-btn{
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
}
.charity-document-guide-link{
  padding: 8px 12px;
  background-color: rgb(109 189 253);
  border-radius: 7px;
  margin-bottom: 2px;
  display: block;
  width: fit-content;
  color: black;
  font-size: 14px;
  font-weight: bold;

}

.charity-document-guide-link a{
  text-decoration: underline;
  color: black
}

a.skip-to-main {
  position: fixed;
  z-index: 10000;
  background: white;
  border: none;
  padding: 5px 10px;
  top: 0;
  transform: translateY(-100%);
  transition: transform 0.3s;
  color: #0071EB;
}

a.skip-to-main:focus, a.skip-to-main:focus-visible {
  transform: translateY(0%);
  text-decoration: underline;
}

a.back-to-top {
  position: fixed;
  z-index: 10000;
  background: white;
  border: none;
  padding: 5px 10px;
  bottom: 25px;
  left: 0;
  transform: translateY(calc(100% + 25px));
  transition: transform 0.3s;
  color: #0071EB;
}

a.back-to-top:focus, a.back-to-top:focus-visible {
  transform: translateY(0%);
  text-decoration: underline;
}
.event-card.org .card-content{
  padding: 0;
}
.min-w-200{
  min-width: 200px;
}


.charity-org-doc-card.event-card.org{
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.upload-actions{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.upload-actions .upload-button button,
.upload-actions .uploaded-file,
.upload-actions .upload-button{
  width: 100%;
}

.upload-actions .uploaded-file{
  display: flex;
  background: #cae8ca;
  border: 1px solid #114611;
  padding: 7px 10px;
  border-radius: 4px;
  color: #114611;
  align-items: center;
  gap: 2px;
}
.upload-actions .uploaded-file .file-name{
  max-width: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;

}
.upload-actions .uploaded-file .remove-file-btn{
  margin-left: auto;
  cursor: pointer;
}
.pta-remove-state{
  position: absolute;
  cursor: pointer;
  top: 11px;
  right: -47px;
  padding: 10px;
  font-size: 21px;
}
.state-container > div > .d-flex:first-child .pta-remove-state {
  display: none;
}
.relative{
  position: relative;
}
.copy-pta-code-btn {
  transition: all 0.3s ease;
}
.copy-pta-code-btn.copied {
 background-color: #198754;
 border-color: #198754;
}

.digital-removal-warning{
  display: block;
}
.modal-body {
  word-wrap: break-word;
}
.org-verification-row .event-card.org .btn-primary.upload{
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
}
.input-group-text{
  height: 50px;
  font-size: 1.6rem;
  border: 0;
  border-bottom: 2px solid #d7d7d7;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  position: absolute;
}