.widget
{
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 15px 0px;
  border-radius: 5px;
  background-color: #eee;
}

.widget__header
{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 70px;
  padding: 0px 30px 0px 30px;
  margin: 0px 0px 0px 0px;
  background-color: var(--head-color, #5f87b4);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;

}

@media (max-width: 767px)
{
  .widget__header
  {
    cursor: pointer;
  }
}

@media (min-width: 768px)
{
  .widget__header
  {
    padding: 0px 15px 0px 15px;
  }
}

.widget__title
{
  position: relative;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}

.widget__title::before,
.widget__title::after
{
  content: none;
}

.widget__body
{
  padding: 25px 20px 25px 20px;
  margin: 0px 0px 0px 0px;
}