
:root {
  --font-family: "futura-pt", sans-serif;
  --ac-dark-grey:#434343;
  --ac-light-grey: #231f2021;
  --ac-modal-bg: #231f20cc;
  --ac-green:#2fab66;
  --ac-light-green: #2fab6690;
  --ac-attention: #FFF5BE;
  --ac-invalid: #ff777710;
  --ac-valid:#2fab6610;
  --ac-error: #ff777785;
}

* {
  font-family: var(--font-family);
  font-weight: 300;
  box-sizing: border-box;
  font-smooth: always;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:auto;
}

html, body {
  font-family: var(--font-family);
  font-weight: 300;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow:hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: none;
  overscroll-behavior-y: none;
}
h1 {
  font-size: 8vw;
  font-weight: 500;
  margin: 0;
  padding: 0;
  margin-bottom: 25px;
}
.splash {
  position: fixed;
  top:0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  transition: opacity ease-in 0.5s;
  flex-direction: column;
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 25%;
  opacity: 0;
  display:flex;
}
.splash.on {
  opacity: 1;
}
.app-running.splash {
  top:-100vh;
}
.splash-logo {
  width:100%;
  max-width: 400px;
}
.install-prompt {
  position: relative;
  /* top: 100%; */
  z-index: 999;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px;
  display: none;
}

header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap:25px;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  height: 78px;
  padding: 0 25px;
  filter: drop-shadow(0 3px 6px #00000016);
  box-sizing: border-box;
  z-index: 999;
}
.header-logo {
  width:50px;
  object-fit: contain;
  object-position: 50% 50%;
}
header > span {
  font-size: 5.5vw;
}
.blur {
  filter: blur(5px);
}
.wrapper {
  position:absolute;
  max-width:500px;
  width: 100vw;
  height: calc(100vh - 78px);
  top: 78px;
  left:50%;
  transform:translateX(-50%);
  display: flex;
  flex-direction: column;
  overflow:hidden;

}
.window {
  position:relative;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:block;
  overflow:hidden;
  flex-direction: column;

}
.track {
  position: absolute;
  width:200%;
  top:0;
  left:0;
  margin-left:0;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  transition:all 0.2s ease;
}
.panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-grow: 0;
  /* position:absolute; */
  top:0;
  left:0;

}
.alignment {
  position: relative;
  width: 100%;
  display: flex;
  height: 100%;
  flex-direction: row;
  justify-items: center;
  justify-content: center;
  align-items: flex-start;
  overflow: scroll;
  max-width:500px;
  scroll-behavior: smooth;
  scroll-snap-type: proximity;
  scroll-snap-stop: always;
}
.content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  justify-content: center;
  padding: 30px;
  width: 100%;
  height: auto;
}
.content .buttons {
  display:flex;
  flex-direction:column;
  width:100%;
  gap:15px;
}
.icon-container {
  position: relative;
  width:33%;
  height: 0;
  padding-top:33%;
  border-radius: 100%;
  background-color: var(--ac-green);
  display: flex;
  flex-direction:column;
  filter: drop-shadow(0px 0px 3vw #00000050);
}
.icon-container::before,
.icon-container::after {
  content:"";
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  border-color: #fff;
  font-size: 15vw;
  font-weight: 500;
  filter: drop-shadow(0px 0px calc(3vw * 0.3) #00000050);
}
/* modal */
.modal {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  display:flex;
  filter: blur(5px);
  left: 50vw;
  top:0;
  transform: translate(-50%, 0);
}
.modal::before,
.modal::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ac-modal-bg);
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  z-index: -1;
  transition:all 0.2s ease;
}
.modal::after {
  background: #fff;
  background-blend-mode: normal;
  mix-blend-mode: normal;
  z-index:-2;
  opacity:0;
}
.modal.open {
  opacity: 1;
  pointer-events: all;
  filter: blur(0px);
}
.modal .alignment > .content {
  text-align: center;
  width: 100%;
  padding: 50px 30px;
  filter: drop-shadow(0px 0px calc(3vw * 0.3) #00000050);
}
.modal .modal-message {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 25px;
}
.modal .modal-message h2 {
  margin: 0;
  padding: 0;
  font-size: 8vw;
  font-weight: 500;
  line-height: 1.1em;
}
.modal .modal-description {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 18px;
}
.modal .modal-buttons {
  display:flex;
  flex-direction: row;
  gap:10px;
  width: 100%;
}
.modal.confirmation,
.modal.await-update,
.modal.success{
  color:#fff;
}
.modal.confirmation .modal-icon::after {
  content:"!";
}
.modal.await-update .modal-icon::after,
.modal.await-update .modal-icon::before {
  content:"|";
  top: 50%;
  transform: translate(-50%,0%) rotate(0deg);
  transform-origin: 50% 10%;
  font-size:45px;
  animation: clock 1s linear infinite;
  left: 50%;
  top: 45%;
  width: auto;
  letter-spacing: 0em;
  filter: blur(0.5px);
}
.modal.await-update .modal-icon::before {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 70%);
  filter: blur(0px);
  animation: clock 60s linear infinite;
}
@keyframes clock {
  0% {
    transform: translate(-50%, 0%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 0%) rotate(359deg);
  }
}

