*{
    margin: 0;
    padding: 0;
}

html,body{
    font-family: 'Poppins', sans-serif;
}

:root {
    --black: #000000;
    --white: #ffffff;
    --grey: #C4C4C4;
    --dark-grey:#141414;
    --dark-light: #dddddd;
    --green: #42BA96;
}  
  

::selection{
    background-color: var(--black);
    color: var(--white);
}


.wrap{
	word-wrap: break-word;  /* Ensures long words break */
	word-break: break-word;  /* Breaks long words */
	white-space: normal;     /* Allows wrapping */
}

span.badge{
	font-size: 0.85em;
    color: #000 !important;
    font-weight: 600;
    background-color: #e6e6e6 !important;
    border-radius: 5px !important;
}

/*login-css*/
.login-section{
    
}
.login-section .login-box,.common-box{
    width: 100%;
    max-width: 440px;
    padding: 22px  36px;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid var(--grey);
    border-radius: 10px;
    margin-top: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.login-box .login-box-title h4{
    font-size: 22px;
    font-weight: 700;
}
.login-box .form-section{
    margin-top: 25px;
}
.form-section .custome-input,.modal-input{
    width: 100%;
    max-width: 386px;
    height: 47px;
    border-radius: 30px;
    border: 1px solid var(--grey);
    padding: 0 20px;
    transition: all .5s;
    color: var(--black);
    margin-bottom: 10px;
}
.modal-input{
    max-width: 100%;
}
input[type="email"]:disabled
{
     background-color: #ECECEC;
}
.form-section .custome-input:focus{
    border: 1px solid var(--black);
}
.action-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.action-section .state,.forgot-password-link{
    font-size: 14px;
    color: var(--dark-grey);
    text-decoration: none;
    transition: all .5s;
}
.forgot-password-link:hover{
    color: var(--black);
}
.login-btn{
    margin: 30px 0 10px 0;
    text-align: center;
}
.login-btn button{
    padding: 12px 50px;
    background-color: var(--black);
    border-radius: 30px;
    color: var(--white);
    text-decoration: none;
    transition: all .5s;
    font-weight: 600;
    border: 1px solid var(--black);
}
.login-btn button:hover{
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}
.remember_me{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.remember_me label{
    margin-left: 5px;
}
/*End-login-css*/

.user_icon{
    width: 30px;
}
.url-repalce{
	padding: 1rem !important;
	text-align: center;
}

.tab-custome-content .common-box{
    width: 100%;
    max-width: 559px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.common-box .common-box-title{
    text-align: center;
}
.common-box .common-box-title h4{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
}
.common-box-form{
    margin-top: 30px;
}
.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
}
.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white);
    padding: 10px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 60px;
    line-height: 40px;
    color: var(--grey);
    border: 1px solid var(--grey);
    border-radius: 30px;
    font-weight: 300;
}
.file-upload-wrapper:before {
    content: 'Upload';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    height: 60px;
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    z-index: 25;
    font-size: 16px;
    line-height: 60px;
    padding: 0 40px;
    text-transform: uppercase;
    pointer-events: none;
}

.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}
.modal-close{
    position: absolute;
    right: 0;
    top: 0;
    padding: 14px;
    font-size: 22px;
    color: #000; 
}
/*End-upload-tab-css*/


.table{
    white-space: nowrap;
}
.table thead tr th{
    padding: 20px;
    font-weight: 600;
}
.table tbody tr td{
    padding: 15px 20px;
    color: var(--dark-grey);
    font-size: 16px;
}
.table tbody tr td .modal-action{
    cursor: pointer;
    font-size: 12px;
}
.item-list-table tbody tr td.table-title:nth-child(2){
	word-wrap: break-word; 
	word-break: break-word; 
	white-space: normal;  
}

.pagination li a{
    color: #000;
}
.pagination li a:hover{
    color: #000;
}
.open_modal_icon{
    width: 20px;
    cursor: pointer;
}

.pagination-section{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}



.detail_table th {
	background-color: #f8f9fa;
	border-bottom: none;
/*	color: #a957ff !important;*/
}

.detail_table tr td {
/*	border-bottom: 2px solid #efefef;*/

}


.modal_close{
    width: 60px;
    position: absolute;
    top: 0px;
    right: 5px;
    border-radius: 100%;
    cursor: pointer;
 }
 .w-30{
    width: 30px !important;
 }
/*media-queary*/

/* Bid Packages Modal */
.bidPackages {
	overflow: hidden;
    white-space: normal;
}
.bidPackages .bidPackages-title{
	font-weight: bold;
}
/* Bid Packages Model */

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group{
    position: relative;
}
::placeholder{
    font-size: 16px !important;
}
.form-select{
    font-size: 16px;
    padding: 0.7rem 1rem;
}

.miles_text{
    position: absolute;
    top: 14px;
    right: 10px;
    color: #6b6b6b;
}
.records{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 0;
    justify-content: space-between;
}
.records .dark_cust_btn{
    margin-left: 20px;
}
/* Bid Packages Model */
.action_btn img{
    width: 24px;
}
.modal_close_main{
   width: 35px;
  position: absolute;
  top: 10px;
  right: 10px;
  transform: translate(20%,-20%);
  cursor: pointer;
}
.records h4{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.records h4 span{
    font-weight: 500 !important;
}

/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}


.add_cmt_btn{
   margin-left: 25px; 
    width: 125px;   
}


.cmt_text_box {
    width: 600px;
    padding: 15px 10px 15px 50px;
    border: 0;
    outline: none;
    box-shadow: none;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}

.star-container {
    position: relative;
    display: inline-block;
    font-size: 22px;
    width: 22px;
    height: 22px;
    margin-right: 2px;
}

.star-bg {
    color: #ccc;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.star-fill {
    color: gold;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
    white-space: nowrap;
}


.user_details{
    
    font-size: 14px;
}

@media (max-width: 1199.98px) {

}
@media (max-width: 991.98px)  {
    .table thead tr th{
        padding: 10px;
        font-size: 12px;
    }
    .table tbody tr td{
        padding: 7px 5px;
        font-size: 12px;
    }
}
@media (max-width: 575.98px)  {  
    .common-box{
        padding: 10px;
    }
    .file-upload-wrapper:before {
        padding: 0 10px;
        font-size: 12px;
    }  
}



.img-loeader{
     position: fixed;
     background: rgba(0,0,0,0.5);
     width: 100%;
     height: 100%;
     overflow:auto;
     z-index: 9999;
     text-align: center;
}
.img-loeader img{
     width: 80px;
     height: 80px;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%,-50%);
}