/**
 * author style
 *
 * This file is automatically populated if the user chooses custom colors in the Customizer.
 */

#author-edit-container {
  margin: 4em 0em;
  width: 50%;
  min-height: 67vh;
}

.author-edit__img {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  max-width: fit-content;
  background: #32284a;
  mix-blend-mode: normal;
  opacity: 0.46;
}

.author-edit__name {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.5px;
  color: #9839ff;
}
.author-edit__useremail {
  font-weight: 400;
  font-size: 16px;
}

.author-edit__input-focus:focus {
  outline-color: #9839ff;
}

.author-edit__text-input-profession {
  width: 100%;
  height: 48px;
  padding-left: 1em !important;
}

.author-edit__text-input-about {
  width: 100%;
  height: 132px;
  padding-left: 1em !important;
}

.eye-icon {
  float: right;
  margin-left: -50px;
  margin-top: 15px;
  position: relative;
  z-index: 2;
  margin-right: 15px;
}

.blind-eye:before {
  content: url(/https/blog.basetis.com/wp-admin/images/blind_purple_eye.svg);
}
.view-eye:before {
  content: url(/https/blog.basetis.com/wp-admin/images/purple_eye.svg);
}

.edit-author__buttons {
  align-items: baseline;
}

input#updateuser {
  margin-right: 20px;
}

.author__btn-edit {
  height: 3em !important;
  border-radius: 3px !important;
  color: #9839ff !important;
  background: #fff !important;
  padding: 15px 30px !important;
  line-height: 1 !important;
  border: 2px solid #9839ff !important;
}

.author__btn-edit:hover {
  color: #fff !important;
  background: #9839ff !important;
  border-color: #9839ff !important;
  border-radius: 3px !important;
}

.author__btn-edit:active {
  border-color: #9839ff;
}

.author__btn-edit:focus {
  border-color: #9839ff;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #ff656c;
}

input:focus + .slider {
  box-shadow: 0 0 1px #ff656c;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-text {
  margin-left: 1em;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.0202667px;
  color: #141414;
}

.edit-author__form {
  margin-top: 20px;
}

p.edit-author__form-profession {
  width: 70%;
}
p.edit-author__form-textarea {
  width: 85%;
}

p.edit-author__form-profession label,
p.edit-author__form-textarea label {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.25px;
  padding-bottom: 5px;
}
p.edit-author__form-profession input[type="text"] {
  height: 48px;
}

p.edit-author__form-textarea textarea {
  height: 100px;
}

input#profession,
textarea#about {
  padding: 12px;
}

.edit-author__form-text {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.25px;
  color: #757575;
}

.edit-author__settings {
  border: 1px solid #d7d7d7;
  padding: 35px;
}

.edit-author__settings_title {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.0202667px;
  color: #141414;
}

.edit-author__settings_subtitle {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.25px;
  color: #757575;
}

/* Customize the checkbox */
.custom-checkbox-container {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  margin-top: 3px;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #757575;
}
.custom-checkbox-container.cursor-pointer {
  cursor: pointer;
}
.custom-checkbox-container.cursor-not-allowed {
  cursor: not-allowed;
}

/* Hide the browser's default checkbox */
.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border: 1px solid #757575;
}
.custom-disabled {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border: 1px solid gray;
}

.custom-checkbox-container input:checked ~ .checkmark {
  background-color: #9839ff;
}

.custom-checkbox-container input:checked ~ .custom-disabled {
  background-color: gray;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-disabled:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox-container input:checked ~ .custom-disabled:after {
  display: block;
}
.custom-checkbox-container .checkmark:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.custom-checkbox-container .custom-disabled:after {
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 999px) {
  #author-edit-container {
    width: 70%;
  }
}

/* RESPONSIVE 768px TABLET DESIGN */
@media only screen and (max-width: 768px) {
  p.edit-author__form-profession {
    width: 100%;
  }
  p.edit-author__form-textarea {
    width: 100%;
  }
  #author-edit-container {
    width: 80%;
  }
  .author-edit__content {
    padding-left: 20px;
  }
  .author-edit__name_container {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

/* RESPONSIVE 576px MOBILE DESIGN */
@media only screen and (max-width: 576px) {
  .author-edit__content {
    padding-left: 20px;
  }
  .author-edit__name,
  .author-edit__useremail,
  .edit-author__buttons {
    display: flex;
    justify-content: center;
  }
}

/* RESPONSIVE 425px SMALL MOBILE DESIGN */
@media only screen and (max-width: 425px) {
  .author__btn-edit {
    font-size: 1em;
    padding: 10px 20px !important;
  }
  .author__btn-edit:hover {
    font-size: 1em;
    padding: 10px 20px !important;
  }
}
/* @media only screen and (max-width: 300px) {
  .author__btn-edit {
    font-size: 0.6em;
  }
  .author__btn-edit:hover {
    font-size: 0.6em;
    padding: 10px !important;
  }
} */

.strong-password__container {
  border-bottom: 1px solid #d7d7d7;
  margin-left: 1em;
  display: flex;
  flex-direction: column;
  height: 10%;
}
.strong-password__indicator {
  border-bottom: 1px solid #9839ff;
  height: 50%;
  width: 50%;
  padding-bottom: 5px;
}

/* Txema */
.fa-arrow-up-from-bracket {
  color: #9839ff;
  z-index: 1;
  position: absolute;
  margin-left: 27px;
  margin-top: 32px;
  opacity: 1;
}
