@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
:root {
  --background-light: #283046;
  --background: #161d31;
  --main-color: #7367f0;
  --background: #161d31;
  --primary-color: #7367f0;
  --secondary-color: #82868b;
  --success-color: #28c76f;
  --warning-color: #ff9f43;
  --danger-color: #ea5455;
  --info-color: #00cfe8;
  --lg-primary-color: #9e95f5;
  --lg-secondary-color: #9ca0a4;
  --lg-success-color: #48da89;
  --lg-warning-color: #ffb976;
  --lg-danger-color: #f08182;
  --lg-info-color: #1ce7ff;
  --dark-primary-color: #4839eb;
  --dark-secondary-color: #696d71;
  --dark-success-color: #1f9d57;
  --dark-warning-color: #ff8510;
  --dark-danger-color: #e42728;
  --dark-info-color: #00a1b5;
  --gradient-primary-color: linear-gradient(47deg, #7367f0, #9e95f5);
  --gradient-secondary-color: linear-gradient(47deg, #82868b, #9ca0a4);
  --gradient-success-color: linear-gradient(47deg, #28c76f, #48da89);
  --gradient-warning-color: linear-gradient(47deg, #ff9f43, #ffb976);
  --gradient-danger-color: linear-gradient(47deg, #ea5455, #f08182);
  --gradient-info-color: linear-gradient(47deg, #00cfe8, #1ce7ff);
}

body {
  background-color: var(--primary-color);
  font-family: "Roboto", sans-serif;
}

body a {
  text-decoration: none;
  color: var(--info-color);
}

body h1 {
  text-align: center;
  color: white;
}

body h3 {
  text-align: center;
  color: white;
}

.feedback {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  margin: auto;
  width: 60%;
}

.feedback .card {
  position: relative;
  margin: 20px;
  width: 300px;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  color: black;
  background: white;
}

.feedback .card .top {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.feedback .card .top i {
  color: yellow;
}

.feedback .card .body {
  padding: 10px;
  margin-bottom: 40px;
}

.feedback .card .verified {
  position: absolute;
  bottom: 0px;
  padding: 6px;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.feedback .card .verified i {
  color: #30c030;
  font-size: 9px;
  border: 2px solid #30c030;
  padding: 2px;
  margin-right: 5px;
}

@media only screen and (max-width: 1400px) {
  .feedback {
    width: 80%;
  }
}

@media only screen and (max-width: 1150px) {
  .feedback {
    width: 100%;
  }
}

@media only screen and (max-width: 1033px) {
  .feedback {
    width: 80%;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 800px) {
  .feedback {
    width: 100%;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 695px) {
  .feedback {
    width: 100%;
    -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
  }
  .feedback .card {
    width: 80%;
  }
}
/*# sourceMappingURL=feedback.css.map */