.datepicker-days {
    background: #ffffff63;
    border: 1px solid #d3d3d3;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
}

.datepicker-days .table-condensed thead tr:nth-child(2) {
    background: #ffffff;
}

.datepicker-days .table-condensed tbody tr {
    border-bottom: 1px solid #bfbfbf;
}
.datepicker-days .table-condensed tbody tr .old.day {color: #c9c9c9;}

.datepicker-days .table-condensed tbody tr td.active.day {
  .datepicker-days   background: #b0d5fd;
}
.datepicker-days .table-condensed tbody tr td.active {
    background: #b0d5fd;
}
.datepicker-days .table-condensed tbody tr td {
    padding: 6px 5px;
    cursor: pointer;
    color: #000;
}
.form-switch .form-check-input:checked {
    background-color: #1b89f7 !important;
}
.form-switch .form-check-input {
    border: 1px solid #7eaddb !important;
    background-color: #7eaddb !important;
}
/*left right modal*/
.modal.left_modal, .modal.right_modal{
  position: fixed;
  z-index: 99999;
}
.modal.left_modal .modal-dialog,
.modal.right_modal .modal-dialog {
  position: fixed;
  margin: auto;
  width: 32%;
  height: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
      -ms-transform: translate3d(0%, 0, 0);
       -o-transform: translate3d(0%, 0, 0);
          transform: translate3d(0%, 0, 0);
}

.modal-dialog {
    /* max-width: 100%; */
    margin: 1.75rem auto;
}
@media only screen and (max-width: 400px) { 
    .calculator-step-nav-list:after {
        width: 150px;
    }
 }
@media (min-width: 576px)
{
.left_modal .modal-dialog {
    max-width: 100%;
}

.right_modal .modal-dialog {
    max-width: 100%;
}
}
.modal.left_modal .modal-content,
.modal.right_modal .modal-content {
  /*overflow-y: auto;
    overflow-x: hidden;*/
    height: 100vh !important;
}

.modal.left_modal .modal-body,
.modal.right_modal .modal-body {
  padding: 15px 15px 30px;
}

/*.modal.left_modal  {
    pointer-events: none;
    background: transparent;
}*/

.modal-backdrop {
    display: none;
}

/*Left*/
.modal.left_modal.fade .modal-dialog{
  left: -50%;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left_modal.fade.show .modal-dialog{
  left: 0;
  box-shadow: 0px 0px 19px rgba(0,0,0,.5);
}

/*Right*/
.modal.right_modal.fade .modal-dialog {
  right: -50%;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
     -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
       -o-transition: opacity 0.3s linear, right 0.3s ease-out;
          transition: opacity 0.3s linear, right 0.3s ease-out;
}



.modal.right_modal.fade.show .modal-dialog {
  right: 0;
  box-shadow: 0px 0px 19px rgba(0,0,0,.5);
}

/* ----- MODAL STYLE ----- */
.modal-content {
  border-radius: 0;
  border: none;
}



.modal-header.left_modal, .modal-header.right_modal {

  padding: 10px 15px;
  border-bottom-color: #EEEEEE;
  background-color: #FAFAFA;
}

.modal_outer .modal-body {
    /*height:90%;*/
    overflow-y: auto;
    overflow-x: hidden;
    height: 91vh;
}
.qc-modal{
  pointer-events: visible;
  max-height: 700px;
  overflow-x: hidden;
  overflow-y: auto;
}

.qc-scrollbar::-webkit-scrollbar {
  width: 16px;
}

.qc-scrollbar::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.qc-scrollbar::-webkit-scrollbar-thumb {
  background-color: #d4aa70;
  border-radius: 100px;
}
.qc-attributes{
  display: none;
}
.datepicker-months tbody td,
.datepicker-years tbody td{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.datepicker-months tbody td span.month,
.datepicker-years tbody td span.year {
  padding: 7px;
  cursor: pointer;
}
.datepicker-years thead tr,
.datepicker-months thead tr,
.datepicker-days thead tr{
  cursor: pointer;
}
.datepicker-months thead tr,
.datepicker-years thead tr{
  display: flex;
  justify-content: space-between;
}
td.disabled.day {
    color: #c9c9c9 !important;
}