ul {
   padding-left: 10px;
   margin-bottom: 0;
   list-style: none;
}

.giveawayBox {
   margin-top: 50px;
}

.giveawayBox > .title {
   padding: 8px 12px;
   margin-bottom: 12px;
   background-color: #F5F5F5;
   color: #333333;
}

.giftList > li {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   cursor: pointer;
   margin-bottom: 15px;
}

.giftList > li:last-child {
   margin-bottom: 0;
}

.giftList > li > .imgBox {
   flex: 0 0 45px;
   height: 45px;
}

.giftList > li > .imgBox > img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.giftList > li > .descBox {
   flex: 1;
   padding-left: 10px;
   font-size: 16px;
}

.giftList > li > .descBox > .count {
   color: #FDB719;
   margin-left: 5px;
}

/* goveaway modal */
#giveaway .modal-dialog {
   margin: 50px auto 0;
}

#giveaway .modal-content {
   width: 100%;
   padding: 0;
   border-radius: 0;
}

#giveaway .modal-header {
   text-align: right;
   border-bottom: none;
}

#giveaway .modal-body {
   padding-bottom: 40px;
}

.closeDiv {
   display: inline-block;
   width: 30px;
   height: 30px;
   line-height: 30px;
   text-align: center;
   border-radius: 50%;
   background-color: #FDB719;
   color: #fff;
   font-weight: bold;
   font-size: 20px;
   cursor: pointer;
}

.closeDiv svg {
   transform: translateX(0.5px);
}

.itemBox {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}

.itemBox > img {
   display: block;
   width: 100%;
   max-width: 300px;
   height: auto;
   margin: 0 auto 20px;
}

.itemBox > h3 {
   margin-top: 0;
   margin-bottom: 10px;
   color: #FDB719;
   font-size: 24px;
   font-weight: normal;
}

.itemBox > p {
   color: #333333;
   font-size: 18px;
   margin-bottom: 0;
}

@media (min-width: 768px) {
   #giveaway .modal-dialog {
      width: 700px;
   }
}

@media (max-width: 768px) {
   #giveaway .modal-dialog {
      width: 576px;
   }
}

@media (max-width: 576px) {
   #giveaway .modal-dialog {
      width: 95%;
      transform: translateX(10px);
   }
}