/*
 * mywidgets
 *
 * Special styles for displaying the icons and their classes in the docs.
 */

.bs-mywidgets {
    margin: 0 -10px 20px;
    overflow: hidden;
}
.bs-mywidgets-list {
    padding-left: 0;
    list-style: none;
}
.bs-mywidgets li {
    float: left;
    width: 25%;
    height: 115px;
    padding: 10px;
    font-size: 10px;
    line-height: 1.4;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #fff;
}
.bs-mywidgets .mywidget {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 24px;
}
.bs-mywidgets .mywidget-class {
    display: block;
    text-align: center;
    word-wrap: break-word; /* Help out IE10+ with class names */
}
.bs-mywidgets li:hover {
    color: #fff;
    background-color: #563d7c;
}

@media (min-width: 768px) {
    .bs-mywidgets {
        margin-right: 0;
        margin-left: 0;
    }
    .bs-mywidgets li {
        width: 12.5%;
        font-size: 12px;
    }
}

.myLoader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #0aa89e;
    border-bottom: 16px solid #0aa89e;
    width: 80px;
    height: 80px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.myLoaderSmall {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #0aa89e;
    border-bottom: 8px solid #0aa89e;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.mySlides {
    display: none;
}

/* Slideshow container */
/*.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}*/

/* Number text (1/3 etc) */

/* The dots/bullets/indicators */
.dot {
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.activeSlide {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 5s;
    animation-name: fade;
    animation-duration: 5s;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.9;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.9;
    }
    to {
        opacity: 1;
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px;
    }
}
.session-expiring-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    z-index: 99999;
    display: none;
}

.badge-custom {
    border-radius: 2px !important;
    font-style: normal !important;
    transform: skew(-13deg) rotate(0.001deg) !important;
    outline: none !important;
    border: none !important;
}