/* CSS Document */

:root {
  --breakpoint-cb: 1440px;
  --font-family-sans-serif: "Montserrat", sans-serif;
}

body {
  margin: 0;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  text-align: left;
  background-color: #fff;
}

a {
  color: #9649cb;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #9649cb;
  text-decoration: underline;
}

.btn-xl {
  border-radius: 0px;
}

.btn-primary {
  color: #fff;
  background-color: #a8abf0;
  text-transform: uppercase;
  /*font-size: 1.25rem;*/
}

.btn-primary:hover {
  color: #fff;
  background-color: #2d0f70;
}

.btn-secondary {
  color: #fff;
  background-color: #2d0f70;
  text-transform: uppercase;
  /*font-size: 1.25rem;*/
}

.btn-secondary:hover {
  color: #fff;
  background-color: #a8abf0;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Bebas Neue";
  line-height: 1;
}

.tooltip,
.popover,
.btn {
  font-family: "Montserrat";
}

.text-color-white {
  color: #ffffff;
}
.text-color-black {
  color: #000000;
}
.text-color-purple {
  color: #9649cb;
}
.text-color-light-blue {
  color: #a8abf0;
}
.text-color-dark-blue {
  color: #2d0f70;
}

.bg-white {
  background-color: #ffffff;
}
.bg-black {
  background-color: #000000;
}
.bg-purple {
  background-color: #9649cb;
}
.bg-blue {
  background-color: #a8abf0;
}
.bg-dark-blue {
  background-color: #2d0f70;
}

.container-cb {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.alert {
  border-radius: 0px;
  padding: 1.25rem 4rem 1.25rem 1.25rem;
}

.alert-danger {
  background-color: #ffebeb;
  border-color: #dc3545;
  color: #dc3545;
}

.alert-danger a {
  color: #dc3545;
}

.animated-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 35px;
  display: inline-block;
  text-align: center;
  background: #ff3f3f;
  position: relative;
}

.animated-btn::before, .animated-btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(255, 63, 63, 0.8);
  animation: ripple-1 2s infinite ease-in-out;
  z-index: -1;
}

.animated-btn::after {
  background: rgba(255, 63, 63, 0.6);
  animation: ripple-2 2s infinite ease-in-out;
  animation-delay: 0.5s;
}

@keyframes ripple-1 {
  0% {
      transform: scale(1);
      opacity: 1;
  }

  100% {
      transform: scale(1.5);
      opacity: 0;
  }
}

@keyframes ripple-2 {
  0% {
      transform: scale(1);
      opacity: 1;
  }

  100% {
      transform: scale(1.7);
      opacity: 0;
  }
}

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 100%;
}

/**************************************** Menu ****************************************/

.navbar-brand {
  padding: 0;
}

#mainNav {
  background-color: #fff;
}
#mainNav .navbar-brand,
#mainNav .navbar-nav .nav-item .nav-link,
#mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link {
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
  font-size: 1.75rem;
  line-height: 1.75rem;
  color: #2d0f70;
}

#mainNav .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link:active,
#mainNav.navbar-scrolled .navbar-nav .nav-item .nav-link:hover,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: #9649cb;
}

.navbar .container {
  display: flex;
  align-items: flex-end;
}

#mainNav .navbar-nav .nav-item .nav-link.active,
.register {
  color: #9649cb !important;
}

.register:hover {
  color: #2d0f70 !important;
}

#mainNav img.avatar-sm {
  margin-right: 0px;
  border: 3px solid #e5e5e5;
  width: 32px;
  height: 32px;;
}

#mainNav .dropdown-item {
  padding: 0.375rem 0.5rem;
}

@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu { display: none; }
	.navbar .nav-item:hover .dropdown-menu { display: block; }
	.navbar .nav-item .dropdown-menu { margin-top:0; }
}

@media all and (min-width:991px) {  
#mainNav ul.navbar-nav {
  align-items: flex-end;
}
.dropdown:after{
    content: ''; 
    top: 0;
    right: 0;
    bottom: 0;
    right: 0;
    /*transition: opacity .15s ease-in-out;
    opacity: 0;
    visibility:hidden;
    background-color: rgba(0,0,0,.7);
    pointer-events: none;*/
  }
  .dropdown.show .nav-link {
    /*position:relative;
    z-index:12;*/
  }
  .dropdown.show:after {
    /*z-index:10; opacity:1; 
    visibility:visible;
    position: fixed;*/
  }
}

.dropdown-menu-center {
  right: auto;
  left: 50%;
  padding: 0;
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 0;
  border-top: 16px solid rgba(255, 255, 255, 0.25);
  border-left: 5px solid rgba(255, 255, 255, 0.25);
  border-right: 5px solid rgba(255, 255, 255, 0.25);
  border-bottom: 5px solid rgba(255, 255, 255, 0.25);
}

.dropdown-menu-center li a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/*************************************************/
/******************** Welcome ********************/
/*************************************************/

