.component-earn-spice-modal{
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  background: rgba(0,0,0,.45);
  display: none;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}
.component-earn-spice-modal.show{
  display: flex;
}

.component-earn-spice-modal .modal-content{
  position: relative;
  width: 480px;
  box-sizing: border-box;
  margin-top: -60px;
  padding: 32px 30px;
  border-radius: 8px;
  background-color: #1f1f1f;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.48), 0 6px 16px 0 rgba(0, 0, 0, 0.32), 0 9px 28px 8px rgba(0, 0, 0, 0.2);
}

.component-earn-spice-modal .modal-close{
  margin-right: -5px;
  width: 30px;
  height: 30px;
  display: inline-block;
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 2;
  transform-origin: center;
  transform: rotate(45deg);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.component-earn-spice-modal .modal-close:hover {
  transform: rotate(45deg) scale(1.2);
}
.component-earn-spice-modal .modal-close:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10%;
  height: 66%;
  background: #424242;
}
.component-earn-spice-modal .modal-close:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66%;
  height: 10%;
  background: #424242;
}

.component-earn-spice-modal .modal-title{
  font-family: var(--font-family-title);
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 1.2;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
  font-weight: normal;
}
.component-earn-spice-modal .modal-subtitle{
  color: #757575;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 24px;
}
.component-earn-spice-modal .actions{
  text-align: center;
  margin-top: 30px;
}
.component-earn-spice-modal .confirm-button{
  background: transparent;
  border: 1px solid #fff;
  padding: 12px 56px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 22px;
  transition: all .2s ease-in-out;
  cursor: pointer;
  display: inline-block;
}
.component-earn-spice-modal .confirm-button:hover {
  border-color: var(--theme-color) !important;
  background: var(--theme-color) !important;
}