.element-list-wrapper {
  width: 100%;
  height: 400px;
  overflow-x: auto;
  overflow-y: hidden;
}
.element-list-wrapper .element-list {
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}
.element-list-item {
  width: 150px;
  height: 170px;
  margin: 10px;
  background-color: white;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.19);
  position: relative;
  overflow: hidden;
}
.element-list-item img {
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.element-list-item .element-list-item-info {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  text-align: center;
  padding-top: 15px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 150ms ease-out;
}
.element-list-item .element-list-item-info .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%);
}
.element-list-item:hover .element-list-item-info {
  opacity: 1;
}
.element-list-item.active {
  background-color: rgba(0, 175, 0, 0.3);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.3), 0 1px 20px 0 rgba(0, 0, 0, 0.19);
}
.urlSetupBox .btn .fa-chevron-up,
.urlSetupBox .btn .fa-chevron-down {
  margin-right: 5px;
}
.urlSetupBox .more-options {
  display: none;
}
.urlSetupBox .nav-pills li a {
  background-color: #bfbfbf;
  color: #ffffff;
  font-weight: bold;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.urlSetupBox .nav-pills li a:hover,
.urlSetupBox .nav-pills li a:active {
  background-color: #a1a1a1;
}
.urlSetupBox .nav-pills li.active a {
  background-color: #a1a1a1;
}
.urlSetupBox .tab-content .tab-pane > .form-group {
  margin-top: 1rem;
  margin-bottom: 0;
}
.urlSetupBox .tab-content .tab-pane .table thead .columnKey {
  width: 40%;
}
.urlSetupBox .tab-content .tab-pane .table thead .columnValue {
  width: 50%;
}
.urlSetupBox .tab-content .tab-pane .table thead .columnButton {
  width: 34px;
}
.urlSetupBox .tab-content .tab-pane .table button {
  width: 37px;
  height: 34px;
  margin: 0;
  float: right;
}
.urlSetupBox .tab-content .tab-pane .table button i {
  padding: 0;
}
.urlSetupBox .tab-content .tab-pane .table tr th:first-of-type,
.urlSetupBox .tab-content .tab-pane .table tr td:first-of-type {
  padding-left: 0;
}
.urlSetupBox .tab-content .tab-pane .table tr th:last-of-type,
.urlSetupBox .tab-content .tab-pane .table tr td:last-of-type {
  padding-right: 0;
}
.cut-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