.welcome {
  padding-top: 10rem;
  padding-bottom: calc(10rem - 4.5rem);
  background: /*linear-gradient(to bottom, rgba(150, 150, 150, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%),*/ url("../images/cb-slide-1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.welcome h1 {
  font-size: 2.25rem;
  font-family: "Bebas Neue", cursive;
  font-weight: normal;
}

.cb-main-search-form,
.cb-main-search-form:focus {
  border: 5px solid #9649cb;
  border-radius: 0px;
}

.cb-main-search-form:focus {
  box-shadow: none;
}

.cb-main-search-icon {
  background-color: #9649cb;
  color: #fff;
  border-radius: 0px;
  font-size: 1.75rem;
}

.cb-main-search-icon:hover {
  color: #faebff;
}

.form-row-cb-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.form-row-cb-buttons > .col,
.form-row-cb-buttons > [class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

/******************************************************/
/******************** How it works ********************/
/******************************************************/

.how-it-works {
  padding-top: 10rem;
  padding-bottom: /*calc(11rem - 4.5rem)*/ 3rem;
  background: url("../images/cb-slide-2.png");
  background-color: #9649cb;
  background-blend-mode: color-burn;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

.cb-block {
  border-left: 5px solid #2d0f70;
  border-right: 5px solid #2d0f70;
  border-bottom: 5px solid #2d0f70;
  margin-bottom: 30px;
  margin-top: 30px;
  /*min-height: 300px;*/
}

.cb-block:hover {
  border-left: 5px solid #a8abf0;
  border-right: 5px solid #a8abf0;
  border-bottom: 5px solid #a8abf0;
}

.cb-block:hover .cb-icon:before,
.cb-block:hover .cb-icon:after {
  background-color: #a8abf0;
}

.cb-block-link {
  border: 5px solid #2d0f70;
  vertical-align: middle;
  padding: 25px;
  /*min-height: 300px;*/
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  margin-top: 30px;
}

.cb-block-link:hover {
  border: 5px solid #a8abf0;
}

.cb-block-link:hover h1 {
  color: #a8abf0;
}

.cb-explore-btn {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: inline;
}

.cb-content {
  padding: 25px;
}

.cb-content h2 {
  border-bottom: 5px solid #2d0f70;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.cb-icon {
  overflow: hidden;
  text-align: center;
  position: relative;
  top: -46px;
  margin: 0px 0px -46px;
}
.cb-icon:before,
.cb-icon:after {
  background-color: #2d0f70;
  content: "";
  display: inline-block;
  height: 5px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
.cb-icon:before {
  right: 2.5em;
  margin-left: -50%;
}
.cb-icon:after {
  left: 2.5em;
  margin-right: -50%;
}

.margin-level-1 {
  margin-bottom: 30px;
}
.margin-level-2 {
  margin-top: 30px;
}

/**************************************************/
/******************** About Us ********************/
/**************************************************/

.about-us {
  padding-top: 10rem;
  padding-bottom: /*calc(10rem - 4.5rem)*/ 3rem;
  background: url("../images/cb-slide-3.png");
  background-color: #2d0f70;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

/***********************************************************/
/******************** Explore charities ********************/
/***********************************************************/

.explore-charities {
  padding-top: 10rem;
  padding-bottom: /*calc(11rem - 4.5rem)*/ 3rem;
}

.ec-background {
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 1) 100%
    ),
    url("../images/cb-slide-2.png");
  background-color: #f2edf5;
  background-blend-mode: luminosity;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

#charity-carousel-1,
#charity-carousel-2,
#issues {
  background: #fff;
}

#charity-carousel-1 .carousel-1,
#charity-carousel-2 .carousel-2,
#issues .issues {
  padding: 0px 0px 10px;
  margin-top: -50px;
}

#charity-carousel-1 .carousel-item,
#charity-carousel-2 .carousel-item,
#issues .carousel-item {
  padding: 0px 15px;
}

.controls-1,
.controls-2,
.controls-3 {
  padding: 30px;
  min-height: 150px;
}

.carousel-controls {
  position: absolute;
  right: 30px;
  top: 36px;
}

a.arrow-left,
a.arrow-right {
  padding: 4px 8px;
  border: 3px solid #fff;
  color: #fff;
  margin-left: 10px;
}

a:hover.arrow-left,
a:hover.arrow-right {
  color: #000000;
  border: 3px solid #000000;
}

#issues a:hover.arrow-left,
#issues a:hover.arrow-right {
  color: #a8abf0;
  border: 3px solid #a8abf0;
}

a.view-all {
  font-weight: 600;
}

a:hover.view-all {
  color: #000000;
  text-decoration: none;
}

#issues a:hover.view-all {
  color: #a8abf0;
}

.card-img-top {
  border-radius: 0px;
}

#charity-carousel-1 .card,
#charity-carousel-2 .card {
  border: 5px solid #2d0f70;
  border-radius: 0px;
  min-height: 600px;
}

#charity-carousel-1 .card:hover,
#charity-carousel-2 .card:hover {
  border: 5px solid #000000;
}

#charity-carousel-1 .card:hover h2.card-title a,
#charity-carousel-2 .card:hover h2.card-title a {
  color: #000000;
  text-decoration: none;
}

#issues .card {
  border: 5px solid #a8abf0;
  border-radius: 0px;
  min-height: 150px;
}

#issues .card:hover {
  border: 5px solid #9649cb;
  background: #9649cb;
}

h2.card-title a {
  color: #9649cb;
}

p.card-text i {
  margin-right: 50px;
}

.carousel-1 .progress,
.carousel-2 .progress,
.issues .progress {
  margin: 0rem 1.25rem;
  border-radius: 0px;
  height: 30px;
  background-color: #d9d9d9;
}

.carousel-1 .card-footer,
.carousel-2 .card-footer,
.issues .card-footer {
  border-top: none;
  margin: 1.25rem;
  padding: 1.25rem;
  background-color: #d9d9d9;
}

.issue {
  display: flex;
  align-content: center;
  align-items: center;
}

