img {
    max-width:100%;
}

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

p {
    line-height: 1.6rem;
    color: #4e4e4e;
    font-size: 14px;
}

strong {
    color:#006d38;
    padding-left: 5px;
    padding-right: 5px;
}

h2 {
    color:#006d38;
    font-weight: bold;
}

.container {
    max-width:960px;
    margin:auto;
}

.div-progress-bar {
    position:relative;
    width:100%;
    height:10px;
    border-radius:99px;
    display: block;
    background-color: #E3E3E3;  
}

.progress-bar-checked {
    position: absolute;
    top:0;
    left:0;
    border-radius:99px;
    display:block;
    width:0;
    height:100%;
    background-color:#006d38;
    transition:.5s;
}

.progress-bar-icon {
    width: 22px;
    height:22px;
    border-radius:99px;
    border:2px solid #006d38;
    background:#fff;
    display: block;
    position:absolute;
    top:-7px;
    right:-11px;
    z-index: 9;
}

.button-group .btn {
    border-radius:0;
}

.button-group .btn:first-child {
    border-radius:99px 0 0 99px;
    padding-right:20px;
}

.button-group .btn:last-child {
    border-radius:0 99px 99px 0;
    padding-left:20px;
}

.btn {
    border-radius: 0;
    padding:10px 30px;
}

.btn-primary {
    background:#006d38;
    border-color:#006d38;
}

.btn-primary:hover {
    background:#000000;
    border-color:#000000;
}

.btn-secondary {
    background:#fff;
    border-color:#006d38;
    color:#006d38;
}

.btn-secondary:hover {
    color:#fff;
    background:#006d38;
    border-color:#006d38;
}

.div-progress>.progress-label>li {
    opacity:.5;
    transition:.5s;
    font-size:12px;
    font-weight:600;
}

.div-progress>.progress-label>li.active {
    opacity:1;
}

.measurer-area {
    /* max-width:400px; */
    height:400px;
    display:flex;
    align-items: flex-start;
    justify-content: center;
    background:#f1f1f1;
    overflow:hidden;
    margin:auto;
    margin-bottom:2rem;
    position: relative;
    padding-top:1rem;
}

.measurer-area-ring {
    height:200px;
    background:rgba(255,255,255,0);
    padding:1px;
}

.measurer-area-ring-border {
    height:100%;
    width:100%;
    border-left:2px dashed #000;
    border-bottom :2px dashed #000;
}

.measurer-card {
    display: block;
}

.measurer-card span {
    background-color:#03A461;
    box-shadow: 0 0 0 2px #0511F2;
    display: block;
    height:100%;
    width:100%;
    border-radius:12px;
    font-size:0;
}

.measurer-ring { 
    display:flex;
    background-color:#006d38;
    box-shadow: 0 0 0 2px #0511F2;
    border-radius:999px;
    width:15%;
    position:absolute;
    left:4px;
    bottom:4px;
    align-items: center;
    justify-content: center;
    font-size:2rem;
    color:#fff;
}

.ranges {
    max-width: 400px;
    margin: auto;
}

.ranges label {
    font-weight: bold;
    color:#006d38;
    font-size:12px;
}

.app-measurer-locker {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    width: 45px;
    cursor:pointer;
}

body.locked {
    overflow:hidden;
}

div.locked {
    display: none;
    animation:locking .3s;
}

div.unlocked {
    display: block;
    animation:locking .3s;
}

body.locked .locked {
    display: block;
}

body.locked .unlocked {
    display: none;
}

.locker-tooltip {
    position: absolute;
    width: 233px;
    right: -6px;
    bottom: -7px;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
    border-radius: 99px;
    padding: 10px 60px 10px 20px;
    font-size: 13px;
    z-index: -1;
    transform:translateX(100%);
    transition:.3s;
    opacity:0;
}

.app-measurer-locker:hover .locker-tooltip,
.app-measurer-locker .locker-tooltip.show{transform:translateX(0);opacity:1;}

@keyframes locking {
    0% {transform:scaleY(1) scaleX(1)}
    50% {transform:scaleY(0.9) scaleX(1.1)}
    100% {transform:scaleY(1) scaleX(1)}
}

h1{
    font-size: 3rem;
    font-weight: bold;
    color: #006d38;
}