/*
Theme Name: Indaweb
Theme URI: https://indaweb.it/
Author: Indaweb
Author URI: https://indaweb.it/
Description: Theme created for the Tonello Payment Platform
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: indaweb
*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: "Lane Narrow";
  src: url('/wp-content/themes/indaweb/assets/fonts/lane-narrow.ttf') format("truetype");
}

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}
  body {
    margin: 0;
  }

  main {
    display: block;
  }
  hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
  }
  pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  a {
    background-color: transparent;
  }
  abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  sup {
    top: -0.5em;
  }
  img {
    border-style: none;
  }
  button,
  input,
  optgroup,
  select,
  textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
  }
  button,
  input { /* 1 */
    overflow: visible;
  }
  button,
  select { /* 1 */
    text-transform: none;
  }
  button,
  [type="button"],
  [type="reset"],
  [type="submit"] {
    -webkit-appearance: button;
  }
  button::-moz-focus-inner,
  [type="button"]::-moz-focus-inner,
  [type="reset"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  button:-moz-focusring,
  [type="button"]:-moz-focusring,
  [type="reset"]:-moz-focusring,
  [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
  }
  progress {
    vertical-align: baseline;
  }
  textarea {
    overflow: auto;
  }
  [type="checkbox"],
  [type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
  }
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  [type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
  }
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
  }
  details {
    display: block;
  }
  summary {
    display: list-item;
  }
  template {
    display: none;
  }
  [hidden] {
    display: none;
  }


