.btn-orange{
    border-radius: 0px 15px 0px 15px;
    padding: 10px 20px;
    background-color: orange;
    color: white;
    border: none;
    box-shadow: 1px 1px 3px 0px gray;
    
}

.btn-orange:active {
  background-color: white;
  color:  orange;
  transition: all .1s ease;
}

.btn-orange:focus{
  outline: none;
}


.btn-orange-group{
  border-radius: 0px 15px 0px 0px;
  padding: 10px 20px;
  background-color: orange;
  color: white;
  border: none;
  box-shadow: 1px 1px 3px 0px gray;
  transition: all .50s ease;
}

.btn-orange-group:active {
  background-color: white;
  color:  orange;
  transition: all .1s ease;
}

.btn-orange-group:focus{
  outline: none;
}


.btn-red{
  border-radius: 0px 15px 0px 15px;
  padding: 10px 20px;
  background-color: rgb(190, 30, 30);
  color: white;
  border: none;
  box-shadow: 1px 1px 3px 0px gray;
  transition: all .50s ease;
}

.btn-red:active {
  background-color: white;
  color:  rgb(190, 30, 30);
  transition: all .1s ease;
  box-shadow: 1px 1px 3px 0px gray;
}
.btn-red:focus{
  outline: none;
}

.btn-green{
  border-radius: 0px 15px 0px 15px;
  padding: 10px 20px;
  background-color: rgb(29, 170, 52);
  color: white;
  border: none;
  box-shadow: 1px 1px 3px 0px gray;
  transition: all .50s ease;
}

.btn-green:active {
  background-color: white;
  color:  rgb(29, 170, 52);
  transition: all .1s ease;
}

.btn-green:focus{
  outline: none;
}

/*LOADER*/
.loader {
    position: absolute;
    top: 35%;
    left: 45%;
    border: 25px solid #e0e0e0;
    border-radius: 50%;
    border-top: 25px solid #e42323;
    width: 200px;
    height: 200px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }




  */*LOADER 01*/
  .loader {
    position: absolute;
    top: 60%;
    left: 60%;
    border: 5px solid #e0e0e0;
    border-radius: 50%;
    border-top: 5px solid #e42323;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
  }
  



   */*LOADER 02*/
   .loader-02{
    position: relative;
    margin-left: 30%;
    width: 100px;
    height: 100px;
    border: 10px solid #e0e0e0;
    border-radius: 50%;
    border-top: 10px solid #e42323;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
  }


   */*LOADER 03*/
   .loader-03{
    position: absolute;
    top: 40%;
    left: 40%;
    border: 25px solid #e0e0e0;
    border-radius: 50%;
    border-top: 25px solid #e42323;
    width: 250px;
    height: 250px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

