* {
  outline: none;
  box-sizing: border-box;
}
@font-face {
    font-family: Melody;
    src:url(fonts/BLMelodyMono-Bold.otf);
}
@font-face {
    font-family: MelodyBold;
    src:url(fonts/BLMelody-Bold.otf);
}
@font-face {
    font-family: MelodyRegular;
    src:url(fonts/BLMelody-Regular.otf);
}
@font-face {
    font-family: MelodySemibold;
    src:url(fonts/BLMelodyMono-SemiBold.otf);
}
@font-face {
    font-family: MelodyLight;
    src:url(fonts/BLMelody-Light.otf);
}
@font-face {
    font-family: MelodyMedium;
    src:url(fonts/BLMelody-Medium.otf);
}

html{
  height: 100%;
}
body{

}

/*body {
  height: 100%;
  padding: 2rem;
  background-color: #f6f5f1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", sans-serif;
  background-image: linear-gradient(45deg, #f86a6c 0%, #fd588a 100%);
}*/
@media screen and (min-width: 55em) {
  /*body {
    height: 100vh;
    margin: 0;
  }*/
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
}

p, span, ul, li {
  color: #fff;
  font-weight: 100;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 13px;
}
#allprogtxt{
  margin-top: 100px;
}
#allprogtxt h1{
  text-align: center;
  margin-bottom: 20PX;
  color: #EFC130;
  font-family: MelodyBold;
  background-color:#122B7C ;
 padding-top: 18px;
 padding-bottom: 18px;
}

#calcon{
margin-bottom: 20PX;
}

.calendar-contain {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: MelodyRegular;
  left: 0;
  right: 0;
  border-radius: 5px;
  width: 100%;
  overflow: hidden;
  max-width: 1020px;
  min-width: 450px;
  margin: 1rem auto;
  background-color: #f5f7f6;
  box-shadow: 5px 5px 72px rgba(30, 46, 50, 0.2);
  color: #EFC130;
  border: solid 2px #f5f7f6;


}
@media screen and (min-width: 55em) {
  .calendar-contain {
    margin: auto;
    top: 5%;
  }
}

.title-bar {
  position: relative;
  width: 100%;
  display: table;
  text-align: right;
  background: #fff;
  padding: 0.5rem;
  margin-bottom: 0;

}
.title-bar:after {
  display: table;
  clear: both;
}

.title-bar__prev{
  position: relative;
  float: left;
  text-align: left;
  cursor: pointer;
  width: 22px;
  height: 30px;
}
.title-bar__prev:after {
    content: "";
    display: inline;
    position: absolute;
    width: 14px;
    height: 14px;
    right: 0;
    left: 2px;
    top: 7px;
    margin: auto;
    border-top: 1.5px solid black;
    border-right: 1.5px solid black;
    -webkit-transform: rotate(224deg);
    transform: rotate(224deg);
}
.title-bar__next{
  position: relative;
  text-align: right;
  cursor: pointer;
  width: 22px;
  height: 30px;
}
.title-bar__next:after {
    content: "";
    display: inline;
    position: absolute;
    width: 14px;
    height: 14px;
    right: 2px;
    top: 7px;
    margin: auto;
    border-top: 1.5px solid black;
    border-right: 1.5px solid black;
    -webkit-transform: rotate(44deg);
    transform: rotate(44deg);
}
.title-bar__year {
  display: block;
  position: relative;
  float: left;
  font-size: 1rem;
  line-height: 30px;
  width: 47%;
  padding: 0 0.5rem;
  text-align: center;
}
.title-bar__year select{
  padding: 2px 6px;
  font-size: 16px;
}
@media screen and (min-width: 55em) {
  .title-bar__year {
    width: 47%;
  }
}

.title-bar__month {
  position: relative;
  float: left;
  font-size: 1rem;
  line-height: 30px;
  width: 47%;
  padding: 0 0.5rem;
  text-align: center;
}
.title-bar__month select{
  padding: 2px 6px;
  font-size: 16px;
}
@media screen and (min-width: 55em) {
  .title-bar__month {
    width: 47%;
  }
}
.sidebar__list{
 
}
.sidebar__list-item {

}
.sidebar__list-item img{

}
#event_list img{
  width: 100%;
}
.calendar__days {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column wrap;
  -webkit-box-align: stretch;
          align-items: stretch;
  width: 100%;
  float: none;
  min-height: 580px;
  height: 100%;
  font-size: 12px;
  padding: 0.8rem 0 1rem 1rem;
  background: #f5f7f6;
}
@media screen and (min-width: 55em) {
  .calendar__days {
    width: 100%;
    float: right;
  }
}

.calendar__top-bar {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 32px;
          flex: 32px 0 0;
}

.top-bar__days {
  width: 100%;
  padding: 0 5px;
  color: #000000;
  font-weight: 100;
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 1rem;
}

.calendar__week {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1 1 0;
  justify-items: center;
}

.calendar__day {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-flow: column wrap;
   justify-content: space-between;
  width: 100%;
  padding: 1.9rem 0rem 1rem;
  cursor: pointer;
}

.calendar__day.event .calendar__date, .calendar__day.event .calendar__task{
  color:#18306E;
}

.calendar__date {
  color: #040605;
  font-size: 1rem;
  font-weight: 600;
  line-height: 0.7;
}
@media screen and (min-width: 55em) {
  .calendar__date {
    font-size: 25px;
  }
}

.calendar__week .inactive .calendar__date,
.calendar__week .inactive .task-count {
  color: #c6c6c6;
}
.calendar__week .today .calendar__date {
  color: #CD1821;
}

.calendar__task {
  color: #000000;
  display: -webkit-box;
  display: flex;
  font-size: 1rem;
}
@media screen and (min-width: 55em) {
  .calendar__task {
    font-size: 10px;
  }
}


.carousel-control-prev{
  height: 9%;
  margin-top: 45%;
  padding-top: 10px;
 background-color: red;
 border-top-right-radius: 10%;
 border-bottom-right-radius: 10%;
}

.carousel-control-next{
  height: 9%;
  margin-top: 45%;
  padding-top: 10px;
 background-color: red;
  border-top-left-radius: 10%;
 border-bottom-left-radius: 10%;
}


.carousel-control-next:hover{
  background-color: #B80F19;
}
.carousel-control-prev:hover{
  background-color: #B80F19;
}
.carousel-control-prev-icon{
}
#carouselExampleDark{
  box-shadow: 5px 5px 72px rgba(30, 46, 50, 0.2);
  border-radius: 8%;
  margin-top: 20px;
}
#concar{
  border-radius: 8%;

}
.carousel-inner{
  border-radius: 8%;
}
.cartext{
  color: #EFC130;
  text-align: center;
  background: #122B7C;
  font-size: 23px;
  font-family: MelodyBold;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
}
#calendar_div{
}