@keyframes loadingSpin {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
	p {
		font-size: 1.4em;

		//	Tablet
	    .minWidth(768px, {
	    	font-size: 1.6em;
	    });

	    //	Desktop
	    .minWidth(1280px, {
	    	font-size: 1.8em;
	    });
	}
*/
.EditorWidget .c-resources:after {
  content: 'Resources';
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 1.4rem;
  background: #9B9B9B;
  color: white;
  display: block;
  padding: 0.5rem 1rem;
}
.c-resources {
  background-color: #EDE9E4;
  padding: 3rem 1.5rem;
}
@media all and (min-width: 600px) {
  .c-resources {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
@media all and (min-width: 1280px) {
  .c-resources {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.c-resources__title {
  align-items: center;
  display: flex;
  margin-bottom: 1rem;
}
.c-resources__title .i-resources {
  font-size: 3rem;
  margin-right: 0.8rem;
}
.c-resources__title__text {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .c-resources__title__text {
    font-size: 2rem;
  }
}
@media all and (min-width: 1280px) {
  .c-resources__title__text {
    font-size: 2.4rem;
  }
}
.c-resources__list {
  list-style: none;
  margin: 0 -1.5rem;
}
@media all and (min-width: 768px) {
  .c-resources__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.c-resources__item {
  position: relative;
  padding: 0 1.5rem;
  padding-left: 3.5rem;
  margin-bottom: 0.5rem;
}
@media all and (min-width: 768px) {
  .c-resources__item {
    flex-basis: 50%;
  }
}
@media all and (min-width: 1280px) {
  .c-resources__item {
    flex-basis: 33.33%;
  }
}
.c-resources__item .i-arrow-bullet {
  fill: #F0634F;
  position: absolute;
  left: 1.5rem;
  top: 0.5rem;
  font-size: 1rem;
}
@media all and (min-width: 768px) {
  .c-resources__item .i-arrow-bullet {
    top: 0.8rem;
  }
}
@media all and (max-width: 767px) {
  .c-resources__item + .c-resources__item {
    margin-top: 1.5rem;
  }
}
.c-resources__item__link {
  font-size: 1.5rem;
  font-weight: 500;
  color: #252424;
  display: block;
  font-weight: 400;
}
@media all and (min-width: 768px) {
  .c-resources__item__link {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 1280px) {
  .c-resources__item__link {
    font-size: 1.8rem;
  }
}
.c-resources__item__link:active {
  color: #F0634F;
}
.c-resources__item__link:hover,
.c-resources__item__link:focus {
  color: #F0634F;
}
.c-resources__item__file-type {
  font-size: 1.2rem;
  color: #898989;
}
