.logo-car {
  width: 110px;
}

.link-app {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: -5px -5px;
}
.link-app .app-item {
  margin: 5px 5px;
  list-style-type: none;
}
.link-app a {
  display: inline-block;
}
.tel-number {
  flex-direction: row;
  display: flex;
  margin: 10px -4px 0;
  flex-wrap: nowrap;
}
.code-number {
  flex: 0 0 15%;
  margin: 10px 4px 0;
  padding: 10px 0;
}
.code-number > input {
  text-align: center;
}
.phone-number {
  flex: 0 1 85%;
  margin: 10px 4px 0;
  padding: 10px 0;
}
.main-screen {
  overflow: hidden;
}
.screen-app {
  overflow: hidden;
  position: relative;
  height: 400px;
}
.screen-app > div {
  width: 100%;
  height: 100%;
  background: url('../img/screen-app.png') center no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
#sms-confirm {
  max-width: 345px;
  margin: 0 auto;
}
.sms-input {
  padding: 10px 0;
  width: 100%;
}
.send-again {
  display: flex;
  flex-direction: column;
  margin: 0 10px;
}
.send-again .btn {
  background-color: transparent;
  border: none;
  padding: 0;
}
.send-again .btn:hover {
  text-decoration: underline;
}

.expenses-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #514daa;
  position: relative;
}
.expenses-logo > img {
  width: 70%;
  height: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.filter-expenses {
  display: flex;
  width: 100%;
  margin: 10px -5px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-expenses > div {
  margin: 0 5px;
}

.filter-item {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.filter-item + label {
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.filter-item + label:before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 1px solid white;
  border-radius: 50%;
}
.filter-item:checked + label:before {
  opacity: 0.4;
}
.filter-item:hover + label:before {
  cursor: pointer;
}

#filter-fuel + label:before {
  background: url('../img/fuel.png') center no-repeat, #514daa;
  background-size: 70%;
}
#filter-garage + label:before {
  background: url('../img/garage.png') center no-repeat, #514daa;
  background-size: 70%;
}
#filter-insurance + label:before {
  background: url('../img/insurance.png') center no-repeat, #514daa;
  background-size: 70%;
}
#filter-tollroad + label:before {
  background: url('../img/tollroad.png') center no-repeat, #514daa;
  background-size: 70%;
}
#filter-tools + label:before {
  background: url('../img/tools.png') center no-repeat, #514daa;
  background-size: 70%;
}

.button-click {
  color: #514daa;
  border: 2px solid #514daa;
  padding: 5px 10px;
  background-color: transparent;
  border-radius: 5px;
  width: 100%;
  font-size: 18px;
}
.button-click:hover,
.button-click:active {
  background-color: #514daa;
  color: white;
}

.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@keyframes lds-default {
  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

.loader {
  position: absolute;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.2);
  display: none;
  align-items: center;
  justify-content: center;
}
