.fade-enter-active {
  transition: opacity 0.5s;
}

.fade-enter {
  opacity: 0;
}

* {
  font-family: "Lato", sans-serif;
}

.rs-project-card {
  height: 450px;
  width: 450px;
  border-radius: 3px;
  text-align: center;
  /* padding: $bar-padding; */
}
.rs-project-card .rs-project-card__header {
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding: 15px;
}
.rs-project-card .rs-project-card__header--overlay {
  position: absolute;
  width: 100%;
  background-color: rgba(240, 247, 255, 0.4);
}
.rs-project-card .rs-project-card__body {
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
}
.rs-project-card .rs-project-card__body .rs-button--modal-single {
  margin-top: -23px;
}
.rs-project-card .rs-project-card__image {
  object-fit: cover;
  width: 100%;
}
.rs-project-card .rs-project-card__image--border {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.rs-project-card .rs-project-card__description {
  height: 65px;
  padding-top: 30px;
}

.rs-toolbar {
  height: 50px;
  display: flex;
}
.rs-toolbar .rs-toolbar__logo {
  padding: 8px 15px 8px 15px;
}
.rs-toolbar .rs-toolbar__logo img {
  width: 130px;
  height: auto;
}
.rs-toolbar .rs-toolbar__action-group {
  margin-top: 10px;
  height: 30px;
}
.rs-toolbar .rs-toolbar__action-group .rs-input--search {
  height: 100%;
}

.rs-input-search {
  display: flex;
}
.rs-input-search .rs-input {
  border-radius: 0px;
  border: none;
}
.rs-input-search .rs-input:focus {
  outline: none;
}
.rs-input-search .rs-input__icon {
  background-color: #FFFFFF;
  height: 100%;
  line-height: 30px;
  color: #7d91a2;
  padding-left: 7px;
}

.rs-card {
  border-radius: 5px;
}

.rs-card--shadow {
  box-shadow: 0 1px 10px 0 rgba(40, 78, 111, 0.3);
}

.rs-modal {
  width: 460px;
  height: 195px;
  border-radius: 3px;
  background-color: #ffffff;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.3);
  position: relative;
}
.rs-modal .rs-modal__close-bar {
  padding: 15px;
  height: 20px;
}
.rs-modal .rs-modal__close-bar .rs-button--icon-close {
  float: right;
}
.rs-modal .rs-modal__input-group {
  float: right;
}
.rs-modal .rs-modal__input-group--center {
  float: none;
}
.rs-modal .rs-modal__footer {
  padding: 15px;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.rs-modal .rs-modal__input-group :not(:last-child) {
  margin-right: 15px;
}
