.footer {
  margin-top: auto;
  padding: 8px 25px;

  display: flex;
  justify-content: space-between;
  gap: 10px;

  border-top: 1px solid #D4D4D4;
}

@media screen and (max-width: 700px) {
  .footer {
    flex-direction: column;
  }
}

.footer > .footer__domain {
  display: flex;
  justify-content: space-between;
  gap: 10px;

  flex: 1;
}

@media screen and (max-width: 400px) {
  .footer > .footer__domain {
    flex-direction: column;
  }
}

.footer > .footer__domain > .footer__places {
  display: flex;
  gap: 4px;
}

@media screen and (max-width: 400px) {
  .footer > .footer__domain > .footer__places {
    justify-content: center;
  }
}

.footer > .footer__domain > .footer__places > .footer__places__item {
  width: 36px;
  height: 36px;

  overflow: hidden;

  border: 1px solid #D4D4D4;
  border-radius: 5px;

  background: #C4C4C4;
}

.footer > .footer__domain > .footer__places > .footer__places__item > img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.footer > .footer__domain > .footer__info {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 400px) {
  .footer > .footer__domain > .footer__info {
    flex-direction: column;
  }
}

.footer > .footer__domain > .footer__info > .footer__info__price {
  display: flex;
  align-items: center;
  gap: 4px;

  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}


.footer > .footer__domain > .footer__info > .footer__info__price > img {
  width: 11px;
  height: 11px;
}

.footer > .footer__domain > .footer__info > .footer__info__icon {
  width: 36px;
  height: 36px;

  border-radius: 5px;
}

.footer > .footer__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 700px) {
  .footer > .footer__actions {
    justify-content: space-between;
  }
}

.footer > .footer__actions > .footer__info__unite,
.footer > .footer__actions > .footer__info__cancel {
  height: 35px;

  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;

  cursor: pointer;
  transition: .3s ease;

  border: 1px solid transparent;
  outline: none;
  border-radius: 5px;
}

@media screen and (max-width: 400px) {
  .footer > .footer__actions > .footer__info__unite,
  .footer > .footer__actions > .footer__info__cancel {
    width: 50%;
  }
}

.footer > .footer__actions > .footer__info__unite:hover,
.footer > .footer__actions > .footer__info__cancel:hover {
  opacity: .7;
}

.footer > .footer__actions > .footer__info__unite {
  color: #ffffff;
  background: #3BAA31;
}

.footer > .footer__actions > .footer__info__cancel {
  border: 1px solid #D4D4D4;

  background: #ffffff;
}
