.subdate-div {
    margin-bottom: 1rem;
}

.subdate-input {
    height: 2.75rem;
    width: 59%;
    padding: .175rem .5rem;
    color: #232323;
    background-color: #fff;
    position: relative;
}

.subdate-input[disabled] {
    cursor: not-allowed;
}

.subdate-input[readonly] {
    background-color: #fff;
    cursor: pointer;
}

.datepicker-cell.day.disabled.holiday,
.datepicker-cell.day.disabled.holiday:hover {
    color: red !important;
}

#product .datepicker-cell.day.onlyBM,
#product .datepicker-cell.day.onlyBM:hover {
    color: blue !important;
}

.datepicker-cell.day.disabled.soldOut,
.datepicker-cell.day.disabled.soldOut:hover {
    color: rgba(254, 99, 27, 0.8) !important;
}

.icon-container {
    z-index: 1 !important;
    padding-top: 5px;
}

.loader {
    position: relative;
    height: 1.5rem;
    width: 1.5rem;
    display: inline-block;
    animation: around 5.4s infinite;
}

@keyframes around {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader::after,
.loader::before {
    content: "";
    background: white;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-color: #333 #333 transparent transparent;
    border-style: solid;
    border-radius: 30px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    animation: around 0.7s ease-in-out infinite;
}

.loader::after {
    animation: around 0.7s ease-in-out 0.1s infinite;
    background: transparent;
}

.input-container {
    display: flex;
    align-items: center;
  }
  
  .md-container {
    margin-left: 10px;
  }

  #checkbox-container {
    width: 66%;
    padding-bottom: 1.2rem;
  }

  #checkbox-container > .checkbox-label {
    font-size: 0.74em;
  }