@import "root-css.css";

/* Main Content */
.card-container::before {
  filter: blur(18px);
  -webkit-filter: blur(18px);
}
.card-container {
  background: var(--white-transp) /*url(../img/webb.png) repeat*/;
  width: 100%;
  font-family: "Lato", sans-serif;
  margin: 40px auto 0px auto;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 10px;
  /*box-shadow: 1px 4px 40px -1px #e2e2e2;*/

  animation-name: MoveToBottom;
  animation-duration: 0.4s;
  backface-visibility: hidden;
}

.card-container:nth-child(1) {
  margin-top: 70px;
}
.card-container:nth-last-child(1) {
  margin-bottom: 10px;
}
.card-header {
  border-bottom: 0.5px solid rgb(223, 223, 223);
}
.card-footer {
  border-top: 0.5px solid rgb(223, 223, 223);
}
.card-header,
.card-footer {
  width: 100%;
  clear: both;
  display: block;
  padding: 15px 5px;
  color: var(--independence);

  animation-name: MoveToBottom;
  animation-duration: 0.6s;
  backface-visibility: hidden;
}
.card-header-text {
  font-weight: 700;
  font-size: 16px;
  margin-left: 5%;
}
.card-header-text:nth-child(1) {
  margin-left: 2%;
}
.card-content {
  width: 100%;
  display: flex;
  color: var(--space-cadet);
}

.status {
  font-size: 18px;
}
.personal-info-content {
  width: 45%;
  float: left;
  padding: 10px;
  margin: 0;
  font-size: 15px;
  text-transform: capitalize;

  animation-name: MoveToBottom;
  animation-duration: 0.8s;
  backface-visibility: hidden;
}
.personal-info-header {
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
}
.photo-section {
  width: 25%;
  margin: 0 4% 0 0;
  float: left;
}
.photo-section img {
  max-height: 120px;
  max-width: 120px;
  margin-left: 10%;
  margin-bottom: 4%;
  border-radius: 50%;
}
.photo-section p {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  line-height: 26px;
}
.personal-info-section {
  width: 65%;
  display: block;
  float: left;
  margin-left: 10px;
  line-height: 28px;
  padding: 4%;
}
.personal-info-section p:nth-child(1) {
  color: var(--space-cadet);
}
.personal-info-section p:nth-child(2) {
  color: var(--amaranth-red);
}
.work-content {
  width: 50%;
  float: left;
  padding-top: 20px;
  font-size: 15px;
  text-transform: capitalize;
  color: #595959;
  line-height: 30px;

  animation-name: MoveToBottom;
  animation-duration: 0.8s;
  backface-visibility: hidden;
}
.work-content-header {
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}
.work-content-section {
  width: 50%;
  color: #595959;
  display: block;
  float: left;
  margin-left: 10px;
  line-height: 28px;
}

.note-area {
  position: relative;
  width: 20%;
  float: left;
  display: block;
  height: 100%;
  text-align: center;
  color: var(--pure-white);

  animation-name: MoveToBottom;
  animation-duration: 0.8s;
  backface-visibility: hidden;
}
textarea {
  width: 100%;
  background-color: var(--pure-white);
  padding: 5px;
  resize: unset;
  text-align: center;
  color: #4a4e69;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  text-transform: capitalize;
  transition: 0.2s ease-in;
  outline: none;
  border: none;
}
/*textarea:hover,
textarea:focus {
  background-color: var(--platinum);
  transition: 0.2s ease-in;
}*/
.action-button-edit,
.action-button-update {
  background: var(--pure-white);
  color: var(--space-cadet);
  width: 48%;
  text-decoration: none;
  padding: 10px 8px;
  float: left;
  position: relative;
  margin: 10px 1% 0 1%;
  border: 1px solid rgb(209, 209, 209);
  border-radius: 5px;

  transition: all 200ms ease-in-out;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
}
.note-area a:hover {
  color: var(--pure-white);
  background: var(--carribean-green);
}
.card-footer p {
  text-align: center;
}
.card-footer-text {
  font-weight: 700;
  margin-right: 10%;
  margin-top: 10px;
}
.card-footer-text2 {
  font-family: "Poppins";
  margin-right: 10%;
  margin-top: 10px;
  color: #595959;
  font-size: 14px;
}
.card-footer-text:nth-last-child(1),
.card-footer-text2:nth-last-child(1) {
  margin-right: 0;
}
.text-dim {
  color: #595959;
}
.no-data-found img {
  height: 100vh;
  margin: 0 0 0 15%;
  position: relative;
  overflow: hidden;
}