*{
 box-sizing: border-box;   
}
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background-color: #fff;
    padding: 10px;
    text-align: center;
}
.container{
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
footer {
    background-color: #f5f5f5;
    color: #000;
    padding: 10px 20px;
    text-align: center;
}
footer p{
  font-size: .85rem;
}
footer p a{
  color: #000;
}
h1, h2, h3, h4, h5, h6 {
    color: #000;
    margin-top: 0;
    font-family: 'Lane Narrow', sans-serif;
    font-weight: 700;
}
.main-content{
  min-height: 85vh;
}
.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.platform-logo a{
  display: block;
}
.platform-logo img {
  height: 20px;
}
.platform-nav {
  position: relative;
}
.platform-menu {
  display: flex;
  gap: 20px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
  align-items: center;
}
.nav-menu li {
  display: inline;
}
.nav-menu a {
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-weight: 300;
  color: #000;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger {
  width: 30px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .menu-toggle {
      display: flex;
  }
  .platform-menu {
      display: none;
      position: absolute;
      top: 100px;
      right: 0;
      background: white;
      width: 100%;
      flex-direction: column;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 15px;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  }
  .platform-menu.active {
      display: flex;
      opacity: 1;
      transform: translateY(0);
  }
}
.platform-container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
.page-hero{
  min-height: 70vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center;
}
.page-hero.small-hero{
  min-height: 30vh;
}
.page-hero.small-hero svg{
  display: none !important;
}
.page-hero:before{
  width: 100%;
  height: 100%;
  content: ' ';
  background-color: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.scroll-indicator svg{
  z-index: 3;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
}
.hero-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  max-width: 1280px;
  width: 100%;
}
.hero-title{
  color: #fff;
  text-transform: uppercase;
  font-size: 4em;
  z-index: 2;
  text-align: center;
  margin-bottom: 40px;
  z-index: 3;
}
.hero-text{
  color: #fff;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 1023px){
  .hero-text{
    padding: 0 20px;
  }
}
.custom-intro{
  margin: 50px auto 30px 0;
}
.custom-intro h4{
  font-weight: 700;
  font-size: 1.2rem;
}
.step h2{
  text-transform: uppercase;
  font-size: 1.2rem !important;
  margin-bottom: 30px;
  margin-top: 50px;
  font-weight: 700;
}
.step input, .step select{
  border: 1px solid #000;
  width: 100%;
  padding: 8px 15px;
  border-radius: 0;
  margin-bottom: 15px;
}
.step input[type="checkbox"]{
  width: auto !important;
  margin-bottom: 0;
  margin-right: 5px;
}
#remove-duplicates-container{
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.step button{
  margin-top: 30px;
}
.step button.next-step, #create-project,#modal-ok, .project-col a{
  min-width: 100px;
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  padding: 10px 25px;
  border: 1px solid #000;
  margin-right: 20px;
}
.step button.next-step{
  float: right;
}
#modal-ok{
  margin-right: 0 !important;
  cursor: pointer;
}
.step button.prev-step, .attribute-pdf-link{
  min-width: 100px;
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
  font-weight: 300;
  padding: 10px 25px;
  border: 1px solid #000;
}
.attribute-pdf-link{
  display: inline-block;
  margin-top: 25px;
  text-decoration: none;
}
.step button{
  cursor: pointer;
}
.step {
  display: none;
  margin-bottom: 120px;
}
.step-1 {
  display: block;
}
#benefit-list div, #drop-area div {
  padding: 10px;
  margin: 5px;
  background: #f0f0f0;
  cursor: move;
}
#drop-area {
  border: 2px dashed #000;
  padding: 20px;
  min-height: 100px;
}
.attribute-item {
  padding: 10px 5px;
  display: flex; 
  align-items: center;
  background: #f5f5f5;
  position: relative;
}
.attribute-text {
  max-width: 80%;
}
/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  background: white;
  padding: 20px;
  width: 300px;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.custom-notes-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.custom-notes-templates a{
  display: block;
  color: #000;
  text-align: center;
  margin: 20px 0;
}
.custom-notes-intro{
  text-align: center;
}
@media screen and (min-width: 768px) {
  .custom-notes-templates{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}
.step-inputs{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-column-gap: 20px;
}
#multi-step-form{
  margin-bottom: 50px;
}
.selected-benefit{
  padding: 10px;
  margin: 5px 5px 5px 0;
  background: #f0f0f0;
  cursor: pointer;
  border: 2px solid #f0f0f0;
}
.active-benefit{
  border: 2px solid #333;
}
.strikethrough {
  text-decoration: line-through;
  color: grey;
}
.inactive {
  opacity: 0.5; /* Makes the trashcan semi-transparent */
  cursor: not-allowed; /* Changes the cursor to indicate disabled state */
}
.remove-attribute{
  cursor: pointer;
  margin-right: 8px;
}
.remove-attribute:before{
  content: ' ';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  background-color: #ccc;
  padding: 5px;
  display: inline-block;
  background-image: url('/wp-content/plugins/indaweb-digitaldealertool/assets/trash.svg');
}
.remove-attribute.inactive:before{
  background-image: url('/wp-content/plugins/indaweb-digitaldealertool/assets/plus.svg');
}
.attribute-item .attribute-checkbox{
  display: none;
  width: auto !important;
}
.reviewed-benefits-wrapper,
.benefits-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-column-gap: 20px;
}
.single-reviewed-benefit, .single-benefit{
  padding: 20px;
  background-color: #f3f3f3;
  margin-bottom: 20px;
}
.single-reviewed-benefit h4, .single-benefit h4{
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.single-reviewed-benefit h5, .single-benefit h5{
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.1rem;
}
#review-selection h3, .custom-pdf-upload label{
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 40px;
  font-size: 1rem;
  font-family: 'Lane Narrow', sans-serif;
}
.custom-pdf-upload label{
  margin-bottom: 20px;
  display: block;
}
.project-title{
  padding: 10vh 0;
  text-transform: uppercase;
  font-size: 2rem;
  text-align: center;
}
.project-row{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-column-gap: 50px;
}
.project-col{
  margin-bottom: 40px;
  text-align: center;
  padding: 20px;
  background-color: #f7f7f7;
}
.project-col h3{
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.project-col p{
  text-align: center;
}
.project-col a{
  display: inline-block;
  margin-right: 0 !important;
  text-decoration: none;
}
.um-form, .um-postmessage{
  margin-top: 50px
}
.um-postmessage{
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.4;
}
.platform-container .um-field-label label{
  font-weight: 400 !important;
}
.platform-container .select2-container .select2-choice,
.platform-container .select2-container-multi .select2-choices,
.platform-container .select2-drop, .select2-drop-active,
.platform-container .select2-drop.select2-drop-above,
.platform-container .um .um-form input[type=number],
.platform-container .um .um-form input[type=password],
.platform-container .um .um-form input[type=search],
.platform-container .um .um-form input[type=tel],
.platform-container .um .um-form input[type=text],
.platform-container .um .um-form textarea,
.platform-container .um .upload-progress{
  border: 1px solid #000 !important;
  border-radius: 0 !important;
}
.um input[type=submit].um-button{
  min-width: 100px !important;
  background-color: #000 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 25px !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.nav-menu .login a,
.nav-menu .logout a{
  min-width: 100px !important;
  background-color: #000 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 25px !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
}
.nav-menu .login a:before{
  content: ' ';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  padding: 0;
  display: inline-block;
  background-image: url('/wp-content/themes/indaweb/assets/images/login.svg');
  filter: invert(1);
  margin-right: 10px;
}
.nav-menu .logout a:before{
  content: ' ';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  padding: 0;
  display: inline-block;
  background-image: url('/wp-content/themes/indaweb/assets/images/logout.svg');
  filter: invert(1);
  margin-right: 10px;
}
.um .um-button.um-alt{
  min-width: 100px;
  background-color: #fff!important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 25px !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.nav-menu .register a{
  min-width: 100px;
  background-color: #fff!important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 25px !important;
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-block;
}
.nav-menu li{
  display: inline-block;
}
.um-account-meta-img, .um-account-profile-link{
  display: none !important;
}
.um-account-name{
  text-align: left !important;
}
.um-account-name a{
  pointer-events: none !important;
  font-family: 'Lane Narrow', sans-serif;
  font-size: 1.7rem !important;
  color: #000 !important;
  text-transform: uppercase;
}
.um-account-side li a.current, .um-account-side li a.current:hover,
.um-account-side li a span.um-account-title,
.um-account-side li a span.um-account-icon i{
  color:#000 !important;
}
.um-account-heading i{
  display: none !important;
}
.um-account-heading{
  font-family: 'Lane Narrow', sans-serif;
  font-size: 1.4rem !important;
  color: #000 !important;
  text-transform: uppercase;
}
.my-projects-title{
  margin-top: 60px;
  text-transform: uppercase;
  font-size: 3rem;
}
.documents-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  grid-column-gap: 30px;
  margin-top: 50px;
}
/*.document-item{
  margin-bottom: 30px;
  max-width: 750px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background-color: #f3f3f3;
}
.document-item h2{
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0 !important;
  font-family: 'Montserrat';
  margin-bottom: 0;
}
@media screen and (min-width: 769px){
  .document-item h2{
    width: 150px;
  }
}*/
.document-date{
  font-size: .9rem;
}
.document-item .download-btn,
#confirm-custom-pdf{
  min-width: 100px;
  background-color: #000!important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 15px !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}
#confirm-custom-pdf{
  margin-top: 30px;
  cursor: pointer;
}
.document-item .details-btn{
  min-width: 100px;
  background-color: #fff!important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 15px !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  margin-bottom: 0 !important;
}
.document-item .edit-btn{
  min-width: 100px;
  background-color: #000!important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 15px !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  margin-bottom: 0 !important;
}
.document-item .details-btn:before,
.document-item .delete-project-btn:before,
.document-item .edit-btn:before{
  content: ' ';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
  padding: 0;
  display: inline-block;
  margin-right: 10px;
}
.document-item .details-btn:before{
  background-image: url('/wp-content/themes/indaweb/assets/images/details.svg');
}
.document-item .delete-project-btn:before{
  background-image: url('/wp-content/themes/indaweb/assets/images/trash.svg');
}
.document-item .edit-btn:before{
  background-image: url('/wp-content/themes/indaweb/assets/images/edit.svg');
}
.document-buttons{
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 768px){
  .documents-list, .document-item{
    display: block;
  }
  .document-item a{
    margin-bottom: 15px;
  }
  .document-item h2{
    margin-bottom: 25px;
  }
}
.project-meta h3{
  font-size: 1.4rem;
  margin-top: 30px;
  text-transform: uppercase;
}
.project-summary{
  margin-bottom: 60px;
  margin-top: 20px;
  border-top: 1px solid #000;
}
.project-summary h2{
  padding-top: 30px;
}
.step3-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .step3-modal{
    width: 95%;
  }
}
.modal-attribute-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  width: 50%;
  border-radius: 8px;
}
.info-icon {
  cursor: pointer;
  margin-left: 10px;
  font-size: 16px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  background: #333;
  border-radius: 50px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.35;
}
.modal-attribute-main-content{
  background: white;
  position: relative;
  max-width: 600px;
}
#modal-attribute-content{
  padding: 30px;
}
.delete-project-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.delete-project-modal .modal-content {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  width: 95%;
  margin: 0 auto;
  text-align: center;
  border-radius: 0;
}
.delete-project-modal .modal-content p{
  font-size: 1.15em;
  margin-top: 0 !important;
  margin-bottom: 30px;
}
.delete-project-modal .modal-content button {
  min-width: 100px;
  background-color: #fff !important;
  color: #000 !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 25px !important;
  border: 2px solid #000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: .3s;
}
.delete-project-modal .modal-content button:hover{
  background-color: #000 !important;
  color: #fff !important;
}
.delete-project-btn{
  background-color: #fff !important;
  color: #820000 !important;
  text-transform: uppercase !important;
  font-weight: 300 !important;
  padding: 10px 15px !important;
  border: 2px solid #820000 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  cursor: pointer;
}
.single-project-description{
  min-height: 60px;
}
.um-page-login h2{
  margin-top: 70px;
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 10px;
}
.um-page-login h4{
  margin-top: 70px;
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 50px;
}
.attribute-item[data-main-id="487"] .remove-attribute {
  display: none !important;
}
.documents-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.documents-table {
    width: 100%;
    border-collapse: collapse;
}

.documents-table thead th {
    background-color: #f8f9fa;
    text-align: left;
    padding: 12px 10px;
    border-bottom: 2px solid #ddd;
}

.documents-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.document-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.document-actions .button {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.view-btn {
    background-color: #17a2b8;
    color: #fff;
}

.edit-btn {
    background-color: #007bff;
    color: #fff;
}

.delete-project-btn {
    background-color: #dc3545;
    color: #fff;
}

@media (max-width: 768px) {
    .documents-table thead {
        display: none;
    }

    .documents-table, 
    .documents-table tbody, 
    .documents-table tr, 
    .documents-table td {
        display: block;
        width: 100%;
    }

    .documents-table tr {
        margin-bottom: 20px;
        border: 1px solid #ccc;
        padding: 0;
        border-radius: 6px;
        background: #fff;
    }

    .documents-table td {
        padding: 10px;
        border: none;
        position: relative;
    }

    .documents-table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        color: #555;
        margin-bottom: 4px;
    }
    .document-item .details-btn,
    .document-item .edit-btn,
    .document-item .delete-project-btn{
      padding: 8px 10px !important;
      margin-bottom: 10px !important;
    }
}

