:root {
    /* --main-color: #9E1B20; */
    /* --main-color: linear-gradient(92.17deg, #9E1B20 33.01%, #D2242A 77.84%); */
    --main-color: var(--primary);
    --secondary-color: var(--secondary);
    --text-color: #353535;
    --salmon-color: #FF6A6A;
    --secondary-color: #A4A4A4;
    --tertiary-color: #C7C7C7;
    --screen-layer: #F7F7F7;
    --screen-width: 414px;
    --swiper-theme-color: #3a5257;
}

html,
body {
    overflow-x: hidden;
}

a:hover {
    text-decoration: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Firefox */

input[type=number] {
    -moz-appearance: textfield;
}

.section-title {
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    /* identical to box height */
    color: #363636;
}

body {
    background-color: var(--screen-layer);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.waiting {
    color: #FDB504 !important;
}

.cancelled {
    color: #FC1A40 !important;
}

.succeed {
    color: var(--main-color) !important;
}

.screen {
    width: 414px;
    min-height: 100vh;
    background-color: white;
    position: relative;
    padding: 0px 20px;
}

@media only screen and (min-width: 300px){

    .screen {
        width: 414px;
        min-height: 100vh;
        background-color: white;
        position: relative;
        padding: 0px 15px;
    }

}

.screen-cover {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

.screen-cover-wrapper {
    width: 100%;
    height: 100%;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
}

.screen-cover-wrapper .screen-cover-popup {
    width: 274px;
    height: 95px;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 13px;
}

.screen-cover-wrapper .screen-cover-popup .screen-cover-title {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #363636;
    text-align: center;
}

.screen-cover-wrapper .screen-cover-popup .screen-cover-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.screen-cover-wrapper .screen-cover-popup .screen-cover-action .btn-cover-agree {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    color: #00178F;
    width: 49%;
    height: 35px;
    border: 1px solid #00178F;
    box-sizing: border-box;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    background-color: white;
}

.screen-cover-wrapper .screen-cover-popup .screen-cover-action .btn-cover-disagree {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */
    color: white;
    width: 49%;
    height: 35px;
    border: none;
    background-color: var(--main-color);
    box-sizing: border-box;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}

#bottom-share {
    background-color: white;
    position: fixed;
    bottom: 0;
    width: 414px;
    z-index: 5;
    padding: 25px 0;
}

#bottom-share .share-title {
    font-family: Inter;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;
    color: #363636;
    text-align: center;
}

#bottom-share .share-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#bottom-share .share-bar .share-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text-center {
    margin-bottom: 2rem;
}

#bottom-share .share-bar .share-text {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 141.02%;
    /* identical to box height, or 20px */
    text-align: center;
    color: #363636;
}

.blank-group {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* margin-top: 40vh; */
}

.blank-group .blank-text {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    /* identical to box height */
    color: #A4A4A4;
    margin-top: 20px;
    text-align: center;
    width: 80%;
}

.btn-transparent {
    background-color: transparent;
    outline: none;
    border: none;
}

#navbar-top {
    position: fixed;
    top: 0px;
    z-index: 1000;
    /* background: var(--primary); */
    background-color: var(--main-color);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
    transition: top 0.3s;
    max-width: 414px !important;
}

#navbar-top-front.active {
    top: 0px;
}

#navbar-top-front {
    position: fixed;
    top: -100px;
    z-index: 1000;
    background-color: var(--primary);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
    transition: top 0.3s;
    max-width: 414px !important;
}

#navbar-top-front.active {
    top: 0px;
}

#navbar-top-front .navbar-wrapper {
    width: var(--screen-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 17px;
}

#navbar-top-front .navbar-simple-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 414px;
}

#navbar-top-front .navbar-simple-wrapper .btn-transparent {
    position: absolute;
    left: 0;
    margin-left: 22px;
}

#navbar-top-front .navbar-wrapper-title {
    font-family: Inter;
    font-style: normal;
    /* font-weight: bold; */
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    margin-top: 9px;
}


#navbar-top .navbar-wrapper {
    width: var(--screen-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 17px;
}

#navbar-top .navbar-simple-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 414px;
}

#navbar-top .navbar-simple-wrapper .btn-transparent {
    position: absolute;
    left: 0;
    margin-left: 22px;
}

#navbar-top .navbar-wrapper-title {
    font-family: Inter;
    font-style: normal;
    /* font-weight: bold; */
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    margin-top: 9px;
}

.line-separator {
    width: 100%;
    height: 5px;
    background: #F1F1F1;
}

.line-separator-modif {
    width: 100%;
    margin-top: 3px;
    height: 1px;
    background: #F1F1F1;
    text-align: center;
}

.nav-bottom {
    background-color: white;
    width: 414px;
    /* height: 70px; */
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    padding: 0 15px;
}

.tengah{
    margin-top: -30px;

}

.nav-bottom .navbar-bottom-navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* margin-bottom: 20px; */
    width: 100%;
    /* margin-bottom: -10px; */
    margin-bottom: -35px;
}

.nav-bottom .navbar-bottom-navigation .navbar-bottom-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.nav-bottom .navbar-bottom-navigation .navbar-bottom-text {
    font-family: Inter;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 15px;
    /* identical to box height */
    letter-spacing: -0.015em;
    color: #A4A4A4;
    margin-top: 5px;
}

.nav-bottom .navbar-bottom-navigation .navbar-bottom-link.active .navbar-bottom-text {
    color: var(--main-color);
}

