:root {
    /* COLORS */
    --color-black: #263238;
    --color-grey-dark: #424242;
    --color-grey:#616161;
    --color-grey-light:#bdbdbd;
    --color-white: #fafafa;
    --color-green:#4CAF50;

    --color-primary:#4CAF50; ;
    --color-secondary:#F44336 ;
    --color-tertiary:#F44336 ;
    --color-active:#F44336 ;
    --color-inactive:#F44336 ;
    --color-warning:#F44336 ;
    --color-success:#F44336 ;
    /* FONT SIZE */
    --x-large: 3rem;
    --large: 2.1rem;
    --medium: 2rem;
    --small: 1.5rem;
    --x-small: 1rem;
}

#input-search{
  width:80%;
  
  }
.button-english{
  background-color: white; 
  border: 1px solid black;
  border-radius: 15px;
  text-align: center;
  margin-right: 10px;
}
.button-isizulu{
  background-color: black; 
 color:white;
  border-radius: 15px;
  text-align: center;
  margin-right: 10px;
}
.button-search{
  background-color: white; 
    border: 1px solid black;
    text-align: center; 
    font-size: var(--x-small);
    height: 2rem;
    margin-right: 1rem;
    padding-left: 0.8rem;
    padding-right:0.8rem; 
    
}
.button-login{
  background-color: white; 
    border: 1px solid black;
    text-align: center; 
    font-size: var(--x-small);
    height: 2rem;
    margin-right: 1rem;
    padding-left: 0.8rem;
    padding-right:0.8rem; 
    
}
.button {
    background-color: var(--color-green); 
    border: none;
    color: white;
    padding:  var(--x-small) var(--small);
    text-align: center;
    text-decoration: none;
    display: block;
    
    font-size: var(--x-small);
    width: 100%;
    margin:10px 0px;
  }

  .bg-color-primary{
      background-color: var(--color-primary);
  }

  .card{
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
     0 3px 1px -2px rgba(0, 0, 0, 0.12),
      0 1px 5px 0 rgba(0, 0, 0, 0.2);

}
/* --------------------Loader----------------------------------- */
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loader {
  margin: 60px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #9b3434;  
  transform: translateZ(0);  
  animation: load8 1.1s infinite linear;
}

@keyframes load8 {
  0% {   
    transform: rotate(0deg);
  }
  100% {
   
    transform: rotate(360deg);
  }
}
/* ------------------------loader-end---------------------------------- */

/* -------------------------menu-------------------------------------- */

/* .dropdown{
  position: relative;
  display: inline-block;
}
 */
#dropdown-content{
  display:block;
  position: absolute;
  background-color: #f9f9f9;  
  min-width: 160px;
  z-index: 1;
}

#dropdown-content a{
   padding: 12px 16px;
   text-decoration: none;
   display: block;
   
}

/* .dropdown-content a:hover {
  
  background-color:lightgray;
}

.dropdown:hover .dropdown-content {
  display: block;
} */

/* -------------------------------topbar-------------------------------------------------------------- */
.top-bar{
  margin-top: 10px;
  margin-bottom: 20px;

  display: grid;
  grid-template-columns: 6fr 1fr;
}
/* --------------------------------------------------------------------------------------------------- */

/* ---------------------------------------input search ----------------------------------------------------- */
#input-search{
  width: 90%;
}
/* --------------------------------------------------------------------------------------------------- */


/* ------------------------------------------modal--------------------------------------------------------- */

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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/Box */
.modal-content {
  background-color: #000;
  color: #fff;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* ---------------------------------------------------------------------------------------------------------------- */
