@import url('../assets/fonts/Circe/stylesheet.css');

* {
  box-sizing: border-box;
  outline: none;
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font: normal 16px 'Circe', sans-serif;
}


.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: #e0e0e0;
  opacity: 0.3;
  z-index: 1001;
}

.preloader__image {
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  text-align: center;
  animation: preloader-rotate 2s infinite linear;
}

@keyframes preloader-rotate {
  100% {
    transform: rotate(360deg);
  }
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}
button {
  color: #000000;
}

.registration {
  padding: 67px 0 0;
  background: #33AD60;
}

.logged-in {
  padding: 36px 20px 67px;
  background: #F5F5F5;
}

.inner-screen {
  padding-bottom: 67px;
}

.inner-screen__header {
  height: 83px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #F1F7FC;
  width: 100%;
}

.inner-screen__header-back {
  display: flex;
  text-decoration: none;
}

.inner-screen__header-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.inner-screen__main {
  padding: 0 20px;
}

.inner-screen__main_flex {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  flex-grow: 1;
}

.inner-screen__main_grey {
  background: #F5F5F5;
}

.inner-screen__main_p-top {
  padding-top: 30px;
}

.justify-content-center {
  justify-content: center;
  display: flex;
}
.error-center-message
{
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #97AABA;
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-flow: column;
  justify-content: center;
}
.error-center-message img
{
  max-height: 140px;
}

.error-center-message p
{
  color: #000000;
}
.start-screen {
  background: no-repeat bottom 52px right 0 / 100% auto url('../assets/images/car-left.svg') #33AD60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 30px;
}

.start-screen__title {
  margin: 0 0 24px;
  font-weight: 800;
  font-size: 3rem;
  color: #FFFFFF;
}

.start-screen__txt {
  color: #FFFFFF;
  line-height: 1.5rem;
  margin: 0 0 88px;
}

.start-screen__btn {
  cursor: pointer;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 19px;
  border: none;
  border-radius: 40px;
  background: #FFDE60;
  line-height: 27px;
  font: 700 1.125rem 'Circe', sans-serif;
}

.content-screen {
  flex-grow: 1;
  background: #FFFFFF;
  border-radius: 40px 40px 0 0;
  padding: 52px 15px;
  display: flex;
  flex-direction: column;
}

.content-screen__title {
  margin: 0 0 41px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 29px;
  text-align: center;
}

.content-screen__title_sms-check {
  margin-bottom: 18px;
}

.content-screen__title_set-pin {
  margin-bottom: 82px;
}

.content-screen__title_profile-selector {
  margin-bottom: 79px;
}

.form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.form_start {
  justify-content: flex-start;
}

.form__input {
  border: 1px solid #F8F8F8;
  border-radius: 10px;
  height: 60px;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
  padding: 0 20px;
  font: 1rem 'Circe', sans-serif;
}

.form__input:focus {
  outline: none;
}

.form__sms-input-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.form__sms-input {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  text-align: center;
  font: 700 1.125rem 'Circe', sans-serif;
  border-radius: 10px;
  filter: drop-shadow(0px 2px 6px rgba(51, 173, 96, 0.3));
  border: none;
}

.form__sms-input:focus {
  outline: none;
}

.button {
  height: 54px;
  border: none;
  background: #FFDE60;
  border-radius: 20px;
  padding: 0 20px;
  font: 700 1.125rem 'Circe', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000000;
}

.button_green {
  background: #33AD60;
  color: #FFFFFF;
}

.button:disabled {
  background: #F8F8F8;
}

.sms-check-txt {
  line-height: 24px;
  text-align: center;
  color: #919994;
  margin: 0 0 39px;
}

.sms-check-resend {
  font-size: 13px;
  line-height: 19px;
  color: #33AD60;
  margin-top: 30px;
  text-decoration: none;
  border-bottom: 1px dashed #33AD60;
  align-self: center;
}

.pin-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
}

.pin-indicator__item {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #EFF3FF;
}

.pin-indicator__item_active {
  background: #33AD60;
}

