@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;800&display=swap');
/* Website Color Pallets */
:root{
    --primary: #EEBF00;
    --secondary:#232838;
    --success: #4CAF50;
    --danger: #F44336;
    --pure: #FEFEFE;
    --light: #F0F0F0;
    --heaven: #FFFFFF;
    --footer: #5880a8;
    --transition:all .3s ease;
    --text-small:0.68rem;
    --font-family-nunito : 'Nunito', sans-serif;
    --shadow: box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    --header-height: 60px;
    font-family: var(--font-family-nunito);
    margin: var(--header-height) 0 0 0;
    background: var(--heaven);
}
span{
    font-size: var(--text-small);
}
button{
    outline: none;
    border:none;
}
/* Utility Classes for Reuse */
.mr-2{
    margin-right: 15px;
}
.flex{
    display: flex;
}
.justify-between{
    justify-content: space-between;
}
.justify-content-center{
    justify-content: center;
}
.justify-evenly{
    justify-content: space-evenly;
}
.align-items-center{
    align-items: center;
}
.magic-shadow{
    position: relative;
    width: 100%;
    background-color: var(--heaven);
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.text-success{
    color: var(--success);
}
.text-danger{
    color: var(--danger);
}
.text-yellow{
    color: var(--primary);
}
.text-white{
    color: var(--pure);
}
.p-2{
    padding: 0.85rem;
}
.mt-3{
    margin-top: 2rem;
}
.my-30{
    margin: 30px 0px;
}
.mb-2{
    margin-bottom: 10px;
}
.bg-light{
    background: var(--light);
}
.bg-success{
    background: var(--success);
    color: var(--pure);
}
.bg-danger{
    background: var(--danger);
    color: var(--pure);
}
.font-weight-bold{
    font-weight: bold;
}
.pills{
    border-radius: 30px;
}
.header__button .material-icons {
    font-size: 2.2rem;
}
  
/* End Utility Class */
div#goog-gt-tt {
    display: none !important;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 10px;
    border: 1px solid #888;
    width: 90%;
    border-radius: 10px;
}
.my-modal .price__box{
    justify-content: center !important;
}
 
.my-modal .unitCalculationRow{
    justify-content: center !important;
}
.my-modal .unitCalculationRow {
    width: 100%;
}
.my-modal  #quantity {
    width: 20%;
}
.modal-footer{
    align-items: baseline;
}
.my-modal .unitCalculationRow > button {
    width: 25px;
    height: 25px;
    border: 1px solid yellow;
    background: #ffffff;
    color: #000000;
    font-size: 18px;
    border-radius: 50%;
    box-shadow: rgb(255 200 0) 0px 1px 3px, rgb(0 0 0 / 24%) 0px 1px 2px;
}
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  .view_data{
      background: transparent;
  }

 