﻿.flex-wrapper {
    display: flex;
    flex-flow: row nowrap;
}

.single-chart {
    width: 33%;
    justify-content: space-around;
}

.circular-chart {
    display: block;
    margin: 10px auto;
    max-width: 80%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 1s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.circular-chart.orange .circle {
    stroke: #ff9f00;
}

.circular-chart.green .circle {
    stroke: #4CC790;
}

.circular-chart.blue .circle {
    stroke: #3c9ee5;
}

.percentage {
    fill: #666;
    font-family: sans-serif;
    font-size: 0.5em;
    text-anchor: middle;
}

.search-input-container {
    position: relative;
    top: 10%;
    padding: 0 18%;
}

.search-input-control input {
    width: 94%;
    height: 80px;
    padding-right: 43px;
    border-left: none;
    border-right: none;
    border-top: none;
    border-radius: 0;
    border-bottom: 3px solid #2b2d3a;
    background: transparent;
    font-size: 4rem;
    font-weight: 200;
    font-family: 'Alegreya Sans SC', sans-serif;
    text-transform: uppercase;
    padding-bottom: 10px;
    outline: none;
}

.autocomplete-suggestions {
    margin-top: 20px;
    background: #FFF;
    overflow: auto;
    width: 100%;
}

.autocomplete-suggestion {
    font-size: 36px;
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
    margin: 8px;
    background-color: white;
    cursor: pointer;
}

@media (max-width: 959px) {
    .autocomplete-suggestion {
        font-size: 18px;
        padding: 2px 5px;
        white-space: nowrap;
        overflow: hidden;
        margin: 8px;
        background-color: white;
        cursor: pointer;
    }
}

.autocomplete-suggestion:before {
    content: "> ";
    font-weight: bold;
}

.search-input-control .search-help {
    display: block;
    color: #1b245f;
    font-size: 1.1rem;
    padding-top: 20px;
}

[v-cloak] {
    display: none;
}

.header .logo img {
    width: 30px;
    margin-top: -6px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #13588f;
}

.side-nav .logo i {
    color: #13588f;
}

.side-nav > ul > li > a {
    color: #13588f;
}

.header-widget .header-widget-icon {
    color: #13588f;
    font-size:12px;
}

    .header-widget .header-widget-icon i {
        font-size:28px;
    }

.uk-form-label {
    color: #13588f;
}

.course-video-list li > a {
    display: block;
    padding: 14px 55px 14px 60px;
    line-height: 26px;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: normal;
}

.video-responsive {
    height: auto;
}

.dropdown-notifications-content .notification-image {
    min-height: 62px;
}

.SpinnerContainer {
    position: fixed;
    z-index: 99999999;
    top: 50%;
    left: 50%;
}

.book {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
    margin: 0 auto;
    border: 5px solid lightgray;
    width: 100px;
    height: 60px;
    background: RGBA(255,255,255,0.5);
}

.book__page {
    position: absolute;
    left: 50%;
    top: -5px;
    margin: 0 auto;
    border-top: 5px solid lightgray;
    border-bottom: 5px solid lightgray;
    border-right: 5px solid lightgray;
    background: RGBA(255,255,255,0.5);
    width: 50px;
    height: 60px;
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-animation: flip 1.2s infinite linear;
    animation: flip 1.2s infinite linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

    .book__page:nth-child(1) {
        z-index: -1;
        -webkit-animation-delay: 1.4s;
        animation-delay: 1.4s;
    }

    .book__page:nth-child(2) {
        z-index: -2;
        -webkit-animation-delay: 2.8s;
        animation-delay: 2.8s;
    }

    .book__page:nth-child(3) {
        z-index: -3;
        -webkit-animation-delay: 4.2s;
        animation-delay: 4.2s;
    }

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(0deg);
    }

    20% {
        background: #e6e6e6;
    }

    29.9% {
        background: #e6e6e6;
    }

    30% {
        -webkit-transform: perspective(200px) rotateY(-90deg);
        transform: perspective(200px) rotateY(-90deg);
        background: RGBA(255,255,255,0.5);
    }

    54.999% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    60% {
        -webkit-transform: perspective(200px) rotateY(-180deg);
        transform: perspective(200px) rotateY(-180deg);
        background: RGBA(255,255,255,0.5);
    }

    100% {
        -webkit-transform: perspective(200px) rotateY(-180deg);
        transform: perspective(200px) rotateY(-180deg);
        background: RGBA(255,255,255,0.5);
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(600px) rotateY(0deg);
        transform: perspective(600px) rotateY(0deg);
    }

    20% {
        background: #e6e6e6;
    }

    29.9% {
        background: #e6e6e6;
    }

    30% {
        -webkit-transform: perspective(200px) rotateY(-90deg);
        transform: perspective(200px) rotateY(-90deg);
        background: RGBA(255,255,255,0.5);
    }

    54.999% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    60% {
        -webkit-transform: perspective(200px) rotateY(-180deg);
        transform: perspective(200px) rotateY(-180deg);
        background: RGBA(255,255,255,0.5);
    }

    100% {
        -webkit-transform: perspective(200px) rotateY(-180deg);
        transform: perspective(200px) rotateY(-180deg);
        background: RGBA(255,255,255,0.5);
    }
}

