﻿body {
  text-align: center;
  margin: 10px;
}

.search {
  padding: 6px;
  position: fixed;
  top: 0;
  left: 1em;
  border-radius: 5px;
  width: 22em;
  margin-top: 7px;
}

.send-search {
  display: flex;
  margin: 1.5em;
}

.add-search-wrapper {
  display: flex;
  align-items: center;
  padding: 16px;
}

.add-search {
  width: 54%;
}

.input {
  padding: 10px;
  width: 83%;
  margin: 8px;
  margin-left: 12px;
}

button {
  display: inline-block;
  padding: 1em 2em;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none !important;
  color: #fff;
  background-color: #5886c2;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 4px;
}

.button:hover:not(.clicked) {
  background-color: #0e99d4;
}

#addButton {
  width: 37%;
  font-size: 1em;
  position: fixed;
  right: 2%;
  height: 30px;
  padding: 0;
}

.addNewButton {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #1aaeee;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 90%;
  margin: 14px;
}

.addNewButton:hover:not(.clicked) {
  background-color: #0e99d4;
}

.project-cards {
  padding: 10px;
}

.sendToACCProjectCards {
  margin-top: 10%;
}

.card {
  display: block;
  padding: 5px 10px;
  font-size: 16px;
  color: #fff;
  background-color: #7e8b91;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 5px;
}

.card:hover:not(.clicked) {
  background-color: #5886c2;
}

.selected {
  background-color: #5886c2;
}

.addedNewError {
  color: #e80707f8;
}

.invisible {
  display: none;
}

.ms-welcome__header {
  padding: 20px;
  padding-bottom: 30px;
  padding-top: 100px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  align-items: center;
}

.ms-welcome__main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
  padding: 10px 20px;
}

.ms-welcome__main > h2 {
  width: 100%;
  text-align: center;
}

.ms-welcome__features {
  list-style-type: none;
  margin-top: 20px;
}

.ms-welcome__features.ms-List .ms-ListItem {
  padding-bottom: 20px;
  display: -webkit-flex;
  display: flex;
}

.ms-welcome__features.ms-List .ms-ListItem > .ms-Icon {
  margin-right: 10px;
}

.ms-welcome__action.ms-Button--hero {
  margin-top: 30px;
}

.ms-Button.ms-Button--hero .ms-Button-label {
  color: #0078d7;
}

.ms-Button.ms-Button--hero:hover .ms-Button-label,
.ms-Button.ms-Button--hero:focus .ms-Button-label {
  color: #005a9e;
  cursor: pointer;
}

b {
  font-weight: bold;
}

.slider {
  height: 150px;
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(250px * 18);
  animation: scroll 120s linear infinite;
}

.slide {
  height: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  padding: 30px;
  perspective: 100px;
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0), 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
}

.slider::before {
  left: 0;
  top: 0;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotate(180deg);
}

img {
  width: 100%;
}

img:hover {
  transform: translateZ(20px);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 9));
  }
}
