.section-widget__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-widget__list:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 959px) {
  .section-widget__list {
    display: block;
  }
}
.section-widget__list_center {
  justify-content: center;
}
.section-widget__item {
  width: calc(50% - 12px);
  min-height: 180px;
  border-radius: 8px;
  border: 1px solid #ededed;
  -webkit-transition: all 0.175s;
  -moz-transition: all 0.175s;
  -o-transition: all 0.175s;
  -ms-transition: all 0.175s;
  transition: all 0.175s;
  background: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.section-widget__item.section-widget__item_with-hover:hover {
  border: 1px solid #bfbfbf;
}
@media screen and (max-width: 959px) {
  .section-widget__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .section-widget__item:last-child {
    margin-bottom: 0;
  }
}
.section-widget__widget {
  width: calc(100% - 1px);
  min-height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
}
