* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
}
:root{
    --text-white:#fff;
    --text-balck:#000;
    --text-0f2027:#0f2027;

    --bg-2f4650:#2f4650;
    --bg-edf0f5:#edf0f5;
}

/* text color start */
.text-white{
    color: var(--text-white);
}
.text-black{
    color: var(--text-balck);
}
.text-0f2027{
    color: var(--text-0f2027);
}
/* text color end */

/* bg color start */

.bg-2f4650{
    background-color: var(--bg-2f4650);
}
.bg-edf0f5{
    background-color: var(--bg-edf0f5);
}

/* bg color end */
.section-padding{
    padding: 45px 0px;
}

.title{
    font-size: 30px;
}

/* fs-start */

.fs-14px{
    font-size: 14px;
}
.fs-16px{
    font-size: 16px;
}
.fs-18px{
    font-size: 18px;
}
.change-fs-16px-18px{
    font-size: 18px;
}
.change-fs-20px-16px{
    font-size: 20px;
}

/* fs-end */

/* font-weight start */
.fw-300{
    font-weight: 300;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}
.fw-800{
    font-weight: 800;
}
/* font-weight end */

/* border-radius start */

.rounded-8px{
    border-radius: 8px;
}
.rounded-12px{
    border-radius: 12px;
}
.rounded-14px{
    border-radius: 14px;
}

/* border-radius end */

/* hw class start */
.hw-35px{
    width: 35px;
    min-width:35px;
    height: 35px;
    min-height: 35px;
}
.hw-50px{
    width: 55px;
    min-width:55px;
    height: 55px;
    min-height: 55px;
}
.min-h-500px{
    min-height: 500px;
    height: 100%;
    max-height: 500px;
    overflow-y: scroll;
    scrollbar-color: #cccfd1 transparent;
}
/* hw css end */


.badge-button{
    transition: 0.4s all;
    border: 1px solid transparent;
    padding: 12px;
}
.badge-button:hover{
    background-color: transparent;
    border: 1px solid #0f2027;
    color: var(--text-0f2027) !important;
}
.query-table table{
    margin-bottom: 10px;
}
.query-table table, th, td {
  border: 1px solid #ebe7e7;
  border-collapse: collapse;
  padding: 10px;
}
.query-table tbody tr:nth-child(even){
    background-color:#F3F5F7;
}

.message{
    background-color: #fff;
    border-radius: 8px;
    padding: 8px;
    color: var(--text-black);
    margin-bottom: 14px;
    width: fit-content;
}
.message-left{
    margin-left: auto;
    max-width: 330px;
}
.message-right{
    margin-right: auto;
    max-width: 330px;
}
.message h6{
    font-size: 10px;
    margin-right: auto;
    text-align: end;
}

.form-control:focus{
    box-shadow: none;
    border: 1px solid #2f4650; 
}
.home-card-icon{
    font-size: 32px;
}