.page-profile .btn_back {
  right: 0;
  top: 80px;
  z-index: 2;
  padding: 16px 25px 16px 45px;
  border-radius: 5px 0px 0px 5px;
}

.form-profile {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
}
.form-profile .span-block {
  font-size: 18px;
}
.form-profile .button {
  width: 100%;
  margin: 40px 0 0 0;
  gap: 10px;
}
.form-profile .phrases {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.form-profile .phrases .span-block {
  font-size: 18px;
  margin: 0 0 8px 0;
}
.form-profile .phrases .span-block.pink_small {
  font-size: 14px;
  color: #e83687;
}
.form-profile .drag-drop-container {
  width: 100%;
  position: relative;
  display: flex;
  flex-flow: column;
}
.form-profile .drag-drop-container .drag-zone {
  width: 100%;
  padding: 60px 40px;
  border-radius: 4px;
  margin: 30px 0 50px 0;
  border: 3px dashed #d9deea;
}
.form-profile .drag-drop-container .drag-zone.waiting {
  animation: borderMove 2.5s infinite linear;
}
.form-profile .drag-drop-container .drag-zone .drop-zone {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.form-profile .drag-drop-container .drag-zone .drop-zone .separator-letter {
  width: 100%;
  display: flex;
  margin: 30px 0;
  align-items: center;
  justify-content: center;
}
.form-profile .drag-drop-container .drag-zone .drop-zone .separator-letter hr {
  width: 60px;
  height: 2px;
  border: none;
  margin: auto 10px;
  background-color: #fec4b0;
}
.form-profile .drag-drop-container .drag-zone.mobile-section {
  padding: 10px !important;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}
.form-profile .drag-drop-container .drag-zone.mobile-section .drop-zone {
  display: none !important;
}
.form-profile .drag-drop-container .drag-zone.mobile-section .button {
  margin-top: 0 !important;
}
.form-profile .drag-drop-container .drag-zone.mobile-section .button button {
  margin: 0 !important;
}
.form-profile .drag-drop-container .galleray-profile {
  display: grid;
  gap: 45px 0;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
}
.form-profile .drag-drop-container .galleray-profile .ga-item {
  width: 195px;
  height: 195px;
  position: relative;
  border-radius: 10px;
  position: relative;
}
.form-profile .drag-drop-container .galleray-profile .ga-item:first-child:not(.ga-item.default) {
  border: 3px solid #fec4b0;
  background-color: #fec4b0;
}
.form-profile .drag-drop-container .galleray-profile .ga-item:first-child:not(.ga-item.default)::after {
  color: #fff;
  padding: 8px 50px;
  font-weight: bold;
  text-align: center;
  content: "PERFIL";
  transform-origin: center;
  background-color: #fec4b0;
  left: -1px;
  right: -1px;
  bottom: -1px;
  position: absolute;
}
.form-profile .drag-drop-container .galleray-profile .ga-item.add {
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #e83687;
  cursor: pointer;
}
.form-profile .drag-drop-container .galleray-profile .ga-item.add::before {
  width: 100%;
  height: 4rem;
  position: absolute !important;
  content: "+";
  z-index: 2;
  top: 0%;
  left: -50%;
  transform: translate(50%, 50%);
  font-size: 5rem;
  color: #e83687;
  line-height: 1;
  text-align: center;
}
.form-profile .drag-drop-container .galleray-profile .ga-item.add::after {
  width: calc(100% - 2rem);
  position: absolute;
  content: "Agregar otra foto";
  padding: 1rem;
  text-align: center;
  font-size: 1.3rem;
  bottom: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e83687;
}
.form-profile .drag-drop-container .galleray-profile .ga-item.add:first-child::after {
  content: "Agregar una foto";
}
.form-profile .drag-drop-container .galleray-profile .ga-item img,
.form-profile .drag-drop-container .galleray-profile .ga-item picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.form-profile .drag-drop-container .galleray-profile .ga-item .close-modal {
  width: 35px;
  height: 35px;
  border: 3px solid #fff;
  top: -17px;
  right: -17px;
  position: absolute;
}
.form-profile .drag-drop-container .galleray-profile .ga-item .close-modal img {
  width: 20px;
  height: 20px;
}
.form-profile .input-wrapper[data-type=checkbox] {
  flex-flow: column;
}

.hidden-code {
  position: relative;
  height: auto;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding: 0 !important;
  transition: all 0.3s;
  overflow: hidden;
}
.hidden-code.show {
  max-height: 56px;
  margin-top: 12px;
  opacity: 1;
  padding: inherit !important;
}
.hidden-code.hide {
  display: none !important;
}
.hidden-code .input-button {
  height: 24px;
  position: absolute;
  right: 10px;
  top: 18px;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.hidden-code .input-button a {
  width: 24px;
  height: 24px;
  position: relative;
}
.hidden-code a.btn-save-phone {
  cursor: pointer !important;
}

@keyframes borderMove {
  25% {
    border-top: 3px solid #fec4b0;
  }
  50% {
    border-right: 3px solid #fec4b0;
  }
  75% {
    border-bottom: 3px solid #fec4b0;
  }
  100% {
    border-left: 3px solid #fec4b0;
  }
}
@media screen and (max-width: 768px) {
  .form-profile .button .btn-base {
    margin: auto;
  }
}
@media screen and (max-width: 680px) {
  .form-profile .button .btn-base {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .form-profile .button {
    margin-top: 0;
  }
  .form-profile .drag-drop-container .drag-zone {
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