.issue-block {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 1.25rem;
}

.issue a {
  color: #9649cb;
}

#issues .card:hover .issue a {
  color: #fff;
}

/**************************************** Filter Forms ****************************************/

.form-control,
.typeahead__container .typeahead__field input::placeholder,
.typeahead__field,
.form-control::-webkit-input-placeholder {
  color: #000000 !important;
  font-size: 1rem;
  opacity: 1;
}

.typeahead__cancel-button,
.typeahead__container,
.typeahead__container .typeahead__field input {
  font-family: "Montserrat";
}

.bootstrap-select .dropdown-menu,
.typeahead__dropdown,
.typeahead__list {
  border: 5px solid #ccc;
  margin-top: 0;
  padding: 0;
}

.typeahead__cancel-button {
  min-height: 50px;
  font-size: 1.75rem;
  font-weight: 600;
}

.typeahead__container.cancel:not(.loading) .typeahead__cancel-button:hover {
  color: #9649cb;
}

p.charity-name {
  font-weight: 600;
  color: #000000;
}

p.charity-state-zip {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #9649cb;
}

p.charity-category {
  color: #666;
  font-size: 0.75rem;
}

::placeholder,
.bootstrap-select > .dropdown-toggle,
.typeahead__container .typeahead__field input,
.form-quick-search,
.form-search-by-issue,
.form-quick-search,
.form-search-by-issue,
.form-select-state,
.form-select-city,
.form-zip-code,
.form-select-category,
.form-charity-name,
.form-select-status {
  min-height: 50px;
  color: #000000 !important;
  opacity: 1;
  font-size: 1rem;
}

.typeahead__container .typeahead__field input,
.form-quick-search,
.form-quick-search:focus {
  border: 5px solid #9649cb;
}

.form-search-by-issue,
.form-search-by-issue:focus {
  border: 5px solid #2d0f70;
}

.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle,
.bootstrap-select > .dropdown-toggle,
.form-select-state,
.form-select-state:focus,
.form-select-city,
.form-select-city:focus,
.form-zip-code,
.form-zip-code:focus,
.form-select-category,
.form-select-category:focus,
.form-charity-name,
.form-charity-name:focus,
.form-select-status,
.form-select-status:focus {
  border: 5px solid #acacac;
}

.bootstrap-select .no-results {
  padding: 3px 8px;
  margin: 0;
}

div.dropdown.bootstrap-select.form-control.form-select-state
  button.btn.dropdown-toggle.btn-light,
.form-select-state .show > .btn-light.dropdown-toggle,
.form-select-state .show > .btn-light.dropdown-toggle:hover {
  background-color: #fff !important;
  outline: none !important;
  outline-offset: unset !important;
}

.form-select-category .option,
.dropdown-item {
  padding: 0.375rem 0.75rem;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #9649cb;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f5f5f5;
  color: #000000;
}

.dropdown-item:focus {
  outline: none;
}

.btn-light:focus,
.btn-light.focus {
  color: none;
}

div.dropdown.bootstrap-select.form-control.form-select-state.show
  div.dropdown-menu.show
  div.bs-searchbox
  input.form-control {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 3px solid #acacac;
  border-radius: 0;
}