.steps-progressbar {
    margin: 0;
    padding: 0;
    counter-reset: step;
}

    .steps-progressbar li {
        list-style-type: none;
        width: 20%;
        float: left;
        font-size: 12px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        color: #7d7d7d;
    }

        .steps-progressbar li:before {
            width: 30px;
            height: 30px;
            content: counter(step);
            counter-increment: step;
            line-height: 30px;
            border: 2px solid #7d7d7d;
            display: block;
            text-align: center;
            margin: 0 auto 10px auto;
            border-radius: 50%;
            background-color: white;
        }

        .steps-progressbar li:after {
            width: 100%;
            height: 2px;
            content: '';
            position: absolute;
            background-color: #7d7d7d;
            top: 15px;
            left: -50%;
            z-index: -1;
        }

        .steps-progressbar li:first-child:after {
            content: none;
        }

        .steps-progressbar li.active {
            color: #3659a2;
        }

            .steps-progressbar li.active:before {
                border-color: #3659a2;
            }

            .steps-progressbar li.active + li:after {
                background-color: #3659a2;
            }

.box {
    position: relative;
    width: 100%;
    max-width: 800px;
    padding: 5px;
    border: 2px solid #b78846;
}

    .box:before, .box:after {
        content: "•";
        position: absolute;
        width: 14px;
        height: 14px;
        font-size: 14px;
        color: #b78846;
        border: 2px solid #b78846;
        line-height: 12px;
        top: 5px;
        text-align: center;
    }

    .box:before {
        left: 5px;
    }

    .box:after {
        right: 5px;
    }

    .box .box-inner {
        position: relative;
        border: 2px solid #b78846;
        padding: 40px;
        text-align: center;
    }

        .box .box-inner:before, .box .box-inner:after {
            content: "•";
            position: absolute;
            width: 14px;
            height: 14px;
            font-size: 14px;
            color: #b78846;
            border: 2px solid #b78846;
            line-height: 12px;
            bottom: -2px;
            text-align: center;
        }

        .box .box-inner:before {
            left: -2px;
        }

        .box .box-inner:after {
            right: -2px;
        }

.course-thumbnail {
    text-align: center;
}

small {
    font-size: 12px;
    color: gray;
}

.course-resume-wrapper {
    margin-top: 0px;
}
/*.course-path-card-contents {
    min-height: 250px;
}*/
.chosen-container-single .chosen-single {
    border: 1px solid #e2e5ec;
    height: 46px;
    line-height: 45px;
    font-size: 14px;
    color: #808080;
    border-radius: 4px;
    background: none;
    box-shadow: none;
    background-color: white;
}

    .chosen-container-single .chosen-single div b {
        margin-top: 10px;
    }

