body {
  margin: 0;
  padding: 0;
}

.skeleton__entity {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
}

.skeleton__header {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  height: 3.5rem;
  box-shadow: 0 0.05rem 0 rgba(15, 15, 15, 0.15);
}

.skeleton__heading {
  max-width: 400px;
  width: calc(100% - 1rem * 2);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.skeleton {
  display: block;
  min-height: 0.0625rem;
  width: 100%;
  border: none;
  border-radius: 0.125rem;
  background-color: #eeeeee;
  background-image: linear-gradient(90deg, #eee, #f5f5f5, #eee);
  background-size: 12.5rem 100%;
  background-repeat: no-repeat;
  animation: skeleton-animation 1.2s ease-in-out infinite;
}

.skeleton__logo {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.skeleton__app-logo {
  width: 9.5rem;
  height: 0.75rem;
}

.skeleton__login-to {
  height: 0.85rem;
  width: 13.5rem;
  border-radius: 0;
  margin: 0.325rem 0;
}

.skeleton__main {
  max-width: 400px;
  width: calc(100% - 1rem * 2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: calc(100% - 3.375rem);
}

.skeleton__paragraph {
  padding: 0;
  width: 100%;
  margin: 0 0 0.75rem;
}

.skeleton__block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  width: 100%;
  margin-bottom: 0.75rem;
}

.skeleton__small-input {
  height: 3.375rem;
  width: 5rem;
  border-radius: 0.375rem;
  margin-right: 0.5rem;
}

.skeleton__small-input--bigger {
  width: 7rem;
}

.skeleton__big-input {
  flex: 1;
  height: 3.375rem;
  border-radius: 0.375rem;
}

.skeleton__text-line {
  height: 0.4375rem;
  border-radius: 0;
  margin-bottom: 0.5rem;
}

.skeleton__text-line:last-child {
  margin-bottom: 0;
}

.skeleton__buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
  width: 100%;
}

.skeleton__skip-btn {
  height: 0.75rem;
  width: 3.125rem;
  border-radius: 0;
}

.skeleton__confirm-btn {
  height: 3.375rem;
  width: 7.5rem;
  border-radius: 0.375rem;
  margin-left: 1.75rem;
}

.skeleton__confirm-btn--bigger {
  width: 12.875rem;
}

.skeleton__hidden {
  display: none;
}

.skeleton__heading--farm-go {
  justify-content: center;
}

.skeleton__block--farm-go {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.skeleton__small-input--farm-go {
  width: 100%;
  margin-bottom: 0.75rem;
}

.skeleton__big-input--farm-go {
  flex: none;
}

.skeleton__confirm-btn--farm-go {
  width: 100%;
  margin-left: 0;
  margin-top: auto;
  margin-bottom: 0.75rem;
}

.skeleton__paragraph--farm-go, .skeleton__buttons--farm-go {
  margin-top: auto;
}


/* MXP */
.skeleton__header--mxp {
  box-shadow: none;
}

.skeleton__main--mxp {
  justify-content: flex-start;
  padding-top: 1.375rem;
}

.skeleton__navigation-block--mxp {
  position: relative;
  margin-bottom: 2rem;
  align-self: flex-start;
}

.skeleton__tab-view--mxp {
  display: block;
  margin-top: 2.575rem;
  margin-bottom: 1.625rem;
  width: 100%;
}

.skeleton__tab-view__tabs {
  display: flex;
  justify-content: space-around;
}

.skeleton__tab-view__tab {
  height: 2rem;
  width: 40%;
}

.skeleton__buttons--mxp {
  margin-top: 1.25rem;
}

.skeleton__hr {
  position: absolute;
  width: calc(100% + 2rem);
  left: -1rem;
  margin-top: 2px;
  height: 0.05rem;
  background-color: rgba(15, 15, 15, 0.1);
}

@keyframes skeleton-animation {
  0% {
    background-position: -12.5rem 0;
  }
  100% {
    background-position: calc(12.5rem + 100%) 0;
  }
}