.explore-btn {
  color: #fff;
  min-height: 50px;
  vertical-align: middle;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.explore-btn:hover {
  color: #fff;
  background-color: #9649cb;
}

.bootstrap-select .dropdown-menu,
.bootstrap-select > .dropdown-toggle,
.typeahead__container .typeahead__field input,
.show > .btn-light.dropdown-toggle:focus,
.form-quick-search,
.form-search-by-issue,
.form-select-state,
.form-select-city,
.form-zip-code,
.form-select-category,
.form-charity-name,
.explore-btn,
.form-select-status {
  border-radius: 0px;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.bootstrap-select .dropdown-toggle:focus,
.signup-donor-btn:focus,
.signup-charity-btn:focus,
.explore-btn:focus,
.login-btn:focus,
.form-control:focus,
.newsletter-btn:focus {
  box-shadow: none;
}

/************************************************************************************************************/
/******************** Login / Register Donor / Register Charity Check / Register Charity ********************/
/************************************************************************************************************/

.register-donor,
.register-charity,
.reset-password,
.login-register {
  padding-top: 15rem;
  padding-bottom: /*calc(10rem - 4.5rem)*/ 3rem;
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 25%,
      rgba(255, 255, 255, 1) 100%
    ),
    url("../images/cb-slide-2.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
}

/**************************************** Registration / Login forms and Buttons ****************************************/

.gg-charity, .form-email, .form-password, .form-password-repeat, .form-first-name, .form-last-name, .form-charity-name, .form-expense-name, .form-expense-cost, .form-expense-account-no, .form-expense-description, .form-datepicker, .form-expense-upload, .form-expense-vendor-name, .form-vendor-description, .form-vendor-payout-schedule, .form-expense-vendor-payout, .form-charity-profile-email, .form-charity-profile-name, .form-charity-profile-city, .form-charity-profile-state, .form-charity-profile-zip, .form-charity-profile-web, .form-charity-profile-phone, .form-charity-profile-pass-change, .form-charity-profile-bn, .form-charity-profile-tax, .form-charity-profile-url, .form-charity-profile-pd, .form-newsletter, .form-bank-name, .form-account-holder, .form-country, .form-currency, .form-routing-number, .form-account-number, .form-charity-profile-ah, .form-charity-profile-country, .form-charity-profile-currency, .form-charity-profile-rn, .form-charity-profile-an, .form-charity-profile-ps {
  min-height: 50px;
}

.gg-charity, .gg-charity:focus, .form-first-name, .form-first-name:focus, .form-last-name, .form-last-name:focus, .form-charity-name, .form-charity-name:focus, .form-expense-name, .form-expense-name:focus, .form-expense-cost, .form-expense-cost:focus, .form-expense-account-no, .form-expense-account-no:focus, .form-expense-description, .form-expense-description:focus, .form-datepicker, .form-datepicker:focus, .form-expense-upload, .form-expense-upload:focus, .form-expense-vendor-name, .form-expense-vendor-name:focus, .form-vendor-description, .form-vendor-description:focus, .form-vendor-payout-schedule, .form-vendor-payout-schedule:focus, .form-expense-vendor-payout, .form-expense-vendor-payout:focus, .form-charity-profile-email, .form-charity-profile-email:focus, .form-charity-profile-name, .form-charity-profile-name:focus, .form-charity-profile-city, .form-charity-profile-city:focus, .form-charity-profile-state, .form-charity-profile-state:focus, .form-charity-profile-zip, .form-charity-profile-zip:focus, .form-charity-profile-web, .form-charity-profile-web:focus, .form-charity-profile-phone, .form-charity-profile-phone:focus, .form-charity-profile-pass-change, .form-charity-profile-pass-change:focus, .form-charity-profile-bn, .form-charity-profile-bn:focus, .form-charity-profile-tax, .form-charity-profile-tax:focus, .form-charity-profile-url, .form-charity-profile-url:focus, .form-charity-profile-pd, .form-charity-profile-pd:focus, .form-email, .form-email:focus, .form-password, .form-password:focus, .form-password-repeat, .form-password-repeat:focus, .form-newsletter, .form-newsletter:focus, .form-bank-name, .form-bank-name:focus, .form-account-holder, .form-account-holder:focus, .form-country, .form-country:focus, .form-currency, .form-currency:focus, .form-routing-number, .form-routing-number:focus, .form-account-number, .form-account-number:focus, .form-charity-profile-ah, .form-charity-profile-ah:focus, .form-charity-profile-country, .form-charity-profile-country:focus, .form-charity-profile-currency, .form-charity-profile-currency:focus, .form-charity-profile-rn, .form-charity-profile-rn:focus, .form-charity-profile-an, .form-charity-profile-an:focus, .form-charity-profile-ps, .form-charity-profile-ps:focus {
  border: 5px solid #acacac;
}

.gg-charity, .form-first-name, .form-last-name, .form-charity-name, .form-expense-name, .form-expense-cost, .form-expense-account-no, .form-expense-description, .form-datepicker, .form-expense-upload, .form-expense-vendor-name, .form-vendor-description, .form-vendor-payout-schedule, .form-expense-vendor-payout, .form-charity-profile-email, .form-charity-profile-name, .form-charity-profile-city, .form-charity-profile-state, .form-charity-profile-zip, .form-charity-profile-web, .form-charity-profile-phone, .form-charity-profile-pass-change, .form-charity-profile-bn, .form-charity-profile-tax, .form-charity-profile-url, .form-charity-profile-pd, .form-email, .form-password, .form-password-repeat, .login-btn, .signup-donor-btn, .signup-charity-btn, .ce-total-btn, .form-newsletter, .newsletter-btn, .form-bank-name, .form-account-holder, .form-country, .form-currency, .form-routing-number, .form-account-number, .form-charity-profile-ah, .form-charity-profile-country, .form-charity-profile-currency, .form-charity-profile-rn, .form-charity-profile-an, .form-charity-profile-ps {
  border-radius: 0px;
}

.form-control::file-selector-button {
  background-color: #acacac;
  padding: .675rem .75rem;
  margin: -.675rem -.75rem;
  -webkit-margin-end: .75rem;
  margin-inline-end: .75rem;
  min-height: 50px;
  color: #ffffff;
  /*background-color: #e9ecef;*/
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-check {
  padding-left: 2.5em;
}

.form-check label {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}

.form-check .cb-check-box {
  float: left;
  margin-left: -2.5em;
}

.cb-check-box[type="checkbox"] {
  border-radius: 0em;
}

.cb-check-box {
    width: 2em;
    height: 2em;
    margin-top: 0em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 5px solid #acacac;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    transition: background-color .15s ease-in-out,background-position .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.cb-check-box:checked[type="checkbox"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.cb-check-box:checked {
  background-color: #9649cb;
  border-color: #9649cb;
}

.ce-total-btn,
.login-btn {
  color: #fff;
  min-height: 50px;
  vertical-align: middle;
  text-align: center;
  padding: 12px 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.ce-total-btn:hover,
.login-btn:hover {
  color: #fff;
  background-color: #000000;
}

.signup-donor-btn,
.signup-charity-btn {
  min-height: 50px;
  background-color: transparent;
  padding: 12px 20px;
  font-weight: 600;
}

.signup-donor-btn {
  color: #a8abf0;
  border: 5px solid #a8abf0;
}

.signup-donor-btn:hover {
  color: #fff;
  background-color: #a8abf0;
}

.signup-charity-btn {
  color: #2d0f70;
  border: 5px solid #2d0f70;
}

.signup-charity-btn:hover {
  color: #fff;
  background-color: #2d0f70;
}

.newsletter-btn {
  background-color: #acacac;
  border: 5px solid #acacac;
  font-weight: 600;
  color: #fff;
}

.charity-append-gray {
  background: #acacac;
  border: none;
  color: #fff;
  font-weight: 600;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 50px;
  justify-content: center;
}

/* Calendar */

.datepicker {
  padding: 0px !important;
  margin-bottom: 0rem;
  border-radius: 0px !important;
  color: #2d0f70 !important;
}

.datepicker table {
  width: 100%;
}

.datepicker table td,
.datepicker table th {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.75rem;
  border-radius: 0px;
}

div.datepicker-days table.table-condensed tbody tr td.today.highlighted.day,
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover {
  background-color: #a8abf0 !important;
  background-image: none !important;
  color: #ffffff !important;
  font-weight: 600;
}

.datepicker.dropdown-menu th, .datepicker.datepicker-inline th,
.datepicker.dropdown-menu td, .datepicker.datepicker-inline td {
  padding: 5px 0px !important;
  margin: 0% !important;
}

.datepicker table tr td span {
  border-radius: 0px !important;
}

.datepicker table tr td span.active:hover, .datepicker table tr td span.active:hover:hover, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active.disabled:hover:hover, .datepicker table tr td span.active:active, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:hover.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active:hover.disabled, .datepicker table tr td span.active.disabled.disabled, .datepicker table tr td span.active.disabled:hover.disabled, .datepicker table tr td span.active[disabled], .datepicker table tr td span.active:hover[disabled], .datepicker table tr td span.active.disabled[disabled], .datepicker table tr td span.active.disabled:hover[disabled], .datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover, td.active.highlighted.day, div.datepicker-days table.table-condensed tbody tr td.today.active.highlighted.day {
  background-image: none !important;
  background-color: #9649cb !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

.datepicker table tr td.highlighted {
  color: #9649cb;
  background: #ffffff !important;
  font-weight: 600;
}

.datepicker table tr td.highlighted:hover {
  background: #9649cb !important;
  color: #ffffff;
}

.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
  text-shadow: none !important;
}

.datepicker-days,
.datepicker-months,
.datepicker-years,
.datepicker-decades,
.datepicker-centuries {
  padding: 10px;
}

.datepicker.dropdown-menu {
  border: 5px solid #777777 !important;
}

.datepicker-dropdown.datepicker-orient-top::before {
  bottom: -12px !important;
  border-bottom: 0;
  border-top: 12px solid #777777 !important;
}

.datepicker-dropdown.datepicker-orient-bottom::before {
  top: -12px !important;
  border-bottom: 12px solid #777777 !important;
}

.datepicker-dropdown::before {
  border-left: 12px solid transparent !important;
  border-right: 12px solid transparent !important;
}

.datepicker-dropdown.datepicker-orient-left::after {
  left: 10px !important;
}

.datepicker-dropdown.datepicker-orient-left::before {
  left: 4px !important;
}

/********************************************************/
/******************** Search results ********************/
/********************************************************/

.search-results {
  padding-top: 10rem;
  padding-bottom: /*calc(10rem - 4.5rem)*/ 3rem;
}

.search-results-header {
  padding: 30px;
  min-height: 150px;
}

.search-results-footer {
  padding: 30px;
  min-height: 150px;
  margin-bottom: 50px;
}

/**************************************** Pagination ****************************************/

.charity-block-pagination li a {
  border: 3px solid #fff;
  padding: 10px 15px;
  margin: 5px;
  color: #fff;
  background: none;
  font-weight: 600;
}

ul.charity-block-pagination .page-item.active .page-link,
.charity-block-pagination li a:hover {
  border: 3px solid #a8abf0;
  background: #a8abf0;
  color: #2d0f70;
}

.charity-block-pagination li a:focus {
  box-shadow: none;
}

ul.charity-block-pagination .page-item:last-child .page-link,
ul.charity-block-pagination .page-item:first-child .page-link {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

/*************************************************/
/******************** Charity ********************/
/*************************************************/

.charity-background {
  height: 500px;
  background-image: url("../images/main-bg.jpg");
  background-color: #e5e5e5;
  background-position: top center;
  background-size: cover;
  padding-top: 10rem 0;
}

.charity-profile-image {
  width: 192px;
  height: 192px;
  border: 5px solid #fff;
  margin: -101px auto 0;
  background-color: #9d9d9d;
}

.charity-profile-dashboard {
  margin-top: -41px;
  background-color: #9649cb;
}

.charity-followers,
.charity-bills,
.charity-donations,
.profile-nickname,
.profile-location {
  display: inline-flex;
  /*float: left;
	margin-right: 30px;*/
  line-height: 1.25;
  color: #fff;
}

.charity-followers svg,
.charity-bills svg,
.charity-donations svg,
.profile-nickname svg,
.profile-location svg {
  font-size: 36px;
  padding-right: 10px;
  color: #2d0f70;
}

.charity-followers p,
.charity-bills p,
.charity-donations p,
.profile-nickname p,
.profile-location p {
  font-weight: 600;
  margin-bottom: 0;
}

.expense-goal,
.charity-followers span,
.charity-bills span,
.charity-donations span,
.profile-nickname span,
.profile-location span {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.charity-btns {
  display: flex;
  justify-content: flex-end;
}

.icon-separator {
  padding: 5px 10px 5px 0px;
  margin-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  display: unset;
}

.chat-btn,
.follow-btn,
.share-btn {
  background-color: #2d0f70;
  color: #fff;
  border-radius: 0;
  font-weight: 600;
  margin-left: 10px;
}

.chat-btn:hover,
.follow-btn:hover,
.share-btn:hover {
  background-color: #000000;
  color: #fff;
}

.chat-btn:focus,
.follow-btn:focus,
.share-btn:focus {
  box-shadow: none;
}

.charity-profile-overview,
.charity-profile-info {
  background-color: #eee;
  padding: 30px;
  border-bottom: 5px solid #e5e5e5;
}

.charity-profile-info svg {
  margin-right: 15px;
  margin-left: 15px;
  color: #9649cb;
}

.charity-profile-info p {
  padding: 10px 0px;
  border-bottom: 2px solid #e5e5e5;
  margin-bottom: 0px;
}

.charity-profile-info p.last {
  border-bottom: none;
}

.donation-station-dashboard {
  padding: 0 0 1rem;
  border-bottom: 1px solid #e5e5e5;
}

.donation-station-amounts,
.donation-station-amounts-borders {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1;
  /*background: #eee;*/
  padding: 30px 15px !important;
  margin: 0 auto;
}

.donation-station-amounts-borders {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}

.donation-station-amounts:hover,
.donation-station-amounts-borders:hover {
  background-color: #f5f5f5;
}

.expense-description {
  padding: 0px;
}

.expense-description .card {
  border-radius: 0px;
  border: none;
}

.edit-btn,
.delete-btn,
.love-btn,
.r-donation-btn,
.description-btn,
.chart-btn {
  border: 3px;
  border-style: solid;
  border-radius: 0px;
}

.edit-btn:focus,
.delete-btn:focus,
.love-btn:focus,
.r-donation-btn:focus,
.description-btn:focus,
.chart-btn:focus {
  box-shadow: none;
}

.edit-btn {
  border-color: #2d0f70;
  color: #2d0f70;
}

.edit-btn:hover {
  border-color: #2d0f70;
  background-color: #2d0f70;
  color: #fff;
}

.delete-btn {
  border-color: #dc3545;
  color: #dc3545;
}

.delete-btn:hover {
  border-color: #dc3545;
  background-color: #dc3545;
  color: #fff;
}

.love-btn {
  border-color: #9649cb;
  color: #9649cb;
}

.love-btn:hover {
  border-color: #9649cb;
  background-color: #9649cb;
  color: #fff;
}

.r-donation-btn {
  border-color: #2d0f70;
  color: #2d0f70;
  display: none;
}

.r-donation-btn:hover {
  border-color: #2d0f70;
  background-color: #2d0f70;
  color: #fff;
}

.description-btn {
  border-color: #000000;
  color: #000000;
}

.description-btn:hover {
  border-color: #000000;
  background-color: #000000;
  color: #fff;
}

a:not([href]).chart-btn {
  border-color: #a8abf0;
  color: #a8abf0;
}

a:not([href]).chart-btn:hover {
  border-color: #a8abf0;
  background-color: #a8abf0;
  color: #fff;
}

.border-gray {
  border: 2.5px solid #d5d5d5;
  background-color: #d5d5d5;;
}

.ce-title {
  margin: 0 0 0rem 0;
}

.ce-title h2 {
  line-height: 1;
}

.charity-expenses-total {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #eee;
}

.charity-expenses-total h2 {
  line-height: 1;
}

.charity-expenses-border {
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 1rem;
}

.cb-card-holder {
  margin-top: 0.5rem;
}

.cb-edit-delete {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.cb-edit-delete svg {
  color: #000000;
}

.cb-edit-delete a:hover {
  color: #2d0f70;
  text-decoration: none;
}

.cb-dashboard-expenses {
  padding: 0 1rem;
}

.cb-dashboard-expense-amount,
.cb-dashboard-expense-type {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: normal;
  padding: 2px 0;
}

.cb-bill-uploaded,
.cb-bill-not-uploaded,
.cb-vendor-set,
.cb-vendor-not-set,
.cb-transparent,
.cb-direct-pay,
.cb-not-transparent,
.cb-not-direct-pay {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  margin-right: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  float: left;
}

.cb-bill-uploaded,
.cb-vendor-set,
.cb-transparent,
.cb-direct-pay {
  background: rgb(207, 238, 207);
  border: 1px solid green;
  color: green;
}

.cb-bill-not-uploaded,
.cb-vendor-not-set,
.cb-not-transparent,
.cb-not-direct-pay {
 background-color: #ffebeb;
 border: 1px solid #dc3545;
 color: #dc3545;
}

.tooltip {
  font-size: 0.75rem;
}

.add-expense-btn {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.add-expense-btn a {
  color: #2d0f70;
}

.add-expense-btn a:hover {
  color: #9649cb;
  text-decoration: none;
}

.cb-allert-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.alert-btn {
  background-color: #dc3545;
  border: 1px solid #ffffff;
}

.alert-btn:hover {
  background-color: #dc3545;
  border: 1px solid #dc3545;
}

/* Carousel */

.carousel-inner img {
  width: 100%;
  height: 100%;
}

#cb-profile-carousel .carousel-indicators {
  position: static;
  margin-right: 10%;
  margin-left: 10%;
  margin-top: 20px;
}

#cb-profile-carousel .carousel-indicators > li {
  width: 100px;
  height: 100%;
}

#cb-profile-carousel .carousel-indicators li img {
  display: block;
  opacity: 0.5;
}

#cb-profile-carousel .carousel-indicators li.active img {
  opacity: 1;
}

#cb-profile-carousel .carousel-indicators li:hover img {
  opacity: 0.75;
}

.carousel-item img {
  width: 100%;
}

#cb-profile-carousel .carousel-control-prev,
#cb-profile-carousel .carousel-control-next {
  height: 75%;
  width: 10%;
}

/*************************************************/
/******************** Profile ********************/
/*************************************************/

.view-all-ce {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.view-all-ce a {
  color: #2d0f70;
}

.view-all-ce a:hover {
  color: #9649cb;
  text-decoration: none;
}

.issue-icon {
  color: #a8abf0;
}

.issue-block-profile a:hover {
  text-decoration: none;
}

.issue-block-profile:hover .issue-icon {
  color: #9649cb;
}

/* .cb-avatar-sm,
.cb-avatar-md,
.cb-avatar-lg {
  border: 3px solid #fff;
  background-color: #9d9d9d;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.cb-avatar-sm {
  min-width: 48px;
  min-height: 48px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 15px;
	color: #fff;
} */

.charity-profile-info ul {
  margin: 0;
  padding: 0;
}

.charity-profile-info ul li {
  list-style: none;
}

.charity-profile-info ul li a {
  display: flex;
  align-content: center;
  align-items: center;
}

.charity-profile-info ul li a:hover {
  text-decoration: none;
}

.charity-profile-info ul li a:hover h5 {
  color: #9649cb;
}

.charity-profile-info ul li a:hover img.avatar-sm {
  border-color: #9649cb;
}

.charity-profile-info ul li.list-group-item {
  padding: 0.75rem 0;
  background-color: transparent;
  border-bottom: 2px solid #e5e5e5;
}

img.avatar-sm {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  border: 3px solid #fff;
  background-color: #9d9d9d;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.charity-profile-overview ol {
  margin: 0;
  padding-left: 30px;
}

.charity-profile-overview ol li {
  font-family: "Bebas Neue";
  font-size: 20px;
}

/************************************************************/
/******************** Expense Management ********************/
/************************************************************/

#expense-management .nav-tabs {
  border-bottom: 5px solid #d5d5d5;
  font-weight: 600;
  text-transform: uppercase;
}

#expense-management .nav-tabs .nav-item {
  margin-bottom: 0px;
}

#expense-management .nav-tabs .nav-link {
  border: 5px solid transparent;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  background-color: #eee;
  color: #999999;
}

