html,
body {
    min-width: 100%;
    min-height: 100%;
    background: var(--body-theme);
}
.main-navbar {
    /* position: fixed; */
    /* z-index: 1030 !important; */
    /* width: calc(100% - 250px) !important; */
    padding-left: 250px;
    background: var(--navbar) !important;
    transition: 0.3s;
}

.navbar-brand {
    color: var(--title-theme);
}
.nav-link {
    color: var(--nav-links);
}
.nav-link.active {
    color: var(--nav-active-links);
}
#aside {
    position: fixed;
    top: 0;
    z-index: 1031 !important;
}
#main-stage {
    width: calc(100% - 270px);
    margin-left: 250px;
    margin-top: 60px;
    padding: 1rem;
    transition: 0.3s;
}

/* public css  */
.cabz {
    text-transform: capitalize;
}
.title-theme {
    color: var(--title-theme);
}
.c-c {
    justify-content: center;
    align-items: center;
}

.c-s {
    justify-content: start;
    align-items: center;
}

/*========== FORMS  ==============*/

.form-control,
.input-group .form-control,
.input-group .form-select {
    color: var(--title-theme);
    background-color: var(--form-input);
    outline: none;
    box-shadow: none;
    border: none;
    border-bottom-right-radius: 20px;
}
.input-group .form-control::placeholder {
    color: var(--form-input-pl);
}
.input-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.form-label {
    color: #cccc;
    font-size: 14px;
}

.input-group span {
    background: var(--form-input) !important;
    color: #848484 !important;
    border: none !important;
}
.form-control::placeholder ,
.input-group .form-control::placeholder {
    color: var(--form-input-pl);
}

/*============ Tables ==============*/

.table,
.table tr td {
    color: var(--title-theme) !important;
    vertical-align: middle;
    font-size: 14px;
    padding: 5px;
}
.table thead tr td {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: var(--navbar);
}

.actions {
    font-size: 18px;
}

/*============ Modals ==============*/
.modal-theme .modal-content {
    background: var(--body-theme);
    color: #fff;
}
.modal-theme .modal-header,
.modal-theme .modal-footer {
    border-color: var(--form-input);
}

.modal-theme .btn-close {
    background: var(--flat-red);
}

.modal-theme .modal-dialog form {
    overflow-y: auto !important;
  }


/*============ Offcanvas ==============*/
.offcanvas-theme .offcanvas-header,
.offcanvas-theme .offcanvas-footer {
    background: #2e2e31;
    color: #fff;
}

.offcanvas-theme .offcanvas-header .btn-close {
    background: maroon;
}
.offcanvas-theme .offcanvas-body{
    background: #38383c;
    color: #fff;
}


.form-floating .form-control:focus {
    background-color: #2a2a2b; /* light blue background */
    border-color: #414141;     /* primary color */
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); /* soft blue shadow */
}

.form-floating .form-select{
    background-color: #2a2a2b; /* light blue background */
    border-color: #414141;     /* primary color */
    color: #fff;
    font-size: 12px;
    padding:32px 13px;

}
.form-floating .form-select:focus {
    background-color: #2a2a2b; /* light blue background */
    border-color: #414141;     /* primary color */
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); /* soft blue shadow */
}


/*============ Accordians ==============*/

.accordion-theme .accordion-item {
    background: var(--item-theme-1);
    border-color: var(--item-theme-2);
    color: var(--title-theme);
}

.stages {
    padding-top: 2rem;
    padding-bottom: 2rem;
}


/*
    ============  Now Bar  ============
*/

.now-bar {
    position: fixed;
    left: 50%;
    bottom: 20px;
    display: flex;

    transform: translateX(-50%);

    min-width:300px ;
    height: 60px;
    padding: 5px;


    backdrop-filter: blur(4px);
    background: rgba(22, 22, 22, 0.596);
    border: 4px solid rgba(104, 104, 104, 0.06);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);


    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;

    border-top-right-radius: 150px;
    border-bottom-right-radius: 150px;

    color: #fff;
    z-index: 1031 !important;

    transition: 1s;

}

.now-bar:hover{
    cursor: pointer;
}

.now-bar-icon{
    width: 50px;
    height: 50px;
    color: #fff;

    border-radius: 100%;
    backdrop-filter: blur(10px);
    /* box-shadow: 0 0 10px 0 rgba(252, 57, 59, 0.54); */

    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
}


.danger-bar{
    background-color: rgba(252, 57, 59, 0.50);
    box-shadow: 0 0 10px 0 rgba(252, 57, 59, 0.54);
}
.success-bar{
    background-color: rgba(58, 201, 129, 0.50);
    box-shadow: 0 0 10px 0 rgba(58, 201, 129, 0.54);

}
.primary-bar{
    background-color: rgba(43, 151, 211, 0.50);
    box-shadow: 0 0 10px 0 rgba(43, 151, 211, 0.54);

}
.info-bar{
    background-color: rgba(107, 79, 246, 0.50);
    box-shadow: 0 0 10px 0 rgba(107, 79, 246, 0.54);

}


.now-title{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;

}
.now-text{
    font-size: 14px;
    color: aliceblue;
}


.hide-nowbar{
    bottom: -8rem;
}



/*==============  Calculator ================*/
.Calculator{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

#Calculator{
    z-index: 2040 !important;
}
.changeCircle{
    background: #2e2e31;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-size: 25px;
}
