.tag_button {
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
  }
.my_aligh_right{
  text-align: right;
}
.my_aligh_left{
  text-align: left;
}
.my_inline{
  display: inline-block;
  margin: 0;
}
.custom-size-menu{
  padding: 5px;
  margin-right: 5px;
}

/* Styles for desktop */

/* Hide the element on desktop */
.element-to-hide {
  display: none;
}

/* Styles for mobile */

/* Show the element on mobile */
@media only screen and (max-width: 767px) {
  .element-to-hide {
    display: inline-block;
  }
}

.comment-form textarea.custom-textarea { min-height: 100px; }