#expense-management .nav-tabs .nav-link.active,
#expense-management .nav-tabs .nav-link.active:hover,
#expense-management .nav-tabs .nav-link:focus,
#expense-management .nav-tabs .nav-item.show .nav-link {
  color: #2d0f70;
  background-color: #d5d5d5;
  border-color: #d5d5d5;
}

#expense-management .nav-tabs .nav-link:hover {
  background-color: #d5d5d5;
  border: 5px solid #d5d5d5;
  color: #2d0f70;
}

#expense-management .tab-content {
  border: 5px solid #d5d5d5;
  border-top: none;
  padding: 1rem;
  background-color: rgba(255,255,255,0.5);
}

.expense-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 5px;
  border-bottom: 2px solid #acacac;
  margin-bottom: 10px;
}

.cb-expense:hover .expense-title,
.cb-goal:hover .expense-title,
.cb-raise:hover .expense-title {
  border-bottom: 2px solid #9649cb;
}

.cb-edit {
  font-size: 0.75rem;
  background-color: #d4daf5;
  border: 1px solid #2d0f70;
  color: #2d0f70;
  padding: 0.25rem 0.5rem;
  margin-right: 0.5rem;
}

.cb-delete {
  font-size: 0.75rem;
  background-color: #ffebeb;
  border: 1px solid #dc3545;
  color: #dc3545;
  padding: 0.25rem 0.5rem;
}

