body {
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}
.wrapper {
  margin-top: 40px;
}
.layout {
  background: #f5f5f5;
  padding: 24px 0;
  flex-direction: row;
  display: flex;
  flex: auto;
}
.slider {
  flex: 0 0 200px;
  max-width: 200px;
  min-width: 200px;
  width: 200px;
}
.content {
  padding: 0 24px;
  min-height: 280px;
  flex: auto;
}
.link-dashed {
  border-bottom: 1px dashed #d5d5d5;
  cursor: pointer;
}
.box {
  background: #ffffff;
  padding: 25px 25px 50px;
}
.box__title {
  font-size: 18px;
  font-weight: 600;
}
.box__description {
  color: #9E9E9E;
  padding-bottom: 20px;
}
.login {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.login__form {
  width: 100%;
}
.login__title {
  font-size: 22px;
  font-weight: bold;
}
.login__submit {
  width: 100%;
}
.login__links {
  display: flex;
  justify-content: space-between;
}
.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

.register {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.register__title {
  font-size: 22px;
  font-weight: bold;
}
.register__submit {
  width: 100%;
}
.register__form {
  width: 100%;
}

.add {
  margin-top: 40px;
}
.add__title {
  font-size: 24px;
  font-weight: 500;
}
.add__description {
  padding-top: 15px;
  padding-bottom: 35px;
}
.add__card-container {
  display: flex;
}
.card {
  background: #FFFFFF;
  border: 1px solid rgba(47, 101, 203, 0.19);
  display: flex;
  padding: 20px 25px 30px;
  border-radius: 5px;
  height: 100%;
}
.card__title {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 15px;
}
.card__description {
  color: #9E9E9E;
  white-space: break-spaces;
}
.card__icon {
  padding-right: 25px;
}
.card__disabled {
  opacity: 0.4;
}
.card:hover {
  cursor: pointer;
}
.form {
  color: #9E9E9E;
}
.form .ant-radio-group {
  margin-top: 5px;
  margin-bottom: 20px;
}
.form__buttons {
  margin-top: 25px;
}
.form__buttons button:first-child {
  margin-bottom: 25px;
  margin-right: 25px;
}
.form__select-title {
  font-weight: bold;
}
.settings {
  padding: 30px 40px 50px 30px;
  background: white;
}
.project-settings__title {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 7px;
}

.project {
  background: #ffffff;
  padding: 25px 25px 50px;
}
.project__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.project__title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
}
.project__title img {
  margin-right: 10px;
}
.project__status-inactive {
  color: #a62200;
}
.project__status-active {
  color: #7eb768;
}
.project__status-new {
  color: #4e75be;
}
.action-bar {
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
  padding-top: 20px;
}
.action-bar__count {
  display: inline-block;
  margin-right: 25px;
  padding: 4px 7px;
  background: #fafafa;
  border-radius: 2px;
}
@media (max-width: 576px) {
  .action-bar__count {
    margin-bottom: 15px;
  }
}
.action-bar__button {
  margin-right: 15px;
}
@media (max-width: 576px) {
  .action-bar {
    flex-direction: column;
    align-items: start;
  }
}
.action-bar--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.summary {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 25px;
}
.summary__item {
  padding: 0 25px;
}
.summary__item:first-child {
  padding-left: 0;
}
.summary__title {
  color: #898a8b;
  padding-top: 10px;
}
.summary__status {
  border-bottom: 1px dashed;
  cursor: pointer;
}
.summary__long-text {
  max-width: 110px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.alert {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 15px;
}
.alert__bold {
  font-weight: bold;
}
.editable-cell {
  position: relative;
}
.editable-cell-value-wrap {
  padding: 5px 12px;
  cursor: pointer;
  margin-right: 1px;
}
.editable-row:hover .editable-cell-value-wrap {
  padding: 4px 11px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
[data-theme='dark'] .editable-row:hover .editable-cell-value-wrap {
  border: 1px solid #434343;
}

.projects {
  background: #ffffff;
  padding: 25px 25px 50px;
}
.projects__title {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
}
.projects__table {
  margin-top: 20px;
}
.projects__table-title {
  color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.projects__table-title:hover {
  border-bottom: none;
}
.projects__table-url {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}
.projects--empty {
  padding-bottom: 15px;
  color: #666;
}

.navbar {
  padding-top: 19px;
  padding-bottom: 19px;
  background-color: #2F65CB;
}
.navbar a {
  color: hsla(0, 0%, 100%, 0.5);
}
.navbar a:hover {
  color: #ffffff;
}
.navbar__wrap {
  display: flex;
  align-content: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.navbar__menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
.navbar__menu a {
  padding: 5px 16px;
}
.navbar__menu a:hover,
.navbar__menu a:focus,
.navbar__menu a:active {
  transition: background 0.2s;
}
.navbar__logo {
  align-self: center;
  padding-right: 35px;
}
.navbar__user {
  flex-grow: 1;
  flex-direction: row;
  text-align: right;
  align-self: center;
}

footer {
  padding: 20px 0px;
  margin-top: 40px;
  border-top: 1px solid #f5f5f5;
  color: #888888;
}

