:root {
    --green: #73ba3c;
    --orange: #f99415;
    --red: #e75a5a;
    --border: 1px solid rgba(151, 158, 162, 0.3);
    --radius: 6px;
    --border-color: rgba(151, 158, 162, 0.3);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    background: #fbfbfb;
  }
  
  .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }
  
  .heading {
    margin-bottom: 1rem;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
  }
  
  .row .card {
    width: calc(960px / 1);
    /* flex-grow: 1; */
    margin-bottom: 1rem;
    margin-right: 0.6rem;
  }
  
  .card {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: 0.4s box-shadow;
    background: #fff;
    border-radius: var(--radius);
    border: var(--border);
  }
  
  .card.done {
    background: var(--green);
    color: #fff;
  }
  
  .card:hover {
    cursor: pointer;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.22);
  }
  
  .progress {
    margin: 0 auto 1rem;
  }
  
  .progress-bar {
    position: relative;
    left: 0;
    right: 0;
    height: 30px;
    border: var(--border);
    border-radius: var(--radius);
    background: #f5f5f4;
  }
  
  .progress-value {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius);
    transition: 0.5s width;
  }
  
  .modal {
    display: none;
  }
  
  .modal.open {
    display: block;
    position: fixed;
    top: 50px;
    transform: translateX(-50%);
    left: 50%;
    width: 80%;
    background: #fff;
    z-index: 200;
    padding: 1.5rem;
    border-radius: var(--radius);
    max-height: 90vh;
  overflow-y: auto;
  }
  
  .modal h2 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .modal p {
    margin-bottom: 1rem;
  }
  
  .modal hr {
    margin-bottom: 1rem;
    border: none;
    height: 2px;
    background: var(--border-color);
  }
  
  .modal.open + .modal-backdrop {
    display: block;
  }
  .modal-backdrop.open {
    display: block;
  }
  
  .modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .empty {
    margin-bottom: 2rem;
    color: grey;
  }
  
  .form-control label {
    font-size: 14px;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .form-control input,
  .form-control textarea {
    display: block;
    width: 50%;
    border: var(--border);
    resize: none;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background: #f7f7f7;
    font-family: inherit;
    transition: 0.22s background;
    outline: none;
  }
  
  .form-control input:focus,
  .form-control textarea:focus {
    background: #fff;
  }
  
  .form-control input.invalid,
  .form-control textarea.invalid {
    animation: validate 2s;
  }
  
  @keyframes validate {
    0% {
      border: 1px solid var(--red);
    }
  
    50% {
      border: 1px solid var(--red);
    }
  
    100% {
      border: var(--border);
    }
  }
  
  .btn {
    font-family: inherit;
    padding: 0.7rem 1rem;
    border: 1px solid #ccc;
    background: #f7f7f7;
    border-radius: var(--radius);
    transition: 0.3s background;
  }
  .red {
    background-color: #e75a5a;
    color: #fff;
    font-weight: bold;
    float: right;
  }
  
  .btn:focus {
    outline: none;
  }
  
  .btn:hover {
    background: #777;
    cursor: pointer;
  }
  .phone{
    text-align: right;
    margin-top: -15px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    font-weight: bold;
  }

  .phone a img {
    width: 25px;
  }
  

  