#podbor .datesbegin {
  display: flex;
  height: 75%;
  min-height: inherit;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 9%; /*new*/
  padding-right: 15px; /*old*/
  padding-right: 0; /*new*/
  /* margin-top: 9px; */ /*old*/
  align-items: center;

  font-weight: 400;
  font-size: 14px;
  color: #fff;

  background-color: inherit;
  padding-left: 15px; /*old*/
  border-radius: 0;
}

@media(min-width: 1025px) {
  #podbor .datesbegin {
    /* width: 53.2%; */ /*old*/
    width: 100%;
    justify-content: flex-start;
  }
}

@media(min-width: 2100px) {
  #podbor .datesbegin {
    font-size: 16px;
  }
}
@media(min-width: 2500px) {
  #podbor .datesbegin {
    font-size: 20px;
  }
}
@media(min-width: 3200px) {
  #podbor .datesbegin {
    font-size: 27px;
  }
}

#podbor .datesbegin-dates {
  margin-top: 0;
  order: 1;
}

@media(min-width: 1025px) {
  #podbor .datesbegin-dates {
    text-wrap: nowrap;
    width: fit-content;
  }
}
#podbor .datesbegin:before {
  top: calc(50% - 10px);
  background: url(/assets/i/icons/calendar-white.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
#podbor .datesbegin-container {
  width: 275px;
  min-width: inherit;
}

.datesbegin-container {
  min-width: 210px;
}

.datesbegin {
  min-height: 60px;
  font-weight: bold;
  border-radius: 6px;
  outline: none;
  position: relative;
  font-size: 16px;
  padding: 7px 26px;
  border: none;
  background-color: #fff;
  cursor: pointer;
}

.datesbegin::before {
  content: "";

  /* position: absolute; */ /*old*/
  /* right: 20px; */
  /* top: calc(50% - 5px); */

  display: block;
  width: 28px;
  height: 22px;
  margin-left: 10%;
  order: 2;

  color: rgba(0, 0, 0, 0);
  
  background: no-repeat url(/assets/i/calendar.svg);
  background-size: contain;
  background-position: center;
  border-width: thin;
  
  opacity: 1;
}

@media(min-width: 1025px) {
  .datesbegin::before {
    width: 34%;
    height: 74%;
  }
}

@media(max-width: 1024px) {
  .datesbegin::before {
    width: 20px;
  }   
}

.datesbegin-description {
  color: #888;
  font-size: 13px;
  margin-bottom: 2px;
  font-weight: normal;
}

.datesbegin-dates {
  margin-bottom: 0;
  margin-top: 5px;
}

.calendar {
  display: none;
  background: #fff;
  padding: 31px 0 0 0;
  width: 360px;
  border-radius: 16px;
  height: auto;
  overflow: hidden;
  margin: 14px auto 0 auto;
  position: absolute;
  z-index: 20;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

.datesbegin-container.active .calendar {
  display: block;
}

.calendar-wrapper {
  height: 325px;
  overflow: auto;
  margin-right: -12px;
}

.calendar-header-nav {
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}

.calendar li {
  list-style: none;
}

.calendar .btn {
  padding: 11px;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
}

.week-title {
  margin-right: 12px;
}

.month, .week-title {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.day, .week-title > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 14.2857142857%;
  height: 40px;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #49454F;
  cursor: pointer;
  border: 0;
  outline: 0;
  background-color: transparent;
}

.calendar .weekend {
  color: #ff6600;
}
.calendar .past {
  color: #ccc;
}

.calendar-header-nav li {
  text-align: center;
  padding: 12px 12px;
  font-size: 14px;
  font-weight: 400;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  flex-basis: 50%;
  border: 1px solid #ff6600;
}

.calendar-header-nav li.active {
  background-color: #ff6600;
  color: #fff;
  cursor: default;
  box-shadow: 2px -2px 8.1px -1px rgba(0, 0, 0, 0.2509803922);
}

.month-title {
  font-weight: 500;
  font-size: 14px;
  margin: 12px 12px 10px 12px;
}

.day-start, .day-from, .day-to {
  color: #fff !important;
  border-radius: 50px;
}
.day-start:before, .day-from:before, .day-to:before {
  content: "";
  background-color: #ff6600;
  border-radius: 50px;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: -1;
}

.day-from {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.day-from:after {
  content: "";
  background-color: #f7b18e;
  display: block;
  width: 50%;
  height: 40px;
  position: absolute;
  z-index: -2;
  right: 0;
}

.day-to {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.day-to:after {
  content: "";
  background-color: #f7b18e;
  display: block;
  width: 50%;
  height: 40px;
  position: absolute;
  z-index: -2;
  left: 0;
}

.between {
  background-color: #f7b18e;
}

.calendar-bottom {
  margin-top: 10px;
  text-align: right;
}

.btn-selectall {
  color: #ff6600;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 15px 12px 12px;
  cursor: pointer;
}
.btn-selectall:hover {
  text-decoration: underline;
}

.calendar .flexible {
  display: none;
}

.flexible .month-title {
  margin-right: 0;
  margin-left: 0;
}

.ul-flexible {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.ul-flexible li {
  font-size: 14px;
  font-weight: 400;
  color: #646464;
  padding: 6px 10px;
  border: 1px solid #828282;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 3px 10px 0;
  width: 101px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ul-flexible li:hover, .ul-flexible li.active {
  background: #ff6600;
  color: #fff;
  border-color: #ff6600;
}
.ul-flexible li:last-child {
  margin-right: 0;
}
.ul-flexible li:nth-child(3) {
  margin-right: 0;
}

.ecaxtly, .flexible {
  padding: 8px 4px 8px 8px;
  background-color: #EFEFEF;
}

.flexible {
  padding: 8px 4px 8px 19px;
}

.scroll-calendar {
  overflow-y: scroll;
  margin: 0px 0 30px 0;
  margin-left: -35px;
  padding-left: 35px;
}

/* Demonstrate a "mostly customized" scrollbar
 * (won't be visible otherwise if width/height is specified) */
.scroll-calendar::-webkit-scrollbar {
  width: 9px;
  height: 9px;
  background-color: transparent; /* or add it to the track */
}

/* Add a thumb */
.scroll-calendar::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #FF6600 0%, #FF1572 100%);
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .calendar {
    left: calc(50% - 180px);
  }
}
@media (max-width: 390px) {
  .calendar {
    width: 100%;
    left: 0;
  }
}/*# sourceMappingURL=calendar.css.map */