.myProfile .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #3b434a;
  text-transform: uppercase;
}

.myProfile .content p {
  margin-bottom: 0;
}

.myProfile .content {
  list-style: none;
  padding: 0;
}

.myProfile .content ul li {
  padding-bottom: 10px;
}

.myProfile .content i {
  /*font-size: 20px;*/
  padding-right: 2px;
  color: #ffb727;
}

.myProfile .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #ffffff6c;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 20px;
}

.myProfile .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  background: #fff4df;
}

.myProfile .icon i {
  font-size: 36px;
  line-height: 1;
  color: #ffb727;
}

.myProfile .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.myProfile .title a {
  color: #111;
  transition: 0.3s;
}

.myProfile .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.myProfile .icon-box:hover {
  border-color: #ffb727;
}

.myProfile .icon-box:hover .title a {
  color: #ffb727;
}




/***** MODAL *****/
.bootbox-body{
  font-size: 1.2rem !important;
}

.modal-open .modal {
  padding-right: 0 !important;
}

button.bootbox-close-button {
  margin: -1rem -1rem -1rem auto !important;
}

button.bootbox-close-button:hover {
  color: #f51228 !important;
}

.btn-primary {
  color: #fff !important;
  background-color: #28a745 !important;
  border-color: #1dcf49 !important;
  padding: 8px 15px !important;
}

.btn-primary:hover {
  background-color: #218538 !important;
}

.btn-secondary {
  color: #fff !important;
  background-color: #dc3545 !important;
  border-color: #f51228 !important;
  padding: 8px 15px !important;
}

.btn-secondary:hover {
  background-color: #be2d3c !important;
}

.modal-footer > * {
  margin: .25rem !important;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
  margin-right: auto;
  margin-left: auto;
}



.custom-file-upload {
  border-radius: 50%;
  display: inline-block;
  position: relative;
  padding: 6px;
  cursor: pointer;
  background: linear-gradient(270deg, #3fa1a9, #79f1a4);
  margin-bottom: 25px;
}

.img-wrap{
  position: relative;
  width: 200px;
  height: 200px;
  overflow: hidden;
  border-radius: 50%;
}
.img-upload:before{
  content: "\f093";
  font-size: 90px;
  position: absolute;
  padding-top: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #63d3a6;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  transition: .5s ease;
  background-color: #fff;
}
.img-upload:hover:before{
 opacity: 1;
}