/*GLOBAL*/
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin: 0 0 15px 0;
}

a {
  color: #02acd3;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
  font-family: "Segoe UI", sans-serif;
}

a:hover {
  cursor: pointer;
  color: #073e58;
}

p {
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 15px 0;
  color: #7f8fa4;
}

tbody,
form,
input,
#content {
  font-family: "Segoe UI", sans-serif;
}

img {
  width: auto;
  max-width: 100%;
  pointer-events: none;
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button {
  display: inline-block;
  text-align: center;
}

button,
.button,
input[type="submit"] {
  background-color: #02acd3;
  border: none;
  border-radius: 99px;
  max-width: 200px;
  width: 100%;
  line-height: 40px;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  font-size: 1rem;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
  background-color: #073e58;
  cursor: pointer;
}

/*NAV*/
header {
  background-color: #073e58;
  min-height: 10vh;
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
}

.logo {
  max-width: 300px;
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 2.5rem;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px;
}

nav {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

nav ul li a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #02acd3;
}

.menu-icon {
  fill: #02acd3;
  margin-right: 7px;
}

.active {
  border-bottom: 2px solid #fff;
}

/*RESPONSIVE*/
@media (max-width: 768px) {
  .menu-name {
    display: none;
  }
  .menu-icon {
    margin: auto;
    fill: #fff;
  }
  .active {
    border-bottom: none;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/*CONTENT*/
.content {
  background-color: #eff3f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 7rem;
}

.hello-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 2rem;
}

/*BOXES*/
.boxes-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  width: auto;
  padding: 5rem 2rem;
}

.box {
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  max-width: 380px;
  width: 100%;
  min-height: 300px;
  max-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  margin: 0 1rem 3rem 1rem;
}

.box img {
  max-width: 120px;
  max-height: 100px;
  width: 100%;
  height: 100%;
}

.box p {
  padding: 0 0 20px 0;
  color: #000;
  font-size: 14px;
}

.box .big-text {
  font-weight: 700;
  font-size: 20px;
  padding-top: 30px;
  line-height: 0;
}

/*RESPONSIVE*/
@media (max-width: 1479px) {
  .boxes-container {
    padding: 5rem 2rem 2rem;
    max-width: 66%;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.7rem;
  }
  .content {
    padding-top: 4rem;
  }
  .boxes-container {
    max-width: 100%;
    padding: 5rem 1rem 2rem;
  }
}

.content {
  width: 100%;
  min-height: 100vh;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  text-align: left;
  padding: 20px;
}

tr:first-child,
tr:last-child {
  font-weight: bold;
}

tr:first-child {
  border-bottom: 2px solid #000;
}

tr:last-child {
  border-top: 2px solid #000;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.flex-it {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table-container {
  max-width: 1095px;
  width: 85%;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 4rem;
}

.table-header {
  background-color: #f8f9fc;
  padding: 25px 30px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.table-header p {
  color: #073e58;
  font-weight: bold;
  font-size: 1.25rem;
}

.table-body {
  padding: 15px 30px;
  overflow-x: auto;
}

.pagination {
  display: inline-block;
  font-family: Poppins, sans-serif;
  margin-top: 2rem;
  padding-bottom: 5rem;
}

.user-icon img {
  border-radius: 99px;
  max-width: 40px;
  height: auto;
  margin-right: 10px;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 5px;
}

.pagination a.active {
  background-color: #02acd3;
  color: white;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
}

.cols-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
  width: 100%;
  max-width: 1180px;
}

.col-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 35rem;
          flex: 1 1 35rem;
  padding: 0 2rem;
}

.col-left-wrapper {
  border-radius: 15px;
  -webkit-box-shadow: 0 1px 2px #d1d2d5;
          box-shadow: 0 1px 2px #d1d2d5;
  max-width: 700px;
  height: auto;
  background-color: #fff;
}

.col-right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20rem;
          flex: 1 1 20rem;
  padding: 0 2rem;
}

.form-header {
  width: 100%;
  padding: 0 0 1.5rem;
}

.form-header p {
  font-size: 1.25rem;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 2rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  height: 30px;
  width: 100%;
  margin-top: 1rem;
}

input[type="date"] {
  width: 97%;
  cursor: pointer;
  margin-top: 1rem;
}

#upload-date {
  height: 30px;
}

.left {
  width: 60%;
}

.right {
  width: 37%;
}

.row-it {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

label {
  margin: 1rem 0;
}

textarea {
  margin-bottom: 1.5rem;
  width: 99%;
  resize: vertical;
  min-height: 10vh;
  max-height: 30vh;
}

.title {
  margin-top: 4rem;
  width: 100%;
  max-width: 889px;
}

.title p {
  font-weight: bold;
  font-size: 15px;
  padding: 0 2rem;
}

.dots {
  cursor: pointer;
}

.post-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 2px #d1d2d5;
          box-shadow: 0 1px 2px #d1d2d5;
}

.post-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  margin-bottom: -2px;
}

.user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.post-bottom {
  padding: 0 1rem;
}

.post-bottom p {
  font-size: 0.9375rem;
  color: #000;
}

.post-image {
  margin-bottom: -5px;
}

.post-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  margin-top: 0;
}

.post-like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid #e6e7e9;
}

.post-like p {
  margin-bottom: 0;
  color: #000;
}

.post-like img {
  max-width: 18px;
  width: auto;
  margin-right: 5px;
  height: auto;
}

.insta img {
  margin: auto;
  width: 24px;
  height: auto;
}

.like,
.comment,
.share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

/*RESPONSIVE*/
@media (max-width: 1180px) {
  .cols-wrapper {
    max-width: 590px;
  }
  .col-left {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  .col-right {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  .cols-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .col-left {
    margin-bottom: 3rem;
  }
  .col-right {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .row-it {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .left {
    margin-bottom: 1rem;
    width: 99%;
  }
  input[type="date"],
  .right {
    width: 99.5%;
  }
}

.lithos-login {
  overflow: hidden;
}

.lithos-login .content {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  padding-top: 0;
}

.lithos-form-wrapper {
  padding: 0 1.5rem;
}

.form-login {
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 930px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30rem;
          flex: 1 1 30rem;
  padding: 5px;
}

.img-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30rem;
          flex: 1 1 30rem;
}

.img-wrap img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.imgcontainer {
  margin: 25px 0 25px 0;
}

img.avatar {
  width: 65%;
  margin: auto;
}

.container-form {
  width: 99%;
}

.container-forgot {
  padding: 10px;
  margin-top: 1rem;
  background-color: transparent !important;
  width: 100%;
}

span.psw {
  float: right;
}

.back-to-dashboard {
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .lithos-login {
    overflow-y: auto;
  }
  .lithos-form-wrapper {
    max-width: 400px;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .form-login {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-right,
  .img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  .img-wrap img {
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
    max-height: 250px;
    -o-object-position: center top;
       object-position: center top;
  }
}
/*# sourceMappingURL=style.css.map */