.cb-em {
  /*background: #fff;*/
  padding: 1.5rem 0.5rem;
}

.cb-em:nth-child(odd) {
  background-color: #f5f5f5;
}

.cb-expense-filter {
  padding: 1.5rem;
  background-color: #e5e5e5;
}

/************************************************/
/******************** Footer ********************/
/************************************************/

footer {
  background: #e5e5e5;
}

.copyright {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #000;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer ul li {
  list-style: none;
}

.social-links svg {
  margin: 0 5px;
}

.social-links a svg {
  font-size: 1.5rem;
  color: #acacac;
}

.social-links a:hover svg {
  color: #9649cb;
}

/* STRIPE */

.stripe-block-bg {
  background-color:  rgba(255, 255, 255, 0.5);
  border: 5px solid #acacac;
  padding: 1rem 1rem;
}

.stripe-block-bg .table th,
.stripe-block-bg .table td {
  border-top: none;
  vertical-align: middle;
  font-weight: 400 !important;
}

.stripe-block-bg .table tfoot {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stripe-block-bg .btn-complete-donation {
  background-color: #ddd;
  border: none;
  border-radius: 0;
  font-size: 0.75rem !important;
  font-weight: 600;
  text-transform: uppercase;
}

.stripe-block-bg .btn-complete-donation:hover {
  background-color: #ccc;
}

.stripe-link {
  padding: 0.25rem 0.75rem;
  background-color: #eee;
}

.stripe-link a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.stripe-link a:hover {
  color: #000000;
  text-decoration: none;
}

.form-label-group input:focus,
.form-label-group input {
  min-height: 50px;
  border: 5px solid #acacac;
  border-radius: 0;
}

.form-label-group {
  margin-bottom: 1rem;
}

/* STRIPE DEFAULT */

.StripeElement {
  background-color: white;
  height: 50px;
  padding: 10px 12px;
  border-radius: 0;
  border: 1px solid transparent;
  color: #000;
  /*box-shadow: 0 1px 3px 0 #e6ebf1;
  -webkit-transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease;*/
}

.StripeElement--complete,
.StripeElement--focus,
.StripeElement--empty {
  border: 5px solid #acacac;
}

.StripeElement--focus {
  /* box-shadow: 0 1px 3px 0 #cfd7df; */
  box-shadow: none;
}

.StripeElement--invalid {
  border: 5px solid #dc3545;
}

.StripeElement--webkit-autofill {
  background-color: #fefde5 !important;
}

.card-errors {
  color: #dc3545;
  font-weight: 600;
}

/**************************************** Responsiveness ****************************************/

@media (max-width: 576px) {
  .how-it-works,
  .about-us {
    padding-top: 8rem;
  }
  .form-row-cb-buttons > .col {
    min-width: 100%;
    margin-bottom: 10px;
  }
  .cb-main-search-icon {
    font-size: 1.25rem;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
  }
  .margin-level-1 {
    margin-bottom: 0px;
  }
  .cb-block-link,
  .margin-level-2 {
    margin-top: 0px;
  }
  .cb-block-link h1 {
    font-size: 4.25rem;
  }
  .charity-btns {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
  }
  .icon-separator {
    padding: 0px 0px 5px 0px !important;
    margin-bottom: 5px;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    display: block !important;
  }
  .chat-btn,
  .follow-btn,
  .share-btn {
    margin: 0;
    width: 32%;
    text-align: center;
  }
  .ce-title,
  .ce-btns {
    margin: 0 0 0.75rem 0;
  }
  .ce-title,
  .ce-btns {
    text-align: center;
  }
  .ce-total-amount {
    margin: 15px 0 0;
  }
  .hide-padding {
    padding: 0;
  }
  .dropdown-menu-center {
    transform: none;
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-right: none;
  }
}

@media (max-width: 768px), (max-width: 823px) {
  .charity-profile-image {
    margin-bottom: 15px;
  }
  #profile-cover h1 {
    text-align: center;
    margin-bottom: 51px;
  }
  .charity-followers,
  .charity-bills,
  .charity-donations {
    display: inline-block;
    text-align: center;
  }
  .charity-followers svg,
  .charity-bills svg,
  .charity-donations svg {
    text-align: center;
    padding: 0 5px;
    margin-bottom: 5px;
  }
  .charity-btns {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
  }
  .icon-separator {
    padding: 5px 10px 5px 0px;
    margin-right: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    display: unset;
  }
  .chat-btn,
  .follow-btn,
  .share-btn {
    margin: 0;
    width: 32%;
    text-align: center;
  }
  .ce-title,
  .ce-btns {
    margin: 0 0 0.75rem 0;
  }
  .ce-title,
  .ce-btns {
    text-align: center;
  }
  .ce-total-amount {
    margin: 15px 0 0;
  }
}

