/*********Calendar**************/
:root {
  --custom-calendar-bg-color: #fff;
  --custom-calendar-border-radius: 15px;
  --custom-calendar-border-color: #9b9b9b;
  --custom-calendar-today-bg-color: #E7E9ED;
  --custom-calendar-today-color: #333;
  --custom-calendar-selected-bg-color: #001152;
  --custom-calendar-selected-color: #fff;
  --custom-calendar-selected-radius: 5px;
}

.custom-calendar *, .custom-calendar *:before, .custom-calendar *:after {
  box-sizing: border-box;
}

.custom-calendar {
  background-color: var(--custom-calendar-bg-color);
  border-radius: var(--custom-calendar-border-radius);
  border: solid 1px var(--custom-calendar-border-color);
  box-shadow: 1px 1px 10px 5px rgb(0 0 0 / 5%);
  margin: 0 auto;
  overflow: hidden;
  width: 400px;
  padding: 10px 20px;
}
@media (max-width:1200px) {
  .custom-calendar {
      width: auto;
  }
}
.custom-calendar .custom-calendar-btn {
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: button;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: normal;
  min-width: 27px;
  outline: none;
  overflow: visible;
  padding: 0;
  text-align: center;
  &:active {
      border-radius: var(--custom-calendar-border-radius);
      box-shadow: 0 0 0 2px rgba(var(--custom-calendar-today-bg-color), 0.1)
  }
}

.custom-calendar .custom-calendar-header {
  align-items: center;
  display: flex;
  padding: 10px;
  border-radius: 288px;
}

.custom-calendar .custom-calendar-header svg {
  fill: var(--custom-calendar-today-color);
}

.custom-calendar .custom-calendar-header__label {
  font-weight: bold;
  text-align: center;
  width: 100%;
  font-size: 18px;
}

.custom-calendar .custom-calendar-week {
  /* background-color: var(--custom-calendar-selected-bg-color); */
  display: flex;
  flex-wrap: wrap;
}

.custom-calendar .custom-calendar-week span {
  color: #b5b5b5;
  flex-direction: column;
  flex: 0 0 14.28%;
  font-size: 1em;
  font-weight: bold;
  max-width: 14.5%;
  padding: 15px 0px;
  text-align: center;
  text-transform: uppercase;
}

.custom-calendar .custom-calendar-body {
  background-color: rgba(var(--custom-calendar-selected-bg-color), 0.3);
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px
}

.custom-calendar .custom-calendar-date {
  align-items: center;
  background-color: #fff;
  border-radius: var(--custom-calendar-border-radius);
  display: flex;
  flex-direction: column;
  flex: 0 0 14.28%;
  max-width: 14.28%;
  padding: 10px 0;
}

.custom-calendar .custom-calendar-date--active {
  cursor: pointer;
}

.custom-calendar .custom-calendar-date--today {
  background-color: var(--custom-calendar-today-bg-color);
  color: var(--custom-calendar-today-color);
}

.custom-calendar .custom-calendar-date--selected {
  background-color: var(--custom-calendar-selected-bg-color);
  color: var(--custom-calendar-selected-color) !important;
  border-radius: 50%;
}

.custom-calendar .custom-calendar-date--disabled {
  border-radius: 0;
  cursor: not-allowed;
  opacity: 0.2;
}
.btn-radio{
  position: relative;
}
.box-sucursal{
  text-align: center;
}
.box-sucursal p{
  color:#fff;
  font-size: 16px;
}
.box-sucursal h6{
  color:#06498e;
  font-size: 18px;
  margin-bottom: 0px;
}

.contrato-info {
  margin: 5px 0;
}

.contrato-info h5 {
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}

.contrato-info span{
  color: #06215b;
  font-size: 16px;
  font-weight: bold;
}

.sucursal-options button{
  background: #f2f2f2 !important;
  border: 1px solid #afafaf !important;
  color: #9a9a9a !important;
  border-radius: 0 !important;
}

.transport-options-section{
  margin: 10px 0;
}

#transport-selected{
  display: inline-block;
}

#transport-selected h5{
  font-weight: bold;
  margin-right: 10px;
}

#transport-selected span{
  color: #06215b;
  font-size: 16px;
  font-weight: bold;
}
/*********FinCalendar***********/