.onloader {
    position: fixed;
    z-index: 999999999;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff
}

.first-letter-cap::first-letter,.tr::first-letter {
    text-transform: capitalize
}

.truncate {
    min-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.signin-modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: rgba(0,0,0,0.8);
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out
}

.signin-modal.active {
    opacity: 1;
    visibility: visible
}

.signin-modal .form-group {
    position: relative
}

.signin-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #ddd;
    cursor: pointer;
    display: block
}

.signin-modal__holder {
    position: relative;
    width: 100%;
    max-width: 450px;
    background-color: #fff;
    padding: 40px
}

@media (max-width: 768px) {
    .signin-modal__holder {
        padding:40px 20px
    }
}

.signin-modal__default >h1,.signin-modal__resetpassword >h1 {
    font-weight: bold;
    font-size: 30px
}

.signin-modal .label-note {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    cursor: pointer
}

.nap-pop {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255,255,255,0.98);
    transition: opacity 0.3s ease-in-out,visibility 0.3s ease-in-out
}

.nap-pop__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center
}

.nap-pop__inner p {
    font-weight: bold;
    color: #222
}

.phone-modal {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    visibility: hidden;
    z-index: 9998;
    opacity: 0;
    transition: 0.3s;
    overflow-y: scroll
}

.phone-modal.open {
    visibility: visible;
    opacity: 1
}

.phone-modal .shadow {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    display: block;
    background: #e5e5e5
}

.phone-modal .popup {
    width: 565px;
    margin-top: 90px;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    border-radius: 3px;
    display: none
}

@media (max-width: 600px) {
    .phone-modal .popup {
        width:95%
    }
}

.phone-modal .popup.open {
    display: block
}

.phone-modal .popup .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px 108px 50px
}

@media (max-width: 600px) {
    .phone-modal .popup .content {
        padding:50px 15px
    }
}

.phone-modal .popup .content .verify-title {
    margin: 0;
    font-family: Lato,sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #2c84ec
}

.phone-modal .popup .content .verify-subtitle {
    margin: 5px 0 0;
    font-family: Lato,sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000;
    opacity: 0.65
}

.phone-modal .popup .content .verify-process {
    margin: 30px 0 30px;
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    border: 6px solid #2c84ec
}

.phone-modal .popup .content .verify-process.denied::before {
    content: '';
    width: 56px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-45deg);
    background: #2c84ec;
    border-radius: 5px
}

.phone-modal .popup .content .verify-process.denied::after {
    content: '';
    width: 56px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    background: #2c84ec;
    border-radius: 5px
}

.phone-modal .popup .content .verify-process.success::before {
    content: '';
    width: 56px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(-50%,-50%) rotate(-55deg);
    background: #2c84ec;
    border-radius: 5px
}

.phone-modal .popup .content .verify-process.success::after {
    content: '';
    width: 28px;
    height: 6px;
    position: absolute;
    bottom: 25px;
    left: 15px;
    transform: rotate(35deg);
    background: #2c84ec;
    border-radius: 5px
}

.phone-modal .popup .content .verify-form-phone {
    margin: 30px 0 26px;
    width: 100%;
    position: relative;
    padding: 17px 16px 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #000;
    border: 2px solid #2c84ec;
    box-sizing: border-box
}

.phone-modal .popup .content .verify-form-phone.invalid {
    border: 2px solid red
}

.phone-modal .popup .content .verify-form-phone .verify-label {
    position: absolute;
    top: -10px;
    left: 16px;
    padding: 0 5px 5px;
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    color: #346268;
    background: white
}

.phone-modal .popup .content .verify-form-phone .verify-input {
    margin: 0;
    height: 24px;
    padding-left: 5px;
    padding-right: 0;
    background: white !important;
    border: none
}

.phone-modal .popup .content .verify-btn {
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.0357143em;
    text-transform: uppercase;
    color: #fff;
    background: #2c84ec;
    border-radius: 2px;
    border: none
}

.phone-modal .popup .content .verify-btn:focus {
    outline: none
}

.phone-modal .popup .content .verify-text {
    margin: 30px 0 0;
    font-family: Roboto,sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    color: #000
}

.phone-modal .popup .content .verify-link {
    margin: 0;
    text-decoration: underline;
    color: #2c84ec;
    cursor: pointer
}

.phone-modal .popup .content .verify-or-text {
    margin: 5px 0 9px;
    color: #000
}

#payment-modal.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0; /* <-- penting */
    box-sizing: border-box;
}

#payment-modal.popup.open {
    display: flex;
}

#payment-modal .content {
    position: relative;
    width: 99vw;
    height: 100vh;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

#payment-modal .content iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
}

.close-payment {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 99999;
    background-color: rgba(0,0,0,0.5);
    padding: 8px 12px;
    border-radius: 50%;
    line-height: 1;
}

