﻿.bt-init {
    border: 1px solid #ffffff;
    border-radius: 5px;
    background: #19b9da;
    padding: 2px 16px;
    color: #fff;
}
.bt-back {
    border: 1px solid #ffffff;
    border-radius: 5px;
    background: #464e50;
    padding: 2px 16px 5px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.swipe-container {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;
    margin-top:10px !important;
}


.swipe-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.swipe-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

    .swipe-label .swipe-inner {
        position: absolute;
        content: "";
        height: 17px;
        width: 17px;
        left: 1px;
        bottom: 0px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

.swipe-checkbox:checked + .swipe-label {
    background-color: #2196F3;
}

    .swipe-checkbox:checked + .swipe-label .swipe-inner {
        -webkit-transform: translateX(26px);
        -ms-transform: translateX(26px);
        transform: translateX(26px);
    }

    /*Processor*/
.progress-container {
    width: 100%;
    height: 20px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
}

.progress-bar {
    height: 100%;
    background-color: #4CAF50;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

.progress-text {
    margin-left: 10px;
    font-weight: bold;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}
.btn-primary {
    background-color: #f27225 !important;
    border-color: #f27225 !important;
}