/*style.css*/
h1{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 64px;
}
h2{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 40px;
    margin-left: 8%;
}
h3{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 30px;
    margin-left: 8%;
}
h4{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 25px;
}
label{
    font-family: Arial, Helvetica, sans-serif;
    padding-left: 8%;
    color: #828282;
    font-size: 24px;
}
p{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}
section{
    display: flex;
    width: 85%;
    height: 430px;
    margin-left: 8%;
    margin-bottom: 4%;
}
section div,#prevention{
    width: 100px;
    flex-grow: 1;
    object-fit: cover;
    opacity: .5;
    transition: .5s ease;
    border-radius: 20px;
    margin: 1%;
}
section div:hover{
    width: 300px;
    opacity: 1;
    filter: contrast(120%);
}
section div:hover #prevention{
    width: 300px;
    opacity: 1;
    filter: contrast(120%);
}
select{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    border-radius: 8px;
}
table {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
th,td {
    border: 2px solid;
    padding: 1%;
    border-color: black;
}
tr.green {
    background-color: rgb(0, 228, 0);
    color: black;
}
tr.yellow {
    background-color:yellow;
    color: black;
}
tr.orange {
    background-color: rgb(225, 126, 0);
    color: white;
}
tr.red {
    background-color: red;
    color: white;
}
tr.purple {
    background-color: rgb(143, 63, 151);
    color: white;
}
tr.maroon {
    background-color: rgb(126, 0, 35);
    color: white;
}
.button {
    background-color: black;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: auto;
    cursor: pointer;
    border-radius: 8px;
}
.buttonheader {
    border: none;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    cursor: pointer;
}
/* Style the counter cards */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    text-align: center;
    background-color: #f1f1f1;
    height: 200%;
}
/* Float four columns side by side */
.column {
    float: left;
    width: 18%;
    padding: 0 10px;
    height: 40%;
}
.container {
    height: 70px;
    position: relative;
}
.containerflex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10%;
    margin-left: 8%;
}
.countrydiv{
    padding-top: 8%;
}
.countrywidget {
    width: 84%;
    gap: 25px;
    display: flex;
    padding-left: 8%;
    padding-top: 1%;
    padding-bottom: 1%;
}
.currentlocationwidget {
    position: absolute;
    top: 131px;
    right: 7.8%;
    z-index: 10;
}
.data{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin-left: 8%;
}
/* Dropdown Button */
.dropbtn {
    background-color: black;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
} 
/* The container <div> - needed to position the dropdown content */
.dropdown {
    overflow: relative;
    display: inline-block;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
} 
/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    float: none;
    text-align: left;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}
.header{
    width:100%;
    position: fixed;
    top: 0;
    z-index: 1001;
    background-color: white;
    padding-bottom: 2%;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}
.image {
    flex: 3;
    width: 50%;
    height: 300px;
    object-fit: contain;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.locationwidget{
    display: inline-block;
}
.mapcontainer {
    height: 580px;
    position: relative;
    padding-top: 130px;
    margin-top: 70px;
}
.pointer{
    position:absolute;
    top:86px;
    left:60px;
    z-index:99999;
}
.responsive {
    max-width: 90%;
    height: auto;
} 
.right {
    max-width: 100%;
    margin-left: 8%;
}
.right {
    max-width: 100%;
    margin-left: 8%;
}
/* Remove extra left and right margins, due to padding in columns */
.row {margin: 0 -5px;}
  
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.search {
    padding: 12px 12px;
    cursor: pointer;
    border-radius: 8px;
    background-image: url("/attachments/searchlogo.png");
    background-size: 100% 100%;
    background-clip:padding-box;
}
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    display:block;
}
.subheading{
    font-family: Arial, Helvetica, sans-serif;
    color: #828282;
    font-size: 24px;
    margin-left: 8%;
}
.subheadingcenter{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: #828282;
    font-size: 24px;
    font-style: italic;
}
.tablediv {
    padding-left: 8%;
    padding-right: 8%;
}
.widget {
    flex: 2;
    height: 300px;
}
#VietnamDiv{
    padding-bottom: 10%;
}
#map { 
    height: 550px;
    width: 84%;
    display: block;
    margin: auto;
    position: relative;
    z-index: 0;
}
#mapSearchContainer{
    position:fixed;
    top:20px;
    right: 40px;
    height:30px;
    width:180px;
    z-index:110;
    font-size:10pt;
    color:#5d5d5d;
    border:solid 1px #bbb;
    background-color:#f8f8f8;
}

/* Responsive columns - one column layout (vertical) on small screens */
@media screen and (max-width: 600px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
}