@charset "utf-8";
/* CSS Document */
	.form-check-inline{
		display:block
	}
	body{
	  font-family: 'Sarabun', sans-serif;
	  font-size:14px;
	}
	h1, h2, h3, h4, h5,.pricingdiv ul.theplan li.title{
	  font-family: 'Mitr', sans-serif;
	}
	.bg-primary {
		background-color: #C7A562 !important;
	}
	.widget_tag_cloud a {
    font-size: 11px!important;
    letter-spacing: 1px;
    line-height: inherit;
    padding: 3px 10px;
    color: #616161;
    display: inline-block;
    margin: 0 3px 6px 0;
    text-decoration: none!important;
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    transition: all .2s linear;
}
#footer-widgets {
    background-image: url(https://ancbroker.com/images/bg-grey2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: none;
    color: #464646;
    padding: 0 0 20px 0;
    margin-top: 30px;
    border-top: solid 1px #eee;
    -webkit-box-shadow: 0 3px 5px 1px rgba(168,168,168,1);
    -moz-box-shadow: 0 3px 5px 1px rgba(168,168,168,1);
    box-shadow: 0 3px 5px 1px rgba(168,168,168,1);
}
#footer {
	display: block;
    background-color: #333;
    color: #ccc;
    padding: 17px 0;
    text-align: center;
    border-top: solid 1px #555;
}
#footer p {
    margin: 0;
    padding: 0;
    line-height: 100%;
}
#footer a {
    color: #0099da;
    text-decoration: none;
}
.label-spec{
	display: inline;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    padding-bottom: 5%;
	padding-top: 3%;
	
	}
	.img-border{
	-webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 15px;
    border: 2px solid #ccc;
	max-width: 45%;
	margin-right: 2% 
	}
.pricingdiv{
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  justify-content: center;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}

.pricingdiv ul.theplan{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: black;
  /*width: 250px;  width of each table */
  margin-right: 20px; /* spacing between tables */
  margin-bottom: 1em;
  border: 1px solid gray;
  transition: all .5s;
}

.pricingdiv ul.theplan:hover{ /* when mouse hover over pricing table */
  transform: scale(1.05);
  transition: all .5s;
  z-index: 100;
  box-shadow: 0 0 10px gray;
}

.pricingdiv ul.theplan .center{
  margin: 0 auto;
  text-align: center;
}

.pricingdiv ul.theplan img{
  max-width: 80%;
  height: auto;
}

.pricingdiv ul.theplan li{
  padding: 10px 10px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.pricingdiv ul.theplan li.title{
  font-weight: bold;
  text-align: center;
  padding: 30px 10px;
  background: rgb(40, 193, 203);
  color: white;
  box-shadow: 0 -10px 5px rgba(0,0,0,.1) inset;
  text-transform: uppercase;
}

.pricingdiv ul.theplan:nth-of-type(2) li.title{
  background: rgb(249, 111, 118);
  color: white;
}
    
.pricingdiv ul.theplan:nth-of-type(3) li.title{
  background: rgb(210, 117, 251);
  color: white;
}

.pricingdiv ul.theplan li b{
  text-transform: uppercase;
}
.pricingdiv ul.theplan li.title b{
  font-size: 250%;
}

.pricingdiv ul.theplan:last-of-type{ /* remove right margin in very last table */
  margin-right: 0;
}

/*very last LI within each pricing UL */
.pricingdiv ul.theplan li:last-of-type{
  text-align: center;
  margin-top: auto; /*align last LI (price botton li) to the very bottom of UL */
}  

.pricingdiv a.pricebutton{
  background: red;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  margin: 10px auto;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
}

@media only screen and (max-width: 600px) {
  .pricingdiv ul.theplan{
    border-radius: 0;
    width: 100%;
    margin-right: 0;
  }
  
  .pricingdiv ul.theplan:hover{
    transform: none;
    box-shadow: none;
  }
  
  .pricingdiv a.pricebutton{
    display: block;
  }
}
	