@media (min-width: 992px) {
  .welcome,
  .how-it-works,
  .about-us {
    height: 100vh;
    min-height: 40rem;
    padding-top: 10rem;
    padding-bottom: 0;
  }
  .register-donor,
  .register-charity,
  .login-register,
  .reset-password {
    height: 100vh;
    min-height: 40rem;
    padding-top: 15rem;
    padding-bottom: 0;
  }
  .welcome h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .cb-main-search-form {
    height: 60px;
  }
  .cb-main-search-icon {
    width: 60px;
  }
  .menu-separator {
    border-right: 2px solid #000000;
  }
  .charity-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  .chat-btn,
  .follow-btn,
  .share-btn {
    width: 33.333333%;
    margin: 0 10px 0 0;
  }
  .ce-title {
    margin: 0 0 0 0;
  }
  .ce-btns {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .welcome p {
    font-size: 1.15rem;
  }
  .welcome h1,
  .about-us h1,
  .explore-charities h1,
  .search-results h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  .charity-btns {
    display: flex;
    justify-content: flex-end;
    margin-top: 0px;
  }
  .chat-btn,
  .follow-btn,
  .share-btn {
    width: auto;
    margin: 0 0 0 10px;
  }

/* TO TOP and SCROOL DOWN */

.back-to-top {
  border-radius: 0px;
  position: fixed;
  bottom: 48px;
  right: 75px;
  display: none;
  background-color: #9649cb;
  color: #ffffff;
}

.back-to-top:hover {
  background-color: #2d0f70;
  color: #ffffff;
}

.back-to-top:focus {
  box-shadow: none;
}

.scroll-down {
  position: absolute;
  bottom: 0px;
  left: 75px;
}

.scroll-down-line {
  width: 3px;
  height: 75px;
  background-color: #9649cb;
  margin: 20px 13px 0px 13px;
}

.scroll-down:hover .scroll-down-line {
  background-color: #2d0f70;
}

.scroll-down a {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  writing-mode: tb-rl;
  transform: rotate(-180deg);
}

.scroll-down a:hover {
  text-decoration: none;
  color: #2d0f70;
}
}

@media (min-width: 1440px) {
  .container {
    max-width: 1410px;
  }
  .container-cb,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1410px;
  }
  .welcome h1 {
    font-size: 5.25rem;
    line-height: 5.25rem;
  }
  .how-it-works h1,
  .about-us h1,
  .explore-charities h1,
  .search-results h1 {
    font-size: 4.25rem;
    line-height: 4.25rem;
  }
}
