@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}
html {
	scroll-behavior: smooth;
}
a:focus,
button:focus {
	outline-width: 0px;
}
.yellow {
	color: #fff568;
}
.color-red {
	color: #e60707;
}
.color-yellow {
	color: #ecd361;
}
.color-orange {
	color: #fc3d11;
}
.color-pink {
	color: #e60088;
}
.color-violet {
	color: #861560;
}
.color-brown {
	color: #6a250a;
}
a:hover,
button:hover {
	filter: brightness(120%);
}
button:disabled {
	filter: grayscale(80%);
}
button:focus {
    outline: 0px dotted;
    outline: 0px auto -webkit-focus-ring-color;
}
#particles-js {
	position: fixed;left: 0;top: 0;width: 100%;height: 100%;display: block;z-index: 0;pointer-events: none;
}
.float {
	animation: float_2462 2s ease-in-out infinite;
	transform-origin: 50% 50%;
}
@keyframes float_2462 {
	0% {transform: translateY(0);}
	50% {transform: translateY(-6px);}
	100% {transform: translateY(0);}
}
.hvr-float-shadow {
	display: block;
	max-width: 240px;
	margin-left: auto;
	margin-right: auto;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
}
.hvr-float-shadow:active,
.hvr-float-shadow:focus,
.hvr-float-shadow:hover {
	transform: scale(105%) translateY(-5px);
}
.hvr-float-shadow:active:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:hover:before {
	opacity: 1;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}
body {
	font-family: "Mitr", sans-serif;
}
body.main-bg {
	background: url("../images/main-bg.jpg") top center #4593cb;
	background-repeat: no-repeat;
	position: relative;
	height: 100vh;
}
/* NAVBAR */
.main-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    color: #efefef;
    background-color: rgba(33, 4, 86, 0.9);
    z-index: 5;
}
.navbar-brand {
    position: relative;
}
.navbar-brand img {
    width: 120px;
}
.navbar-nav {
    margin: 0 auto;
}
.navbar-nav a.nav-item {
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-weight: 600;
    text-align: center;
    color: #efefef;
    font-size: 18px;
    transition: 0.1s;
}
.navbar-nav a.nav-item span {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: #aaaaaa;
}
.navbar-nav a.nav-item.active,
.navbar-nav a.nav-item:hover,
.navbar-nav a.nav-item.active span,
.navbar-nav a.nav-item:hover span {
    color: #cfac5a !important;
}
.navbar-social a {
    margin-left: 5px;
    margin-right: 5px;
    background-color: #efefef;
    transition: 0.1s;
}
.navbar-social a:hover {
    background-color: #cfac5a;
}
.navbar {
    padding-left: 0;
    padding-right: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}
