/* PAGES */
.timetable {
  padding: 64px 0;
}

.timetable__title {
  font-size: 32px;
  color: #1f282c;
  font-family: "MuseoSansCyrlBold";
}

.timetable__items {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 48px;
}

.timetable__item {
  width: 100%;
  max-width: 100%;
  padding: 24px 40px;
  background-color: #fff;
  border: 2px solid #f1f1f1;
  margin-top: 48px;
  position: relative;
}

.timetable__item:before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  left: -48px;
  top: 36px;
  background: url("../img/dot-and-circle-grey.svg") center center no-repeat;
  background-size: 100%;
}

.timetable__item:after {
  content: '';
  display: block;
  width: 5px;
  height: calc(100% + 28px);
  position: absolute;
  left: -36px;
  top: 63px;
  background-color: #e6dfd4;
}

.timetable__item.active:before {
  background: url("../img/dot-and-circle-blue.svg") center center no-repeat;
  background-size: 100%;
}

.timetable__item.active:after {
  background-color: #1eb0cd;
}

.timetable__item:last-child:after {
  display: none;
}

.timetable__item:last-child {
  margin-bottom: 0;
}

.timetable__item__title {
  margin-bottom: 20px;
  font-size: 32px;
  color: #1f282c;
  line-height: 1.25;
  font-family: "MuseoSansCyrlBold";
}

.timetable__item__footer {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.timetable__item__info {
  padding-top: 15px;
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-right: 36px;
}

.timetable__item__date {
  font-size: 24px;
  line-height: 1.33;
  font-family: "MuseoSansCyrlBold";
  margin-right: 32px;
  position: relative;
}

.timetable__item__date.closed {
  color: #cabca8;
}

.timetable__item__date.opened {
  color: #1f282c;
  font-family: "MuseoSansCyrl";
  padding-left: 40px;
  font-size: 18px;
  line-height: 30px;
}

.timetable__item__date.opened:before {
  content: '';
  display: block;
  width: 28px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/time.svg") center center no-repeat;
}

.timetable__item__place, .timetable__item__type {
  font-family: "MuseoSansCyrl";
  color: #1eb0cd;
  text-decoration: none;
  line-height: 1.33;
  font-size: 20px;
  position: relative;
}

.timetable__item__place {
  padding-left: 32px;
  margin-right: 32px;
}

.timetable__item__place:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 30px;
  background: url("../img/geo.svg") center center no-repeat;
  background-size: 100%;
}

.timetable__item__type {
  padding-left: 36px;
  font-size: 24px;
}

.timetable__item__type:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.timetable__item__type.workshopwebinar:before {
  background-color: #f2c400;
}

.timetable__item__type.meetupregion:before {
  background-color: #cb74f1;
}
.timetable__item__type.meetup:before {
  background-color: #FE4A49;
}

.timetable__item__type.callday:before {
  background-color: #1eb0cd;
}
.timetable__item__type.roundtable:before {
  background-color: #4B7EFF;
}
.timetable__item__type.lecturehall:before {
  background-color: #4cdd86;
}
.timetable__item__type.partners:before {
  background-color: #5e5bff;
}

.timetable__item__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "MuseoSansCyrlBold";
  padding: 18px 36px;
  width: 100%;
  max-width: 232px;
  max-height: 60px;
  font-size: 24px;
  color: #1f282c;
  background-color: #f2c400;
  transition: .3s;
  text-decoration: none;
}

.timetable__item__link:hover {
  background-color: #ffd800;
}

.timetable__time {
  min-height: 30px;
  margin-top: 28px;
  font-family: "MuseoSansCyrlBold";
  font-size: 14px;
  color: #1f282c;
  padding-left: 40px;
  display: none;
  position: relative;
}

.timetable__time:before {
  content: '';
  display: block;
  width: 28px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/time-black.svg") center center no-repeat;
}

@media screen and (max-width: 1200px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media only screen and (max-width: 970px) {
  body {
    padding-top: 45px;
  }
  body:after {
    display: none;
  }
  body.hide, html.hide {
    position: fixed;
  }
}

@media only screen and (max-width: 960px) {
  .timetable {
    padding: 24px 0;
  }
  .timetable__title {
    font-size: 24px;
  }
  .timetable__item {
    border: none;
    padding: 0;
    margin-top: 24px;
  }
  .timetable__item:before {
    top: -4px;
  }
  .timetable__item:after {
    top: 24px;
    height: calc(100%);
  }
  .timetable__item__title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .timetable__item__date {
    font-size: 14px;
  }
  .timetable__item__date.opened {
    padding-left: 26px;
  }
  .timetable__item__date.opened:before {
    width: 16px;
    height: 16px;
    background-size: 100%;
  }
  .timetable__item__place, .timetable__item__type {
    font-size: 14px;
  }
  .timetable__item__place {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 26px;
  }
  .timetable__item__place:before {
    width: 16px;
    height: 24px;
    top: -4px;
  }
  .timetable__item__type {
    padding-left: 26px;
  }
  .timetable__item__type:before {
    width: 16px;
    height: 16px;
    top: 0;
  }
  .timetable__item__link {
    max-height: 32px;
    font-size: 14px;
    max-width: 218px;
    padding: 8px 0;
  }
}

@media only screen and (max-width: 768px) {
  .timetable__item.inactive .timetable__item__place {
    display: none;
  }
  .timetable__item__title {
    margin-bottom: 0;
  }
  .timetable__item__footer {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
  }
  .timetable__item__info {
    margin-right: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .timetable__item__date {
    width: auto;
    margin-right: 16px;
  }
  .timetable__item__place {
    width: 100%;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    margin-top: 16px;
    margin-right: 0;
  }
  .timetable__item__type {
    width: auto;
    margin-right: 0;
  }
  .timetable__item__link {
    margin-top: 16px;
  }
  .timetable__time {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}