/* General Styles */
/* Body/Main Placeholder (main- seems like a typo for main) */
/* main { */
main- {
  /* Keeping original typo as requested */
  font-family: "Inter", "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
}

/* Global list item styling (might be too broad) */
li {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: flex;
  justify-content: left;
  color: #686868;
  /*font-size: 14px;*/ /* Original comment */
  line-height: 18px;
  padding-top: 10px;
}
/* Global unordered list styling */
ul {
  list-style-type: none;
  padding: 0;
}

/* Layout Containers & Sections */
.container_ {
  /* Trailing underscore kept */
  max-width: 1072px;
  width: 100%;
  margin: 30px;
}
.ssection-box_ {
  /* Trailing underscore kept */
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  overflow: hidden;
}
.head {
  /* Section Header */
  background-color: #f2f2f2;
  padding: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
}
.header_ h1 {
  /* Trailing underscore kept */
  color: #282828;
  margin: 0;
  font-size: 20px;
  text-align: center;
  padding-top: 10px;
}
.content {
  /* Section Content Area */
  padding: 40px;
}
.content ul {
  list-style-type: none;
  padding: 0;
}
.content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.content ul li img {
  margin-right: 10px;
  width: 42px;
  padding-top: 10px;
}
.footer_ {
  /* Trailing underscore kept */
  padding: 20px;
  background-color: #f9f9f9;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.footer_ p {
  /* Trailing underscore kept */
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* Column Layouts */
.dos-columns {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
}
.dos-columns .left_,
.dos-columns .right_ {
  /* Trailing underscore kept */
  width: 40%;
}
.three-columns {
  /* Not used in this first part, kept for potential later use */
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.three-columns .column {
  /* Not used in this first part, kept for potential later use */
  width: 27%;
  background-color: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
}
.tres-columns {
  /* Not used in this first part, kept for potential later use */
  display: flex;
  justify-content: space-between;
}
.tres-columns .column {
  /* Not used in this first part, kept for potential later use */
  width: 27%;
  background-color: #ffffff;
  border-radius: 16px;
  text-align: left;
  padding: 30px;
  display: -webkit-inline-box; /* Consider alternatives for browser compatibility */
}
.four-columns {
  /* Not used in this first part, kept for potential later use */
  display: flex;
  justify-content: space-between;
  border-radius: 16px;
  padding: 20px;
}
.four-columns .column {
  /* Not used in this first part, kept for potential later use */
  width: 23%;
  text-align: center;
}
.four-columns .column img {
  /* Not used in this first part, kept for potential later use */
  width: 100%;
  max-width: 230px;
  margin-bottom: 10px;
}

/* Specific Elements */
.icon_ {
  /* Trailing underscore kept */
  width: 40px;
  height: 40px;
}
.video-responsive_ iframe {
  /* Trailing underscore kept */
  position: cover; /* Note: 'cover' is not a standard value for position. Consider 'relative', 'absolute', or 'static'. Keeping original as requested. */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Parent element needs defined height */
}
.header-left_ {
  /* Trailing underscore kept */
  width: 45%;
}
.header-right_ {
  /* Trailing underscore kept */
  width: 50%; /* Note: 45% + 50% = 95% */
}
.header-right_ iframe {
  /* Trailing underscore kept */
  width: 100%;
  height: 315px;
  border: none;
}
.centered-title_ {
  /* Trailing underscore kept */
  text-align: center;
  font-size: 1.5em;
  margin: 20px 0;
  color: #bc3562;
}
.ssection {
  /* Specific section styling */
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 20px;
}
.ssection-header_ {
  /* Trailing underscore kept */
  background-color: #56c662;
  color: white;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 10px;
  text-align: center;
  font-size: 1.25em;
}
/* Styling images inside specific list items (Redundant with global 'li' rule?) */
ul li {
  /* display: flex; */ /* Already defined globally */
  /* align-items: center; */ /* Already defined globally */
  /* margin-bottom: 10px; */ /* Already defined globally */
}
ul li img {
  margin-right: 10px;
}
.button {
  /* General button styling */
  display: inline-block;
  padding: 10px 20px;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer; /* Added for better UX */
}
.button:hover {
  opacity: 0.8;
}
.button-red {
  background-color: #bc3562;
  padding: 16px 40px; /* Removed duplicate values */
}
.button-blue {
  background-color: #004990;
  border-radius: 40px;
}
.text-centered {
  text-align: center;
  margin-top: 10px;
}
.collapse-ssection {
  /* Styles for collapsible sections */
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.collapse-ssection .collapse {
  width: 48%; /* Note: 48% + 48% = 96% */
  border-radius: 16px;
  padding: 20px;
  cursor: pointer;
}
.parrafoReqBS {
  /* Banco de Sangre requirement paragraph */
  margin-left: 5px;
}
.label-area:hover {
  /* Area label hover effect */
  font-weight: bold;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .dos-columns {
    flex-direction: column;
    text-align: center;
  }
  .dos-columns .left_,
  .dos-columns .right_ {
    /* Trailing underscore kept */
    width: 100%;
    margin-bottom: 20px;
  }
  .three-columns,
  .tres-columns,
  .four-columns {
    flex-direction: column;
  }
  .three-columns .column,
  .tres-columns .column,
  .four-columns .column {
    width: 100%;
    margin-bottom: 20px;
  }
  .button-red,
  .button-blue {
    width: 100%;
    padding: 12px;
  }
  .video-responsive_ iframe {
    /* Trailing underscore kept */
    height: 250px;
  }
  .classMobile {
    /* Specific class for mobile adjustments */
    margin-right: 50px; /* Check usage */
    margin-left: 1rem;
  }
}

@media (max-width: 480px) {
  .container_ {
    /* Trailing underscore kept */
    margin: 10px;
  }
  .centered-title_ {
    /* Trailing underscore kept */
    font-size: 1.2em;
  }
  .video-responsive_ iframe {
    /* Trailing underscore kept */
    height: 200px;
  }
  .footer_ p {
    /* Trailing underscore kept */
    font-size: 12px;
  }
  /* .classMobile rule repeated from 768px breakpoint, commenting out repeat */
  /* .classMobile {
			margin-right: 50px;
		} */
}

/* Original commented-out rule, kept as requested */
/* .activo {
		background-color: var(--active-color);
	} */

body.page-nuevo-reserva-de-horas .contenedor_forms {
  margin-bottom: 10px !important;
}

/* CHECKBOX */

.checkbox-group {
  display: flex;
  flex-wrap: inherit;
  justify-content: center;
  width: 90%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-group > * {
  margin: 0.5rem 0.5rem;
}

.checkbox-group-legend {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9c9c9c;
  text-align: center;
  line-height: 1.125;
  margin-bottom: 1.25rem;
}

.checkbox-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.checkbox-input:checked + .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #2260ff;
}
.checkbox-input:checked + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #2260ff;
  border-color: #2260ff;
}
.checkbox-input:checked + .checkbox-tile .checkbox-icon,
.checkbox-input:checked + .checkbox-tile .checkbox-label {
  color: #2260ff;
}
.checkbox-input:focus + .checkbox-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.checkbox-input:focus + .checkbox-tile:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7rem;
  min-height: 7rem;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
.checkbox-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.checkbox-icon {
  transition: 0.375s ease;
  color: #494949;
}
.checkbox-icon svg {
  width: 3rem;
  height: 3rem;
}

.checkbox-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
}

@media all and (min-width: 768px) {
  /* .divcheck{
        padding-left: 25rem;
    } */
}

/* Media query para resoluciones de celulares */
@media all and (max-width: 767px) {
  .divBtnCod {
    padding-left: 35rem;
    padding-right: 35rem;
  }

  .checkbox-tile {
    width: 7rem;
  }
}

.containerfonasa {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* width: 98%; */
  max-width: 1200px;
  padding: 20px;
  text-align: center;
  margin-left: -15px;
  margin-right: -15px;
}

.logo {
  max-width: 500px;
  margin-bottom: 40px;
}

.icon {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 10px;
}

.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #1e9ca6;
}

.titleFonasa {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #1e9ca6;
}

.details {
  font-size: 16px;
  margin-bottom: 12px;
  color: #686868;
}

.datetime {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.datetime .icon {
  margin-right: 10px;
}

.button-container {
  text-align: right;
  width: 100%;
  margin-top: 10px;
}

.button {
  padding: 20px 20px;
  border-radius: 50px;
  background-color: #cccccc;
  color: #fff;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  width: 100%;
}

.button:hover {
  background-color: #1e9ca6;
}
