:root {
  --colorPrimary: #ff5757;
}

body {
  background-color: #ff5757;
}

.bg-primay {
  background-color: var(--colorPrimary) !important;
}

#preview {
  width: 300px;
  height: 330px;
  transform: rotate(90deg);
}

.content-user {
  text-align: center;
  background: #ff5757;
  width: 60%;
  margin: 0 auto;
  padding: 10px;
  height: 100%;
}

.avatar img {
  width: 70px;
  height: 70px;
}

.img-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.bg-principal {
  background: #ff5757 !important;
}

select[readonly],
input[readonly] {
  background: #eee;
  pointer-events: none;
  touch-action: none;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: 'Enviar' !important;
}

#add-more-file:hover,
#add-more-phone:hover {
  color: forestgreen;
  cursor: pointer;
}

.form-group {
  animation: fadeIn ease 0.3s;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.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: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

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

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%;
}

.w-10 {
  width: 10% !important;
}
.cursor {
  cursor: pointer;
}
.label-perfil {
  font-weight: bold;
}
.box-text-perfil {
  /* padding: 5px 0; */
  border-bottom: 1px solid #d1d3e2;
  min-height: 25px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