.digit-keys {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.digit-keys__inner {
  width: 253px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 20px;
  gap: 10px 20px
}

.digit-keys__key {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  border: 1px solid #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  font: 600 1.25rem 'Circe', sans-serif;
}

.digit-keys__key:active {
  background: #F5F5F5;
}

.digit-keys__key_txt {
  border: none;
  justify-content: flex-start;
  text-align: left;
  font-size: 0.75rem;
  line-height: 14px;
  color: #919994;
  font-weight: 400;
}

.digit-keys__key_txt:active,
.digit-keys__key_ico:active {
  background: #FFFFFF;
}

.digit-keys__key_ico {
  border: none;
}

.profile-selector {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 5px;
  gap: 20px;
}

.card-without-arrow {
  display: flex;
  width: 40%;
  justify-content: space-between;
  align-items: center;
  background: #FFDE60;
  color: #000;
  border-radius: 10px;
  padding: 16px 20px;
}
.card-with-arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F6F7FC;
  border-radius: 10px;
  padding: 16px 20px;
}

.card-with-arrow_white {
  background: #FFFFFF;
}

.card-with-arrow_active {
  background: #33AD60;
}

.card-with-arrow::after {
  display: flex;
  content: url('../assets/images/arrow-white.svg');
  width: 18px;
  height: 18px;
  background: #33AD60;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.card-with-arrow_active.card-with-arrow::after {
  content: url('../assets/images/arrow-green.svg');
  background: #FFFFFF;
}

.profile-selector__picture {
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.profile-selector__portrait {
  /*width: 52px;
  height: 52px;*/
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile-selector__name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 21px;
}

.card-with-arrow_active .profile-selector__name {
  color: #FFFFFF;
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-header__picture {
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: center;
}

.profile-header__hello {
  font-size: 1rem;
  line-height: 16px;
}

.profile-header__name {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 21px;
}

.profile-header__portrait {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:18px;
}

.menu__btn {
  border: none;
  background: inherit;
  padding: 0;
}

.balance {
  padding: 20px 0 15px;
}

.balance__name {
  font-weight: 350;
  font-size: 0.75rem;
  line-height: 18px;
  text-align: center;
  color: #878787;
  margin: 0;
}

.balance__amount {
  font-weight: 700;
  font-size: 30px;
  line-height: 44px;
  text-align: center;
  margin: 0;
}

.balance-menu {
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  gap: 40px;
  justify-content: center;
  background: #FFFFFF;
  box-shadow: 0 4px 10px #E8E8E8;
  border-radius: 20px;
}

.balance-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 21px;
}

.balance-menu__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #33AD60;
}

.actions {
  height: 100px;
  position: relative;
}

.actions__container {
  position: absolute;
  top: 0;
  left: -20px;
  width: 100vw;
  display: flex;
  padding: 0 20px;
  gap: 10px;
  overflow: scroll;
}

.actions__container::-webkit-scrollbar {
  display: none;
}

.actions__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.actions__card {
  min-width: 100px;
  max-width: 100px;
  height: 100px;
  border: 2px solid #33AD60;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
}

.actions__txt {
  font-size: 11px;
  line-height: 13px;
  margin: 0;
}

.promo {
  background: no-repeat bottom -8px right 44px url('../assets/images/car.svg') #33AD60;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.promo__txt {
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0;
  max-width: 150px;
}

.promo__close {
  border: none;
  background: inherit;
  padding: 0;
  transform: translateY(-8px);
}

.diagram {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  color: #33AD60;
}

.diagram svg {
  position: absolute;
  top: 0;
  left: 0;
}

.trip-data {
  display: flex;
  gap: 20px;
  align-items: center;
}

.trip-data__trips {
  margin: 0;
  font-size: 13px;
  line-height: 19px;
}

.trip-data__amount {
  margin: 0;
  font-size: 11px;
  line-height: 16px;
  color: #757575;
}

.profile-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
  justify-content: stretch;
}

.profile-menu__item {
  display: flex;
  height: 60px;
  padding: 0 18px;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
}

.footer {
  height: 67px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 20px rgba(29, 29, 41, 0.1);
}

.footer__link {
  display: block;
  text-decoration: none;
}

.withdraw-title {
  margin: 25px 0 37px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 27px;
  text-align: center;
}

