.container2 {
  width: 250px;
  margin: 10px auto;
  padding: 0;
}
.group {
  position: relative;
  width: 100%;
  height: 250px;
  padding: 0;
  outline: 1px solid rgb(157, 167, 180);
  border-radius: 50%;
  overflow: hidden;
}
.group .crop-image {
  width: 100%;
}
.group #photo {
  display: none;
}
.group .label-file {
  position: absolute;
  text-align: center;
  width: 100%;
  margin: auto;
  background-color: rgba(157, 167, 180, 0.74);
  padding: 30px 70px;
  font-size: 18px;
  bottom: -101%;
  left: 0;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  color: rgb(58, 79, 105);
}
.group:hover .label-file {
  bottom: 0;
}
.modal {
  background-color: rgba(0, 0, 0, 0.247);
  backdrop-filter: blur(0px);
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease-in-out;
  overflow: auto;
  padding: 20px;
}
.modal-content {
  width: 1200px;
  margin: auto;
  background-color: rgb(250, 250, 250);
  border-radius: 10px;
  overflow: hidden;
  transform: scale(0.9);
  opacity: 0;
  transition: 400ms 300ms all ease;
}
.modal-content .modal-header {
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  background-color: rgb(249, 249, 249);
  box-shadow: 0px -2px 7px 1px rgba(0, 0, 0, 0.281);
  font-size: 18px;
}
.modal-content .modal-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 10px;
}
.modal-body .content-imagen-cropper {
  width: 80%;
  height: 400px;
  padding: 5px;
  outline: 1px solid rgb(233, 95, 133);
}
.content-imagen-cropper .img-cropper {
  width: 100%;
}
.modal-body .content-imagen-sample {
  height: 200px;
  width: 200px;
  outline: 1px solid rgb(233, 95, 133);
  border-radius: 100%;
  overflow: hidden;
}
.modal-body .content-imagen-sample .img-sample {
  height: 100%;
  width: 100%;
}
.modal-content .modal-footer {
  width: 100%;
  padding: 10px 10px;
  text-align: center;
  background-color: rgb(249, 249, 249);
  box-shadow: 0px 2px 7px 1px rgba(0, 0, 0, 0.281);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.modal-footer .btn {
  border: none;
  padding: 12px 70px;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  color: #fff;
  transition: background-color 300ms ease;
}
.modal-footer .primary {
  background-color: rgb(58, 79, 105);
}
.modal-footer .secundary {
  background-color: rgb(157, 167, 180);
}
.modal-footer .primary:hover {
  background-color: rgb(30, 50, 75);
}
.modal-footer .secundary:hover {
  background-color: rgb(110, 116, 124);
}
.modal.active {
  opacity: 1;
  backdrop-filter: blur(3px);
  visibility: visible;
}
.modal-content.active {
  transform: scale(1);
  opacity: 1;
}
.modal.remove {
  opacity: 0;
  backdrop-filter: blur(0px);
  visibility: hidden;
  transition: 150ms 150ms all ease-in-out;
}
.modal-content.remove {
  transform: scale(0.9);
  opacity: 0;
  transition: 150ms all ease;
}
@media screen and (max-width: 1200px) {
  .modal-content {
    width: 100%;
  }
  .container {
    width: 90%;
  }
  .group {
    width: 400px;
    height: 400px;
    margin: auto;
  }
  .group .label-file {
    padding: 10px 10px 30px 10px;
  }
}
@media screen and (max-width: 1200px) {
  .content-imagen-sample {
    display: none;
  }
  .modal-body .content-imagen-cropper {
    width: 100%;
  }
  .modal-content .modal-footer {
    flex-direction: column;
    gap: 5px;
  }
  .modal-footer .btn {
    width: 100%;
  }
  .container {
    width: 90%;
  }
  .group {
    width: 200px;
    height: 200px;
    margin: auto;
  }
}

@media (max-width: 767.98px) {
  .modal-footer .rotate span{
    text-align: center;
  }
  .modal-footer .flip span{
    text-align: center;
  }

  #datos-container h4{
    font-size: 16px;
  }
  .text-p{
    font-size: 11px !important;
  }
}