* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

.mobile {
  max-width: 993px;
  width: 100%;
  margin-inline: auto;
  height: 100vh;
}

.input-group + .input-group {
  margin-top: 24px;
}
.input-group label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #6C7797;
  line-height: 14px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.input-group input {
  border: 1px solid #CFD5E5;
  border-radius: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background-color: #FFFFFF;
  width: 100%;
}
.input-group .password {
  display: flex;
  align-items: center;
  padding-right: 16px;
  border-radius: 8px;
  border: 1px solid #CFD5E5;
}
.input-group .password input {
  border: 0;
  outline: 0;
}
.input-group .password span {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.input-group .password:focus-within {
  outline: 2px solid #000;
}

.input-select {
  border: 1px solid #D2D5DF;
  border-radius: 10px;
  height: 48px;
  width: 100%;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.input-select span {
  font-size: 12px;
  font-weight: 400;
  color: #A3AABE;
  letter-spacing: -0.36px;
}
.input-select span b {
  font-weight: 400;
  color: #5A6789;
}

.group-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.group-checkbox input {
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  width: 14px;
  height: 14px;
  border: 1px solid #5A6789;
  border-radius: 2px;
  cursor: pointer;
  background-image: url(../images/icon-check.svg);
  background-position: top -20px center;
  transition: 200ms;
  background-repeat: no-repeat;
}
.group-checkbox input:checked {
  background-color: #F4330E;
  border-color: #F4330E;
  background-position: center center;
}
.group-checkbox label {
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: #5A6789;
  letter-spacing: -0.36px;
}

.filter-select {
  height: 48px;
  border: 1px solid #D2D5DF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}
.filter-select > label {
  cursor: pointer;
  height: 100%;
  font-size: 12px;
  font-weight: 400;
  color: #A3AABE;
  letter-spacing: -0.42px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding-inline: 24px;
  cursor: pointer;
}
.filter-select > label span {
  color: #5A6789;
}
.filter-select > label svg {
  margin-left: 0;
}
.filter-select .modal-filter {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background-color: #FFF;
  border: 1px solid #D2D5DF;
  border-radius: 10px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  margin-top: -10px;
  transition: 200ms;
  width: 100%;
}
.filter-select .modal-filter ul {
  list-style: none;
  width: 100%;
}
.filter-select .modal-filter ul li {
  padding-block: 5px;
  padding-inline: 20px;
  transition: 200ms;
  font-size: 14px;
  cursor: pointer;
}
.filter-select .modal-filter ul li:hover {
  background-color: rgba(204, 204, 204, 0.1450980392);
}
.filter-select.active label svg:last-of-type {
  transform: scale(-1);
}
.filter-select.active .modal-filter {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
}

.app-template {
  height: 100%;
  position: relative;
  padding-top: 8px;
  padding-inline: 24px;
}
.app-template > .top > .group-type-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.app-template > .top > .group-type-1 .left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-template > .top > .group-type-1 .left .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.app-template > .top > .group-type-1 .left .text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.app-template > .top > .group-type-1 .left .text span {
  line-height: 100%;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.36px;
  color: #0C0C0E;
}
.app-template > .top > .group-type-1 .left .text span.name {
  font-size: 16px;
  font-weight: 700;
}
.app-template > .top > .group-type-1 .notification button {
  background-color: transparent;
  border: 0;
  font-size: 0;
  cursor: pointer;
  height: -moz-max-content;
  height: max-content;
}
.app-template > .top > .group-type-1 .notification.has-content .wrapper-button {
  position: relative;
}
.app-template > .top > .group-type-1 .notification.has-content .wrapper-button::after {
  position: absolute;
  top: -1px;
  right: -1px;
  border-radius: 999px;
  border: 2px solid #FFFFFF;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #E70606;
}
.app-template > .bottom {
  height: 96px;
  background-color: #FFFFFF;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}
.app-template > .bottom .inner {
  max-width: 993px;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 30px;
  margin-inline: auto;
}
.app-template > .bottom .inner nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 140px;
}
.app-template > .bottom .inner nav a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.app-template > .bottom .inner nav a svg.active {
  display: none;
}
.app-template > .bottom .inner nav a span {
  font-size: 10px;
  font-weight: 500;
  color: #0C0C0E;
  letter-spacing: -0.2px;
}
.app-template > .bottom .inner nav a.active svg {
  display: none;
}
.app-template > .bottom .inner nav a.active svg.active {
  display: block;
}
.app-template > .bottom .inner nav a.active span {
  color: #F4330E;
}

.page-01-onboarding {
  background-color: #F4330E;
}
.page-01-onboarding .mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.page-01-onboarding .mobile .logo {
  font-size: 33px;
  font-weight: 600;
  color: #FFF;
}
.page-01-onboarding .mobile .logo b {
  color: #F68121;
  font-weight: 800;
}

.page-02-login {
  background-color: #0C0C0E;
}
.page-02-login::before {
  content: "";
  display: block;
  width: 100%;
  height: 60vh;
  background-color: #0C0C0E;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.page-02-login .mobile {
  margin-top: 76px;
}
.page-02-login .mobile .logo-container {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 32px;
}
.page-02-login .mobile h1 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: -0.72px;
  line-height: 22px;
}
.page-02-login .mobile p {
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 32px;
  margin-top: 4px;
}
.page-02-login .mobile .form {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 20px;
  min-height: 400px;
}
.page-02-login .mobile .form .group-checkbox {
  margin-top: 20px;
  margin-bottom: 24px;
}
.page-02-login .mobile .form button[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background-color: #F4330E;
  border: 0;
  margin-bottom: 16px;
  transition: 200ms;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.42px;
  cursor: pointer;
}
.page-02-login .mobile .form button[type=submit]:hover {
  background-color: #0C0C0E;
}
.page-02-login .mobile .form .forgot {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #F4330E;
  letter-spacing: -0.36px;
  line-height: 22px;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 16px;
  text-decoration: none;
  transition: 200ms;
}
.page-02-login .mobile .form .forgot:hover {
  text-decoration: underline;
}
.page-02-login .mobile .form p {
  font-size: 12px;
  font-weight: 500;
  color: #5B6889;
  letter-spacing: -0.36px;
  line-height: 22px;
}
.page-02-login .mobile .form p a {
  font-size: 12px;
  font-weight: 600;
  color: #F4330E;
  text-decoration: none;
}

.page-03-home {
  background-color: #F7F8FB;
}
.page-03-home .mobile .app-template .box-empty {
  padding-top: 24px;
  padding-bottom: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid #A3AABE;
}
.page-03-home .mobile .app-template .box-empty span {
  font-size: 32px;
  font-weight: 700;
  color: #A3AABE;
  letter-spacing: -0.96px;
}
.page-03-home .mobile .app-template .new-deliveries {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid #A3AABE;
}
.page-03-home .mobile .app-template .new-deliveries h2 {
  font-size: 16px;
  font-weight: 600;
  color: #F4330E;
  letter-spacing: -0.48px;
  line-height: 22px;
  margin-bottom: 8px;
}
.page-03-home .mobile .app-template .new-deliveries .input-select {
  margin-bottom: 16px;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card {
  border: 1px solid #D3DAEF;
  background-color: #EBEEF8;
  padding: 16px 24px;
  border-radius: 15px;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card + .card {
  margin-top: 16px;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card .top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card .top-info span, .page-03-home .mobile .app-template .new-deliveries .wrapper .card .top-info time {
  font-size: 10px;
  font-weight: 500;
  color: #F4330E;
  text-transform: uppercase;
  line-height: 22px;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card .distance {
  font-size: 24px;
  display: block;
  border-bottom: 1px solid #0C0C0E;
  letter-spacing: -0.72px;
  padding-bottom: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: 1px solid #0C0C0E;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card .address {
  margin-bottom: 32px;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card .address span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.36px;
  margin-bottom: 4px;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card .address address {
  font-size: 12px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.36px;
  line-height: 17px;
  font-style: normal;
  white-space: normal;
}
.page-03-home .mobile .app-template .new-deliveries .wrapper .card .btn-primary {
  background: #F4330E;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding-block: 14px;
  width: 100%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 600;
}
.page-03-home .mobile .app-template .delivery-data {
  padding-bottom: 120px;
}
.page-03-home .mobile .app-template .delivery-data h2 {
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  margin-bottom: 16px;
}
.page-03-home .mobile .app-template .delivery-data .faq-item {
  background: #FFFFFF;
  box-shadow: 0px 4px 19.7px rgba(0, 0, 0, 0.03);
  border-radius: 15px;
  overflow: hidden;
}
.page-03-home .mobile .app-template .delivery-data .faq-item + .faq-item {
  margin-top: 16px;
}
.page-03-home .mobile .app-template .delivery-data .faq-item .faq-title {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 200ms;
  cursor: pointer;
}
.page-03-home .mobile .app-template .delivery-data .faq-item .faq-title span {
  font-size: 12px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.36px;
}
.page-03-home .mobile .app-template .delivery-data .faq-item .faq-response {
  max-height: 0;
  overflow: hidden;
  transform: 200ms;
  padding-inline: 24px;
}
.page-03-home .mobile .app-template .delivery-data .faq-item .faq-response span {
  font-size: 24px;
  font-weight: 600;
  color: #6C7797;
}
.page-03-home .mobile .app-template .delivery-data .faq-item.active .faq-title {
  padding-bottom: 8px;
}
.page-03-home .mobile .app-template .delivery-data .faq-item.active .faq-title svg {
  transform: scale(-1);
}
.page-03-home .mobile .app-template .delivery-data .faq-item.active .faq-response {
  padding-bottom: 32px;
  max-height: 1000px;
}

.page-04-entregas-listagem {
  background-color: #F7F8FB;
}
.page-04-entregas-listagem .app-template > .top {
  padding-top: 4px;
}
.page-04-entregas-listagem .app-template > .top h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0C0C0E;
  letter-spacing: -0.96px;
  margin-bottom: 20px;
}
.page-04-entregas-listagem .app-template .filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.page-04-entregas-listagem .app-template .filters .title {
  font-size: 20px;
  font-weight: 700;
  color: #0C0C0E;
  letter-spacing: -0.6px;
}
.page-04-entregas-listagem .app-template .filters .btn-filter {
  padding: 18px 28px;
  background-color: #F4330E;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.42px;
}
.page-04-entregas-listagem .app-template .box-location {
  border: 1px solid #CFD5E5;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.page-04-entregas-listagem .app-template .box-location .embed {
  height: 134px;
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  z-index: 0;
}
.page-04-entregas-listagem .app-template .box-location .embed img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-04-entregas-listagem .app-template .box-location .embed iframe {
  position: absolute;
  inset: 0;
  border: 0;
  width: 100%;
  height: 100%;
}
.page-04-entregas-listagem .app-template .box-location .info .title {
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  line-height: 17px;
  margin-bottom: 8px;
  display: block;
  line-height: 17px;
}
.page-04-entregas-listagem .app-template .box-location .info time {
  font-size: 14px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.42px;
  line-height: 100%;
  margin-bottom: 3px;
}
.page-04-entregas-listagem .app-template .box-location .info .distance {
  font-size: 14px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.42px;
  height: 100%;
  display: block;
}
.page-04-entregas-listagem .app-template .box-location .info .btn-primary {
  background-color: #F4330E;
  padding-block: 13px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.42px;
  text-decoration: none;
  margin-top: 11px;
}
.page-04-entregas-listagem .app-template .list-location {
  padding-bottom: 120px;
}
.page-04-entregas-listagem .app-template .list-location .card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
}
.page-04-entregas-listagem .app-template .list-location .card + .card {
  border-top: 1px solid #A3AABE;
}
.page-04-entregas-listagem .app-template .list-location .card .left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-04-entregas-listagem .app-template .list-location .card .left .icon {
  height: 64px;
  width: 64px;
  border-radius: 8px;
  background-color: #ECEEF4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.page-04-entregas-listagem .app-template .list-location .card .left .text .title {
  font-size: 14px;
  font-weight: 600;
  color: #0C0C0E;
  line-height: 17px;
  letter-spacing: -0.42px;
  display: block;
  margin-bottom: 4px;
}
.page-04-entregas-listagem .app-template .list-location .card .left .text time {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.36px;
  margin-bottom: 2px;
  line-height: 100%;
}
.page-04-entregas-listagem .app-template .list-location .card .left .text .distance {
  font-size: 12px;
  display: block;
  letter-spacing: -0.36px;
  font-weight: 500;
  color: #6C7797;
  line-height: 100%;
}
.page-04-entregas-listagem .app-template .list-location .card .btn-more {
  font-size: 14px;
  font-weight: 600;
  color: #F4330E;
  letter-spacing: -0.42px;
  text-decoration: underline;
  transition: 200ms;
}
.page-04-entregas-listagem .app-template .list-location .card .btn-more:hover {
  color: #0C0C0E;
}
.page-04-entregas-listagem .modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: 200ms;
}

.page-04-entregas-listagem .modal.active {
    visibility: visible;
    opacity: 1;
}

.page-04-entregas-listagem .modal .modal-content {
  height: 90vh;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-inline: 24px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding-bottom: 24px;
  overflow-y: auto;
  overflow-x: hidden;
      max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    top: 0;
}
.page-04-entregas-listagem .modal .modal-content .title {
  font-size: 16px;
  font-weight: 700;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  padding-block: 24px;
  border-bottom: 1px solid #A3AABE;
  display: block;
  text-align: center;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-bottom: 24px;
}
.page-04-entregas-listagem .modal .modal-content .input-group-select {
  margin-bottom: 24px;
}
.page-04-entregas-listagem .modal .modal-content .input-group-select label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #6C7797;
  line-height: 22px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.page-04-entregas-listagem .modal .modal-content .input-group-select .select {
  padding: 14px 32px;
  border: 1px solid #CFD5E5;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: space-between;
}
.page-04-entregas-listagem .modal .modal-content .input-group-select .select span {
  font-size: 12px;
  font-weight: 500;
  color: #0C0C0E;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method {
  margin-bottom: 24px;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd > label,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method > label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #6C7797;
  line-height: 22px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd .wrapper,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd .wrapper div,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd .wrapper div input[type=checkbox],
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div input[type=checkbox] {
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  height: 14px;
  width: 14px;
  border-radius: 3px;
  border: 1px solid #A3AABE;
  background-image: url(../images/icon-check.svg);
  background-repeat: no-repeat;
  background-position: top center;
  transition: 200ms;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd .wrapper div input[type=checkbox]:checked,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div input[type=checkbox]:checked {
  background-position: center center;
  background-color: #0C0C0E;
  border: 1px solid #0C0C0E;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd .wrapper div label,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div label {
  font-size: 14px;
  font-weight: 500;
  color: #A3AABE;
  letter-spacing: -0.48px;
  line-height: 100%;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd .wrapper div input[type=checkbox]:checked + label,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div input[type=checkbox]:checked + label {
  color: #0C0C0E;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd .wrapper div input[type=checkbox]:checked + label svg,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div input[type=checkbox]:checked + label svg {
  display: none;
}
.page-04-entregas-listagem .modal .modal-content .input-group-qtd .wrapper div input[type=checkbox]:checked + label svg.active,
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div input[type=checkbox]:checked + label svg.active {
  display: block;
}
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper {
  flex-wrap: wrap;
}
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-04-entregas-listagem .modal .modal-content .input-group-payment-method .wrapper div label svg.active {
  display: none;
}
.page-04-entregas-listagem .modal .modal-content .input-group input {
  font-weight: 700;
  color: #A3AABE;
}
.page-04-entregas-listagem .modal .modal-content .input-group input::-moz-placeholder {
  font-weight: 700;
  color: #A3AABE;
}
.page-04-entregas-listagem .modal .modal-content .input-group input::placeholder {
  font-weight: 700;
  color: #A3AABE;
}

.page-04-entregas-listagem .modal .modal-content .flex-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.page-04-entregas-listagem .modal .modal-content .btn-primary {
  height: 60px;
  width: calc(50% - 5px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F4330E;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.42px;
  color: #FFFFFF;
}
.page-04-entregas-listagem .modal .modal-content .btn-primary:hover {
  background-color: #0C0C0E;
}

.page-05-iniciar-entrega {
  background-color: #F7F8FB;
}
.page-05-iniciar-entrega .app-template .top {
  margin-bottom: 16px;
}
.page-05-iniciar-entrega .app-template .top h1 {
  font-size: 32px;
  margin-top: 12px;
  margin-bottom: 8px;
  font-weight: 700;
  color: #0C0C0E;
  letter-spacing: -0.96px;
  line-height: 100%;
}
.page-05-iniciar-entrega .app-template .top span {
  font-size: 12px;
  font-weight: 600;
  color: #6C7797;
  letter-spacing: -0.36px;
  line-height: 100%;
  text-transform: uppercase;
}
.page-05-iniciar-entrega .app-template .info-distance {
  margin-bottom: 16px;
}
.page-05-iniciar-entrega .app-template .info-distance .title {
  font-size: 24px;
  font-weight: 700;
  color: #0C0C0E;
  letter-spacing: -0.72px;
  line-height: 36px;
  margin-bottom: 0;
  display: block;
}
.page-05-iniciar-entrega .app-template .info-distance .tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 11px 24px;
  border: 1px solid #D8D8D8;
  border-radius: 32px;
  font-size: 12px;
  font-weight: 500;
  color: #0C0C0E;
  letter-spacing: -0.36px;
  width: -moz-max-content;
  width: max-content;
}
.page-05-iniciar-entrega .app-template .box-address {
  border-block: 1px solid #0C0C0E;
  padding-block: 16px;
}
.page-05-iniciar-entrega .app-template .box-address .title {
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  line-height: 17px;
  display: block;
  margin-bottom: 4px;
}
.page-05-iniciar-entrega .app-template .box-address address {
  font-size: 14px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.42px;
  font-style: normal;
}
.page-05-iniciar-entrega .app-template .box-client {
  padding-block: 16px;
}
.page-05-iniciar-entrega .app-template .box-client ul {
  margin-bottom: 0;
  list-style: none;
}
.page-05-iniciar-entrega .app-template .box-client ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 100%;
}
.page-05-iniciar-entrega .app-template .box-client ul li.title span {
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  line-height: 17px;
  margin-bottom: 8px;
}
.page-05-iniciar-entrega .app-template .box-client ul li span {
  font-size: 14px;
  font-weight: 700;
  color: #6C7797;
  letter-spacing: -0.48px;
  line-height: 100%;
}
.page-05-iniciar-entrega .app-template .box-client > span {
  font-size: 12px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.48px;
  line-height: 100%;
}
.page-05-iniciar-entrega .app-template .box-resume {
  border-block: 1px solid #0C0C0E;
  padding-block: 16px;
}
.page-05-iniciar-entrega .app-template .box-resume .title {
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  margin-bottom: 16px;
  display: block;
}
.page-05-iniciar-entrega .app-template .box-resume ul {
  list-style: none;
}
.page-05-iniciar-entrega .app-template .box-resume ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-05-iniciar-entrega .app-template .box-resume ul li + li {
  margin-top: 16px;
}
.page-05-iniciar-entrega .app-template .box-resume ul li span {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.42px;
  color: #6C7797;
}
.page-05-iniciar-entrega .app-template .box-resume ul li span.price {
  color: #CFD5E5;
}
.page-05-iniciar-entrega .app-template .box-resume ul li span.price b {
  color: #0C0C0E;
  font-weight: 400;
}
.page-05-iniciar-entrega .app-template .box-resume ul li span.total {
  font-weight: 700;
}
.page-05-iniciar-entrega .app-template .box-payment-method {
  padding-block: 16px;
  border-bottom: 1px solid #0C0C0E;
}
.page-05-iniciar-entrega .app-template .box-payment-method .title {
  display: block;
  margin-bottom: 17px;
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  line-height: 100%;
}
.page-05-iniciar-entrega .app-template .box-payment-method .text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #6C7797;
  text-transform: uppercase;
}
.page-05-iniciar-entrega .app-template .box-observations {
  padding-top: 16px;
  padding-bottom: 324px;
}
.page-05-iniciar-entrega .app-template .box-observations .title {
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.48px;
  line-height: 17px;
}
.page-05-iniciar-entrega .app-template .box-observations .text {
  font-size: 14px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.42px;
  line-height: 22px;
  display: block;
}
.page-05-iniciar-entrega .app-template > .bottom {
  height: auto;
}
.page-05-iniciar-entrega .app-template > .bottom .geo {
  padding-inline: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-bottom: 8px;
}
.page-05-iniciar-entrega .app-template > .bottom .geo a {
  border: 1px solid #F4330E;
  border-radius: 8px;
  text-decoration: none;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.page-05-iniciar-entrega .app-template > .bottom .geo a span {
  font-size: 14px;
  font-weight: 600;
  color: #F4330E;
  letter-spacing: -0.42px;
  line-height: 150%;
  text-align: center;
}
.page-05-iniciar-entrega .app-template > .bottom .btn-primary-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  width: calc(100% - 48px);
  margin-inline: auto;
  background-color: #F4330E;
  padding: 20px 20px;
  border-radius: 8px;
  text-decoration: none;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.42px;
  margin-bottom: 35px;
  transition: 200ms;
}
.page-05-iniciar-entrega .app-template > .bottom .btn-primary-icon:hover {
  background-color: #0C0C0E;
}
.page-05-iniciar-entrega .modal {
  background-color: #F4330E;
  position: fixed;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}
.page-05-iniciar-entrega .modal .modal-content {
  padding-inline: 24px;
  padding-bottom: 32px;
  max-width: 998px;
  margin-inline: auto;
}
.page-05-iniciar-entrega .modal .modal-content .btn-close {
  position: absolute;
  top: 36px;
  right: 24px;
  background-color: transparent;
  font-size: 0;
  border: 0;
  cursor: pointer;
}
.page-05-iniciar-entrega .modal .modal-content h1 {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.96px;
  line-height: 41px;
  margin-bottom: 25px;
  margin-top: 24px;
  max-width: 277px;
}
.page-05-iniciar-entrega .modal .modal-content .group-radio div {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-05-iniciar-entrega .modal .modal-content .group-radio div + div {
  margin-top: 32px;
}
.page-05-iniciar-entrega .modal .modal-content .group-radio div input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #FFFFFF;
  transition: 200ms;
  cursor: pointer;
}
.page-05-iniciar-entrega .modal .modal-content .group-radio div input[type=radio]:checked {
  border: 3px solid #F4330E;
  outline: 1px solid #FFFFFF;
  background-color: #FFFFFF;
}
.page-05-iniciar-entrega .modal .modal-content .group-radio div label {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.page-05-iniciar-entrega .modal .modal-content .group-textarea {
  margin-bottom: 32px;
}
.page-05-iniciar-entrega .modal .modal-content .group-textarea label {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 41px;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
  display: block;
}
.page-05-iniciar-entrega .modal .modal-content .group-textarea textarea {
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  height: 198px;
  width: 100%;
  background-color: transparent;
  resize: none;
  padding: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: -0.42px;
}
.page-05-iniciar-entrega .modal .modal-content .group-textarea textarea::-moz-placeholder {
  color: #FFFFFF;
}
.page-05-iniciar-entrega .modal .modal-content .group-textarea textarea::placeholder {
  color: #FFFFFF;
}
.page-05-iniciar-entrega .modal .modal-content button[type=submit],
.page-05-iniciar-entrega .modal .modal-content button[type=button]{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 8px;
  background-color: #FFFFFF;
  border: 0;
  font-size: 14px;
  font-weight: 600;
  color: #F4330E;
  cursor: pointer;
  transition: 200ms;
}
.page-05-iniciar-entrega .modal .modal-content button[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.8156862745);
}
.page-05-iniciar-entrega .modal .modal-content .box-value-received {
  padding-top: 30px;
  padding-bottom: 48px;
}
.page-05-iniciar-entrega .modal .modal-content .box-value-received .input-group label {
  color: #FFFFFF;
}
.page-05-iniciar-entrega .modal .modal-content .box-value-received .input-group input {
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  background-color: transparent;
  color: #FFFFFF;
  outline: 0;
}
.page-05-iniciar-entrega .modal .modal-content .box-value-received .input-group input::-moz-placeholder {
  color: #FFFFFF;
}
.page-05-iniciar-entrega .modal .modal-content .box-value-received .input-group input::placeholder {
  color: #FFFFFF;
}
.page-05-iniciar-entrega .modal.moda-payment-method-1 .modal-content .group-radio {
  margin-bottom: 47px;
}
.page-05-iniciar-entrega .modal.moda-delivery-finished {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-05-iniciar-entrega .modal.moda-delivery-finished .modal-content h1 {
  text-align: center;
  max-width: initial;
  display: flex;
  flex-direction: column;
  line-height: 41px;
}
.page-05-iniciar-entrega .modal.moda-delivery-finished .modal-content h1 span {
  margin-top: 10px;
  line-height: 96px;
  font-size: 96px;
}
.page-05-iniciar-entrega .modal.moda-delivery-finished .modal-content .btn-ghost {
  position: absolute;
  bottom: 32px;
  left: 24px;
  right: 24px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #F4330E;
  letter-spacing: -0.42px;
  text-decoration: none;
  transition: 200ms;
}
.page-05-iniciar-entrega .modal.moda-delivery-finished .modal-content .btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.8156862745);
}
.page-05-iniciar-entrega .modal.active {
  visibility: visible;
  opacity: 1;
}

.hidden {
  height: 100vh;
  overflow: hidden;
}

.page-06-entregas-interna {
  background-color: #F7F8FB;
}
.page-06-entregas-interna .app-template .btn-go-back {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.42px;
  text-decoration: none;
  margin-top: 16px;
  margin-bottom: 14px;
}
.page-06-entregas-interna .app-template .top h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0C0C0E;
  letter-spacing: -0.96px;
  line-height: 120%;
  margin-bottom: 4px;
}
.page-06-entregas-interna .app-template .box-location {
  border-bottom: 1px solid #A3AABE;
  padding-bottom: 16px;
}
.page-06-entregas-interna .app-template .box-location .embed {
  width: 100%;
  aspect-ratio: 327/130;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.page-06-entregas-interna .app-template .box-location .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-06-entregas-interna .app-template .box-location .info .group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  border-bottom: 1px solid #A3AABE;
}
.page-06-entregas-interna .app-template .box-location .info .group span, .page-06-entregas-interna .app-template .box-location .info .group time {
  font-size: 14px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.42px;
}
.page-06-entregas-interna .app-template .box-location .info .card {
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-06-entregas-interna .app-template .box-location .info .card div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-06-entregas-interna .app-template .box-location .info .card div address {
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.36px;
  line-height: 140%;
  font-style: normal;
}
.page-06-entregas-interna .app-template .box-location .info .card time {
  font-size: 12px;
  font-weight: 500;
  color: #F4330E;
  letter-spacing: -0.42px;
}
.page-06-entregas-interna .app-template .box-client {
  padding-block: 16px;
}
.page-06-entregas-interna .app-template .box-client ul {
  margin-bottom: 0;
  list-style: none;
}
.page-06-entregas-interna .app-template .box-client ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 100%;
}
.page-06-entregas-interna .app-template .box-client ul li.title span {
  font-size: 14px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  line-height: 17px;
  margin-bottom: 8px;
}
.page-06-entregas-interna .app-template .box-client ul li span {
  font-size: 12px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.48px;
  line-height: 100%;
  min-width: 118px;
}
.page-06-entregas-interna .app-template .box-resume {
  border-block: 1px solid #0C0C0E;
  padding-block: 16px;
}
.page-06-entregas-interna .app-template .box-resume .title {
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  margin-bottom: 16px;
  display: block;
}
.page-06-entregas-interna .app-template .box-resume ul {
  list-style: none;
}
.page-06-entregas-interna .app-template .box-resume ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-06-entregas-interna .app-template .box-resume ul li + li {
  margin-top: 16px;
}
.page-06-entregas-interna .app-template .box-resume ul li span {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.42px;
  color: #6C7797;
}
.page-06-entregas-interna .app-template .box-resume ul li span.price {
  color: #CFD5E5;
}
.page-06-entregas-interna .app-template .box-resume ul li span.price b {
  color: #0C0C0E;
  font-weight: 400;
}
.page-06-entregas-interna .app-template .box-resume ul li span.total {
  font-weight: 700;
}
.page-06-entregas-interna .app-template .box-payment-method {
  padding-block: 16px;
  border-bottom: 1px solid #0C0C0E;
}
.page-06-entregas-interna .app-template .box-payment-method .title {
  display: block;
  margin-bottom: 17px;
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.48px;
  line-height: 100%;
}
.page-06-entregas-interna .app-template .box-payment-method .text {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #6C7797;
  text-transform: uppercase;
}
.page-06-entregas-interna .app-template .box-observations {
  padding-top: 16px;
  padding-bottom: 124px;
}
.page-06-entregas-interna .app-template .box-observations .title {
  font-size: 16px;
  font-weight: 600;
  color: #0C0C0E;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.48px;
  line-height: 17px;
}
.page-06-entregas-interna .app-template .box-observations .text {
  font-size: 14px;
  font-weight: 500;
  color: #6C7797;
  letter-spacing: -0.42px;
  line-height: 22px;
  display: block;
}

.filter-select.active .modal-filter {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    display: block;
}

.modal-filter.clients .search, .page-05-clientes-listagem .wrapper-content .table .filter-select .modal-filter.delivery .search{
        height: 66px;
    border-bottom: 1px solid #D0D5E5;
}

.modal-filter.clients {
    display: none;
}

.input-group-select.active .modal-filter.clients{
    display: block;
}

.input-group-select .price .title{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #585858;
    letter-spacing: 0px;
    line-height: 24px;
    margin-bottom: 20px;
}

.input-group-select .price .price-input{
        display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 420px;
    margin-bottom: 40px;
}
.input-group-select .price .price-input > div span{
        display: block;
    font-size: 14px;
    font-weight: 600;
    color: #585858;
    letter-spacing: 0px;
    line-height: 24px;
}

.input-group-select .price .price-input > div input{
        display: block;
    width: 100%;
    height: 50px;
    border-radius: 7px;
    border: 1px solid #BABABA;
    padding-left: 30px;
    color: #1E1E1E;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0px;
}

.input-group-select .price .slider {
        height: 2px;
    position: relative;
    background: #D2D5DF;
    border-radius: 99px;
}

.input-group-select .price .slider .progress{
        height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #F4330E;
}

.input-group-select .price .range-input{
        position: relative;
}

.input-group-select .price .range-input .ui-state-default{
    background-color: #F4330E;
    border-radius: 50%;
}

.input-group-select .price .range-input .ui-widget-header{
    background-color: #F4330E;    
}

.input-group-select .price .range-input .ui-widget.ui-widget-content{
    background: #c5c5c5;
}

.input-group-select .price .range-input .ui-slider-horizontal{
    height: .3em;
}

.input-group-select .price .range-input input{
    position: absolute;
    width: 100%;
    height: 5px;
    top: -4px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.modal-filter.clients .search input{
   display: block;
    height: 100%;
    width: 100%;
    border: 0;
    padding-inline: 48px;
    outline: 0;
    background-image: url(../images/search.svg);
    background-position: center left 20px;
    background-repeat: no-repeat;
    font-size: 14px;
    font-weight: 400;
    color: #0C0C0E;
    letter-spacing: -0.42px 
}

 .modal-filter.clients .list{
    max-height: 300px;
    overflow-y: auto;
    border: solid 1px #CCC;
}

 .modal-filter.clients .list div{
padding-inline: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 200ms;    
}

.modal-filter.clients .list div input[type=checkbox]{
    -webkit-appearance: unset;
    -moz-appearance: unset;
    appearance: unset;
    width: 14px;
    height: 14px;
    border: 1px solid #5A6789;
    border-radius: 2px;
    background-image: url(../images/icon-check.svg);
    transition: 200ms;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
    top: -3px;
}    

.modal-filter.clients .list div input[type=checkbox]:checked {
        background-position: center center;
    background-color: #0C0C0E;
    border: 1px solid #0C0C0E; 
}

.modal-filter.clients .list div label{    
    text-align: left;
    padding-left: 0;
    font-size: 14px;
    font-weight: 500;
    color: #5A6789;
    letter-spacing: -0.42px;
    padding-block: 10px;
    cursor: pointer;
}

.modal-filter.clients .list div label span{
    font-size: 12px;    
}

.modal-notification {
  position: absolute;
  inset: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
  display: flex;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  visibility: hidden;
}
.modal-notification .modal-content {
  width: 540px;
  height: 100vh;
  margin-left: auto;
  background-color: #FFFFFF;
  padding: 48px 48px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 19.7px rgba(0, 0, 0, 0.03);
  transform: translateX(100%);
  transition: 200ms;
}
.modal-notification .modal-content .title {
  font-size: 20px;
  font-weight: 600;
  color: #0C0C0E;
  letter-spacing: -0.6px;
  line-height: 22px;
  display: block;
  margin-bottom: 32px;
}
.modal-notification .modal-content .btn-close {
  position: absolute;
  top: 50px;
  right: 48px;
  background-color: transparent;
  border: 0;
  font-size: 0;
  cursor: pointer;
}
.modal-notification .modal-content .wrapper-scroll {
  height: calc(100% - 152px);
  position: relative;
  padding-bottom: 20px;
  overflow-y: auto;
  width: calc(100% + 16px);
  padding-right: 10px;
}
.modal-notification .modal-content .wrapper-scroll::-webkit-scrollbar {
  width: 6px;
}
.modal-notification .modal-content .wrapper-scroll::-webkit-scrollbar-thumb {
  background-color: #F7F8FB;
}
.modal-notification .modal-content .wrapper-scroll .group + .group {
  margin-top: 32px;
}
.modal-notification .modal-content .wrapper-scroll .group .subtitle {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #6C7797;
  line-height: 22px;
  margin-bottom: 8px;
}
.modal-notification .modal-content .wrapper-scroll .group .card {
  background-color: #F7F8FB;
  padding: 20px;
  border-radius: 9px;
  position: relative;
  padding-right: 100px;
}
.modal-notification .modal-content .wrapper-scroll .group .card span {
  color: #0C0C0E;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.36px;
}
.modal-notification .modal-content .wrapper-scroll .group .card span b {
  font-weight: 600;
}
.modal-notification .modal-content .wrapper-scroll .group .card time {
  position: absolute;
  top: 18px;
  right: 42px;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  color: #6C7797;
}
.modal-notification .modal-content .wrapper-scroll .group .card .btn-ghost {
  border: 1px solid #F4330E;
  border-radius: 8px;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.36px;
  color: #F4330E;
  width: -moz-max-content;
  width: max-content;
  margin-top: 16px;
}
.modal-notification .modal-content .wrapper-scroll .group .card.no-view::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: #E70606;
  position: absolute;
  top: 24px;
  right: 24px;
}
.modal-notification .modal-content .wrapper-scroll .group .card + .card {
  margin-top: 8px;
}
.modal-notification .modal-content .bottom {
  position: absolute;
  bottom: 0;
  left: -48px;
  right: -48px;
  background-color: #FFFFFF;
  border-top: 1px solid #D0D5E5;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal-notification .modal-content .bottom .btn-primary {
  background: #F4330E;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  transition: 200ms;
}
.modal-notification .modal-content .bottom .btn-primary:hover {
  background: #0C0C0E;
}
.modal-notification .modal-content .bottom .btn-reset {
  background-color: #F2C6C4;
  border-radius: 8px;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 600;
  color: #DB2F24;
  text-decoration: none;
  transition: 200ms;
}
.modal-notification .modal-content .bottom .btn-reset:hover {
  background-color: #f0584e;
  color: #FFFFFF;
}
.modal-notification.active {
  visibility: visible;
}
.modal-notification.active .modal-content {
  transform: translateX(0);
}