.payment-way {
  background: #F6F7FC;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.payment-way__icon {
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-way__icon img
{
  max-width: 30px;
}
.payment-way__info {
  flex-grow: 1;
}

.payment-way__name {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 21px;
  margin: 0;
}

.payment-way__subname {
  font-size: 0.75rem;
  line-height: 18px;
  color: #797979;
  margin: 0;
}

.payment-way_active {
  background: #33AD60;
  box-shadow: 0 2px 20px rgba(51, 173, 96, 0.2);
  color: #FFFFFF;
}

.payment-way_active .payment-way__subname {
  color: #FFFFFF;
}

.payment-way__id {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  font-size: 13px;
}

.withdraw-info {
  margin-top: 20px!important;
  padding: 20px 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.withdraw-info__label {
  font-size: 13px;
  line-height: 19px;
  color: #69799C;
}

.withdraw-info__value {
  font-size: 13px;
  line-height: 19px;
  text-align: right;
  color: #262D45;
}

.withdraw-id {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: auto!important;
}

.withdraw-id__label {
  font-size: 13px;
  line-height: 19px;
  color: #262D45;
  flex-grow: 1;
}

.withdraw-id__value {
  font-size: 13px;
  line-height: 19px;
  text-align: right;
}

.rules {
  margin-bottom: 20px;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
}

.rules a {
  color: #33AD60;
  text-decoration: none;
}

.receipt {
  padding: 30px 0 48px;
  text-align: center;
  background: url('../assets/images/receipt-bg.svg');
}

.receipt__amount {
  margin: 20px 0 80px;
  font-size: 1.5rem;
  line-height: 24px;
  font-weight: 600;
}

.receipt__data {
  margin: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.receipt__data-label {
  font-size: 13px;
  line-height: 19px;
  color: #70879B;
  text-align: left;
}

.receipt__data-value {
  font-size: 13px;
  line-height: 19px;
  text-align: right;
}

.receipt-buttons {
  margin-bottom: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.receipt-buttons__button {
  border: none;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}
.jcc {
  justify-content: center;
}

.history-search {
  width: 100%;
  border: none;
  height: 48px;
  background: #F6F7FC;
  border-radius: 20px;
  font-size: 13px;
  padding: 0 25px;
  margin-top: 8px;
}

.history-filter {
  margin-top: 22px;
  height: 24px;
  position: relative;
}

.history-filter__container {
  position: absolute;
  top: 0;
  left: -20px;
  width: 100vw;
  display: flex;
  padding: 0 20px;
  gap: 10px;
  overflow: scroll;
}

.history-filter__container::-webkit-scrollbar {
  display: none;
}

.history-filter__container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.history-filter__item {
  background: #ECECEC;
  border-radius: 10px;
  height: 24px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  font-size: 11px;
  gap: 4px;
}

.history-filter__item_active {
  background: #33AD60;
  color: #FFFFFF;
}

.history-filter__item_active::after {
  display: block;
  content: url('../assets/images/close-small.svg');
}

.history-date {
  margin: 20px 0 13px;
  font-size: 15px;
  line-height: 22px;
  color: #69799C;
}

.history-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 24px 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.history-card__name {
  margin: 0;
  font-size: 15px;
  line-height: 18px;
}

.history-card__type {
  font-size: 13px;
  line-height: 19px;
  color: #70879B;
  margin: 0;
}

.history-card__label {
  margin: 7px 0 0;
  display: flex;
  height: 22px;
  padding: 0 20px;
  align-items: center;
  font-size: 10px;
  line-height: 15px;
  color: #70612B;
  background: #FFDE60;
  opacity: 0.5;
  border-radius: 10px;
}

.history-card__data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.history-card__amount {
  margin-top: 6px;
  font-size: 15px;
  line-height: 22px;
  text-align: right;
  color: #71BB4A;
}
.webapp__input
{
  display: flex;
  justify-content: center;
}

.webapp__input input::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #9BB0DD;
  opacity: 1;
}

.pointer
{
  cursor: pointer;
}
.mg0  {
  margin: 0 auto;
}
.w90
{
  width: 90%;
}

.w100
{
  width: 100%;
}

input[type='checkbox'] {
  accent-color: #33AD60;
}

.webapp__input-input
{
  -webkit-appearance: none;
  font-family: 'Circe';
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  height: 60px;
  border: none;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  padding-left: 20px;
  margin-bottom: 20px;
}

 .history-card__label_ok {
  background: #47E481;
  color: #237A43;
}

.history-card__label_closed {
  background: #000000;
  color: #B9B9B9;
}

.history-card__label_fail, .history-card__label_error {
  background: #FF6060;
  color: #702B2B;
}

.gmnoprint
{
  display: none!important;
}

.history-card__label_moderation {
  background: #6D60FF;
  color: #412B70;
}

.history-card__label_complete {
  background: #60ECFF;
  color: #2B7070;
}

.fuel-station
{
  position: absolute;
  bottom: 0;
  z-index: 500;
  width: 100%;
  padding: 15px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 15px 15px 20px 0;
  left: 0;
  background: #fff;
}

.fuel-station__header__block
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}


.fuel-station__header
{
  font-family: 'Circe', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  color: #262D45;
}

.fuel-station__address
{
  font-family: 'Circe', serif;
  font-style: normal;
  margin: 10px 0 0 0;
  padding-left: 15px;
  font-weight: 400;
  font-size: 14px;
  display: block;
  color: #69799C;
}

.fuel-station__buttons
{
  margin-top: 15px;
  display: flex;
  width: auto;
  padding: 0 15px 0 15px;
  position: static;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.fuel-station__buttons a
{
  text-decoration: none;
  font-family: 'Circe', serif;
  display: flex;
  height: 48px;
  border-radius: 20px;
  width: 48%;
  border: 1px solid #33AD60;
  justify-content: center;
  line-height: 45px;
  color: #33AD60;
}

.fuel-station__buttons a.green
{
  background: #33AD60;
  color: #FFFFFF;
}

.fuel-station__prices-block
{
  width: auto;
  padding: 0 15px 0 15px;
  position: static;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.fuel-station__price-card
{
  font-family: 'Circe', serif;
  height: 48px;
  width: 48%;
  margin-top: 15px;
  border: 1px solid #E0E7FE;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fuel-station__price-card__title
{
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 19px;
  color: #696969;

}

.fuel-station__price-card__value
{
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 19px;
  color: #33AD60;
}


.webapp--checkbox_container {
  display: block;
  position: relative;
  font-family: 'Circe', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 22px;
  color: #000000;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.webapp--checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border-radius: 5px;
  background-color: #eee;
}

.webapp--checkbox_container:hover input ~ .checkmark {
  background-color: #ccc;
}

.webapp--checkbox_container input:checked ~ .checkmark {
  background: #33AD60;
  border-radius: 5px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.webapp--checkbox_container input:checked ~ .checkmark:after {
  display: block;
}

.webapp--checkbox_container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 7px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mgt15
{
  margin-top: 15px;
}
#comissionPlaceholder
{
  margin: 0px 0px 20px;
  color: #33AD60;
  font-size: 15px;
}
.jcc span
{
  display: block;
  text-align: center;
  font-family: 'Circe';
  font-style: normal;
  font-weight: 350;
  font-size: 16px;
  color: #7D90B7;
}

.jcc span.sbalance
{
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #000000;
}

@media (min-width: 600px) {
  html {
    display: flex;
    flex-direction: column;
    padding: 67px 0;
  }

  body {
    margin: 0 auto;
    width: 480px;
    flex: 0 1 800px;
    min-height: auto;
    padding: 0;
  }

  .registration {
    padding: 0;
  }

  .start-screen {
    background: no-repeat bottom 52px center / 480px auto url('../assets/images/car-left.svg') #33AD60;
  }

  .content-screen {
    border-radius: 40px;
  }

  .inner-screen {
    border-radius: 40px;
    background: #33AD60;
    padding: 0;
  }

  .inner-screen__header {
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    min-height: 83px;
  }

  .inner-screen__main {
    background: #FFFFFF;
    /*border-radius: 0 0 40px 40px;*/
    flex: 1 1 650px;
    overflow: scroll;
  }

  .inner-screen__main::-webkit-scrollbar {
    display: none;
  }

  .inner-screen__main {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .rules {
    padding-bottom: 16px;
  }

  .footer {
    width: 100%;
    position: static;
    min-height: 67px;
    border-radius: 0 0 40px 40px;
  }

  .inner-screen__main_without-border-radius {
    border-radius: unset;
  }

  .history-filter__container {
    width: 100%;
  }

  .inner-screen__main_grey {
    background: #F5F5F5;
  }

  .logged-in {
    background: #33AD60;
    padding-inline: 0;
  }

  .profile-header {
    background: #F5F5F5;
    border-radius: 40px 40px 0 0;
    padding: 32px 28px 0;
  }

  .main-with-padding {
    padding-inline: 28px;
    background: #F5F5F5;
  }

  .actions {
    height: auto;
    display: flex;
    justify-content: center;
  }

  .actions__container {
    width: auto;
    padding: 0;
    position: static;
    flex-wrap: wrap;
    flex: 0 1 320px;
  }

  .actions__card {
    max-width: 100px;
  }

  .inner-screen__main_p-top {
    border-radius: 40px;
    padding-bottom: 32px;
  }

  .receipt {
    background-size: 100% 100%;
  }
}