.window-homeworks-started-view {
  /* width: 520px; */
  min-height: 100px;
  min-width: 300px;
  height: min-content;
  max-height: 100vh;
  width: 100%;
  max-width: 500px;
  top:0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  background-color: white;
  border: 3px solid rgb(41, 125, 195);
  border-radius: 25px;
  box-shadow: 1px 4px 7px 1px rgba(0, 0, 0, 0.1), 0 0 0 3px #3299f0;
  z-index: 9999;
}

.window-homeworks-started-view legend {
  margin-bottom: 14px;
}

.window-homeworks-started-view legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

.window-homeworks-started-view .window-content{
   overflow: hidden;
   height: auto;
   /* max-height: 520px; */
}

.started-homeworks-items-list{
  overflow: auto;
  /* overflow-y: -webkit-paged-x; */
  height: 100%;
  max-height: 90vh;
  padding: 0px 0 40px 0;
  text-align: center;
}

.homework-started-item-view {
    position: relative;
    padding: 10px 10px 10px 60px;
    margin: 0px 0 10px 0;
}

.homework-started-item-view::before {
    position: absolute;
    display: block;
    height: 75px;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto;
    content:"\f040";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 500%;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: scale(-1, 1);
    -moz-osx-font-smoothing: grayscale;
}


.homework-name {
	min-width:200px;
	font-weight: bold;
	font-size: larger;
}

.homework-started-item-view .homework-name {
	font-size: x-large;
}

.open-homework{
  cursor: pointer;
  margin: 0;
  padding: 5px;
  background-color: #fec517;
  border: 2px solid #fec414;
  border-radius: 10px;
  color: #FFF;
  transform: scale(1);
  font-size: 120%;
}

.homework-started-item-view a:hover,
.homework-started-item-view a:focus {
    color: #ffc30f;
    background-color: #fff;
    text-decoration: none;
}

.pulse-3{
  animation-name: pulse-3;
  -webkit-animation-name: pulse-3;  

  animation-duration: 2s; 
  -webkit-animation-duration: 2s;

  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse-3 {
  0% {
    transform: scale(0.8);
    opacity: 0.8;   
  }
  50% {
    transform: scale(1);
    opacity: 1; 
  } 
  100% {
    transform: scale(0.8);
    opacity: 0.8; 
  }     
}

@-webkit-keyframes pulse-3 {
  0% {
    -webkit-transform: scale(0.8);
    opacity: 0.8;   
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1; 
  } 
  100% {
    -webkit-transform: scale(0.8);
    opacity: 0.8; 
  }     
}


.homework-started-item-view span {
    font-weight: bold;
}

.homework-end-date {
    padding-bottom: 13px;
}

li.homework-started-item-view {
    background: rgba(254, 197, 23, 0.08);
}

li.homework-started-item-view:nth-child(odd) {
    background: rgba(49, 151, 236, 0.07);
}
