/*Daterange picker*/
.date-picker-wrapper{
  width: 390px;
  display: flex;
  flex-direction: column-reverse;
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%,-50%);
  border-radius: 8px;
  background: var(--colorWhite);
  padding: 24px !important;
  border: none;
  box-shadow: none;
  z-index: 1000;
  box-sizing: border-box;
  font-family: var(--mainFontFamily) !important;
}
.month-wrapper,
.date-picker-wrapper .month-wrapper table{
  width: 100% !important;
}
.date-picker-wrapper .month-wrapper table{
  display: flex;
  flex-direction: column;
}
.date-picker-wrapper .month-wrapper table thead {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.date-picker-wrapper .footer{
  display: none;
}
.date-picker-wrapper .month-wrapper{
  border: none;
  padding: 0;
}
.date-picker-wrapper.single-month .month-name{
  display: flex;
  gap: 16px;
  height: 17px;
}
.date-picker-wrapper.single-month .month-name .select-wrapper{
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0088 12.5834L16.6 7.99229L17.9823 9.37461L12 15.3569L6.01768 9.37461L7.4 7.99229L11.9912 12.5834L12 12.5923L12.0088 12.5834Z' fill='%23D93934' stroke='%23D93934' stroke-width='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding-right: 24px;
  background-position: center right;
  background-repeat: no-repeat;
}
.date-picker-wrapper.single-month .month-name .select-wrapper .year{
  width: 100%;
}
.date-picker-wrapper .drp_top-bar{
  padding: 0;
  margin-top: 48px;
  text-align: center;
}
.date-picker-wrapper table .caption{
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.date-picker-wrapper table .caption th:first-of-type,
.date-picker-wrapper table .caption th:last-of-type{
  width: 32px;
}
.date-picker-wrapper table .caption th:first-of-type span,
.date-picker-wrapper table .caption th:last-of-type span{
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--Outline-Outline, #DDD);
  float: left;
  background-position: center, center !important;
  background-repeat: no-repeat, no-repeat !important;
}
.date-picker-wrapper table .caption th:first-of-type span{ 
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M10 12L6 8L10 4' stroke='%23333333' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), var(--colorWhite);
  cursor: pointer; 
}
.date-picker-wrapper table .caption th:last-of-type span{ 
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 12L10 8L6 4' stroke='%23333333' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), var(--colorWhite);
  cursor: pointer;
}
.date-picker-wrapper .month-wrapper table .week-name{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-around;
}
.date-picker-wrapper .month-wrapper table .week-name th{
  padding: 8px 7px;
  font-family: var(--mainFontFamily);
  color: var(--mainColor);
  font-family: var(--secondaryFontFamily);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.date-picker-wrapper .drp_top-bar .default-top{
  color: var(--mainColor);
  font-family: var(--secondaryFontFamily);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.day.toMonth.invalid{
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.4;
}
.day.toMonth.invalid.tmp{
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
}
.date-picker-wrapper .month-wrapper table .day{
  padding: 8px 16px;
  font-family: var(--mainFontFamily);
  color: var(--mainColor);
  text-align: center;
  font-family: var(--secondaryFontFamily);
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.date-picker-wrapper .month-wrapper table .day.real-today{
  background-color: var(--lightGreyBG);
  border-radius: 8px;
}
.date-picker-wrapper .month-wrapper table .day.checked,
.date-picker-wrapper .month-wrapper table .day.toMonth.hovering{
  border-top: 1px dashed var(--triglavRed);
  border-bottom: 1px dashed var(--triglavRed);
  background-color: #FFF7F7;
  padding: 7px 16px;
}
.date-picker-wrapper.single-date .month-wrapper table .day.checked,
.date-picker-wrapper.single-date .month-wrapper table .day.toMonth.hovering,
.date-picker-wrapper.single-date .month-wrapper table .day.toMonth.invalid.tmp.hovering{
  border: none;
  background-color: var(--triglavRed);
  color: var(--colorWhite);
  border-radius: 8px;
}
.roundedDate,
.date-picker-wrapper .month-wrapper table .day.first-date-selected{
  background-color: var(--triglavRed) !important;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.date-picker-wrapper.single-date .month-wrapper table .day.first-date-selected{
  border-radius: 8px;
}
.roundedDate{
  color: var(--colorWhite) !important;
}
.date-picker-wrapper .month-wrapper table .day.last-date-selected{
  background-color: var(--triglavRed) !important;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.date-picker-wrapper .month-name{
  color: var(--mainColor);
  font-family: var(--mainFontFamily);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  text-transform: capitalize;
}
.date-range-length-tip {
  display: none !important;
}