

.radio_custom_style .plans .plan {
	
	margin: 5px !important;
}

.radio_custom_style label {
	
	margin: 5px !important;
}




.plans {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    /* justify-content:space-around; */
    max-width: 70%;
    /* padding: 15px; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* background: #fff; */
    border-radius: 20px;
    /* box-shadow: 0px 8px 10px 0px #d8dfeb; */
  }

  .plans .plan input[type="radio"] {
    position: absolute;
    opacity: 0;
  }

  .plans .plan {
    cursor: pointer;
    width: 20%;
    margin: 5px;
  }

  .plans .plan .plan-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 2px solid #e1e2e7;
    border-radius: 10px;
    -webkit-transition: -webkit-box-shadow 0.4s;
    transition: -webkit-box-shadow 0.4s;
    -o-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
    transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
    position: relative;
		background: white  !important;
  }

  .plans .plan .plan-details span {
  /*   margin-bottom: 10px; */
  /*   display: block; */
    font-size: 16px;
    line-height: 0;
    color: #252f42;
  }

  .plans .plan .plan-content:hover {
    -webkit-box-shadow: 0px 3px 5px 0px #e8e8e8;
    box-shadow: 0px 3px 5px 0px #e8e8e8;
  }

  .plans .plan input[type="radio"]:checked + .plan-content:after {
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    background: #a64913;
    /* right: 20px; */
    /* top: 20px; */
    border-radius: 100%;
    border: 3px solid #fff;
    -webkit-box-shadow: 0px 0px 0px 2px #a64913;
    box-shadow: 0px 0px 0px 2px #a64913;
}


.plans .plan input[type="radio"] + .plan-content:after {
	content: "";
	position: absolute;
	height: 15px;
	width: 15px;
	background: #eee;
	/* right: 20px; */
	/* top: 20px; */
	border-radius: 100%;
	border: 3px solid #fff;
	-webkit-box-shadow: 0px 0px 0px 2px #6a961f;
	box-shadow: 0px 0px 0px 2px #ccc;
}
  .plans .plan input[type="radio"]:checked + .plan-content {
    -webkit-transition: ease-in 0.3s;
    -o-transition: ease-in 0.3s;
    transition: ease-in 0.3s;
  }

	.plans .plan input[type="radio"]:checked + .plan-content .plan-details span {
		color: #a64913 !important;
    font-weight: bold;
	}

  @media screen and (max-width: 991px) {
    .plans {
      margin: 0 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      /* padding: 40px; */
    }

    .plans .plan {
      width: 80%;
    }

    /* .plan.complete-plan {
      margin-top: 20px;
    } */

    .plans .plan .plan-content .plan-details {
      width: 70%;
      display: inline-block;
      margin: auto;
    }

    .plans .plan input[type="radio"]:checked + .plan-content:after {
      top: 45%;
      -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
      transform: translate(-50%);
    }
  }

  @media screen and (max-width: 767px) {
    .plans .plan .plan-content .plan-details {
      width: 60%;
      display: inline-block;
    }
  }

  @media screen and (max-width: 540px) {
    .plans .plan .plan-content img {
      margin-bottom: 20px;
      height: 56px;
      -webkit-transition: height 0.4s;
      -o-transition: height 0.4s;
      transition: height 0.4s;
    }

    .plans .plan input[type="radio"]:checked + .plan-content:after {
  /*     top: 20px; */
      right: 10px;
    }

    .plans .plan .plan-content .plan-details {
      width: 100%;
    }

    .plans .plan .plan-content {
      padding: 20px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: baseline;
      -ms-flex-align: baseline;
      align-items: baseline;
    }
  }

  @media screen and (max-width: 767px) {
    /* inspiration */
    .inspiration {
      display: none;
    }
  }
  .plan-details{
    margin:auto;
  }
	
	.width100{
		width: 100px !important;
	}
	.width150{
		width: 150px !important;
	}

	.width200{
		width: 200px !important;
	}

	.width250{
		width: 250px !important;
	}
	


	.minwidth150{
		min-width: 150px;
	}
