/* COLOR PICKER */
.color-sample {
    height:  30px;
    width:  30px;
    border-radius: 50%;
    cursor: pointer;
}

.color-sample:hover {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
/* END COLOR PICKER */

/* DATE PICKER */
.color-picker-container {
    position: absolute;
    position: absolute;
    top: 52px;
    right: 0;
    width: 235px;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.color-picker-container .title {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    font-weight: bold;
}
.color-picker-container .color-picker-items {
    margin: 20px;
}

.float--left {
    display: inline-block;
}

.margin--rounded {
   margin-left: 2.5px;
   margin-right: 2.5px;
   margin-bottom: 2.5px;
}

.footer {
    margin: 10px;
    overflow: hidden;
}
/* END DATE PICKER */


/* CARD COURSE */
.container-course-card {
    position: relative;
    width: 100%;
    /* height: 150px; */
    border-radius: 8px;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    background-image: linear-gradient(to bottom right, #3f51b5, #1a237e);
}

.container-course-card .limite-date {
    float: right;
    margin: 10px 20px;
}

.container-course-card .limite-date {
    clear: both;
}

.container-course-card .course-name {
    height: 90px;
    margin: 10px 20px;
    font-weight: bold;
    font-size: 1.1vw;
    line-height: 1.4vw;
    overflow: hidden;
}

.container-course-card .footer-card {
    background: rgba(255, 255, 255, 0.4);
    overflow: hidden;
    height: 100%;
}

.container-course-card .footer-card .subtitle-footer {
    font-weight: bold;
}

.container-course-card .footer-card .value-footer {
    font-size: 1vw;
}

.container-course-card .footer-card .subtitle-footer, .container-course-card .footer-card .value-footer {
    text-align: center;
    margin: 9px 0;
}
/* END CARD COURSE */

.text-center {
    text-align: center;
}

.text-muted {
    color: #aaa8a8;
}

.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.progress-circle {
    width: 100px;
    height: 100px;
    background: none;
    position: relative;
}

.progress-circle::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 20px solid #eee;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-circle>span {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    z-index: 1;
}

.progress-circle .progress-circle-left {
    left: 0;
}

.progress-circle .progress-circle-bar {
    width: 100%;
    height: 100%;
    background: none;
    border-width: 20px;
    border-style: solid;
    position: absolute;
    top: 0;
}

.progress-circle .progress-circle-left .progress-circle-bar {
    left: 100%;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    border-left: 0;
    -webkit-transform-origin: center left;
    transform-origin: center left;
}

.progress-circle .progress-circle-right {
    right: 0;
}

.progress-circle .progress-circle-right .progress-circle-bar {
    left: -100%;
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
    border-right: 0;
    -webkit-transform-origin: center right;
    transform-origin: center right;
}

.progress-circle .progress-circle-value {
    position: absolute;
    top: 0;
    left: 0;
    color: #aaa8a8;
}

.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mt-5 {
    margin-top: 25px;
}

.mt-6 {
    margin-top: 30px;
}

.mt-7 {
    margin-top: 35px;
}

.mt-8 {
    margin-top: 40px;
}

.mt-9 {
    margin-top: 45px;
}

.mt-10 {
    margin-top: 50px;
}

.btn-button:focus {
    color: #fff;
}