﻿/*=============================================================
    Authour URI: www.binarytheme.com
    License: Commons Attribution 3.0

    http://creativecommons.org/licenses/by/3.0/

    100% To use For Personal And Commercial Use.
    IN EXCHANGE JUST GIVE US CREDITS AND TELL YOUR FRIENDS ABOUT US
   
    ========================================================  */
    a:hover {
        color: #333;
        text-decoration: none;
    }
    a {
        color: #C6DD12;
        text-decoration: none;
    }
#tiempo img {
    max-width: 100%;
}

.page-item.active .page-link {
    background-color: lightgrey !important;
    border: 1px solid #314191;
}
.page-link {
    color: #314191 !important;
}

.nav.nav-treeview {
    margin-left: 30px;
}
label {
    color: #333;
    font-weight: lighter;
    font-family: unset;
}
       #lock {
            width: 100%;
            height: calc(100% - 15vh);
            min-height: 120px;
        }
		
	svg.patternlock g.lock-lines line {
    stroke-width: 1.5;
    stroke: black;
    opacity: 0.5;
}

svg.patternlock g.lock-dots circle {
    stroke: transparent;
    fill: black;
    stroke-width: 13.5;
}

svg.patternlock g.lock-actives circle {
    fill: black;
    opacity: .2;
    animation: lock-activate-dot .15s 0s ease 1;
    transform-origin: center;
}

svg.patternlock g.lock-lines line {
    stroke-width: 1.5;
    stroke-linecap: round;
}

svg.patternlock.success g.lock-actives circle {
    fill: green;
}

svg.patternlock.error g.lock-actives circle {
    fill: red;
}

@keyframes lock-activate-dot {
    0% {
        transform: scale(0);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.0);
    }
}

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

.progress {
    height: 25px;
    width: 100%;
    border: 1px solid #000;
    border-radius: 2px;
    background-color: #e6f3fa;
    margin-bottom: 15px;
}
 
.progress-bar {
    height: 100%;
    background: #428bca;
    display: flex;
    align-items: center;
    transition: width 0.25s;
    border-radius: 2px;
}
 
.progress-bar-text {
    margin-left: 10px;
    font-weight: bold;
    color: #000;
}