input[disabled] {pointer-events:none;}

input.disabled {
    user-select : none;
    -moz-user-select : none;
    -webkit-user-select : none;
    color: gray;
    cursor: pointer;
}


.meshki-features i.fa {
  font-size: 5rem;
  margin-bottom: 20px;
}

.nav i.fa {
  font-size: 1.8rem;
}

.logo i.fa {
  padding-right: 8px;
}

div.share-links {
  display: -webkit-flex;
  display: -moz-box;
  display: inline-flex;
}

div.share-links i.fa {
  font-size: 4rem;
}

.title {
    font-size: 12vmax;
    padding-bottom: 10px;
}

.column, .columns {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
}

.container {
  padding-top: 20px;
}

.grid-table div div {
  text-align: center;
  border-style: solid;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #222;
  background-color: #E0E0E0;
}

.heading-font-size {
  font-size: 1.2rem;
  color: #959595;
  letter-spacing: 1px;
  vertical-align: middle;
}

.custom-textarea {
  height: 200px;
}

.custom-love {
  font-size: 1.7rem !important;
  color: red;
  animation: heart-beat 1s infinite;
}

.custom-down-cdn {
  width: 100%;
  max-width: 250px;
}

.custom-item {
  padding-top: 7px;
}

#twitter-widget-0 {
  margin-left: 20px;
  opacity: 0.7;
  transition: opacity .3s;
}

#twitter-widget-0:hover {
  opacity: 1;
}

@media (min-width: 544px) {
  .custom-text-right {
    text-align: right;
  }
}

@keyframes heart-beat {
  0%   { opacity: 1; }
  100% { opacity: .5; }
}


/* ============================================================================================================================
=== FARMER BROWN TALKING ICON
** ============================================================================================================================ */

.farmer-brown-wrap {
	position: fixed;
	bottom: 0;
	padding: 0 0 0 50px;
}

.farmer-brown {
	margin: 0;
    border: 0 none;
    padding: 0;
    cursor: pointer;
    z-index: 999999;
    top: 2px;
    bottom: 0px;
    width: auto;
    /* height: 350px; */
    left: 2px;
    right: 2px;
    border-bottom: 0;
}

.farmer-brown img {
	width: auto;
    height: 300px;
}

blockquote {
  margin:1em 0;
}

blockquote p {
  margin:0;
  font-size:2em;
}


/* ============================================================================================================================
== OVAL THOUGHT BUBBLE
** ============================================================================================================================ */

.oval-thought {
  position:relative;
  width:270px;
  padding:50px 40px;
  margin:auto auto -15px 60px;
  text-align:center;
  color:#fff;
  background:#D82508;
  /* css3 */
  background:-webkit-gradient(linear, 0 0, 0 100%, from(#cc5d4b), to(#D82508));
  background:-moz-linear-gradient(#cc5d4b, #D82508);
  background:-o-linear-gradient(#cc5d4b, #075698);
  background:linear-gradient(#cc5d4b, #D82508);
  /*
  NOTES:
  -webkit-border-radius:220px 120px; // produces oval in safari 4 and chrome 4
  -webkit-border-radius:220px / 120px; // produces oval in chrome 4 (again!) but not supported in safari 4
  Not correct application of the current spec, therefore, using longhand to avoid future problems with webkit corrects this
  */
  -webkit-border-top-left-radius:220px 120px;
  -webkit-border-top-right-radius:220px 120px;
  -webkit-border-bottom-right-radius:220px 120px;
  -webkit-border-bottom-left-radius:220px 120px;
  -moz-border-radius:220px / 120px;
  border-radius:220px / 120px;
}

.oval-thought p {font-size:1.25em;}

/* creates the larger circle */
.oval-thought:before {
  content:"";
  position:absolute;
  bottom:-20px;
  left:50px;
  width:30px;
  height:30px;
  background:#D82508;
  /* css3 */
  -webkit-border-radius:30px;
  -moz-border-radius:30px;
  border-radius:30px;
}

/* creates the smaller circle */
.oval-thought:after {
  content:"";
  position:absolute;
  bottom:-30px;
  left:30px;
  width:15px;
  height:15px;
  background:#D82508;
  /* css3 */
  -webkit-border-radius:15px;
  -moz-border-radius:15px;
  border-radius:15px;
}