
/* Estilos base para lib-ddjj-scoring */

/* Container principal del formulario */
.ddjj-container {
  max-width: 895px;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 0 6px 2px rgba(54, 54, 54, 0.1);
  background-color: #ffffff;
  overflow: visible;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  box-sizing: border-box;
}

.ddjj-container > div:last-of-type {
  border-bottom: none;
}

/* Input container para checkbox de aceptación */
.ddjj-input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px auto 0 auto;
  max-width: 895px;
  padding: 0 4px;
}

@media (max-width: 576px) {
  .ddjj-input-container {
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .ddjj-input-container label {
    text-align: center;
    width: 100%;
    margin-left: 0 !important;
    margin-top: 8px;
  }
}

/* Header del formulario */
.ddjj-header {
  width: 100%;
  color: #ffffff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #e91e63;
  padding: 18px 24px;
  box-sizing: border-box;
  text-align: left;
}

.ddjj-header .ddjj-title,
.ddjj-header .ddjj-subtitle {
  margin-left: 8px;
}

@media (max-width: 576px) {
  .ddjj-header {
    height: 75px;
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* Título del header */
.ddjj-title {
  color: #ffffff;
  font-size: 22px;
  font-stretch: normal;
  font-style: normal;
  font-weight: 500;
  letter-spacing: normal;
  line-height: normal;
}

@media (max-width: 576px) {
  .ddjj-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .ddjj-medical-doc-spacing {
    margin-top: 40px;
  }
}

/* Subtítulo del header */
.ddjj-subtitle {
  margin-top: 7px;
  color: #ffffff;
  font-size: 18px;
  font-stretch: normal;
  font-style: normal;
  font-weight: 100;
  letter-spacing: normal;
  line-height: normal;
}

@media (max-width: 576px) {
  .ddjj-subtitle {
    display: none;
  }
}

/* Texto antes de las preguntas */
.ddjj-before-questions-text {
  color: #363636;
  padding: 35px 10px 30px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

/* Container de pregunta */
.ddjj-question-container {
  display: flex;
  margin: 0 24px;
  padding: 24px 0 20px 0;
  flex-direction: column;
  border-top: solid 1px #f5f5f5;
  color: #000000;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  position: relative;
  overflow: visible;
}

@media (max-width: 576px) {
  .ddjj-question-container {
    margin: 0 16px;
    padding: 16px 0 12px 0;
  }

  .ddjj-question-container button {
    min-width: 128px;
  }
}

/* Texto de la pregunta */
.ddjj-question-text {
  line-height: 1.5;
  letter-spacing: normal;
}

/* Container de botones */
.ddjj-button-container {
  display: flex;
  margin-left: 16px;
}

.ddjj-button-container button:first-child {
  margin-right: 8px;
}

.ddjj-button-container button.selected {
  color: #ffffff;
  background-color: #e91e63;
}

@media (max-width: 576px) {
  .ddjj-button-container {
    width: 100%;
    margin: 16px 0 0 0;
    justify-content: space-between;
  }

  .ddjj-button-container button:first-child {
    margin-right: 16px;
  }
}

/* Contenedor de pregunta (flex) */
.ddjj-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media (max-width: 576px) {
  .ddjj-question {
    flex-direction: column;
  }
}

/* Botón Sí/No */
.ddjj-button {
  min-width: 56px;
  min-height: 44px;
  border-radius: 4px;
  border: solid 1px #e91e63;
  background-color: #ffffff;
  line-height: 2;
  letter-spacing: normal;
  text-align: center;
  font-size: 16px;
  color: #e91e63;
  cursor: pointer;
  outline: none;
}

@media (max-width: 576px) {
  .ddjj-button {
    flex: 1;
    max-width: 50%;
    margin: 0;
  }
}

/* Container de detalles */
.ddjj-detail {
  align-self: flex-start;
  opacity: 1;
  position: relative;
  width: 100%;
  margin-top: 16px;
  margin-bottom: 24px;
  min-height: 0;
}

/* Título de detalle */
.ddjj-detail-title {
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: normal;
  color: #34495e;
  margin-top: 16px;
}

/* Subtítulo de detalle */
.ddjj-detail-subtitle {
  margin-bottom: 16px;
  margin-top: 24px;
  line-height: 1.25;
  letter-spacing: normal;
  font-weight: bold;
  font-size: 14px;
}

/* Opciones de detalle */
.ddjj-detail-options {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.ddjj-detail-options > div:first-of-type {
  margin-left: 0;
}

@media (max-width: 576px) {
  .ddjj-detail-options {
    flex-direction: column;
    width: 100%;
  }

  .ddjj-detail-options > div {
    width: 100%;
    margin: 4px 0;
  }

  .ddjj-detail-options > div:first-of-type {
    margin-top: 0;
  }
}

/* Container de checkboxes */
.ddjj-check-container {
  column-count: 2;
  column-gap: 20px;
  margin-top: 10px;
  margin-left: 0px;
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  .ddjj-check-container {
    column-count: 1;
  }
}

/* Container de patologías */
.ddjj-patologias-container {
  display: flex;
  justify-content: flex-start;
  align-items: space-around;
  flex-wrap: wrap;
}

/* Checkbox personalizado */
.ddjj-custom-check {
  appearance: none;
  margin-right: 8px;
  width: 1.5em;
  height: 1.5em;
  border: 2px solid #b0b0b0;
  border-radius: 3px;
  background-color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}

.ddjj-custom-check:checked {
  background-color: #e91e63;
  border-color: #e91e63;
  position: relative;
}

.ddjj-custom-check:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-radius: 0;
}

/* Texto de nombre */
.ddjj-name-text {
  font-weight: normal;
}

/* Container de input de patología */
.ddjj-input-patologia-container {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 0px;
  margin-top: 0px;
  width: 100%;
}

/* Container de input de detalle */
.ddjj-input-detail-container {
  margin-bottom: 4px;
  margin-top: 0px;
  line-height: 1.25;
  letter-spacing: normal;
  font-size: 14px;
  font-weight: bold;
  color: #727272;
}

/* Título de patología */
.ddjj-detail-title-patologia {
  margin-bottom: 12px;
  padding-top: 12px;
  line-height: 1.25;
  letter-spacing: normal;
  color: #727272;
  font-size: 14px;
  width: 100%;
}

/* Container de text field */
.ddjj-textfield-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .ddjj-textfield-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

/* Chip */
.ddjj-chip {
  border-radius: 32px;
  background: #ffffff;
  padding: 6px 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.25;
  text-align: center;
  color: #757575;
  cursor: pointer;
  margin: 0 8px;
  border: none;
}

.ddjj-chip.selected {
  background: #e91e63;
  color: #ffffff;
}

/* Estilos para inputs nativos */
.ddjj-textarea {
  width: 100%;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  outline: none;
  resize: none;
  padding: 8px;
  min-height: 38px;
  height: 38px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.ddjj-textarea:focus {
  border-color: #abb2b9;
}

.ddjj-textarea.error {
  border-color: #d32f2f;
}

.ddjj-input {
  width: 100%;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  outline: none;
  padding: 8px;
  min-height: 38px;
  height: 38px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.ddjj-input:focus {
  border-color: #abb2b9;
}

.ddjj-input.error {
  border-color: #d32f2f;
}

/* Mensajes de error */
.ddjj-error-message {
  color: #d32f2f;
  font-size: 12px;
  min-height: 16px;
}

.ddjj-helper-text {
  color: gray;
  font-size: 12px;
}

/* Container del botón de envío */
.ddjj-submit-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 60px;
  width: 100%;
  background-color: transparent;
}

/* Botón de envío */
.ddjj-submit-button {
  background-color: #e91e63;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 12px 64px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.ddjj-submit-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

/* Checkbox de aceptación */
#ddjj-accept-checkbox,
#ddjj-accept-checkbox-2 {
  cursor: pointer;
  background-color: transparent;
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  appearance: checkbox;
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
}

/* Label del checkbox */
.ddjj-input-container label {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  color: #666666;
  cursor: pointer;
  background-color: transparent;
  text-align: center;
  flex: 0 1 auto;
}

/* Container del disclaimer */
.ddjj-disclaimer-box {
  width: 100%;
  max-width: 895px;
  border-radius: 8px;
  box-shadow: 0 0 6px 2px rgba(54, 54, 54, 0.1);
  border: solid 2px #f6f6f6;
  background-color: #ffffff;
  display: flex;
  padding: 16px 8px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.ddjj-disclaimer {
  color: #757575;
  font-size: 14px;
  margin: 0 16px;
  text-align: center;
}

/* Container de datos de salud */
.ddjj-health-data-container {
  max-width: 895px;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 0 6px 2px rgba(54, 54, 54, 0.1);
  background-color: #ffffff;
  overflow: visible;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0;
  margin-bottom: 40px;
  display: block;
  box-sizing: border-box;
}

/* Divider light */
.ddjj-divider-light {
  border-top: solid 1px #f5f5f5;
  margin: 0 24px;
}

/* Select nativo */
.ddjj-input select {
  width: 100%;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid #bdbdbd;
  border-radius: 4px;
  outline: none;
  padding: 8px;
  min-height: 38px;
  height: 38px;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  background-color: #ffffff;
  cursor: pointer;
}

.ddjj-input select:focus {
  border-color: #abb2b9;
}

.ddjj-input select.error {
  border-color: #d32f2f;
}

/* Tokens aproximados: 2xl padding = 32px; md = 16px; lg = 24px; radius/s = 4px; radius/l = 8px */
.ddjj-confirm-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.45);
}

.ddjj-confirm-modal {
  display: flex;
  flex-direction: column;
  width: 640px;
  min-width: 640px;
  max-width: min(960px, 100%);
  height: auto;
  min-height: 180px;
  max-height: calc(100vh - 32px);
  padding: 32px;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.ddjj-confirm-modal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.ddjj-confirm-modal-textblock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
  flex: 1;
  min-height: 0;
  padding-inline-start: 6px;
  box-sizing: border-box;
  padding-bottom: 12px;
}

.ddjj-confirm-modal-title {
  margin: 0;
  width: 100%;
  font-family: 'Instrumental', 'Instrument Sans', Roboto, sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  line-height: 135%;
  letter-spacing: 0;
  text-align: left;
  color: #333232;
}

.ddjj-confirm-modal-detail {
  margin: 0;
  width: 100%;
  font-family: 'Instrumental', 'Instrument Sans', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 125%;
  letter-spacing: 0;
  text-align: left;
  color: #6b6b6b;
  word-break: break-word;
}

.ddjj-confirm-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 16px;
}

.ddjj-confirm-modal-btn {
  margin: 0;
  box-sizing: border-box;
  height: 48px;
  min-width: 74px;
  max-width: 320px;
  padding: 16px 24px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  font-family: 'Instrumental', 'Instrument Sans', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ddjj-confirm-modal-btn:focus-visible {
  outline: 2px solid #363636;
  outline-offset: 2px;
}

.ddjj-confirm-modal-btn--cancel {
  width: 111px;
  border-color: #dcdcdc;
  background-color: #f0f0f0;
  color: #282727;
}

.ddjj-confirm-modal-btn--confirm {
  width: auto;
  min-width: 185px;
  max-width: 320px;
  padding: 16px 14px;
  border-color: #a01815;
  background-color: #c61c18;
  color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .ddjj-confirm-modal {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 180px;
    max-width: 100%;
  }

  .ddjj-confirm-modal-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }

  .ddjj-confirm-modal-btn,
  .ddjj-confirm-modal-btn--cancel,
  .ddjj-confirm-modal-btn--confirm {
    width: 100%;
    max-width: none;
  }
}

.ddjj-medical-doc-container {
  width: 100%;
  max-width: 895px;
  margin: 40px auto 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 6px 2px rgba(54, 54, 54, 0.1);
  overflow: hidden; /* recorta el header al borde redondeado */
  box-sizing: border-box;
}

.ddjj-medical-doc-header {
  width: 100%;
  color: #ffffff;
  background-color: #e91e63;
  padding: 18px 24px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  box-sizing: border-box;
  text-align: left;
}

.ddjj-medical-doc-header .ddjj-title {
  margin-left: 8px;
}

.ddjj-medical-doc-body {
  padding: 24px;
  background-color: #ffffff;
}

.ddjj-medical-doc-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #363636;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 16px;
}

.ddjj-medical-doc-subtitle-mobile {
  display: none;
}

.ddjj-medical-doc-subtitle-desktop {
  display: inline;
}

.ddjj-medical-doc-fieldset {
  margin: 0;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  min-width: 0;
  box-sizing: border-box;
  text-align: left;
}

.ddjj-medical-doc-fieldset-legend {
  padding: 0 8px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  text-align: left;
  color: #797979;
}

.ddjj-medical-doc-max-notice {
  margin: 48px 0 40px;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #3a3a3a;
}

.ddjj-medical-upload-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Contenedor del input tipo dropzone */
.ddjj-medical-upload-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ddjj-medical-upload-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 100px;
  box-sizing: border-box;
  background-color: #f6f6f6;
  border-radius: 5px;
  padding: 12px 16px;
  cursor: pointer;
}

/* Vacío: mismo estilo que antes (dashed nativo); gris un poco más oscuro para que contraste mejor */
.ddjj-medical-upload-area--empty {
  border: 1px dashed #000000;
}

.ddjj-medical-upload-area--success {
  border: 1px solid #548e5e;
}

.ddjj-medical-upload-area--error {
  border: 1px solid #93001a;
}

.ddjj-medical-upload-area--file-locked {
  cursor: default;
}

.ddjj-medical-upload-icon-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ddjj-medical-upload-svg-doc {
  display: block;
}

.ddjj-medical-upload-texts {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  text-align: left;
}

.ddjj-medical-upload-title {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: #363636;
}

.ddjj-medical-upload-hint {
  font-family: Roboto, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: #757575;
}

.ddjj-medical-upload-icon-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ddjj-medical-upload-svg-cloud {
  display: block;
}

.ddjj-medical-upload-svg-file-info {
  display: block;
}

.ddjj-medical-upload-svg-file-check {
  display: block;
}

.ddjj-medical-upload-error-msg {
  display: block;
  margin-top: 6px;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0;
  vertical-align: middle;
  color: #93001a;
}

.ddjj-medical-upload-trash-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.ddjj-medical-upload-trash-btn:focus-visible {
  outline: 2px solid #580010;
  outline-offset: 2px;
}

.ddjj-medical-upload-svg-trash {
  display: block;
}

.ddjj-medical-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ddjj-medical-upload-file-name {
  color: #363636;
  word-break: break-word;
}

@media (max-width: 576px) {
  .ddjj-medical-doc-container {
    width: 100%;
    max-width: 895px;
    margin-top: 16px;
  }

  .ddjj-medical-doc-body {
    padding: 16px;
  }

  .ddjj-medical-doc-fieldset {
    padding: 12px;
  }

  .ddjj-medical-doc-header {
    height: 75px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ddjj-medical-upload-area {
    flex-wrap: wrap;
    min-height: 100px;
    padding: 12px;
  }

  .ddjj-medical-upload-texts {
    flex: 1 1 calc(100% - 100px);
    min-width: 140px;
  }

  .ddjj-medical-upload-icon-right {
    margin-left: auto;
  }

  .ddjj-medical-doc-subtitle-desktop {
    display: none;
  }

  .ddjj-medical-doc-subtitle-mobile {
    display: inline;
  }
}

/*
 * react-circular-progressbar styles
 * All of the styles in this file are configurable!
 */

.CircularProgressbar {
  /*
   * This fixes an issue where the CircularProgressbar svg has
   * 0 width inside a "display: flex" container, and thus not visible.
   */
  width: 100%;
  /*
   * This fixes a centering issue with CircularProgressbarWithChildren:
   * https://github.com/kevinsqi/react-circular-progressbar/issues/94
   */
  vertical-align: middle;
}

.CircularProgressbar .CircularProgressbar-path {
  stroke: #3e98c7;
  stroke-linecap: round;
  -webkit-transition: stroke-dashoffset 0.5s ease 0s;
  transition: stroke-dashoffset 0.5s ease 0s;
}

.CircularProgressbar .CircularProgressbar-trail {
  stroke: #d6d6d6;
  /* Used when trail is not full diameter, i.e. when props.circleRatio is set */
  stroke-linecap: round;
}

.CircularProgressbar .CircularProgressbar-text {
  fill: #3e98c7;
  font-size: 20px;
  dominant-baseline: middle;
  text-anchor: middle;
}

.CircularProgressbar .CircularProgressbar-background {
  fill: #d6d6d6;
}

/*
 * Sample background styles. Use these with e.g.:
 *
 *   <CircularProgressbar
 *     className="CircularProgressbar-inverted"
 *     background
 *     percentage={50}
 *   />
 */
.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-background {
  fill: #3e98c7;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-text {
  fill: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-path {
  stroke: #fff;
}

.CircularProgressbar.CircularProgressbar-inverted .CircularProgressbar-trail {
  stroke: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

#scrollcustom::-webkit-scrollbar {
  width: 2px;
  height: 8px;
}

/* Handle */
#scrollcustom::-webkit-scrollbar-thumb {
  background: #ff8200;
}

/* Handle on hover */
#scrollcustom::-webkit-scrollbar-thumb:hover {
  background: #ff8200;
}

@media only screen and (max-width: 600px) {
  #scrollcustom::-webkit-scrollbar {
    width: 0px;
  }
}