.chosen-container-multi .chosen-choices {
    border: 1px solid #e2e5ec;
    min-height: 46px;
    font-size: 14px;
    color: #808080;
    border-radius: 4px;
    background: none;
    box-shadow: none;
}

    .chosen-container-multi .chosen-choices li.search-field input[type=text] {
        margin-top: 10px;
    }

.skill-card.bookingSlot {
    border: 1px solid #545e6f;
    margin-bottom: 8px;
    cursor: pointer;
}

    .skill-card.bookingSlot:hover {
        background-color: #e6e6e6;
        transform: none;
    }

    .skill-card.bookingSlot .fa {
        margin-right: 10px;
    }

.form-builder-item {
    page-break-inside: avoid;
    page-break-before: auto;
    page-break-after: auto;
}

.uk-form-icon.key {
    position: absolute;
    top: 1px;
    bottom: 17px;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #999;
    height: 100;
    background: white;
    border: none;
    cursor: pointer;
}

.course-video-list li > section {
    display: block;
    padding: 14px 55px 14px 60px;
    line-height: 26px;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    color: #afafaf;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .course-video-list li > section > span {
        font-size: 11px;
        font-weight: 300;
        color: #989898;
        position: absolute;
        right: 12px;
    }

    .course-video-list li > section:before {
        transition: transform 0.4s cubic-bezier(.8, -.41, .19, 2.5);
        font-family: "Feather-Icons";
        position: absolute;
        left: 20px;
        text-align: center;
        width: 25px;
        height: 25px;
        top: 31%;
        line-height: 25px;
        content: "\e987";
        background: #474a58;
        background: #efefef;
        color: darkgrey;
        border-radius: 100%;
        z-index: 2;
    }

    .course-video-list li > section:after {
        content: '';
        width: 2px;
        height: 100%;
        top: -18px;
        z-index: 1;
        left: 33px;
        background: #e3e6ec00;
        position: absolute;
        transition: color 150ms ease-in, top 100ms ease-out;
    }

.highlight-watched section:before {
    content: "\e9af" !important;
}

.highlight-watched .watched section,
.highlight-watched .watched.uk-active section {
    background: #e5f0ff !important;
    color: #3e416d !important;
}

    .highlight-watched .watched section:before {
        background: #62d76b !important;
        content: "\e92b" !important;
        color: white !important;
    }

    .highlight-watched .watched.uk-active section:before {
        background: #62d76b !important;
        content: "\e9a5" !important;
        color: white !important;
        /* box-shadow: 0 0 0 4px #4ece58 !important; */
    }

    .highlight-watched .watched section:after {
        background: #62d76b !important;
    }

.blog-post-thumbnail-inner img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.course-content-inner {
    max-width: 1024px;
    height: calc(99vh - 90px) !important;
    margin: auto;
    justify-content: center;
    align-items: start;
    display: flex;
    transition: 0.3s;
    position: relative;
}

.cke_maximized {
    left: 72px !important;
}

.header-widget .header-widget-icon span {
    position: absolute !important;
    display: block;
    margin-left: 10px;
    font-weight: 700;
    height: 16px;
    width: 16px;
    line-height: 15px;
    text-align: center;
    color: #fff;
    font-size: 10px;
    background-color: #ec5252;
    border-radius: 50%;
    padding: 0;
    text-align: center;
    right: 10px;
    top: 8px;
}
    .header-widget .header-widget-icon span.zero {
        background-color: #8492a6;
    }

.uk-notification-message {
    border: solid 1px lightgrey;
    border-radius: 4px;
}
.uk-modal-body {
    overflow: auto;
}
.header .logo {
    background-image: url('data:image/png;base64,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');
    height: 30px;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: left;
}
    .header .logo span{
        margin-left: 45px;
    }

.course-video-list .curr-select.disabled{
    color:lightgray;
    cursor:not-allowed;
}