.navbar-brand img {
    height: 60px;
}

.form-control {
    height: 45px;
    padding-left: 1rem;
}

.form-box {
    border: 1px solid #ced4da;
    padding: 0.78rem 0.75rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-check-label {
    cursor: pointer;
}

textarea.form-control {
    height: auto;
}

.loading-option {
    position: absolute;
    z-index: 999;
    margin-top: -57px;
    margin-left: 10px;
    background: #ffffff;
    padding-left: 5px;
    padding-right: 30px;
}

.loading-option-right {
    position: absolute;
    right: 20px;
    z-index: 999;
    margin-top: -57px;
    background: #ffffff;
    padding-left: 30px;
    padding-right: 5px;
}

.loading-option img, .loading-option-right img {
    height: 20px;
}

.table-padding td {
    padding: 5px;
    padding-left: 0;
    vertical-align: top;
}

.table-padding .divide {
    width: 21px;
    text-align: center;
}

.paragraph {
    line-height: 25px;
}

.btn.cursor-progress {
    cursor: progress !important;
}

.btn-warning {
    color: #ffffff !important;
    background-color: #f1b707;
    border-color: #ffc107;
}



.steps {
    margin: auto;
    position: relative;
}
.steps-progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
    width: 100%;
    text-align: center;
}
.steps-progressbar li {
    list-style-type: none;
    text-transform: uppercase;
    /* font-size: 9px; */
    width: 20%;
    float: left;
    position: relative;
}
.steps-progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 25px;
    line-height: 20px;
    display: block;
    font-size: 16px;
    background: #dddddd;
    border-radius: 3px;
    margin: 0 auto 5px auto;
    padding: 3px 0;
}
  /*progressbar connectors*/
 .steps-progressbar li:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #dddddd;
    position: absolute;
    left: -50%;
    top: 13px;
    z-index: -1; /*put it behind the numbers*/
  }
 .steps-progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
  }
  /*marking active/completed steps green*/
  /*The number of the step and the connector before it = green*/
 .steps-progressbar li.active:before,
 .steps-progressbar li.active:after {
    background: #ffbc3b;
    color: white;
  }
  .steps .card:not(:first-of-type) {
    display: none;
  }

@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px;
    }

    .steps-progressbar {
        display: none;
    }

    .steps .card {
        margin-bottom: 30px;
    }
    
    .steps .card:not(:first-of-type) {
        display: block;
    }

    .steps .btn-next, .steps .btn-previous{
        display: none;
    }
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type=checkbox], input[type=radio] {
        --active: #ffbc3b;
        --active-inner: #fff;
        --focus: 2px rgba(255, 188, 59, .3);
        --border: #BBC1E1;
        --border-hover: #ffbc3b;
        --background: #fff;
        --disabled: #F6F8FF;
        --disabled-inner: #E1E6F9;
        -webkit-appearance: none;
        -moz-appearance: none;
        height: 21px;
        outline: none;
        display: inline-block;
        vertical-align: top;
        position: relative;
        margin: 0;
        margin-top: -2px;
        cursor: pointer;
        border: 1px solid var(--bc, var(--border));
        background: var(--b, var(--background));
        transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    input[type=checkbox]:after,
    input[type=radio]:after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    input[type=checkbox]:checked,
    input[type=radio]:checked {
        --b: var(--active);
        --bc: var(--active);
        --d-o: .3s;
        --d-t: .6s;
        --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    input[type=checkbox]:disabled,
    input[type=radio]:disabled {
        --b: var(--disabled);
        cursor: not-allowed;
        opacity: 0.9;
    }
    input[type=checkbox]:disabled:checked,
    input[type=radio]:disabled:checked {
        --b: var(--disabled-inner);
        --bc: var(--border);
    }
    input[type=checkbox]:disabled + label,
    input[type=radio]:disabled + label {
        cursor: not-allowed;
    }
    input[type=checkbox]:hover:not(:checked):not(:disabled),
    input[type=radio]:hover:not(:checked):not(:disabled) {
        --bc: var(--border-hover);
    }
    input[type=checkbox]:focus,
    input[type=radio]:focus {
        box-shadow: 0 0 0 var(--focus);
    }
    input[type=checkbox]:not(.switch),
    input[type=radio]:not(.switch) {
        width: 21px;
    }
    input[type=checkbox]:not(.switch):after,
    input[type=radio]:not(.switch):after {
        opacity: var(--o, 0);
    }
    input[type=checkbox]:not(.switch):checked,
    input[type=radio]:not(.switch):checked {
        --o: 1;
    }
    input[type=checkbox] + label,
    input[type=radio] + label {
        font-size: 14px;
        line-height: 21px;
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
        margin-left: 4px;
    }

    input[type=checkbox]:not(.switch) {
        border-radius: 7px;
    }
    input[type=checkbox]:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(var(--r, 20deg));
    }
    input[type=checkbox]:not(.switch):checked {
        --r: 43deg;
    }
    input[type=checkbox].switch {
        width: 38px;
        border-radius: 11px;
    }
    input[type=checkbox].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--ab, var(--border));
        transform: translateX(var(--x, 0));
    }
    input[type=checkbox].switch:checked {
        --ab: var(--active-inner);
        --x: 17px;
    }
    input[type=checkbox].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }

    input[type=radio] {
        border-radius: 50%;
    }
    input[type=radio]:after {
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--active-inner);
        opacity: 0;
        transform: scale(var(--s, 0.7));
    }
    input[type=radio]:checked {
        --s: .5;
    }
}

.set-select2 {
    width: 100%;
}

.select2-container .select2-selection--single {
    display: block;
    width: 100%;
    height: 45px;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #a7adb3;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: inherit;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    /* Arrow Icon */
    top: 9px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    /* Clear Icon */
    top: 1px;
    right: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #a7adb3;
}

.select2-dropdown {
    border: 1px solid #ced4da;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
}

.select2-search--dropdown .select2-search__field {
    font-size: 0.75rem;
    padding: 12px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #ced4da 1px;
}

.select2-container .select2-selection--multiple {
    font-family: "Poppins", sans-serif;
    font-size: 0.75rem;
    font-weight: 300;
    padding: 0.20rem 0.75rem 0 0.75rem;
    line-height: 14px;
    color: #495057;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 2px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0;
    font-size: 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    margin-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 5px;
    margin-right: 0;
}