/* style.css */

/* Sidebar styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body * {
    font-family: "Inter", sans-serif!important;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: .4px;
  }
  
.sidebar > .sidebar-content{
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background: #343a40;
    padding-top: 20px;
    transition: ease-in .3s;
    z-index: 99999;
}

.sidebar a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    color: #f8f9fa;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background: #495057;
    color: #ffffff;
}

/* Content area */
.content {
    margin-left: 260px;
    padding: 20px;
}


@media(max-width:993px){
    .content {
        margin-left: 0;
        padding: 0;
    }
}
.select2-container {
    width: 100%!important;
}

.select2-container--default .select2-selection--multiple, .select2-container--default .select2-selection--single {
    border: .8px solid #dee2e6!important;
    min-height: 38px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #000000!important;
    margin-top: 2px;
    display: block;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 37px!important;
}

.single-quantity-selector {
    background: #efefef;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}


.single-quantity-selector label {
    flex:0 0 50%;
    border-right: 1px solid;
    margin: 0;
}

.single-quantity-selector > div {
    display: flex;
    align-items: center;
    flex: 0 0 33%;
}

.single-quantity-selector > div span:first-child {
    flex: 0 0 33%;
    font-size: 15px;
    /* font-weight: bold; */
}

.tabel tbody * {
    font-size: 16px;
    line-height: 1.5;
}

#quantities {
    display: block!important;
    margin: 0;
}

#quantities .col-md-6{
    width: 100%!important;
}


.multiplier {
    margin-left: 30px;
    flex: 0 0 33%;
}


.form-check-inline label {
    font-size: 14px;
    font-weight: 500;
}


.summofProducts{
    padding: 15px;
    background: #efefef;
    margin: 30px 0;
}

.summofProducts .mb-4{
    margin-bottom: 0 !important;
    border-bottom: 1px solid;
}

.products-total {
    padding: 20px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}



.products-total label{
    flex: 0 0 50%;
    border-right: 1px solid;
    margin: 0;
}

.products-total input{
    text-align: center;
    background: transparent;
    border: none;
    /* font-weight: 800; */
    font-size: 20px;
}

.adjust-estimate {
    padding: 20px 10px;
    /* display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between; */
}


#adjustField {
    padding: 0 10px 20px 10px;
}


.finalTotalCover{
    padding: 20px 10px;
    display: flex;
    border-bottom: 1px solid;
    border-top: 1px solid;
    
}

.finalTotalCover span:first-child{
    flex: 0 0 50%;
    border-right: 1px solid;
    font-size: 20px;
    font-weight: 800;
}

.finalTotalCover span:last-child{
    flex: 0 0 50%;
    text-align: right;
    font-size: 20px;
    font-weight: 800;
    color: green;
}

.form-label {
    font-weight: 700;
}