:root {
  --f7-toolbar-bg-color: #d61d1d;
  --f7-tabbar-link-active-border-color: #f6a11f;
  --f7-tabbar-link-active-color: #f6a11f;
  --f7-tabbar-link-inactive-color: white;
  --f7-card-border-radius: 20px;
  --f7-navbar-bg-color: white;
  --f7-navbar-link-color: #d61d1d;
}
.ios {
  --f7-tabbar-link-active-color: black;
  --f7-tabbar-link-inactive-color: grey;
}
.card {
  margin-left: 0;
  margin-right: 0;
}
.tab {
  background-color: #eaeaea;
}
.custom-block {
  margin: 1.5em 0;
}

/* my reward */
.my-reward {
  display: flex;
}
.img-reward {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  /*height: 100px;*/
  padding: 0 0.5rem;
  background-color: #fdede4;
  /*border-radius: 20px 0 0 20px;*/  /*18.06.2020*/
}
.img-reward img {
  width: 60%;
}
.detail-reward {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: white;
}
.detail-reward-body {
  display: flex;
  flex-direction: column;
  margin-left: 0.5rem;
}
.detail-reward-body h2 {
  margin: 0;
}
.status-reward {
  display: flex;
  align-items: center;
  padding-right: 1em;
  border-radius: 0 20px 20px 0;
  background-color: white;
}
.price-tag {
  display: flex;
  align-items: center;
  width: fit-content;
  background-color: #d61d1d;
  border-radius: 20px;
  padding: 2px 10px;
}
.price-tag span {
  margin-left: 5px;
  color: white;
}
.ticket {
  display: flex;
  align-items: center;
  background-color: #d61d1d;
  border-radius: 10px;
  width: fit-content;
  padding: 1% 1%;
  color: white;
}
.ticket span {
  margin: 0 1em;
}

/* Dropdown Button */
.dropbtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  color: grey;
  background-color: white;
}
.dropbtn::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 10px;
}
.dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  margin-top: 5px;
  background-color: white;
  min-width: 160px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.modal.show-modal {
  display: block;
  width: 100%;
  left: auto !important;
  right: 0;
}
.dropdown-content a {
  color: grey;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background-color: #ddd;
}
.show {
  display: block;
}

/* items reward */
.items-reward-row {
  display: flex;
  justify-content: space-around;
  margin: 1.5em 0;
  background-image: url(../img/Subtraction.png), url(../img/bamboo.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 120px, 105% 30px;
  background-position: top, -10px 112px;
  padding: 20px 20px 0;
  
}
.prize {
  display: flex;
  flex-direction: column;
}
.prize [img] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
.prize [img] img {
  max-width: 100%;
}
.prize [name] {
  text-align: center;
  margin-top: 10px;
}
.prize .price-tag {
  margin: 0 auto;
}

/* custom modal */
.modal {
  z-index: 10000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  border-radius: 0.5rem;
  background: rgb(218, 38, 28);
  background: linear-gradient(
    0deg,
    rgba(218, 38, 28, 1) 0%,
    rgba(254, 119, 25, 1) 60%
  );
}
.modal-content-header .icon {
  position: relative;
  margin-top: -35%;
  z-index: 100;
  text-align: center;
}
.modal-content-header .icon img {
  width: 38%;
}
.modal-content-header .partikel img {
  position: absolute;
  top: -22%;
  left: 0;
  width: 100%;
}
.modal-content-body {
  position: relative;
  color: white;
  font-weight: bolder;
  margin: 1em 0;
  z-index: 100;
}
.modal-content .prize [name] {
  margin: 5px 0;
  font-size: 20px;
}
.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

/* custom button */
.cst-btn {
  width: 150px;
  padding: 0.5em 1em;
  margin: 5px 0;
  border: none;
  border-radius: 20px;
  background-color: transparent;
  cursor: pointer;
  text-align: center;
}
.btn-white {
  background-color: white;
}
.btn-white:hover {
  background-color: whitesmoke;
}
.btn-outline-white {
  border: 1px solid white;
  color: white;
}
