@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


.uimonk-read-toggle {
    background: #06264f;
    height: 40px;
    width: 150px;
    margin: auto;
    margin-top: 20px !important;
    display: flex; 
    justify-content: center;
    align-items: center;
    /*border-radius: 20px;*/
  /*display: inline-block;*/
  margin-top: 8px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-style: normal;
}

.uimonk-read-toggle:hover {
    background-color: #175db7;
}




.uimonkparaholder {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* Only show 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}



 .uimonkparaholder.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}