*, *::after, *::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html{
    overflow-x: hidden;
}

body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
    padding: 0;
    line-height: normal;
}

p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: justify;
}

img{
    width: 100%;
    height: auto;
}

a{
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
}

ol, ul li{
    list-style: none;
}

input{
    outline: none;
    border: none;
    padding-left: 1.25rem;
}
.tbl{
    overflow-x: auto;
}

.tbl table{
    border-collapse: collapse;
    table-layout: auto;
    
    
}

.tbl table tr th{
    border: 1px solid #918f8f;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    
}
.tbl table tr td{
    border: 1px solid #918f8f;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    font-weight: normal;
    
}
.tbl table tr td i{
    padding: 2px 5px;
}
.tbl table tr:hover{
    box-shadow: var(--shadow-color);
}
/* 
======================================================================================
scroll bar Style Start here...
======================================================================================*/
.frm input{
    border: none;
    outline: none;
}

.frm input[type=text], input[type=password], input[type=email], select{
    width: 100%;
    padding: 6px 15px;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.25);
    margin-bottom: 10px;
    background: transparent;
}
.frm input[type=radio]{
    padding: 10px 20px;
    
    
}
.frm input[type=submit], input[type=reset], input[type=button]{
    min-width: 25%;
    padding: 10px; 
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.frm input[type=text]:focus, input[type=password]:focus, select:focus{
    border: 2px solid #eb215d;
}
.frm label{
    display: block;
    font-size: 14px;
    margin: 0 0 5px 15px;
}
.chk-box{
    position: relative;
    font-size: 14px;
    color: rgb(37, 38, 38);
    display: block;
    margin-bottom: 10px;
    padding-left: 30px;
    cursor: pointer;
}
.chk-box input{
    position: absolute;
    height: 0;
    width: 0;
    cursor: pointer;
    
    
}

.chk{
    position: absolute;
    height: 18px;
    width: 18px;
    border: 2px solid #ef205e;
    border-radius: 10px;
    top: 0;
    left: 0;
    transition: 0.2 ease-in-out;

}
.chk-box:hover input ~ .chk{
    border-color: transparent;
    background-color: #ef205e;
}
.chk-box input:checked ~ .chk{
    border-color: transparent;
    background-color: #ef205e;
}
.chk::after{
    content: "";
    position: absolute;
    width: 6px;
    height: 12px;
    border: solid #70c497;
    border-width: 0 3px 3px 0;
    left: 4px;
    top: 0;
    transform: rotate(45deg);
}
.chk-box input:focus ~ .chk{
    box-shadow: 0 0 0 4px rgb(255 131 107 / .3);
}

.radio-btn{
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    padding-left: 30px;
    margin-bottom: 10px;
}
.radio-btn input{
    display: none;
}
.radio-btn .circle{
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #878787;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
}
.radio-btn:hover ~ .circle{
    background-color: #70c497;
}
.radio-btn input:checked ~ .circle{
    background-color:#ef205e;
}
.radio-btn input:checked ~ .circle::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%)
}