.share-name-with-price-widget {
  max-width: 453px;
  margin: auto;
  padding: 78px 53px;
  border-radius: 20px;
  background: #fff;

  @media screen and (max-width: 767px) {
    padding: 32px 43px;
  }
}

.share-name-with-price .item-content {
  display: none;
}

.share-name-with-price .item-content.active {
  display: block;
}

.share-name-with-price-widget .tab-list {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  position: relative;
}

.share-name-with-price-widget .tab-list::after {
  content: '';
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 8px;
  border-radius: 100px;
  background: rgba(40, 33, 31, 0.40);
}

.share-name-with-price-widget .tab-list .tab-item {
  flex: 1;
  color: #28211F;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;

  @media screen and (max-width: 767px) {
    font-size: 20px;
  }
}

.share-name-with-price-widget .tab-list .tab-item::after {
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 0px;
  left: 0;
  border-radius: 100px;
  background: #28211F;
}

.share-name-with-price-widget .tab-list .tab-item.active {
  color: #FDB932;
}

.share-name-with-price-widget .tab-list .tab-item.active::after {
  content: '';
}

.share-name-with-price .item-content {
  color: #28211F;
  font-size: 17px;
}

.share-name-with-price .security-name {
  margin-top: 24px;
}

.share-name-with-price .price-movement {
  padding: 27px 0;
  display: flex;
  align-items: center;

  @media screen and (max-width: 767px) {
    padding: 22px 0;
  }
}

.share-name-with-price .price-movement .total-value {
  font-size: 30px;
  font-weight: 700;

  @media screen and (max-width: 767px) {
    font-size: 18px;
  }
}

.share-name-with-price .price-movement .movement-percent {
  display: inline-block;
  min-width: 50px;
  text-align: center;
  border-radius: 4px;
  background: #F2F2F2;
  margin-left: 10px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
}

.share-name-with-price .price-movement .movement-percent.up::before,
.share-name-with-price .price-movement .movement-percent.down::before {
  content: '';
  width: 13px;
  height: 16px;
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.share-name-with-price .price-movement .movement-percent.up::before {
  background-image: url(../image/sensex-up-arrow.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.share-name-with-price .price-movement .movement-percent.down::before {
  background-image: url(../image/sensex-down-arrow.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}