.modal.success::before{
  background: var(--ac-light-green);
}
.modal.success::after{
  background: #fff;
  opacity:0.25;
}
.modal.success .icon-container {
  background-color: #fff;
}
.modal.success .modal-icon::after {
  content:"";
  transform: translate(-50%,-60%) rotate(45deg);
  transform-origin: 50% 50%;
  left: 50%;
  top: 50%;
  width: 22.5%;
  height: 40%;
  background:transparent;
  border: 15px var(--ac-green) solid;
  border-top:0;
  border-left:0
}

.modal.failure::before{
  background: var(--ac-error);
}
.modal.failure::after{
  background: #fff;
  opacity:0.85;
}
.modal.failure .icon-container {
  background-color: #fff;
}
.modal.failure .modal-icon::before,
.modal.failure .modal-icon::after {
  content:"";
  transform: translate(-50%,-50%) rotate(45deg);
  transform-origin: 50% 50%;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 50%;
  background:transparent;
  border: 0;
  background: var(--ac-dark-grey);
}
.modal.failure .modal-icon::after{
  transform: translate(-50%,-50%) rotate(-45deg); 
}

/* / modal */

.btn {
  width: 100%;
  font-size: 6vw;
  font-weight: 300;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 33px;
  height: 65px;
  color: var(--ac-dark-grey);
  border-width: 0.5px;
  border-style: solid;
  transition: all ease 0.2s;
  position: relative;
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
}
.slim-btn {
  height: 40px;
}
.btn:hover{
  filter:drop-shadow(0px 3px 6px #00000016);
  transform: scale(1.05);
}
.btn.white-btn {
  background: #fff;
  border-color:var(--ac-dark-grey);
}
.btn.white-btn:hover {
  background-color: var(--ac-green);
  color: #fff;
  border-color: var(--ac-green);
}
.btn.green-btn {
  background: var(--ac-green);
  border-color: var(--ac-green);
  color:#fff;
}
.btn.green-btn:hover {
  background-color: var(--ac-light-green);
}
.btn.white-btn.close-btn:hover {
  transform: scale(1.2);
}
.btn.white-btn.close-btn:hover:after,
.btn.white-btn.close-btn:hover:before,
.btn.white-btn.close-btn:focus:after,
.btn.white-btn.close-btn:focus:before,
.btn.white-btn.close-btn:active:before,
.btn.white-btn.close-btn:active:before {
  border-color: #ffffff;
}
.btn.close-btn {
  width:65px;
  height: 65px;
  border-radius: 100%;
  margin-top: 25px;
}
.btn.close-btn:before,
.btn.close-btn:after {
  content: "";
  position: absolute;
  width:45%;
  border:1.5px solid var(--ac-dark-grey);
  border-radius: 5px;
  top:50%;
  left:50%;
}
.btn.close-btn:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn.close-btn:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.inactive {
  pointer-events: none;
  opacity: 0.2;
  cursor: none;
}
.hide{
  display: none !important;
}

/* form */
.form {
  width:calc(100% + 10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:25px;
}
.form .group, .form .collection{
  width: calc(100% + 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:20px;
  max-height: 1000rem;
  transition: all 2s ease;
  overflow: hidden;
  margin-left: -25px;
  padding: 5px 25px;
}
.form .group.closed {
  max-height: 0;
  overflow: hidden;
}
.form .group-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.form .group .description {
  text-align: center;
}
.input-line {
  width:100%;
  display:flex;
  flex-direction: row;
  justify-content: flex-start;
}
.input-box {
  position:relative;
  display: flex;
  flex-direction: column;
  width:100%;
}
.input-line label {
  font-size:12px;
  position:relative;
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  user-select: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.input-line label input[type='checkbox']{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.input-line label .checkmark {
  position: relative;
  top: 0;
  left: 0;
  height: 35px;
  width: 35px;
  background-color: #fff;
  border-radius: 3px;
  border:0.5px solid var(--ac-dark-grey);
}
.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.2s ease;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 17px;
  border: solid var(--ac-green);
  border-width: 0 7px 7px 0;
  transform: translate(-50%, calc(-50% - 3.5px)) rotate(45deg);
}
.input-line label input[type='checkbox']:checked ~ .checkmark:after {
  opacity: 1;
}

.form .label-wrapper {
  display:flex;
  position:absolute;
  top:0px;
  transform: translate(10px, 0%);
  max-height: 0;
  opacity: 0;
  transition: all 0.2s ease;
}
.form .label-wrapper.open {
  max-height: 10rem;
  transform: translate(10px, -50%);
  top:0;
  opacity: 1;
}
.form .label {
  position: relative;
  padding: 5px 10px;
  background: #fff;
  border-radius: 10px;
  line-height: 1em;
  border: 1px solid #f7f7f7;
  font-size: 12px;
}
#customer-id {
  text-align: center;
}
.input-box input,
.input-box textarea {
  background:#fff;
  padding:32px;
  height:0;
  font-size:25px;
  border:0px;
  width:100%;
  display:flex;
  font-family: 'futura-pt';
  border-radius: 3px;
  border:0.5px solid var(--ac-light-grey);
}
.input-box input[type='checkbox'] {width:36px; height:36px;}
.input-box textarea {
  flex-grow: 1;
  height: 130px;
  resize: none;
  font-size: 18px;
  padding: 18px;
}
input::placeholder,
textarea::placeholder {
  color:var(--ac-light-grey);
  font-weight: 100;
  font-size: 25px;
}
textarea::placeholder {
  font-size: 18px;
}
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: 5px solid var(--ac-green);
}
.collection-lines-group,
.collection-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.collection-header,
.collection-line > div {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
}
.collection-header > div {
  text-align: center;
  font-size:10px;
  display: flex;
  flex-direction: column;
}
.collection-line {
  align-content: stretch;
  z-index: 1;
  flex-direction: column;
  gap:15px;
  display: flex;
  position: relative;
}
.collection-line-item-other-description-container label {
  width: 100%;
}
textarea.collection-line-item-other-textarea {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 65px;
  height: 65px;
  padding: 10px 10px;
}
textarea.collection-line-item-other-textarea,
textarea.collection-line-item-other-textarea::placeholder {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.form .omit {
  display: none;
}
.collection-line:nth-of-type(even)::before {
  content: "";
  position: absolute;
  width: 100vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 10px);
  background: var(--ac-light-grey);
  opacity: 0.25;
  z-index: -1;
}
.collection-line > div {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.collection-line > div > * {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border:0.5px solid var(--ac-dark-grey);
  color: var(--ac-dark-grey);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 3px;
  background-color: #fff;
}
.collection-line > div > label {
  justify-content: flex-start;
}
.collection-line > div > select {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: row;
  width: auto;
  cursor: pointer;
  border: 0.5px solid var(--ac-dark-grey);
  color: var(--ac-dark-grey);
  border-radius: 3px;
  height: auto;
  letter-spacing: -0.05em;
  padding: 10px;
  flex-shrink: 1;
  text-transform: capitalize;
  text-align: center;
  transition: all 0.2s ease;
}
.collection-line > div .invalid {
  background: var(--ac-invalid);
}
.collection-line > div > select.inactive.invalid {
  background: #ffffff;
}
.collection-header *:nth-child(1),
.collection-line > .collection-line-selection *:nth-child(1) {
  width:calc(((100% - 55px) / 100) * 42.5);
}
.collection-header *:nth-child(2),
.collection-line > .collection-line-selection *:nth-child(2) {
  width:calc(((100% - 55px) / 100) * 42.5);
}
.collection-header *:nth-child(3),
.collection-line > .collection-line-selection *:nth-child(3) {
  width:calc(((100% - 55px) / 100) * 15);
  text-align: center;
}

.collection-header *:nth-child(4),
.collection-line > .collection-line-selection *:nth-child(4) {
  width:40px;
}
.collection-line > div > .collection-line-delete-btn {
  background: #f2f2f2;
}
.collection-line > div > .collection-line-delete-btn.inactive {
  background: #fff;
}
.collection-line-delete-btn.inactive:hover {
  transform: scale(1);
}

label.error {
  flex-direction: column;
  align-items: flex-start;
}
.error input, .error textarea, .error select {
  background: var(--ac-invalid);
  border-color: #ff7777;
}
.error .validation-message {
  position: relative;
  border: 0.5px solid #ff7777;
  padding: 10px 15px;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
  margin-top: -5px;
  text-align: center;
  width: 100%;
}
.error .validation-message:before,
.error .validation-message:after{
  content:"";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #FF7777 transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 10;

}
.error .validation-message:after {
  border-color: transparent transparent #fff transparent;
  top: 0.5px;
}

.wpcf7-not-valid-tip, .wpcf7-form.invalid .wpcf7-response-output, .wpcf7-form.sent .wpcf7-response-output {color: rgb(0, 122, 138);background: rgba(0, 122, 138, 0.1);border-radius: 3px;padding: 5px 15px;border: 0.5px solid rgb(0, 122, 138); width: 100%;transition: all 0.2s ease-in;}
.wpcf7-form.invalid .wpcf7-response-output, input.wpcf7-not-valid, .wpcf7-not-valid-tip {color: #ff7777;background: #ffe7e7;border: 0.5px solid #ff7777}
.wpcf7-form.sent .wpcf7-response-output {color: #00b992;background: #defff8;border: 0.5px solid #00b992}
form.wpcf7-form .input-line:last-of-type {padding-bottom: 0 !important}
.wpcf7-response-output {margin-top:0px;}
.wpcf7-form.invalid .wpcf7-response-output {margin-top:10px;}

.wpcf7-form-control.wpcf7-checkbox {display: flex; width: 100%; flex-direction: row; flex-wrap: wrap;gap:10px;}

.wpcf7-list-item{display: flex;flex-direction: row-reverse; align-content: center;flex-wrap: wrap; justify-content: flex-end; gap: 10px; width:calc((100% - 20px) / 3);}
/* /form */

/* in-page notifications */
.templates {
  display:none;
}
a.dismiss {
  position:absolute;
  top:0;
  right:0;
  width:35px;
  height:35px;
  border-radius:100%;
  background:var(--ac-light-grey);
  opacity:0.5;
}
a.dismiss::before,
a.dismiss::after {
  position:absolute;
  top:50%;
  left:50%;
  width:50%;
  height:0;
  border:1.5px solid var(--ac-dark-grey);
  z-index:1;
  border-radius:10px;
  content:"";
  transform:translate(-50%, -50%) rotate(45deg);
}
a.dismiss::after {
  transform:translate(-50%, -50%) rotate(135deg);
}
.panel .notification {
  display: flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  justify-content:center;
  position:relative;
  margin:0;
  padding:25px 0;
  gap:0px;
  width: 100%;
  transition:all 0.2s ease;
  opacity:0;
  max-height:0;
  overflow:hidden;
}
.panel .notification.show {
  opacity:1;
  max-height:200rem;
  overflow:auto
}
.panel .notification.success .notification-icon {
  margin-bottom:25px
}
.panel .notification.success .notification-icon::after {
  content:"";
  transform: translate(-50%,-60%) rotate(45deg);
  transform-origin: 50% 50%;
  left: 50%;
  top: 50%;
  width: 22.5%;
  height: 40%;
  background:transparent;
  border: 15px #fff solid;
  border-top:0;
  border-left:0
}
.panel .notification h2 {
  margin:0
}
.panel .notification .message-container {
  display:flex;
  flex-direction:column;
  align-content:center;
  justify-content:center;
  gap:15px;
  width:100%;
}
.panel .notification .notification-feature {
  background:var(--ac-dark-grey);
  color:#fff;
  padding:15px 20%;
  flex-grow:1;
  width:100%;
}
.panel .notification .attention-message {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.panel .notification .attention-message i{
  position:relative;
  width:20px;
  height:20px;
  border-radius:100%;
  background: var(--ac-attention);
  display: inline-block;
  font-style:normal;
}
.panel .notification .attention-message i::before,
.panel .notification .attention-message i::after{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  color:var(--ac-dark-grey);
  font-weight:300
}
.panel .notification .attention-message i::after {
  content: "!"
}
/* /inpage notifications */

/* global notifications */
.global-notification-container {
  position: absolute;
  top:0;
  left: 50%;
  width: calc(100vw - 40px);
  transition:all 0.2s ease;
  display:flex;
  flex-direction:column;
  z-index:997;
  transform: translate(-50%, -100%);
  gap:5px;
  max-width: 460px;
}
.global-notification-container .notification{
  width:100%;
  padding:10px;
  background:#ffffff25;
  filter:drop-shadow(0 0 5px #00000025);
  border:0.5px solid var(--ac-dark-grey);
  border-radius:6px;
  position:relative;
  top:calc(78px + 15px);
  z-index:1;
  display:flex;
  flex-direction:row;
  justify-content: space-between;
  transform:translate(0, -100%);
  transition:all 0.2s ease;
  margin-top: 0;
}
.global-notification-container .notification.remove{
  transform:translate(0, -100%);
  margin-top:-100vh;
}
.global-notification-container.show{
  transform: translate(-50%, 0%);
  /* transition:all 0.2s ease; */
}
.global-notification-container.show .notification {
  transform:translate(0, 0%);
}
.global-notification-container .notification::before,
.global-notification-container .notification::after {
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  z-index:-1;
  background:#ffffffdd;
  top:0;
  left:0;
  border-radius:6px;
}
.global-notification-container .notification .notification-content {
  display:flex;
  flex-direction:column;
  flex-grow: 1;
  align-content: center;
  justify-items: center;
  text-align:center;
  padding:0 35px;
  gap:5px;
}
.global-notification-container .notification .dismiss {
  width: 25px;
  height: 25px;
  top:5px;
  right:5px;
}
.global-notification-container .notification h3 {
  margin:0;
  padding:0;
  font-weight:500;
  font-size:14px;
}
.global-notification-container .notification .message-container {
  font-weight:300;
  font-size:14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.global-notification-container .notification.error {
  border-color:#FF7777;
}
.global-notification-container .notification.error::after {
  background:var(--ac-invalid)
}
.global-notification-container .notification.error .dismiss {
  border-color:#FF7777;
  color:#FF7777;
  background:#fff;
}
.global-notification-container .notification.error .dismiss::before,
.global-notification-container .notification.error .dismiss::after {
  background:#FF7777;
  border-color: #FF7777;
}

.global-notification-container .notification.success {
  border-color:var(--ac-light-green);
}
.global-notification-container .notification.success::after {
  background:var(--ac-valid)
}
.global-notification-container .notification.success .dismiss {
  border-color:var(--ac-light-green);
  color:var(--ac-light-green);
  background:var(--ac-light-green);
}
.global-notification-container .notification.success .dismiss::before,
.global-notification-container .notification.success .dismiss::after {
  background:var(--ac-light-green);
  border-color: var(--ac-light-green);
}
.global-notification-container .notification .message-container .btn {
  font-size: 18px;
  padding: 25px;
  height: 0;
  width: auto;
}
/* /global notifications */

/* above 500px */
@media (min-width:500px) {
  .window {width:500px}
  header > span {font-size:27.5px}
  h1,
  .modal .modal-message h2 {font-size: 40px;}
  .btn {font-size: 30px;}
  .icon-container { filter: drop-shadow(0px 0px 10px #00000050);}
  .icon-container::before, .icon-container::after {font-size:75px}
}
/* /above 500px */