
@import url('https://fonts.googleapis.com/css2?family=Kufam:wght@400;500;700&display=swap');
* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Kufam', sans-serif !important;
}
body {
    background-color: #051a2b;
}
.main
{
    height: 100%;
    position: relative;
    top: 60px;
    width: 100%;
    padding-top: 20px;
    /*background-color: black;*/
}
header
{
    border-bottom: 2px solid white;
    color: red;
    width: 100%;
    padding: 10px 10px;
}
section.indianData,section.worldData
{
    background-color: #051a2b;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin: 0 auto;
}
span.popup
{
    display:block;
    border-radius: 20px;
     background-color: red;
     color: white;
     margin: 10px auto;
     text-align: center;
     padding: 5px 8px;
     font-size: 8px;
}
.indian-status p, .world-status p {
    text-align: center;
}
p.heading
{
    padding: 5px 10px;
    margin: 5px auto;
    text-align: center;
    width: 80%;
    background-color: #64B5F6;
    /*font-family: 'Headland One', serif;*/
    font-weight: 700;
    font-size: 14px !important;
    border-radius: 4px;
    font-family: serif;
}
p.last-update-india-time,p.last-update-worldCase-time
{
    display:block;
    text-align: center;
    font-size: 13px;
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
    color:rgb(230, 227, 227);
    margin:10px 0 5px 0;
	font-weight:500;
    letter-spacing:1px;
    padding: 5px;
    font-family: serif;
    /* border: 1px solid #70a6d3; */
}
div.india-status,div.world-status
{
    margin-top: 10px;
    display: grid;
    /*align-items: center;*/
    /*justify-content:center;*/
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    /*padding: 5px;
    font-family: 'Bree Serif', serif;
    text-align: center;*/
}
@media screen and (max-width: 800px) {
  div.india-status,div.world-status {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

hr.hr-status
{
    display:none;
}
div.india-status,div.world-status 
{
    font-family: 'Kufam', sans-serif !important;

}
div.india-status div, div.world-status div
{
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 4px rgba(255, 255, 255, .4);

}

div.total-status p
{
    color:rgb(238, 238, 238);
    font-size: 1em;
}
div.total-status {
     background-color: #051725;
     /* height:120px; */
     padding: 30px;
     margin: 10px auto;
}
div.active-status p
{
    color:rgb(238, 238, 238);
    font-size: 1em;
}
div.active-status {
    background-color: #051725;
    /* height:120px; */
    padding: 30px;
    margin: 10px auto;
}
div.recovered-status p
{
    color:rgb(238, 238, 238);
    font-size: 1em;
}
div.recovered-status {
    background-color: #051725;
    /* height:120px; */
    padding: 30px;
    margin: 10px auto;
}
div.death-status p
{
    color:rgb(238, 238, 238);
    font-size: 1em;
}
div.death-status {
    background-color: #051725;
    /* height:120px; */
    padding: 30px;
    margin: 10px auto;
}
.cases {
    font-size: 13px !important;
    font-family: 'Kufam', sans-serif !important;
    font-weight: bold;
    margin-bottom: 10px;
}
#label-total-indiaCase, #label-total-worldCase {
    color: rgb(23, 171, 240);
    font-family: 'Kufam', sans-serif !important;
    font-weight: bold;
}
#label-active-indiaCase, #label-active-worldCase {
    color: rgb(228, 231, 8);
    font-family: 'Kufam', sans-serif !important;
    font-weight: bold;
}
#label-recovered-indiaCase, #label-recovered-worldCase {
    color: rgb(8, 189, 8);
    font-family: 'Kufam', sans-serif !important;
    font-weight: bold;
}
#label-death-indiaCase, #label-death-worldCase {
    color: rgb(255, 0, 0);
    font-family: 'Kufam', sans-serif !important;
    font-weight: bold;
}
.numbers {
    text-align: center;
}
section.sec-world-table
{
    margin:20px auto;
    width: 100%;
    /* border: 2px solid white; */
    padding: 5px;
}
div.div-country-table
{
    overflow-y: auto;
    height: 900px;
    width: 100%;
    margin:0 auto ;
}
p#table-detail
{
    font-size: 16px;
    text-align: center;
    color: white;
    font-family: 'Kufam', sans-serif !important;
    letter-spacing: 2px;
    /* font-weight: bold; */
}
table.country-table
{
    font-size: x-small;
    background-color:#fffcfc;
    color: black;
    background-color: black;
    border-spacing: 5px;
    border-collapse: separate;
    width: 100%;
    margin:0px auto;
}
th,td
{
    font-family: 'Kufam', sans-serif !important;
    border: 2px solid black;
    border-collapse: collapse;
    padding: 15px  5px;
    text-align:center;
    width:20px;
    border-radius: 3px;
    font-weight:bold;
}
th
{
    font-family: 'Kufam', sans-serif !important;
    background-color: #54d18b;
    position: sticky;
    top:-3px;
    border-radius: 3px;
    cursor:pointer;
}

tbody tr:nth-child(even) td { background: #cfe2fe; }   
/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */        
tbody tr:nth-child(odd) td { background: whitesmoke; }

tfoot tr td
{
    font-family: 'Kufam', sans-serif !important;
    background-color: #54d18b;
    position: sticky;
    bottom:-1px;
    border-radius: 3px;
    font-weight: bold;
    height: 75px;
}

/*========= Scrollbar Css ========*/
::-webkit-scrollbar {
    width: 10px;
    height:10px;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555; 
}

/*=================================*/   

.searchcontainer
{
    width: 100%;
    margin:20px auto ;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
input[type=text]{
    padding: 15px 40px 15px 20px;
    width: 20px;
    color: #525252;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, #FFFFFF 0%,#464747 #F9F9F9 100%);
    transition: width 0.4s ease;
    outline: none;
    margin-left: 0px;
}
  
input[type=text]:focus{
     width: 300px; 
}
i
{
    position: relative;
    top:15px;
    right:20px; 
    color: #8233C5
}
.search-area
{
    float: left;
    position:relative;
}
.search-area:hover input[type=text]
{
    width:300px;
}
.sort-sign
{
    position:relative;
    top:0px;
    left:7px;
    color:black;
}