.senarai_pu_sec, .senarai_pu_wrapper, .senarai_pu_div {
	box-sizing: border-box;
}
.senarai_pu_sec {
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000099;
    overflow-y: auto;
    overflow-x: hidden;
	display: none;
}
.senarai_pu_wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 30px 15px;
}
.senarai_pu_div {
    background-color: #f1ece8;
    margin: auto;
    width: 100%;
    max-width: 550px;
    padding: 38px 30px 35px;
    position: relative;
}
.senarai_description {
    margin-bottom: 50px;
}
.senarai_btn_sec .senarai_btn {
    color: #b69562;
    border: 1px solid #b69562;
    padding: 10px 25px;
    font-weight: bold;
    font-size: 14px;
    transition: all .15s ease-in-out;
    display: inline-block;
}
.senarai_btn_sec .senarai_btn:hover,
.senarai_btn_sec .senarai_btn:focus {
    background: #b69562;
    color: white;
    border: 1px solid #b69562;
}
.senarai_btn_sec {
    text-align: center;
}
.senarai_description > *:first-child {
    margin-top: 0;
}
.senarai_description > *:last-child {
    margin-bottom: 0;
}
.senarai_pu_close:before {
    content: "\4d";
    font-family: 'ElegantIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 0.5;
    -webkit-font-smoothing: antialiased;
    font-size: 45px;
    display: inline-flex;
    width: 22px;
    align-items: center;
    justify-content: center;
}
.senarai_pu_close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 13px;
    top: 12px;
    padding: 5px;
    transition: all .3s ease-in-out;
	cursor: pointer;
}
.senarai_pu_close:hover, 
.senarai_pu_close:focus {
    color: #b69562;
}

@media (max-width: 767px) {
	.senarai_pu_close {
		right: 8px;
		top: 8px;
	}
	.senarai_pu_div {
		padding: 50px 20px 32px;
	}
	.senarai_description {
		margin-bottom: 36px;
	}
	.senarai_btn_sec .senarai_btn {
		font-size: 13px;
		padding: 8px 16px;
	}
}