.container-map {
  /*width: 50%;*/
  display: flex;
  margin-top: 30px;
  padding: 10px 50px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  align-items: stretch;
  justify-content: center;
}

.img-map {
  width: 65%;
}

.container-fluid2 {
  /*display: flex;*/
  margin-top: 30px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  align-items: stretch;
}

.submission-wrap {
  /*display: flex;*/
  margin-top: 30px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.23);
  align-items: stretch;
}

.content-box {
  padding: 20px;
}

.text-primary {
  margin-left: 10px;
  color: #4699e7;
  font-weight: bold;
}

.domain-tags {
  margin-top: 10px;
}

.domain {
  background: #fec909;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-right: 5px;
  display: inline-block;
}

.logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.circle {
  width: 80%;
  aspect-ratio: 1/1;
  /*height: 150px;*/
  border-radius: 50%;
  border: 1px solid #1a478a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
}

.row.row-card {
  margin: 30px 0;
  border: 1px solid #4699e7;
  border-right: 0px;
  border-left: 0px;
}

@media (max-width: 992px) {
  .circle {
    width: 40%;
  }
}

@media (max-width: 480px) {
  .circle {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .logo-box {
    margin-top: 20px;
  }
}

.spacer {
  height: 30px;
}

.text-bold-right {
  text-align: right;
  font-weight: bold;
}

.sub-section-title {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #1a478a;
  color: #051687;
  text-align: center;
}

.submission-id {
  text-align: center;
  font-size: large;
  font-weight: bolder;
  color: #4699e7;
}

.btn-accept {
  width: 100%;
  background: #fec909;
  color: #051687;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
  margin-top: 20px;
}

.btn-reject {
  width: 100%;
  background: #0a0b0c;
  color: #ffffff;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
  margin-top: 20px;
}

.btn-resolved {
  width: 100%;
  background: #1a478a;
  color: #ffffff;
  border: none;
  padding: 10px;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s;
  margin-top: 20px;
}

.btn-accept:hover {
  background: #051687;
  color: #fec909;
}

.btn-reject:hover {
  background: #ff0000;
  color: #000000;
}

.btn-resolved:hover {
  background: #4699e7;
  color: #1a478a;
}

.issue-reply {
  /*border: 1px solid grey;*/
  box-shadow: 0px 0px 10px rgba(0,0,0,0.23);
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 4px;
}

.issue-reply.reply-left {
  float: left;
  /*width: 90%;*/
  margin-right: 10%;
}

.issue-reply.reply-right {
  float: right;
  /*width: 90%;*/
  margin-left: 10%;
}

.sub-section-title.fl-center {
  float: initial;
}

