/* view more variants */

/* coin-view-more-default */
/* text-white icon-white fw-400 fs-12 lh-16 */
.more-link {
  display: flex;
  justify-content: end;
  padding: 0px;
  margin: 0px;
}

.more-link a {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: var(--pur-white);
  text-decoration: none;
  display: flex;
  align-items: center;
}

/* image ratio 3:5 (or) size 6px * 10px */
.more-link a:after {
  content: "";
  background: url(../images/dashbord-left-white-icon.png);
  display: inline-block;
  width: 6px;
  height: 10px;
  margin-top: 1px;
  background-repeat: no-repeat;
  padding-left: 15px;
  background-size: auto;
  background-position: center;
}

/* coin-view-more-text-grey */
/* text-#6C757E icon-#6C757E fw-400 fs-12 lh-16 */
.more-link a.coin-view-more-text-grey {
  color: var(--secondary-one);
}

/* image needed */
.more-link a.coin-view-more-text-grey:after {
  background: url(../images/grey-arrow-icon.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}

/* coin-view-more-bg-white */
/* bg-white text-black icon-#6C757E fw-600 fs-14 lh-22 */
.more-link a.coin-view-more-bg-white {
  font-family: proximanovasemibold;
  font-size: 14px;
  line-height: 22px;
  color: var(--primary-one);
  background: var(--white);
  padding: 10px;
  border-radius: 6px;
}

.more-link a.coin-view-more-bg-white:hover {
  background: var(--secondary-five);
}

.more-link a.coin-view-more-bg-white:after {
  background: url(../images/kyo-grey-icon.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right;
  /* width: 10px; */
  padding-bottom: 20px;
}

/* coin-view-more-text-black-bg-grey */
/* bg-#6C757E text-white icon-white fw-600 fs-14 lh-22 */
.more-link a.coin-view-more-bg-grey {
  font-size: 14px;
  line-height: 22px;
  color: var(--pur-white);
  background: var(--secondary-one);
  padding: 10px;
  border-radius: 6px;
  font-family: proximanovasemibold;
}

.more-link a.coin-view-more-bg-grey:hover {
  opacity: 0.7;
}

.more-link a.coin-view-more-bg-grey:after {
  background: url(../images/dashbord-left-white-icon.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
}


