#resume_form_main {
    background-color: white;
    border-radius: 5px;
    width: 90%;
    justify-content: center;
    margin: auto;
    box-shadow: 2px 2px 15px 3px;
}

#resume_form_main input,select,option {
    width: 100%;
    border-radius: 10px;
    border-color: #004789;
}
#resume_form_main select{
  width: 100%;
  border-radius: 10px;
  border-color: #004789;
}

#resume_form {
    width: 95%;
    margin: auto;
}
#processing{
    width: 100%;
    height: auto;
    justify-content: center;
    margin: auto;
    display: none;
}
#checkmark {
    width: 40%;
    height: 40%;
    border-radius: 50%;
    display: block;
    margin: auto;
    stroke-width: 2;
    stroke: #5cb85c;
    stroke-miterlimit: 10;
    box-shadow: 0px 0px 0px 0px #5cb85c;
    animation: fill 5s ease-in-out 3s forwards, scale 3s ease-in-out 3s both;
  }
  
  .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #5cb85c;
    fill: none;
    animation: stroke 5s cubic-bezier(0.1, 0, 0.45, 0.65) forwards;
  }
  
  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.9s cubic-bezier(0.65, 0, 0.75, 1) 5s forwards;
  }
  
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  
  @keyframes scale {
    0%, 100% {
      transform: none;
    }
  
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  
  @keyframes fill {
    100% {
      box-shadow: 0px 0px 0px 0px 10px #5cb85c;
    }
  }
  #Resume_Main{
    display: none;
    height: auto;
    width: 750px;
    border: 2px solid black;
    margin: auto;
  }
  #Resume_Main_Final{
    height: auto;
    width: 750px;
    margin: auto;
  }
  table {
    border-collapse: collapse;
  }
  
  th, td ,tr{
    padding: 5px;
  }
  #download_button button{
    width: 40%;
    margin:auto;
  }
  @media only screen and (min-width:0px) and (max-width:768px) {
    #download_button button{
      width: 100%;
    }
  
  
  }
  @media only screen and (min-width:769px) and (max-width:1000px) {
    #download_button button{
      width: 100%;
    }
  
  
  }
