:root {
    --color-white: #f3f3f3;
    --color-darkblue: #1b1b32;
    --color-darkblue-alpha: rgba(27, 27, 50, 0.8);
    --color-green: #37af65;
    --color-blue: #2e86de;
    --color-yellow: #ffc107;
    --color-theme: #af393c
}

/*progressbar*/
#progressBar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressBar li {
    list-style-type: none;
    color: var(--color-theme);
/*    text-transform: uppercase;*/
    font-size: 20px;
    width: 25%;
    float: left;
    position: relative;
}

    #progressBar li:before {
        content: counter(step);
        counter-increment: step;
        width: 22px;
        font-weight: 500;
        line-height: 22px;
        display: block;
        font-size: 12px;
        color: var(--color-theme);
/*        background: var(--color-theme);*/
        background: white;
        border: 1px solid var(--color-theme);
        border-radius: 3px;
        margin: 0 auto 5px auto;
        z-index: 1;
    }
/*progressBar connectors*/
    #progressBar li:after {
        content: '';
        width: 92%;
        height: 3px;
        background: var(--color-theme);
        position: absolute;
        left: -46%;
        top: 11px;
        /*z-index: -1;*/
    }

#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*/
#progressBar li.active:before, #progressbar li.active:after {
    background: var(--color-theme);
    color: white;
}

.status-btn {
    color: var(--color-theme);
    font-weight: 500;
    cursor: pointer;
    background-color: #fafafa;
    padding: 3px;
    border: 1px solid var(--color-theme);
    border-radius: 5px;
    vertical-align: middle;
}

.screenshot-btn {
  cursor: pointer;
  vertical-align: middle;
}

.vert-middle {
  vertical-align: middle;
  padding-top: 8px !important;
}

.select2-selection {
    border-color: #fff !important;
    border-radius: 0px !important;
    border-bottom: 1px solid var(--color-theme) !important;
}

#userTable_length label select {
  width: 4.3rem;
  margin-left: 5px;
  padding-left: 1.2rem;
  margin-right: 5px;
}

#userTable_filter label input {
  width: 14rem;
}

#accessTable_length label select {
  width: 2.3rem;
  margin-left: 10px;
  padding-left: 6px;
  margin-right: 5px;
}

#accessTable_filter label input {
  width: 14rem;
}

/* Color bullet in dropdown menu for DataTable */
.dtr-details {
  list-style: none; /* Remove default bullets */
  margin-left: 3.9rem !important;
}

    .dtr-details li::before {
        content: "\2022";
        color: var(--color-theme);
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

/* restore radio button for sweet alert 2 */
input[name="swal2-radio"] {
  position: relative !important;
  left: 0 !important;
  opacity: 1 !important;
}

.version-btn {
  padding-top: 0.5rem;
}


.select2-container .select2-results__option.optInvisible {
  display: none;
}

tbody {
    background: #f3d8d9;
}