.point-reward {
	font-size: 14px;
	background: #290d4d;
	border: 2px solid #ff35b2;
	color: #ffffff;
	border-radius: 40px;
	margin-right: 10px;
}
.point-normal {
	border: 2px solid #dfaff6;
}
.bonus-point {
	width: 100%;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 7px 14px 0px 14px;
}
.bonus-point img {
	margin-right: 5px;
}
.btn-refresh {
	padding: 0px 2px;
	color: #ffffff;
}
.btn-refresh i {
	transform: rotate(0deg);
	transition: 1s;
	font-size: 16px;
	line-height: 1em;
}
.btn-refresh:hover,
.btn-refresh:active {
	color: rgb(251, 255, 0);
}
.btn-refresh:hover i,
.btn-refresh:active i {
	transform: rotate(360deg);
}
.id-name {
    border: 2px solid #d610ed9c;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    font-size: 14px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    color: #fff;
    background-color: #00000059;
}
.id-name span {
    padding-right: 10px;
    color: #ffffff;
    font-weight: 600;
}
.logout-btn {
    background: rgb(97, 21, 211);
    background: -moz-linear-gradient(45deg, #6115d3, #dd10ee, #dd10ee, #dd10ee);
    background: -webkit-linear-gradient(45deg, #6115d3, #dd10ee, #dd10ee, #dd10ee);
    background: linear-gradient(45deg, #6115d3, #dd10ee, #6115d3, #dd10ee);
    background-size: 300% auto;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.45s linear;
    color: #fff;
    border-radius: 4px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    padding-top: 12px;
    padding-bottom: 9px;
    border-left: 1px;
}
.logout-btn:hover {
    color: #ffffff !important;
    background-position: 100% 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
    box-shadow: 0px 0px 2px 0px rgba(214, 67, 227, 0.6);
}

.history-btn {
	background-color: #ffffff;
	color: #212529;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 4px;
	text-decoration: none;
	padding: 11px 18px;
}

.wrapper {
	position: relative;
}
.main-logo-event {
	position: relative;
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
}
.event-extra-top {
	padding: 8px 8px;
	width: 100%;
	border-radius: 50px;
	background: #F6A8E6;
	background: -webkit-linear-gradient(180deg, rgba(246, 168, 230, 1) 0%, rgba(255, 217, 243, 1) 100%);
	background: -moz-linear-gradient(180deg, rgba(246, 168, 230, 1) 0%, rgba(255, 217, 243, 1) 100%);
	background: linear-gradient(180deg, rgba(246, 168, 230, 1) 0%, rgba(255, 217, 243, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F6A8E6", endColorstr="#FFD9F3", GradientType=0);

}
.event-reward {
	padding: 8px 8px;
	width: 100%;
	border-radius: 50px;
	background: #F6A8E6;
	background: -webkit-linear-gradient(180deg, rgba(217, 168, 246, 1) 0%, rgba(255, 217, 243, 1) 100%);
	background: -moz-linear-gradient(180deg, rgba(217, 168, 246, 1) 0%, rgba(255, 217, 243, 1) 100%);
	background: linear-gradient(180deg, rgba(217, 168, 246, 1) 0%, rgba(255, 217, 243, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d9a8f6", endColorstr="#ffd9f3", GradientType=0);
}

.event-extra-top .text-condition,
.event-reward .text-condition {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;

}
.event-extra-top .text-condition .text-limit,
.event-reward .text-condition .text-limit {
	font-size: 11px;
	color: #545454;
}
.event-extra-top .topup-limit,
.event-reward .topup-limit {
	background-color: #c66f90;
	color: #ffffff;
	font-size: 12px;
	border-radius: 10px 10px;
	padding: 1px 6px;
}
.event-extra-top .btn,
.event-reward .btn {
	border: none;
	box-shadow: none;
	outline: none;
	padding: 0 0;
}



.chocolate-point-reward.reward-succeed  {
    position: relative;
}
.chocolate-point-reward .stamp-items {
    display: none;
	width: 82px;
	height: 82px;
}
.chocolate-point-reward.reward-succeed .stamp-items {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}
.chocolate-point-reward.reward-succeed .chocolate-point-reward .img-reward{
	filter: grayscale(100%);
    opacity: 0.6;
}

.all-event-container {
    margin-top: 15px;
    border-radius: 20px;
    background-color: #ffd9f3;
    margin-bottom: 80px;
}
.event-row {
    transition: 0.2s;
    position: relative;
}
.event-row:first-of-type .date-title{
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}
.date-title {
	background: #6A7FDB;
	background: -webkit-linear-gradient(180deg, rgba(106, 127, 219, 1) 0%, rgba(162, 178, 246, 1) 100%);
	background: -moz-linear-gradient(180deg, rgba(106, 127, 219, 1) 0%, rgba(162, 178, 246, 1) 100%);
	background: linear-gradient(180deg, rgba(106, 127, 219, 1) 0%, rgba(162, 178, 246, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6A7FDB", endColorstr="#A2B2F6", GradientType=0);
    padding-top: 13px;
    padding-bottom: 10px;
    color: #f9f9f9;
    font-weight: 700;
    font-size: 18px;
	text-transform: uppercase;
}
.items-flex {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-top: 0px;
}
.items-box {
    width: 14.28%;
    padding: 12px;
	border-radius: 20px;
	position: relative;
}
.daily-btn {
    width: 100%;
    height: 100%;
	border-radius: 20px;
    padding:  0px  0px;
    transition: 0.1s;
    cursor: default;
    pointer-events: none;
background: #63C2EE;
background: -webkit-linear-gradient(135deg, rgba(99, 194, 238, 1) 0%, rgba(149, 213, 243, 1) 50%, rgba(210, 236, 249, 1) 100%);
background: -moz-linear-gradient(135deg, rgba(99, 194, 238, 1) 0%, rgba(149, 213, 243, 1) 50%, rgba(210, 236, 249, 1) 100%);
background: linear-gradient(135deg, rgba(99, 194, 238, 1) 0%, rgba(149, 213, 243, 1) 50%, rgba(210, 236, 249, 1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#63C2EE", endColorstr="#D2ECF9", GradientType=0);
	border: none;
}



.daily-btn:hover {
    background-color: #f5abbc;
    transform: scale(100%);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.377);
}
.daily-btn.items-ready {
    cursor: pointer;
    pointer-events: auto;
}
.days-title {
    font-size: 11px;
    padding: 3px;
    font-weight: 500;
    color: #f60a62;
	border-bottom: 1px solid #ffd9f3;
}
.items-ready .days-title {
	color: #f60a62;
}
.items-box .items-daily-img {
    margin-top: 12px;
	margin-bottom: 12px;
	width: 60px;
}
.items-box p {
    font-size: 11px;
	color: #232323;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0px;
}
.items-box p.items-amount {
    color: #f60a62;
	margin-bottom: 10px;
}
.bonus-week .days-title {
	background-color: #f60a62;
	color: #fff;
	border-radius:  4px 4px 0 0;
}
.bonus-week .items-name {
	background-color: #f60a62;
	padding: 14px 5px;
	color: #fff;
	border-radius: 0 0 4px 4px;
	margin-top: auto;
}
.view-items {
    position: absolute;
    top: 30px;
    right: 10px;
    z-index: 2;
}
.view-items .btn:hover img {
    filter: brightness(120%);
}
.view-items .btn-check:checked+.btn, 
.view-items .btn.active, 
.view-items .btn.show, 
.view-items .btn:first-child:active, 
.view-items :not(.btn-check)+.btn:active {
    background-color:  transparent;
    border-color: transparent;
}
.daily-btn.items-ready:hover {
    transform: scale(105%) !important;
    cursor: pointer;
    pointer-events: auto;
}
/* Get Items Button status */
.daily-btn .stamp-items {
	display: none;
}
.daily-btn.items-successed {
    background-color: rgba(37, 144, 195, 0.85);
    transform: scale(100%) !important;
    pointer-events: none;
    position: relative;
}
.daily-btn.items-successed .stamp-items {
	display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 100%;
}
.items-successed>img,
.items-successed .days-title,
.items-successed .items-name,
.items-successed .items-amount {
    opacity: .25;
}
/* Popup Items */
.get-items-row {
    background-color: rgb(236 236 236);
    margin-bottom: 2px;
    border-radius: 4px;
    padding: 10px 10px;
    color: #000;
}
.get-items-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
    color: #000;
}
.get-tirems-amount,
.get-items-name {
    font-size: 14px;
    color: #000;
}
.get-tirems-amount {
    color: #af0000;
}

.rule-wrap {
	margin-bottom: 40px;
}
.rule-content {
	padding: 40px 40px;
	background-color: rgba(255, 255, 255, 1);
	background-image: none;
	border-radius: 10px;
}
.rule-content ul {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 0;
	color: #171717;
	position: relative;
	z-index: 1;
}
.rule-content ul li {
	font-weight: 300;
}
.rule-content ul li::marker {
	color: #e60088;
}
.rule-content ul li:not(:last-child) {
	margin-bottom: 10px;
}
.rule-content ul a,
.rule-content ul a:visited {
	color: #e60088;
	text-decoration: none;
	border: 1px solid #e60088;
	border-radius: 4px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
}
.rule-content ul a:hover {
	color: #ffffff;
	background: #e60088;
}

/* footer */
footer {
	padding-top: 30px;
	padding-bottom: 15px;
	background-color: transparent;
}
footer p {
	padding-top: 15px;
	margin-bottom: 0;
	font-weight: 400;
	color: #efefef;
	font-size: 12px;
}

/*swal alert*/
.swal2-popup {
	width: auto !important;
	min-width: 20em !important;
	background-color: #ffd9f3 !important;
	border: none !important;
	padding-bottom: 30px !important;
	padding-top: 30px !important;
	border-radius: 20px !important;
}


.getitem-ten {
	width: 32em !important;
}
.getitem-ten .modal-item:first-child {
    margin-top: 0px;
}
.getitem-ten .modal-item {
	width: 47%;
	margin-left: 5px;
	margin-right: 5px;
}
.getitem-ten .swal2-title {
	margin-bottom: 20px;
}
.modal-item-detail {
	padding-left: 10px;
}
.swal2-popup .swal2-header {
	position: relative;
	z-index: 1;
}
.swal2-popup.confirmopen-popup .swal2-header {
	padding: 0 10px;
}
.swal2-header .swal2-image {
	margin: 0;
}
.swal2-popup.confirmopen-popup .swal2-image {
	position: relative;
	top: 0px;
	width: 280px;
	margin-top: 0;
	margin-bottom: 0px;
	z-index: 2;
}
.swal2-popup.not-angpao .swal2-image {
	width: 280px;
}
.swal2-content {
	color: #6a250a !important;
	padding: 0px 10px !important;
	max-height: 320px !important;
	font-size: 14px !important;
	overflow-y: auto;
}
.swal2-content .popup-p span img{
	position: relative !important;
	top: -4px !important;
	margin-right: 5px;
}
.swal2-content .popup-p {
	margin-bottom: 0px !important;
}
.img-point2 {
	position: relative !important;
	top: -4px !important;
	margin-right: 5px;
	margin-left: 5px;
}
.swal2-icon.swal2-success .swal2-success-ring {
    border: .25em solid rgba(165, 220, 134, .6) !important;
}
.swal2-icon.swal2-error {
	border-color: #ff0101 !important;
	color: #ff0101 !important;
}
.swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
	background-color: #ff0101 !important;
}
.swal2-title {
	font-size: 22px !important;
	color: #798de3 !important;
	font-weight: 500 !important;
}
.swal2-icon.swal2-info {
	border-color: #ff0101 !important;
	color: #ff0101 !important;
}
.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
	background: rgba(0, 0, 0, 0.7) !important;
}
.swal2-styled:focus {
	outline: 0;
	box-shadow: 0 0 0 3px rgba(100, 150, 200, 0) !important;
}
.swal2-content a {
	color: #ff8a34 !important;
	font-weight: 500;
}
.modal-item {
	padding: 10px 10px;
	margin-bottom: 6px;
	background-color: #83cef3;
	border-radius: 10px;
}
.modal-item:nth-of-type(2n+0) {
	background-color: #4c92b4;
}
.getitem-single .modal-item {
	padding: 15px 15px;
}
.modal-item:first-child {
	margin-top: 15px;
}
.modal-item-name {
	font-size: 14px;
	color: #bd3388;
}
.modal-item-name2 {
	margin-top: 0px;
	font-size: 24px;
}
.modal-item-pic {
	flex-basis: 60px;
    background: #4695bd;
    padding: 8px;
    border-radius: 6px;
}
.modal-item-qty {
	color: #d74ba1;
    font-size: 14px;
    background: #b1e3fc;
    display: block;
    width: 70px;
    margin: 0 auto;
    border-radius: 5px;
}
.modal-item-rarity {
	color: #fea41c;
	font-size: 13px;
	margin-bottom: 0;
}
.modal-item-trade {
	font-size: 13px;
	color: #fea41c;
}
.swal2-styled.swal2-confirm {
	background-color: #b10f74 !important;
	color: #ffffff !important;
	font-size: 1.0625em;
	border: 0px solid #bd2f86 !important;
	border-radius: 40px !important;
	padding-left: 20px;
	padding-right: 20px;
	width: 140px;
	cursor: pointer;
}
.swal2-styled.swal2-confirm:hover {
	filter: brightness(120%) !important;
    background-color: #bd2f86 !important;
	color: #ffffff !important;
}
.swal2-cancel.swal2-styled {
	background-color: transparent !important;
	color: #5a5a5a !important;
	font-size: 1.0625em;
	border: 2px solid #5a5a5a !important;
	border-radius: 40px !important;
	padding-left: 20px;
	padding-right: 20px;
	width: 140px;
}
.swal2-cancel.swal2-styled:hover {
	background-color: #5a5a5a !important;
	color: rgb(194, 194, 194) !important;
}
.close-btn {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	pointer-events: none;
}
.history-btn {
	background-color: transparent;
	color: #fff;
	width: 180px;
	border: 2px solid #b54c47;
	border-radius: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
}
.history-btn:hover {
	color: rgb(255, 73, 73);
}
.history-box {
	background: none;
	background-color: #ffffff;
	border: 0px solid #c67739 !important;
	padding: 20px 20px 30px 20px;
	margin-top: 30px;
}
.modal-body-history {
	padding: 0;
	font-size: 16px;
	margin-bottom: 15px;
	overflow-y: scroll;
	height: 320px;
	border: 2px solid #c9c9c945;
    padding: 0px 10px;
}
.modal-content {
	text-align: center;
	color: #121212;
}
.modal-header {
	color: #ffffff;
	display: inline-block;
	font-size: 24px;
	border: none;
	padding-bottom: 15px;
	background-color: #e60088;
}
.history-box .items-name {
	text-align: left;
	font-size: 13px;
	color: #121212;
	font-weight: 500;
}
.history-box .date {
	text-align: right;
	width: 100px;
	font-size: 12px;
	color: #121212;
	font-weight: 500;
}
.thead-dark {
	font-size: 14px;
}
.table {
	margin-bottom: 0;
}
.table td,
.table th {
	padding: 10px 5px;
	border-bottom: 1px solid #34383c;
	border-top: 0;
}
.btn-blue-modal {
	width: 120px;
	height: 45px;
	border-radius: 30px;
	color: #ffffff;
	background-color: #d412ec ;
	border: none;
	cursor: pointer;
	outline: none !important;
	font-size: 20px;
	margin-top: 15px;
}
.page-select {
	display: inline-block;
	margin: 0 auto;
}
.page-link {
	position: relative;
	display: block;
	padding: 0.5rem 0.75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #ffffff;
	background-color: #000000;
	border: 1px solid #363636;
}
.page-item.active .page-link {
	z-index: 3;
	color: #fff;
	background-color: #d412ec;
	border-color: #d412ec;
}
.page-link:hover {
	color: #fff;
	background-color: #d412ec;
	border-color: #d412ec;
}
.page-item.disabled .page-link {
	color: #ffffff;
	pointer-events: none;
	cursor: auto;
	background-color: #000000c7 !important;
	border-color: #d610ed9c !important;
}

@media only screen and (min-width: 1600px) {
	.body.main-bg {
		background-size: cover;
	}
	.event-extra-top {
		max-width: 360px;
		padding: 12px 12px;
	}
	.event-reward {
		min-width: 320px;
		padding: 12px 12px;
	}
}
@media only screen and (min-width: 1200px) and  (max-width: 1499.98px) {
	.event-extra-top  .btn-topup img,
	.event-extra-top  .btn-getreward img {
		width: 140px;
	}
	.event-extra-top .text-condition {
		font-size: 13px;
	}
}


@media only screen and (max-width: 1199.98px) {
	body.main-bg {
		background: url("../images/main-bg-sm.jpg") top center no-repeat #4593cb;
		position: relative;
		min-height: 100vh;
	}
	.event-extra-top .btn-topup img,
	.event-extra-top .btn-getreward img {
		width: 120px;
	}
	.event-extra-top {
		padding: 5px 10px;
		width: 100%;
		max-width: 400px;
        margin: 0 auto;
	}
}

@media only screen and (max-width: 991.98px) {
	body.main-bg {
		background-image: url("../images/main-bg-sm.jpg");
		background-size: cover;
	}
	.main-navbar {
		position: static;
	}
	.navbar {
		justify-content: center !important;
		flex-direction: column !important;
	}
	.bonus-point {
		font-size: 11px;
		padding: 6px 14px 6px 14px;
	}
	.main-logo-event {
		margin-top: 20px;
		margin-bottom: 30px;
	}
	.main-logo-event img {
		width: 75%;
	}
	.items-box {
        width: 25%;
        padding: 10px;
    }
	.event-extra-top {
		padding: 10px 10px;
		margin-bottom: 10px;
		background-position: right top;
		background-size: 100%;
	}
	.point-mobile {
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 767.98px) {
	body.main-bg {
		background-image: url("../images/main-bg-sm.jpg");
		background-size: 768px;
		background-size: cover;
		background-position: top center;
	}
	.bonus-point {
		padding-bottom: 8px;
	}
	.point-reward{
		margin-right: 0;
		width: auto;
		margin-bottom: 0;
	}
	.exe-profile {
		margin-top: 5px !important;
		margin-bottom: 5px;
	}
	.main-logo-event {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.main-logo-event img{
		width: 85%;
	}
	.point-mobile {
        margin-bottom: 15px;
    }
	.event-extra-top {
		margin-bottom: 0;
	}
	.event-extra-top  .btn-topup img,
	.event-extra-top  .btn-getreward img {
		width: 100%;
	}
	.event-extra-top .text-condition, 
	.event-reward .text-condition {
		font-size: 12px;
	}
	.event-extra-top .text-condition .text-limit, 
	.event-reward .text-condition .text-limit {
		font-size: 10px;
	}
	.event-reward {
		margin-bottom: 10px;
	}
	.topup-limit {
		position: absolute;
		top: 5px;
		right: 5px;
	}
	.rule-content h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.rule-content {
		padding: 15px 15px;
		margin: 0 0;
	}
	.rule-content ul li {
		font-size: 14px;
	}
	.items-box {
        width: 33.333%;
    }
	.items-box .items-daily-img {
		margin-top: 6px;
		margin-bottom: 6px;
	}
	.swal2-title {
		font-size: 20px !important;
	}
	.swal2-styled.swal2-confirm {
		margin-bottom: 15px;
	}
	.getitem-single .swal2-actions {
		margin-top: 15px;
	}
	.modal-item {
		padding: 10px 15px;
	}
	.modal-item-pic {
		flex-basis: 40px;
	}
	.modal-item-pic img {
		width: 40px;
	}
}