.et-db #et-boc .et-l .donate-drawer {
  position: absolute;
  top: 0;
  left: 100%;
  right: 0;
  width: 90vw;
  height: 100vh;
  padding: 20px 0;
  background: var(--white);
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: scroll;
  transition: 0.4s ease;
  z-index: 1000;

  /* Hide scrollbars */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE + Edge */
}
.et-db #et-boc .et-l .donate-drawer::-webkit-scrollbar {
  display: none; /* Chrome + Safari */
}

/***** Visual Builder *****/
/* 
* Used for when the visual builder is active
* This will hide the donate-drawer so the 
* header template will not overlap the content template
*/
.et-fb #et-boc .et-l .donate-drawer {
  display: none;
}
/***** ./ Visual Builder *****/

.et-db #et-boc .et-l .donate-drawer.open {
  left: 10vw;
  box-shadow: -12px 0px 30px rgb(0 0 0 / 35%);
}
.et-db.et-fb-root-ancestor:not(.et-tb-body-disabled) .donate-drawer {
  visibility: hidden;
}
.et-db #et-boc .et-l .close-drawer-button {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 20px;
}
.et-db #et-boc .et-l .close-drawer-button .et_pb_code_inner {
  display: flex;
  padding: 5px;
  cursor: pointer;
}
.et-db #et-boc .et-l .close-drawer-button .et_pb_code_inner svg,
.et-db #et-boc .et-l .close-drawer-button .et_pb_code_inner svg path {
  transition: 1s ease;
}
.et-db #et-boc .et-l .close-drawer-button .et_pb_code_inner:hover svg {
  transform: rotate(180deg);
}
.et-db #et-boc .et-l .close-drawer-button .et_pb_code_inner:hover svg path {
  stroke: var(--black);
}
.mobile-menu-donate-container .donate-button-wrapper {
  justify-content: center;
  margin-top: 20px;
}
.mobile-menu-donate-container .donate-drawer-link {
  /*    border-bottom-left-radius: 4px;*/
  border-radius: 4px;
}
.mobile-menu-donate-container .donate-dropdown {
  border-bottom-right-radius: 4px;
  border-bottom: 0px solid var(--white);
}
@media only screen and (min-width: 768px) {
  body.et-db #et-boc .et-l .donate-drawer {
    width: 50vw;
  }
  body.et-db #et-boc .et-l .donate-drawer.open {
    left: 50vw;
  }
}
@media only screen and (min-width: 981px) {
  body.et-db #et-boc .et-l .donate-drawer {
    width: 30vw;
    min-width: 500px;
  }
  body.et-db #et-boc .et-l .donate-drawer.open {
    left: calc(100vw - max(30vw, 500px));
  }
}
/* @media only screen and (max-width: 980px) {
    body.et-db #et-boc .et-l .donate-drawer {
        width: 50vw;
    }
    body.et-db #et-boc .et-l .donate-drawer.open {
        left: 50vw;
    }
}
@media only screen and (max-width: 768px) {
    body.et-db #et-boc .et-l .donate-drawer {
        width: 90vw;
    }
    body.et-db #et-boc .et-l .donate-drawer.open {
        left: 10vw;
    }
} */