.nav-bottom-link:hover {
    text-decoration: none;
}

.nav-bottom .navbar-bottom-navigation .navbar-bottom-link.active svg path {
    fill: var(--main-color);
}

.navbar-bottom-cart {
    background-color: #FFFFFF;
    height: 78px;
    display: block;
    width: 414px;
    margin: 0 auto;
    bottom: 0;
    position: fixed;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px 20px;
}

.navbar-bottom-cart .navbar-bottom-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    width: 100%;
    height: 100%;
}

.navbar-bottom-cart .navbar-bottom-navigation .navbar-bottom-link {
    height: 50px;
    background: transparent;
    border-radius: 6px;
    outline: none;
    border: none;
}

.navbar-bottom-cart .navbar-bottom-navigation .navbar-bottom-link.cart {
    border: 1px solid #00178F;
    box-sizing: border-box;
    border-radius: 6px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #00178F;
    width: 35%;
}

.navbar-bottom-cart .navbar-bottom-navigation .navbar-bottom-link.cart:hover {
    background-color: var(--main-color);
    color: white;
}

.navbar-bottom-cart .navbar-bottom-navigation .navbar-bottom-link.whatsapp {
    background: var(--main-color);
    width: 63%;
}

.navbar-bottom-cart .navbar-bottom-navigation .navbar-bottom-link.whatsapp span {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    margin-left: 4px;
}

#navbar-bottom {
    background-color: white;
    width: 414px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    padding: 0 25px;
    padding-top: 10px;
    margin-top: 10px;
}

@media screen and (max-width: 414px) {
    .screen,
    #navbar-top .navbar-wrapper,
    #navbar-bottom,
    #bottom-share,
    .nav-bottom {
        width: 100vw !important;
    }
}

.footer-menu{
    position: fixed;
    width: 100%;
    height: auto;
    z-index: 1;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
    background: #FFFFFF;
    max-width: 414px;
    padding: 0px 15px;
}

.footer-menu .grand-total{
    margin-top: 12px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: right;

    color: #363636;
}

.btn-donate-now-bottom-b {
    position: relative;
    width: 100%;
    height: 50px;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(90.34deg, var(--primary) 21.28%, var(--secondary) 84.33%);
    /* background: radial-gradient(143% 790.5% at 124.53% -114%, #00CBF8 2.77%, #00178F 62.12%, #031790 62.5%, #FE39D5 93.12%) ; */


    border-radius: 6px;
    margin: 15px 0px;
    border: 3px solid;
}

.btn-donate-now-bottom {
    position: relative;
    width: 100%;
    height: 50px;
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: #FFFFFF;
    background: linear-gradient(90.34deg, var(--primary) 21.28%, var(--secondary) 84.33%);


    border-radius: 6px;
    margin: 15px 0px;
    border: 3px solid;
}

/* .btn-donate-now-bottom:hover {
    color: #00178F;
    background: #FFFFFF;
    border: 2px solid;
} */

.one-line{
    width: 150px;
    height: auto;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: pre;
}

.cross{
    cursor: pointer;
}

.register-pop-up {
	width: 364px;
	height: 356px;

    background-color: white;
    position: fixed;
    z-index: 5;
    padding: 21px 20px;
    border-radius: 8px;
}

.register-pop-up img{
	width: 85px;
	height: 85px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 29px;
}

.register-pop-up .welcome-text{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
	width: 100%;

	font-family: Inter;
	font-style: normal;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	text-align: center;

	color: #00178F;
}

.register-pop-up .notify-text{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;

	width: 100%;

	font-family: Inter;
	font-style: normal;
	font-weight: 500;
	font-size: 13px;
	line-height: 16px;
	text-align: center;

	color: #8E8E8E;
}

.register-pop-up .btn-confirm{
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    color: white;
    border: 1px solid white;
    background-color: var(--main-color);
    box-sizing: border-box;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    margin-bottom: 31px;
	cursor: pointer;
}

.register-pop-up .btn-confirm:hover{
	background-color: white;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}
/*end section*/


.reset-success-pop-up, .register-pop-up{
	/* width: 100%; */
	max-width: 100%;
	height: auto;
	margin: 18px !important;
    background-color: white;
    position: fixed;
    z-index: 99999;
	top: 0;
    padding: 20px;
    border-radius: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.reset-success-pop-up img{
	width: 180px;
	/* height: 211px; */

	display: block;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 25px;
}

.reset-success-pop-up .confirm-text{
	margin-bottom: 20px;
	font-family: Inter;
	font-style: normal;
	font-weight: bold;
	font-size: 24px;
	line-height: 29px;
	/* identical to box height */

	text-align: center;
	letter-spacing: -0.3px;

	color: #00178F;
}

.reset-success-pop-up .notify-text{
	font-family: Inter;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 22px;
	/* or 137% */

	text-align: center;
	letter-spacing: -0.408px;

	color: #838C99;
}

#btn-login-blue{
	width: 100%;
	max-width: 100%;
	/* height: 50px; */
	/* margin-top: 18px; */
	/* margin-bottom: 28px; */

	font-family: Inter;
	color: #FFFFFF;
	font-family: Inter;
	font-style: normal;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;

	background: var(--main-color);
	border-radius: 6px;
	border-color: #FFFFFF;

	display: table;
	text-align: center;
	padding: 18px;
	margin-top: 12px;
}

button[disabled] {
    background: #aaa !important;
    color: #333 !important;
    border-color: #aaa !important;
}
