/*** FONTS ***/
@import url(https://fonts.googleapis.com/css?family=Montserrat:900|Raleway:400,400i,700,700i);
/*** VARIABLES ***/
/* Colors */
/*** EXTEND ***/
/* box-shadow */
ol.gradient-list > li::before, ol.gradient-list > li {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}

/*** STYLE ***/
*,
*:before,
*:after {
  box-sizing: border-box;
}



div.mainli {

  margin-left: auto;

  max-width: 140rem;
 
}

ol.gradient-list {
  counter-reset: gradient-counter;
  list-style: none;
  margin: 0rem 0;
  padding-right: 0rem;
  direction:rtl;
  border-radius: 10px;
  border: 1px solid #73AD21;
  padding: 20px; 
  
}
ol.gradient-list > li {
  background: white;
  border-radius: 1rem 1rem 1rem 1rem;
  border-color: black;
  counter-increment: gradient-counter;
  margin-top: 2rem;
  min-height: 0rem;
  padding: 1rem 1rem 1rem 1rem;
  position: relative;
}
ol.gradient-list > li::before, ol.gradient-list > li::after {
  background: linear-gradient(135deg, #83e4e2 0%, #a2ed56 100%);
  border-radius: 1rem 1rem 1rem 0rem;
  content: "";
  height: 3rem;
  right: -2rem;
  overflow: hidden;
  position: relative;
  top: -2rem;
  width: 4rem;
}
ol.gradient-list > li::before {
  align-items: flex-end;
  content: counter(gradient-counter);
  color: #1d1f20;
  display: flex;
  font: 900 1.5em/1 "Montserrat";
  justify-content: flex-end;
  padding: 0.125em 0.25em;
  z-index: 1;
}
p.roundedborder{
	  border-radius: 10px;
  border: 1px solid #73AD21;
  padding: 20px; 
  width: auto;
  height: auto;  
}
div.roundeddiv{
  border-radius: 10px;
  border: 1px solid #73AD21;
  padding: 20px; 
}
