@import 'Sidebar';
@import 'Main';
@import 'Navbar';

*,
*:before,
*:after {
  box-sizing: inherit;
}

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
html,
body {
  background-color: #eeeff5;
  font-size: 14px;
  color: #323335;
}
p {
  margin: 0;
}

.flex {
  &-box {
    display: flex;

    &-center {
      align-items: center;
    }
  }

  &-1 {
    flex: 1;
    align-items: center;
  }

  &-center {
    align-items: center;
  }

  &-end {
    align-items: flex-end;
  }

  &-between {
    justify-content: space-between;
  }
}

.aglin {
  &-center {
    text-align: center;
  }

  &-right {
    text-align: right;
  }
}

.float {
  &-left {
    float: left;
  }

  &-right {
    float: right;
  }
}
.text {
  &-bold {
    font-weight: bold;
  }
}
