:root {
  --appPrimaryColor: #ffca26;
  --appGreenColor: #00fb26;
  --appRedColor: #ff3c3c;
  --appGreyLightColor: #d9d9d9;
  --appGreyDarkColor: #8e8e8e;
  --appBlackColor: #1c1c1c;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ===================== Website Section : End ==================================*/

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;

  animation: fadeIn 0.5s ease-in-out;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #333;
  margin: 15% auto;
  width: 90%;
  padding-top: 1em;
}

.modal-content .title {
  color: #fff;
  font-size: 2em;
  line-height: 1.5;
  padding-left: 1em;
}

.modal-info {
  padding: 0 1em;
}

.modal-info .item {
  display: flex;
}

.modal-info .item p {
  width: 50%;
  color: #fff;
  font-size: 2em;
}

.modal-info .item .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--appPrimaryColor);
  display: inline-block;
}

.modal-info .item .text-red {
  color: var(--appRedColor);
}

.modal-info .item .text-green {
  color: var(--appGreenColor);
}

.modal-content .close-btn {
  width: 100%;
  background-color: var(--appPrimaryColor);
  font-size: 2.5em;
  font-weight: 600;
  text-align: center;
  padding: 1em 0;
  cursor: pointer;
}
