:root {
    --primary-color: #17c671;
    --secondary-color: #dc3545;
    --success-color: #28a745;
}

[v-cloak] > * { display:none }
[v-cloak]::before { content: "loading…" }
.text-transform-none {
    text-transform: none !important;
}
.form-control:focus, 
.form-control.active{
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
    transition: none;
}
.pointer {
    cursor: pointer;
}
.stretch-to-fill {
    flex-grow: 2;
}
.d-flex-column {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: center;
}
.d-flex-spaced {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.d-flex-centered {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.font-size-12 {
    font-size: 12px;
}
.font-size-13 {
    font-size: 13px;
}

.steps {
    width: 100%;
    position: relative;
    min-height: 70px;
    display: flex;
    justify-content: space-between;
}
.steps:before {
    position: absolute;
    top:40%;
    left:0;
    content: " ";
    width: 100%;
    height:5px;
    background-color: #fff;
    border:1px solid #ddd;
    transform: translateY(-40%);
}
.steps .step {
    position: relative;
    min-height: 70px;
}
.steps .step .step-icon {
    width: 40px;
    height:40px;
    border:1px solid #ddd;
    border-radius: 50%;
    padding-top:5px;
    color: #ddd;
    position: absolute;
    top:40%;
    left:50%;
    transform: translate(-40%, -50%);
    background-color: #fff;
}
.steps .step .step-icon i {
    font-size: 1.2rem;
    margin-top: 4px;
}
.steps .step .step-icon.active {
    background-color: var(--primary-color);
    color: #fff;
}

.steps .step .step-title {
    margin-top:70px;
}


.on-off-btn .btn-primary{
    background: #46a046;
    border: solid 1px #46a046;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
}
.on-off-btn .toggle.btn{
    min-width:55px;
    min-height: 23px;
}
.on-off-btn .btn{
    padding:4px 6px!important;
    text-transform: uppercase;
}

.on-off-btn  .btn-default{
    background: #e7e7e7;
    -webkit-border-radius:50px;
    -moz-border-radius:50px;
    border-radius:50px;
}
.on-off-btn .btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}
.on-off-btn .btn-primary .toggle-handle {
    background: #fff none repeat scroll 0 0;
    border-radius: 100%;
    height: 15px;
    margin:3px 28px 0 0;
    width: 15px;
}
.on-off-btn .btn-default .toggle-handle {
    margin:3px 0 0 28px;
    background: #fff none repeat scroll 0 0;
    border-radius: 100%;
    height: 15px;
    padding: 0;
    width: 15px;
}
.on-off-btn .toggle-on.btn {
    text-align: left;
}
.on-off-btn .toggle-off.btn {
    text-align: right;
    padding-right:0.5rem !important;
}
.on-off-btn .toggle-off{
    top:1px;
    padding-right: 8px!important;
}
.on-off-btn label{
    font-size: 11px;
}

.card-header:first-child {
    border-radius: 0 !important;
}

.card {
    background-color: #fff;
    border-radius: 0 !important;
    box-shadow: none !important;
    border:1px solid #e9ecef !important;
}
.login-card {
    border: none !important;
}
.login-card .title {
    font-weight: bold;
    color: #17c671!important;
    margin-bottom: 0;
}
.login-card .sub-title {
    color: #b1aeae;
    font-size: 13px;
    margin-bottom: 0;
}
.login-card .form-group {
    background-color: #f2f2f2;
    padding:5px 10px;
    border-radius: 5px;
}
.login-card .form-group label {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: #b1aeae;
}
.login-card .form-group input {
    padding:0;
    font-weight: bold;
    background-color: transparent !important;
    border:none !important;
}

.login-card .custom-select.is-invalid, 
.login-card .form-control.is-invalid, 
.login-card .was-validated 
.login-card .custom-select:invalid, 
.login-card .was-validated 
.login-card .form-control:invalid {
    box-shadow: none !important;
}

.login-card .btn.btn-pill {
     border-radius: 5px; 
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
    .shards-app-promo-page--1 .welcome {
        height: 100vh !important;
    }

}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
    .shards-app-promo-page--1 .welcome {
        height: 100vh !important;
    }

}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
    .shards-app-promo-page--1 .welcome {
        height: 100vh !important;
    }

}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .shards-app-promo-page--1 .welcome {
        height: 100vh !important;
    }

}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
    .shards-app-promo-page--1 .welcome {
        height: 100vh !important;
    }

}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {

    .steps{
        display: none !important;
    }
    .shards-app-promo-page--1 .welcome {
        height: 100vh !important;
    }
    .mob-d-none {
        display: none !important;
    }
}