.row {
  display: flex;
  gap: 1rem;
}

.spollers {
  display: grid;
  gap: 15px;
}

.spollers__item {
  /* font-size: 20px; */
}

.spollers__title {
  z-index: 1;
  width: 100%;
  cursor: default;
  text-align: left;
  border: 1px solid var(--accent);
  padding: 20px 15px;
  border-radius: 15px;
  position: relative;
  background-color: #fff;
  list-style: none;
  cursor: pointer;
}

.spollers__body {
  padding: 2.5rem;
  margin-top: -1.25rem;

  border-radius: 0 0 0.9375rem 0.9375rem;
  /* border: 1px solid var(--accent); */
  background-color: #f3f8f8;
}

.account-nav {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.account-section h2 {
  font-size: 1.7rem;
  color: var(--accent);
}

.account-section h3 {
  color: var(--accent);
  font-size: 1.2rem;
}

.account-section ul,
.account-section ul li {
  margin: 0;
  padding: 0;
}

.account-nav ul {
  list-style: none;
}

.account-nav ul li {
  list-style: none;
}

.account-nav ul li a {
  color: #8c8c8c;
  text-decoration: none;
}

.account-nav ul li a.active {
  color: var(--accent);
  text-decoration: none;
}

.account-nav ul li:hover a {
  color: var(--accent);
}

.account-nav ul li:hover a img,
.account-nav ul li a.active img {
  filter: invert(44%) sepia(47%) saturate(2507%) hue-rotate(150deg) brightness(94%) contrast(97%);
}

.account-balance,
.account-nav ul li a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.account-nav ul li a img {
  aspect-ratio: 1/1;
  width: 18px;
  filter: invert(57%) sepia(1%) saturate(1051%) hue-rotate(319deg) brightness(99%) contrast(78%);
}

.account-balance img {
  width: 23px;
  aspect-ratio: 1/1;
}

.header-form img,
.header-user img {
  width: 1.3rem;
  aspect-ratio: 1/1;
  transition: .2s ease-in-out;
}

.header-form:hover img,
.header-user:hover img {
  filter: invert(40%) sepia(31%) saturate(5419%) hue-rotate(156deg) brightness(101%) contrast(97%);
}

.order-item__success,
.order-item__id {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
}

.order-item__success {
  padding: 0.5rem 1.2rem;
}

.order-item__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.order-item__info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.order-item__price {
  display: flex;
  flex-direction: column;
}

.order-item__price span:first-child {
  font-weight: 600;
}

.order-item__price span:last-child {
  font-size: 0.85rem;
}

.order-adding {
  margin: 0.5rem 0;
}

.order-adding-btn {
  margin-top: 1.25rem;
}

.order-adding-btn,
a.order-item__btn {
  text-decoration: none;
  font-weight: 500;
  background-color: var(--accent);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem 1.2rem;
  gap: 0.625rem;
  position: relative;
  z-index: 2;
  color: var(--white);
  border-radius: 0.75rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  color: #fff;
}

.order-adding-btn:hover,
a.order-item__btn:hover {
  background-color: var(--accent-light);
}

.order-item-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  padding-top: 3rem;
  gap: 1rem;
}

.order-item-body__cancel {
  position: absolute;
  right: 0.9375em;
  top: 2.5rem;
}

.order-item-body__cancel button {
  font-size: 0.9375rem;
  color: #d90a0a;
}

.cancel-text {
  color: #d90a0a;
}

.order-item-body__cancel button img {
  width: 1.125rem;
  filter: invert(14%) sepia(93%) saturate(3399%) hue-rotate(357deg) brightness(100%) contrast(119%);
}

.account-section ul li {
  list-style-type: none;
}

.account-section ol,
.account-section ul {
  padding-left: 0;
}

.order-compos form {
  display: flex;
}

.order-compos__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0.5rem 0 !important;
}
.order-compos__item > div{
  display: flex; 
  gap: 0.5rem;
}

.order-compos__btn {
  font-size: 0;
  mask: url("assets/order-icons/trash.svg") no-repeat center/contain;
  -webkit-mask: url("assets/order-icons/trash.svg") no-repeat center/contain;
  background-color: #d90a0a;
  width: 1.25rem;
  height: 1.25rem;
}

.order-info ul li {
  margin: 0.5rem 0;
  font-weight: 600;
}

.order-info ul li span {
  font-weight: 400;
}

.deposit-form {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.deposit-form p {
  width: 100%;
}

.deposit-form .field,
.deposit-form .btn {
  max-width: 14.0625rem;
  width: 100%;
}

.profile-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.profile-block form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.profile-block section button[type="submit"] {
  max-width: 14.0625rem;
}

@media(max-width:767.98px) {
  .order-item__head {
    flex-direction: column;
    /* align-items: flex-start; */
  }

  .order-item-body {
    grid-template-columns: auto;
    padding: 3rem 1.25rem 1.25rem 1.25rem;
  }

  .order-compos__item {
    justify-content: space-between;
  }

  .profile-block {
    grid-template-columns: auto;
  }
}

.styled-link {
  color: #04A5AA;
}

.car-order__title {
  text-align: center;
  margin: 0.5em;
  font-size: 2em
}

.alert.alert-danger{
  color: #d90a0a;
}
