.img-plan svg{
    width: 50px;
    height: 50px;
    margin-top: 5px;
}
.plan-item{
    position: relative;
    background-color: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.07);
    width: 31%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top-plan-item, .img-plan{
  display: flex;
  align-items: center;
}
.type-plan{
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}
.plans-container{
  display: flex;
  justify-content: space-between;
  font-family: 'iransans';
}
.type-plan span:first-child{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.des-type-plan{
  font-size: 14px;
  color: #535353;
}
.plan-prices{
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.plan-prices svg{
  width: 12px;
  margin: 0 20px;
}
.initialPrice, .sumPrice{
  font-size: 25px;
  font-weight: 600;
}
.initialPrice span, .sumPrice span{
  font-size: 14px;
  color: #535353;
}
.sumPrice{
  color: #5267FF;
}
.plan-featurs{
  margin-top: 40px;
  margin-bottom: 20px;
}
.item-plan-featurs{
  display: flex;
}
.item-plan-featurs svg{
  width: 20px;
  margin-left: 15px;
}
.or-items{
  margin: 10px 5px 10px 5px;
  display: inline-block;
  color: #000;
}
.bottom-plan-item button{
    border: unset;
    background-color: #5267FF;
    color: #fff;
    width: 100%;
    line-height: 35px;
    border-radius: 12px;
}
.bottom-plan-item button:hover, .bottom-plan-item button:focus{
  background-color: #5267FF;
}
.popular-plan{
  box-shadow: 0px 0px 9px 1px #5266ff9b;
  transform: scale(1.05);
  padding: 30px 25px;
}
.popular-txt{
    position: absolute;
    top: -18px;
    right: calc(50% - 60px);
    padding: 8px 26px;
    background-color: #5267FF;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
}
.amount-selector, .amount-info{
  display: flex;
  align-items: center;
}
.amount-selector{
  margin-top: 70px;
  width: 100%;
}
.amount-info{
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.07);
    color: #000;
    width: 35%;
    justify-content: center;
}
.amount-info p{
  margin: 0;
  font-size: 18px;
}
.amount-info svg{
  width: 12px;
  margin: 0 20px;
}
.amount-info p span{
  font-size: 16px;
}
.slider-container{
  width: 58%;
  padding: 7px 15px 0 15px;
}
.slider-container input{
  width: 100%;
}
.charge-btn{
  width: 7%;
  border: unset;
  background-color: #5267ff;
  color: #fff;
  border-radius: 8px;
  padding: 12px;
}
.charge-btn:hover , .charge-btn:focus{
  background-color: #5267ff;
}
#amountRange {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: #ABC3EA;
  border-radius: 8px;
  outline: none;
  margin: 20px 0;
}
#amountRange::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: #5267FF; 
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(82, 103, 255, 0.4); 
  border: 3px solid #fff;
}
@media only screen and (min-width:320px) and (max-width:1400px){
  .plan-item{
    padding: 15px;
  }
  .popular-plan{
    padding: 25px 15px 15px;
  }
  .img-plan svg{
    width: 40px;
    height: 40px;
  }
  .initialPrice, .sumPrice{
    font-size: 18px;
  }
  .initialPrice span, .sumPrice span{
    font-size: 12px;
  }
  .item-plan-featurs span, .amount-info p span{
    font-size: 14px;
  }
  .bottom-plan-item button{
    font-size: 14px;
    line-height: 30px;
  }
}

@media only screen and (min-width:1000px) and (max-width:1400px){
  .amount-info{
    padding: 20px 15px;
    width: 40%;
  }
  .slider-container{
    width: 53%;
  }
  .amount-info p{
    font-size: 16px;
  }
}
@media only screen and (min-width:320px) and (max-width:998px){
  .plans-container, .amount-selector{
    flex-direction: column;
  }
  .plan-item{
    width: 100%;
  }
  .popular-plan{
    transform: scale(1);
    margin: 20px 0px;
  }
  .popular-txt{
    top: -10px;
  }
  .amount-info{
    width: 100%;
  }
  .slider-container{
    width: 100%;
    padding: 7px 0 0 0;
  }
  .charge-btn{
    width: 15%;
  }
  .amount-selector{
      margin-top: 30px;
  }
}
@media only screen and (min-width:320px) and (max-width:768px){
    .charge-btn {
        width: 30%;
    }
    .amount-info p{
      font-size: 14px;
    }
    .amount-info p span{
      font-size: 12px;
    }
}