@charset "utf-8";
/* CSS Document */
*{padding:0;margin:0;box-sizing:border-box;}
body{font-family: 'Poppins', sans-serif;position:relative;}
img{max-width:100%;}
.clr{clear:both;}

.flx{display:flex;}
.jsb{justify-content:space-between;}
.acntr{align-items:center;}

.mn_srchpt{width:100%;position:relative}
.bnrfl{background:url(https://images.emtcontent.com/activities-img/actbnr.png) no-repeat;background-size:cover;height: 250px;}
.srch_pnlnew {width: 612px;background: #fff;border-radius: 40px;height: 64px;margin: auto;position:relative;z-index:10;}
.srch_pnlnew:hover{background:#f2f2f2;cursor:pointer}
.whr_autpnl{width:48%;padding: 8px 5px 7px 10px;}
.whr_autpnl i, .whe_drpnl i{width:20px;height:20px;margin-right: 10px;}
.tilettp{font-size:15px;font-weight:600}
.whrbx_fld{width:100%;text-align:left;}
.whrbx_fld input{width:100%;border:none;outline:none;background:none;font-size:13px;font-family:'Poppins'}
.prel{position:relative;}
.crssbx{width:20px;height:20px;border-radius:50%;background: #ededed;font-size:13px;font-weight:600;text-align: center;position: absolute;right: 10px;top: 16px;cursor: pointer;}
.brdrgry{height:40px;border-right:1px solid #D4D4D4;margin-top: 12px;border-radius:10px;}
.wid70{width: 70%;}
.orgbtn_srch{width:55px;height:55px;border-radius:50%;background:#EF6614 url(https://images.emtcontent.com/activities-img/srchicn.svg) no-repeat;background-position: center;cursor: pointer;}
.whe_drpnl{width:48%;padding: 8px 5px 7px 10px;}
.orgbtn_srch:hover, .apply a:hover{
    background-color: #da5200;
    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;}
.whr_autpnl:hover, .whe_drpnl:hover{background:#fff;border-radius:40px;}

/*autosuggest*/
.whrbx_fld input::placeholder {
    font-size: 13px;
}
.aut_flmnbx {
    max-width: 600px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
    /* border: 1px solid #bbbaba; */
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9999;
    top: 70px;
}
.aut_flmnbx ul {
    padding: 0;
    margin: 0;
}
.aut_flmnbx ul li:first-child {
    border-radius: 10px 10px 0 0;
}
.aut_flmnbx ul li {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
}
.icoactmn {
    width: 44px;
    text-align: center;
    height: 44px;
}
.icoactmn img {
    border-radius: 10px;
    object-fit: cover;
    height: 44px;
    width: 44px;
}
.actdcrpbox {
    width: 90%;
    display: flex;
    flex-direction: column;
    text-align: left;
}
._tlte_apdrptn {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    color: #000;
}
.actdcrpbox span {
    display: block;
    color: #707070;
    font-size: 12px;
}
.aut_flmnbx ul li:hover {
    background: #fbfbfb;
    cursor: pointer;
}
/*autosuggest-ends*/

/*calander*/
.month{
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 0px 15px;
  }
  
  .month ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .month ul li {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    list-style: none;
	cursor:pointer;
  }
  

.clender-wrap {
    border-radius: 12px;
    border: 1px solid #bbbaba;
    background: #fff;
    padding: 15px 0 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 390px;
    margin: 0 auto;
    position: absolute;
    top: 66px;
	z-index:1;
}

/* ////////////////////javascript-clender */

  
  #frame {
    width: 400px;
    height: 480px;
    margin: 24px auto;
    background-color: #fff;
    border-radius: 35px;
    padding: 0 1em;
  }
  header {
    margin: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }
  .header-display {
    display: flex;
    align-items: center;
  }
  .header-display p {
    color: #000;
    margin: 5px;
    font-size: 1.2rem;
    word-spacing: 0.5rem;
  }
  .arrow {
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.4s linear;
  }
  .arrow:hover {
    background: var(--accent-2);
    transition: all 0.4s linear;
  }
  #days,
  .week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin: auto;
    padding: 0 20px;
    justify-content: space-between;
  }
  .week div,
  #days div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 3em;
    border-radius: 100%;
  }
  #days div:hover {
    background: var(--accent-2);
    color: rgb(14, 236, 99);
    cursor: pointer;
  }
  /* .week div {
    opacity: 0.5;
  } */
  .current-date {
    background-color: var(--accent);
    color: var(--white);
  }
  .display-selected {
    margin-bottom: 10px;
    padding: 20px 20px;
    text-align: center;
  }
  .inactive {
    opacity: 0.5;
  }
  /*  /////////////////////////////////////////*/
.table-clender {
    padding: 6px;
    overflow: hidden;
}
table, th, td {
    border-collapse: collapse;
    font-family:poppins;
}
table {
    width: 100%;
}
table td {
    text-align: center;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    line-height:30px;
	width:35px; cursor:pointer;
}
table th {
    padding-bottom: 15px;
    font-size: 14px;
    color: #000;
    border: none;
    font-weight: 700;
	width: 35px;
}
.ruppes {
    text-align: center;
    color: #2093EF;
    font-size: 11px;
    font-weight: 500;
    padding-top: 3px;
}
.green {
    color: #42dd13;
}
.red {
    color: #ff0202;
}
table thead tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    display: inline-table;
    margin-bottom: 10px;
}
tbody {
    padding-top: 10px;
}
.apply {
    margin: 0px 15px 0 15px;
}
.apply a{
    text-decoration: none;
    background-color:#EF6614;
    color: #fff;
    text-align: center;
    padding: 12px 30px;
    display: block;
    font-weight: 500;
    border-radius: 40px;
    font-size: 17px;
}
table thead{display:table-caption;width:100%;}
.wt600{font-weight:600 !important;}
.blactv{background:#2093EF;border-radius:50%;color:#fff;width:30px;height:30px;display:inline-block;line-height:30px;}
.grydate{color:#93969D;font-weight:600;vertical-align:top}
/*calander-ends*/



/*add-this-class-for-height*/
.ht-35{
	height:35px;
}

table td span:hover {
    background: #2093EF;
    border-radius: 50%;
    color: #fff;
    width: 30px;
    display: inline-block;
    line-height: 30px;
}
._banner img {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
}
._banner {
    border-radius: 10px;
    overflow: hidden;
    width: 77%;
    margin: 28px auto;
    height: 100px;
}
