| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 | 
							
- .panel-aside {
 
- 	background-color: mc('blue-grey', '800');
 
- 	border: 1px solid mc('blue-grey', '800');
 
- 	border-bottom-left-radius: 8px;
 
- 	padding: 20px;
 
- 	color: mc('blue-grey','100');
 
- 	label {
 
- 		color: #FFF;
 
- 	}
 
- }
 
- .panel {
 
-   background-color: #FFF;
 
-   box-shadow: 0 0 12px 0 rgba(mc('grey','800'), .10), 1px 6px 8px 0 rgba(mc('grey','800'), .10);
 
-   padding: 0 0 1px 0;
 
-   border-radius: 4px;
 
-   .panel-title {
 
-     border-bottom: 1px solid darken($color-bg, 5%);
 
-     padding: 0 15px;
 
-     color: $color-text;
 
-     font-size: 16px;
 
-     font-weight: 500;
 
-     display: flex;
 
-     align-items: center;
 
-     justify-content: space-between;
 
-     height: 40px;
 
-     &.is-featured {
 
-       border-top-left-radius: 4px;
 
-       border-top-right-radius: 4px;
 
-       background-color: mc('indigo', '300');
 
-       border-bottom-color: mc('indigo', '400');
 
-       color: #FFF;
 
-       > i::before {
 
-         @include spinner(#FFF, 0.4s, 18px);
 
-       }
 
-     }
 
-     > span {
 
-       font-weight: 500;
 
-     }
 
-     > i {
 
-       display: flex;
 
-       width: 18px;
 
-       align-items: center;
 
-       &::before {
 
-         content: " ";
 
-         @include spinner(mc($primary,'500'), 0.4s, 18px);
 
-       }
 
-     }
 
-   }
 
-   .panel-content {
 
-     padding: 0 15px;
 
-     &.is-text {
 
-       padding: 25px;
 
-       p + p, p + h3 {
 
-         margin-top: 25px;
 
-       }
 
-       h3 {
 
-         margin-bottom: 15px;
 
-         font-weight: 500;
 
-       }
 
-       ul li {
 
-         color: mc('grey', '700');
 
-       }
 
-       strong {
 
-         font-weight: 500;
 
-         color: mc($primary,'800');
 
-       }
 
-     }
 
-   }
 
-   .panel-footer {
 
-     display: flex;
 
-     align-items: center;
 
-     justify-content: flex-end;
 
-     height: 50px;
 
-     background-color: $color-bg;
 
-     padding: 0 15px;
 
-     margin: 0 1px;
 
-     border-bottom-left-radius: 4px;
 
-     border-bottom-right-radius: 4px;
 
-     position: relative;
 
-     .button + .button {
 
-       margin-left: 10px;
 
-     }
 
-   }
 
-   + .panel {
 
-     margin-top: 25px;
 
-   }
 
- }
 
 
  |