@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url('https://fonts.gstatic.com/s/materialicons/v99/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2') format('woff2');
}

:root {
  --spacing1: 4px;
  --spacing2: 8px;
  --spacing3: 12px;
  --spacing4: 16px;
  --bg-color: #08289a;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/*&& button*/
.global__button {
  min-width: 100px;
  padding: 5px 15px;
  border: none;
  background-color: #08289a;
  margin: 5px 10px;
  border-radius: 4px;
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.global__button:hover,
.global__button:active {
  background: #061d6e;
}

.global__button:disabled {
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
}

.global__button__text {
  overflow: hidden;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
}

.global__button--state-danger {
  background-color: #ef7d7c;
}

.global__button--state-danger:hover,
.global__button--state-danger:active {
  background-color: #ca6c6b;
}
