
  /* Add Animation */
  @-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }
  
  /* The Close Button */
  .close-handcrafted {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close-handcrafted:hover,
  .close-handcrafted:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .modal-handcrafted-header {
    padding: 2px 12px;
    font-weight: bold;
    background-color: #009adb;
    color: white;
  }
  
  .modal-handcrafted-body {padding: 2px 16px;}
  
  .modal-handcrafted-footer {
    padding: 2px 12px;
    background-color: #eaeaea;
    color: white;
  }

/* Style inputs, select elements and textareas */
.responsive-handcrafted-input{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
  }
  
  /* Style the label to display next to the inputs */
  .responsive-handcrafted-label{
    padding: 12px 12px 12px 0;
    display: inline-block;
  }
  
  /* Style the submit button */
  .modal-handcrafted-body > input[type=submit] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
  }
  
  
  .accept_suscribe_button_handcrafted {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
  }
  
  
  .search_suscribe_button_handcrafted {
    background-color: #009adb; /* Green */
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
  }
  
  
  .cancel_suscribe_button_handcrafted {
    background-color: #555555; /* Green */
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
  }
  
  /* The Modal (background) */
  .modal-handcrafted {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* 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/Box */
  .modal-handcrafted-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    max-width: 50%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  