.profile h1 {
  margin: 0;
}
.profile .points {
  font-size: 1.3em;
  font-weight: 600;
  color: #673b16;
  text-transform: uppercase;
  text-align: center;
  margin: -5px 0 30px;
}
.profile main,
.profile section {
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 0 15px 10px rgba(0,0,0, .15);
  margin: 0 0 30px;
}
  .profile h2 {
    font-size: 1.6em;
    font-weight: 700;
    color: #673b16;
    letter-spacing: -.02em;
    line-height: 1.2em;
    text-align: center;
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 30px;
  }

  .profile form#receipt_form #form_content {
    display: none;
  }
  .profile form#receipt_form a.receipt_init {
    margin: 0 0 30px;
  }

  .profile form#receipt_form .product_imgs {
    display: block;
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 2px;
    border: 3px solid #ccc;
    margin: 0 auto 15px;
  }
    .profile form#receipt_form .product_imgs .prod_img {
      display: none;
      width: 100%;
      height: 100%;
      background-position: center center;
      background-size: 80%;
      background-repeat: no-repeat;
    }

  .profile form#receipt_form .product {
    text-align: center;
    margin: 0 0 15px;
  }
    .profile form#receipt_form .product_list {
      display: inline-block;
      width: 200px;
      margin: 0 20px 0 0;
    }
    .profile form#receipt_form .product_amount {
      display: inline-block;
      width: 60px;
    }
      .profile form#receipt_form .product_amount input {
        padding-left: 0;
        padding-right: 0;
      }
  .profile form#receipt_form .file_select {
    margin: 0 0 30px;
  }
    .profile form#receipt_form .file_select input[type="file"] {
      display: none;
    }

  .profile .receipts_list {
    list-style: none;
    font-size: .9em;
    padding: 0;
    margin: 0;
  }
    .profile .receipts_list li {
      display: block;
      box-sizing: border-box;
      border-bottom: 1px solid #ccc;
      padding: 10px 0;
      margin: 0;
      transition: all .2s;
    	-webkit-transition: all .2s;
    }
    .profile .receipts_list li.removal {
      opacity: .5;
    }
    .profile .receipts_list li:last-child {
      border: none;
    }
      .receipts_list li > div {
        display: inline-block;
        vertical-align: middle;
        box-sizing: border-box;
        padding: 0 10px 0 0;
      }
      .receipts_list li .id {
        width: 50px;
      }
      .receipts_list li .created {
        width: 100px;
        text-align: center;
      }
      .receipts_list li a.img {
        display: inline-block;
        vertical-align: middle;
        width: 50px;
        padding: 0;
        margin: 0 20px 0 10px;
      }
      .receipts_list li a.img:hover {
        opacity: .6;
      }
        .receipts_list li .img > div {
          width: 50px;
          height: 50px;
          background-position: center center;
          background-size: cover;
          background-repeat: no-repeat;
          border-radius: 0 10px 0 10px;
        }
      .receipts_list li .product {
        width: calc(100% - (100px + (50px + 20px + 10px) + 60px + 155px + 60px + 20px));
      }
      .receipts_list li .amount {
        width: 60px;
        text-align: center;
      }
      .receipts_list li .verified {
        width: 155px;
        color: #aaa;
        margin: -2px 0 0 0;
      }
        .receipts_list li .verified div {
          display: inline-block;
          vertical-align: middle;
          margin: 0 2px 0 0;
        }
          .receipts_list li .verified span {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            align-items: center;
            justify-items: center;
            width: 18px;
            height: 18px;
            background-color: #54882b;
            border-radius: 100%;
            -webkit-border-radius: 100%;
          }
          .receipts_list li .verified.denied span {
            background-color: #902a2a;
          }
          .receipts_list li .verified span svg {
            display: block;
            width: 60%;
            height: auto;
            max-height: 50%;
            color: #fff;
            fill: currentColor;
          }
        .receipts_list li .verified def {
          display: inline-block;
          vertical-align: middle;
          color: #54882b;
        }
        .receipts_list li .verified.denied def {
          color: #902a2a;
        }
      .receipts_list li .points_received {
        width: 60px;
        text-align: center;
      }
      .receipts_list li .delete {
        width: 20px;
        text-align: center;
        margin: -2px 0 0 0;
      }
        .receipts_list li .delete a {
          display: inline-block;
          width: 16px;
          height: 16px;
          border-radius: 3px;
          background: #cc1a1c;
          font-size: 13px;
          color: #fff;
          line-height: 15px;
          cursor: pointer;
        }
        .receipts_list li .delete a:hover {
          background: #000;
        }

  .profile .member_details .inputs {
    margin: 0 0 20px;
  }
    .profile .member_details .inputs label {
      display: inline-block;
      vertical-align: top;
      width: 150px;
      text-align: right;
      margin: 13px 10px 0 0;
    }
    .profile .member_details .inputs input {
      display: inline-block;
      vertical-align: top;
      width: calc(100% - (150px + 10px));
    }






@media screen and (max-width: 750px){
  .receipts_list li .created {
    margin-bottom: 15px;
  }
  .receipts_list li .product {
    width: calc(100% - (100px + (50px + 20px + 10px)));
  }
  .receipts_list li .amount {
    width: 80px;
  }
}




@media screen and (max-width: 600px){
  .profile .member_details .inputs label {
    width: 120px;
    font-size: .9em;
    margin: 13px 10px 0 0;
  }
  .profile .member_details .inputs input {
    width: calc(100% - (120px + 10px));
  }
}
