/* Grid */
.iw-dl-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Button stile base (personalizza colori/hover a piacere) */
.iw-dl-btn{
    width: 100%;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #616966;
    padding: 14px 12px;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.2;
    transition: transform .08s ease, background .15s ease;
}
.iw-dl-btn:hover{
  background:#616966;
	color:#fff;
}
.iw-dl-btn:active{
  transform: translateY(1px);
}

/* Responsive */
@media (max-width: 980px){
  .iw-dl-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .iw-dl-grid{ grid-template-columns: 1fr; }
}

/* MODAL */
.iw-dl-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.iw-dl-modal,
.iw-dl-modal *{
  box-sizing: border-box;
}

.iw-dl-modal[aria-hidden="false"]{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY CLICCABILE */
.iw-dl-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  cursor: pointer;
}

/* POPUP */
.iw-dl-modal__panel{
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 32px));
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.iw-dl-modal__content,
.iw-dl-modal__success{
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.iw-dl-modal__content code{
  white-space: normal;
  word-break: break-word;
}
.iw-dl-modal__content h3{
	font-size:25px!important;
}
.iw-dl-modal__content .form-row.one .wpcf7-form-control{
	width:100%!important;
	max-width:100%!important;
	padding:12px!important;
}
.iw-dl-modal__content .form-row.one {
	width:100%!important;
	max-width:100%!important;
	margin-bottom: 0rem!important;
}
.iw-dl-modal__content .wpcf7-list-item{
	margin:0!important;
	padding:0!important;
}
.iw-dl-modal__content .wpcf7-list-item-label{
	font-size:16px!important;
}
.iw-dl-modal__content .wpcf7-submit{
	color: #FFFFFF !important;
    border-radius: 0px;
    font-size: 19px;
    background-color: #ED8024 !important;
	border:solid 1px #ED8024;
}
.iw-dl-downloadLink{
	color: #FFFFFF !important;
    border-radius: 0px;
    font-size: 19px;
    background-color: #ED8024 !important;
	border:solid 1px #ED8024;
	padding:12px;
	border-radius:0;
}
.iw-dl-modal__content .wpcf7-submit:hover, .iw-dl-downloadLink:hover{
	color: #ED8024 !important;
    border-color: #ED8024;
    border-radius: 0px;
    font-size: 19px;
    background-color: #fff !important;
}
.iw-dl-modal__successText{
	margin-bottom:25px!important;
}
.iw-dl-modal__content .wpcf7-not-valid-tip{
	font-size:16px!important;
}
/* CLOSE */
.iw-dl-modal__close{
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* RIMUOVIAMO IL TITOLO */
.iw-dl-modal__title{
  display: none;
}

body.iw-modal-open{
  overflow: hidden;
}
