/* /astra-child/css/reminder-builder.css */

.container.imp-rem-wrap{
  max-width: 980px;
  margin: 20px auto;
  background:#fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.container.imp-rem-wrap h1{
  text-align:center;
  font-size: 1.9rem;
  color:#0b57d0;
  margin: 8px 0 16px;
}

.search-box{ margin: 18px 0; }
.dropdown{ position:relative; }
.dropdown input{
  width:100%;
  padding:12px 12px;
  font-size:16px;
  border:1px solid #d9d9d9;
  border-radius:8px;
  outline:none;
}
.dropdown-content{
  display:none;
  position:absolute;
  width:100%;
  background:#fff;
  border:1px solid #e6e6e6;
  max-height:240px;
  overflow:auto;
  z-index: 99;
  border-radius:10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  margin-top: 8px;
}
.dropdown-content div{
  padding:10px 12px;
  cursor:pointer;
  font-size:15px;
  border-bottom: 1px solid #f2f2f2;
}
.dropdown-content div:hover{ background:#f7f9ff; }
.dropdown-content strong{ color:#111; }

#download-section{
  background:#eaf3fb;
  border-radius: 10px;
  padding: 18px 18px 22px;
  margin-top: 18px;
  position: relative;
  overflow:hidden;
}

.heading-area{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin: 4px 4px 12px;
}

.heading-left{
  font-weight:700;
  letter-spacing: .5px;
  color:#000;
  font-size: 26px;
  text-transform: uppercase;
	font-family: "Montserrat", Sans-serif !important;
}

.heading-right{
  text-align:right;
  line-height: 1.05;
}
.heading-right .header-logo{
  width: 170px;
  height: auto;
  display:block;
  margin-left:auto;
}
.heading-right .logo-sub{
  font-size: 12px;
  color:#3c6fb8;
  font-weight:700;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hr-line{
  height: 4px;
  background:#2b2b2b;
  opacity:.9;
  margin: 8px 0 14px;
  border-radius: 6px;
}

.product-box{
  position: relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  row-gap: 18px;
  padding: 10px 6px 0;
}
.product-box:before{
  content:"";
  position:absolute;
  left:50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background:#2b2b2b;
  opacity:.85;
  border-radius: 10px;
}

.product{
  position:relative;
  border: 3px solid #e21d23;
  border-radius: 14px;
  padding: 14px 14px;
  background:#ffffff;
  text-align:center;
  min-height: 70px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.product strong{
  font-size: 20px;
  font-weight: 700 !important;
  color:#0b57d0; /* always blue */
  text-transform: uppercase;
}

.product span{
  margin-top: 4px;
  font-size: 13px;
  color:#111;
}

.product .remove-btn{
  position:absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border:none;
  border-radius: 50%;
  background:red;
  color:white;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height: 1;
}
.remove-btn{
	padding:10px 15px !important;
}

button.download{
  display:block;
  margin: 16px auto 0;
  padding: 11px 20px;
  font-size: 16px;
  background:#0b57d0;
  color:#fff;
  border:none;
  border-radius: 8px;
  cursor:pointer;
}
button.download:hover{ filter: brightness(.92); }

@media (max-width: 768px){
  .heading-area{ flex-direction:column; gap:10px; }
  .heading-right{ text-align:left; }
  .heading-right .header-logo{ margin-left:0; }
  .product-box{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .product-box:before{ display:none; }
}