.product-demo .back {
    padding-bottom: 2em;
}

.product-demo .input-group.date {
    margin-top: 6px;
}

.product-demo .input-group.date .input-group-addon {
    background-color: #F8FBFE;
    border: none;
    border-bottom: solid 1px rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    border-radius: 0;
    height: 27px;
    padding: 0 10px;
    width: 40px;
}

.datepicker table {
    width: 100%;
}

.product-demo .input-group.date input {
    background: #F8FBFE;
    border: none;
    border-bottom: solid 1px rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    border-radius: 0;
    height: 27px;
    box-shadow: none;
}

.product-demo label {
    font-size: 12px;
}

.product-demo label.title-company {
    font-size: 14px;
    margin-bottom: 0;
}

.product-demo .paper-container {
    padding-top: 5em;
    font-family: 'Lato';
    max-width: 900px;
    margin-top: 1.5em;
    padding-inline: 0 !important;
}

.back {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #4199D5;

}

.back img {
    width: 18px;
    vertical-align: baseline;
    height: 18px;
}

.back p {
    padding-bottom: 0;
    font-size: 14px;
    font-weight: 700;
}

.form-demo {
    box-shadow: 2px 3px 26px 0px #c2dbed;
    padding: 3em;
    position: relative;
    max-width: 872px;
    width: 100%;
}

.form-demo h3 {
    padding-top: 1em;
}

.form-demo .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: right;
}

.form-demo .grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 20px auto;
}

.form-demo .field {
    display: grid;
}

.input-form .content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.pure-material-textfield-standard {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    margin-top: 15px;
}

/* Input, Textarea */
.pure-material-textfield-standard>input,
.pure-material-textfield-standard>textarea {
    box-sizing: border-box;
    margin: 6px 0 0;
    border: none;
    border-bottom: solid 1px rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    padding: 4px 8px;
    width: 100%;
    height: inherit;
    color: #3C5467;
    background-color: #F8FBFE;
    box-shadow: none;
    /* Firefox */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    caret-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    transition: border-bottom 0.2s, background-color 0.2s;
}

/* Span */
.pure-material-textfield-standard>input+span,
.pure-material-textfield-standard>textarea+span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    box-sizing: border-box;
    padding: 7px 0 0;
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    font-size: 75%;
    line-height: 18px;
    pointer-events: none;
    transition: color 0.2s, font-size 0.2s, line-height 0.2s;
}

/* Underline */
.pure-material-textfield-standard>input+span::after,
.pure-material-textfield-standard>textarea+span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
    transform-origin: bottom center;
    transform: scaleX(0);
    transition: transform 0.2s;
}

.ck.ck-editor__main>.ck-editor__editable p {
    font-size: 14px;
}

/* Hover */
.pure-material-textfield-standard>input:hover,
.pure-material-textfield-standard>textarea:hover {
    border-bottom-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
}

/* Placeholder-shown */
.pure-material-textfield-standard>input:not(:focus):placeholder-shown+span,
.pure-material-textfield-standard>textarea:not(:focus):placeholder-shown+span {
    font-size: inherit;
    line-height: 56px;
}

/* Focus */
.pure-material-textfield-standard>input:focus,
.pure-material-textfield-standard>textarea:focus {
    outline: none;
}

.pure-material-textfield-standard>input:focus+span,
.pure-material-textfield-standard>textarea:focus+span {
    color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}

.pure-material-textfield-standard>input:focus+span::before,
.pure-material-textfield-standard>textarea:focus+span::before {
    opacity: 0.12;
}

.pure-material-textfield-standard>input:focus+span::after,
.pure-material-textfield-standard>textarea:focus+span::after {
    transform: scale(1);
}

/* Disabled */
.pure-material-textfield-standard>input:disabled,
.pure-material-textfield-standard>textarea:disabled {
    border-bottom-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
}

.pure-material-textfield-standard>input:disabled+span,
.pure-material-textfield-standard>textarea:disabled+span {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
}

/* Faster transition in Safari for less noticable fractional font-size issue */
@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {

        .pure-material-textfield-standard>input,
        .pure-material-textfield-standard>input+span,
        .pure-material-textfield-standard>input+span::after,
        .pure-material-textfield-standard>textarea,
        .pure-material-textfield-standard>textarea+span,
        .pure-material-textfield-standard>textarea+span::after {
            transition-duration: 0.1s;
        }
    }
}

/* select starting stylings ------------------------------*/
.select {
    width: 100%;
    position: relative;
}

.select-text {
    position: relative;
    font-family: inherit;
    background-color: #F8FBFE;
    width: 100%;
    padding: 4px 8px;
    margin: 6px 0 0;
    font-size: 14px;
    border-radius: 0;
    border: none;
    border-bottom: solid 1px rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    font-weight: 400;
}

/* Remove focus */
.select-text:focus {
    outline: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

/* Use custom arrow */
.select .select-text {
    appearance: none;
    -webkit-appearance: none;
}

.select:after {
    position: absolute;
    top: 20px;
    right: 10px;
    /* Styling the down arrow */
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #8695A1;
    pointer-events: none;
}


/* LABEL ======================================= */
.select-label {
    color: #3C5467;
    font-size: inherit;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 10px;
    transition: 0.2s ease all;
}

/* active state */
.select-text:focus~.select-label, .select-text:valid~.select-label {
    color: #2F80ED;
    top: -20px;
    transition: 0.2s ease all;
    font-size: 14px;
}

/* BOTTOM BARS ================================= */
.select-bar {
    position: relative;
    display: block;
    width: 100%
}

.select-bar:before, .select-bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #2F80ED;
    transition: 0.2s ease all;
}

.select-bar:before {
    left: 50%;
}

.select-bar:after {
    right: 50%;
}

/* active state */
.select-text:focus~.select-bar:before, .select-text:focus~.select-bar:after {
    width: 50%;
}

/* HIGHLIGHTER ================================== */
.select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.required {
    color: #D06060;
}

.rupiah {
    font-weight: 400;
    padding: 10px 0 5px 7px;
}

.pure-material-textfield-standard.kontak, .mitra, .info.perusahaan, .info.tagihan {
    width: 50%;
}

#btnAddMitra {
    margin-top: 5px;
}

hr {
    margin-top: 0;
    border-color: #6D7F8D;
}

.name {
    color: #4199D5;
    font-size: 16px;
    font-weight: 400;
    margin-top: -10px;
}

.desc {
    margin-top: 12px;
}

.table-produk {
    width: 795px;
    margin-top: 22px;
}

.table-produk th {
    background-color: #133F5D;
    color: #fff;
    height: 30px;
    padding-inline: 10px;
}

.table-produk td {
    padding: 10px 3px 8px;
}

.produk-icon {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.pure-material-textfield-standard.table {
    margin: 0;
}

.total {
    width: 100%;
    display: flex;
}

.grid-content-flex {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    align-items: center;
    border-top: 0.56px solid #C8CFD5;
}

.bold {
    font-weight: 700;
}

.grid-content-flex.sign {
    align-items: start;
}

.pure-material-textfield-standard.sign, .input.sign {
    text-align: center;
}

.grid-content-flex.sign .sign-img img {
    display: flex;
    justify-content: center;
}

.footer-row.new-footer {
    background: linear-gradient(118.66deg, #257AB4 -3.43%, #206A9C 8.08%, #0F3449 36.22%, #0B2835 51.36%);
    position: relative;
    overflow: hidden;
}

.blue-button.secondary {
    background: transparent;
    color: #4199d5;
    margin-right: 0.5em;
}

.action-footer {
    text-align: right;
    padding-top: 3em;
    position: relative;
    z-index: 5;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 99;
    /* Sit on top */
    padding-top: 20px;
    /* Location of the box */
    left: 0;
    /* top: 2em; */
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 100%;
    max-width: 900px;
    display: block;
    min-height: 500px;
}

#kirimInvoiceModal .header h1 {
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
    padding: 1em 0;
}

#kirimInvoiceModal .header {
    background: #4199D5;
    position: relative;
}

#bayarSupplierModal .header h1 {
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
    padding: 1em 0;
    color: #133F5D;
}

#bayarSupplierModal .header {
    position: relative;
}

/* The Close Button */
.close, .close2, .closemitra {
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    opacity: 1;
    color: #fff;
    cursor: pointer;
}

.close:hover,
.close:focus, .close2:hover,
.close2:focus, .closemitra:hover, .closemitra:focus {
    opacity: 0.6;
    text-decoration: none;
    cursor: pointer;
}

#addMitraModal.modal {
    padding-top: 10vh;
}

#addMitraModal .modal-content {
    min-height: unset;
}

.header-mitra {
    background: #4199D5;
    display: flex;
    justify-content: center;
    height: 72px;
    flex-wrap: wrap;
    align-content: center;
}

.header-mitra h1 {
    font-size: 18px;
    margin: 0;
    padding: 0;
}

.modal-content label.pure-material-textfield-standard {
    color: #47525d;
    font-size: 12px;
}

.body-mitra {
    padding: 1em 2em;
}

.body-mitra .content {
    display: flex;
    gap: 1rem;
}

.body-mitra .form-group {
    display: flex;
    align-items: center;
    margin: 10px 0 0;
}

.body-mitra .form-group label {
    margin: 0 0 0 5px;
}

.body-mitra .form-group .form-check {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.body-mitra .form-group input {
    padding: 0;
    margin: 0;
}

#tabs .tab img {
    width: 100%;
    max-width: 22px;
}

#tabs .tab {
    display: inline-block;

    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    z-index: 5;
    color: #133F5D;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    width: 100%;
    padding: 1em 2em;
    display: flex;
    gap: 10px;

}

#tabs .tab P {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #6D889B;
    padding: 0;
}

#tabs .tab h5 {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    color: #133F5D;
    margin: 0;
}

#tabs .whiteborder {
    border-radius: 3px 3px 0 0;
    background: #fff;
}

#tabs .tab_content_demo {
    position: relative;
    top: -1px;
    z-index: 1;
    padding: 10px;
    border-radius: 0 0 3px 3px;
    color: #133F5D;
    height: 100%;
}

#tabs .hide {
    display: none;
}

#tabs .show {
    display: block;
}

#tabs .field label {
    max-width: 80px;
    width: 100%;
}

#tabs .field input {
    border: none;
    border-bottom: solid 1px rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    padding: 4px 8px;
    width: 100%;
    max-width: 268px;
    height: inherit;
    color: #3C5467;
    background-color: #F8FBFE;

}

.email-template img {
    width: 100%;
    box-shadow: 0 0 1em 0 #c2dbee;
    margin-top: 2em;
}

.text-button {
    background: transparent;
    padding: 0;
    color: #4199d5;
    font-size: 13px;
    border: none;
    box-shadow: none;
    font-weight: 600;
}

#tabs .field {
    margin-bottom: 1.5em;
    width: 100%;
}

#tabs .right {
    width: 100%;
}

#tabs .left {
    background: #E8F2FA;
    width: 100%;
    max-width: 250px;
}

#tabs {
    display: flex;
    height: 600px;
    overflow: hidden;
}

.sms-template img {
    width: 100%;
    max-width: 600px;
    padding-top: 2em;
}

.wa-template .content-wa img {
    width: 100%;
}

.wa-template h5 {
    margin-top: 2em;
}

.wa-template .header img {
    width: 100%;
    max-width: fit-content;
    border: none;
    padding: 0;
    border-radius: 0;
}

.custom-input-result.with-input-bg {
    background-color: #F8FBFE;
    border-bottom: solid 1px rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
    padding: 5px;
}

.custom-input-result {
    text-align: right;
    border: none;
}

.custom-input-result[disabled] {
    background: transparent;
    border: none;
}

.email-container {
    width: 100%;
    max-width: 420px;
    overflow-y: scroll;
    height: 593px;
    padding-right: 1em;
}

.email-banner-left img {
    width: 100%;
}

.tab_content_demo .e-cont-wrapper {
    display: flex;
}

.email-banner-left .top {
    position: absolute;
    top: 0;
}

.email-banner-left .bottom {
    position: absolute;
    bottom: 0;
}

.email-banner-left {
    width: 100%;
    max-width: 210px;
    position: relative;
}

.footer-send h5 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #133F5D;
    font-weight: 400;
}

.footer-send_mobile {
    display: none;
}

.footer-send .blue-button {
    padding: 13px 20px;
}

.footer-send, .footer-mitra {
    display: flex;
    justify-content: end;
    padding: 1em 2em;
    align-items: center;
    gap: 12px;
    box-shadow: 0px -2px 1em 0 #c2dbee;
}

.footer-mitra {
    justify-content: center;
}

#confirmSend .modal-content img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 2em;
}

#confirmSend .modal-content p {
    font-size: 1.1rem;
    text-align: center;
    padding-top: 0.5em;

}

#confirmSend .modal-content h1 {
    padding: 0;
    text-align: center;
    line-height: 1.2;
}

#confirmSend .modal-content {
    max-width: 480px;
    height: 100%;
    max-height: 550px;
    background: url(../img/product-demo/bg-popup.webp) no-repeat #4195D5;
    background-size: cover;
    background-position: center bottom;
    padding: 3rem;
    text-align: center;
    min-height: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem !important;
}

#registerModal {
    /* box-shadow: 0px 7px 10px 0px #3E496542; */
    box-shadow: 0px 4px 4px 2px #FFFFFF40 inset;
    display: inline;
    width: 160px;
    margin: 0 auto;
    font-size: var(--subheading-fs);
    transition: .3s all;
}

#registerModal:hover {
    background: #4199d5;
    border-color: #4199d5;
    color: #fff;
}

.warning-notes h5 {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    text-align: center;
    margin: 0;
}

.warning-notes {
    background: #E35273;
    padding: 7px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
}

#daftarSekarang {
    cursor: pointer;
}

.main-tooltip {
    position: absolute;
    background: #4199d5;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.1em;
    padding: 10px 5px;
    line-height: 1.5;
    width: 224px;
    border-radius: 5px;
    text-align: center;
}

.main-tooltip.top {
    top: 0;
    left: 50%;
    margin: -53px 0 0 -115px;
}

.main-tooltip::before {
    width: 0;
    height: 0;
    content: "";
    position: absolute;
}

.main-tooltip.top::before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #4199d5;
    bottom: -9px;
    left: 50%;
    right: 50%;
    margin: 0 -8px;
}

.main-tooltip.bottom::before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #4199d5;

    bottom: -9px;
    left: 50%;
    right: 50%;
    margin: 0 -8px;
    top: -10px;
}

.main-tooltip.bottom {
    right: 0;
    top: 8em;
    width: 320px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */
}

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

.blue-button.secondary.disabled-btn {
    border-color: #D4DADE;
    color: #D4DADE;
    cursor: not-allowed;
    background: transparent;
}

.blue-button.disabled-btn {
    border-color: #D4DADE;
    color: #9AA6B0;
    pointer-events: none;
    background: #D4DADE;
}

.sign-container img {
    width: 100%;
    margin-top: 10px;
}

.sign-img {
    max-width: 130px;
}

.emeterai-img {
    max-width: 80px;
    margin-right: 1em;
}

.warning-msg h5 {
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.warning-msg img {
    width: 100%;
    max-width: 24px;
}

.warning-msg {
    background: #FDFAF0;
    border: 1.5px solid #EAB11C;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 3px;
}

.warning-info {
    background: #FBEAEE;
    border: 1.5px solid #E35273;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0.8em;
}
.warning-info img {
    margin-right: 5px;
} 
.header img.logo {
    width: 100%;
    max-width: 120px;
    border: 1px dashed #4195D5;
    padding: 1.5em;
    border-radius: 7px;
}

.grid-content .left .green-button:hover img {
    filter: none;
}

.grid-content .left .green-button img {
    width: 100%;
    max-width: 21px;
    margin-right: 3px;
    filter: brightness(0) invert(1);
}

.grid-content .left .green-button {
    padding: 10px 17px;
    display: flex;
    align-items: center;
    width: fit-content;
}

.main-tooltip.bottom.pembelian {
    right: -5em;
}

/* bayarSupplierModal */
.modal-content .payment h3 {
    font-size: 1.3em;
}

.payment {
    padding: 3em 2em;
    color: #133F5D;
}

.payment-tag {
    display: inline-flex;
    padding: 3px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 3px;
    background: rgba(65, 149, 213, 0.12);
    color: #4195D5;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0.8em;
}

.payment-search {
    border-radius: 100px;
    border: 1px solid #9aa6b0;
    display: flex;
    gap: 5px;
    padding: 12px 80px 12px 15px;
    width: 50%;
}

.search-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
}

.payment-search_text {
    color: #9aa6b0;
    align-self: start;
    flex-grow: 1;
}

.payment-method {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding-top: 2em;
    align-items: start;
}
.payment-method_options {
    width: 100%;
    max-width: 450px;
}
.payment-method_options_button {
    margin: 0.5em 0 1.5em;
    display: flex;
    justify-content: space-between;
}
.payment-method_options_button h5 .coret{
    position: relative;
}
.payment-method_options_button h5 .coret::before{
    width: 100%;
    border-bottom: 2px solid #fc0909;
    height: 1px;
    transform: rotate(-5.24deg);
    content: '';
    position: absolute;
    top: 8px;
}
.payment-method_options_button h5{
    margin: 0;
    padding: 0.5em 0;
    font-weight: 600;
    color: #133f5d;
}
.payment-method_icons {
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment .icons {
    padding: 0.4em;
    border-radius: 5px;
    width: 100%;
    max-width: 58px;
}
.payment-method hr {
    border-color: #859CAB;
    border-top: 0.3px solid #859CAB;
}

.payment-method_total h1{
    font-size: 14px;
    font-weight: 700;
    padding: 7px 0;
    color: #133f5d;
}
.payment-method_total div p{
    font-size: 14px;
    font-weight: 500;
    color: #8a929c;
    padding-bottom: 1em;
}
.payment-method_total div{
    display: flex;
    justify-content: space-between;
}


.payment-method_total .CTA{
    justify-content: center;
    margin-top: 1em;
}

.payment-method_total .CTA div{
    width: 100%;
    justify-content: center;
}
.payment-method_total .totals p{
    font-weight: 700;
    color: #133f5d;
}
.pm-options-point{
    display: flex;
    justify-content: space-between;
}

.promotional-page img.arrow{
    height: 11px;
}
.promotional-page img{
    width: 24px;
}
.promotional-page p{
    color: #4c6e84;
    font-size: 12px;
    padding: 0;
}
.payment-method_total h1{
    padding-top: 2em;
}
.payment-method_total .promotional-page div p{
    padding-bottom: 0;
    padding-left: 10px;
}
.promotional-page{
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #859cab;
    display: flex;
    align-items: center;
}
.payment-method_total{
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #859cab;
    width: 100%;
    max-width: 350px;
}

.payment-method_options_button label{
    color: #133f5d;
    font-size: 12px !important;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 3px 8px;
}
.table.produk {
    width: 100%;
    max-width: 820px;
}
.main-tooltip.meterai {
    top: 0;
    left: -3rem;
    width: 110px;
    padding: 5px;
}
@media (max-width: 920px) {
    .table.produk {
        overflow-x: scroll;
    }
    /* .product-demo .paper-container {
        overflow-x: scroll;
        height: 1800px;
    } */
}

@media (max-width: 768px) {
    /* .input-form .content {
        flex-direction: column;
        gap: 0;
        margin: 0;
    } */

    .pure-material-textfield-standard {
        margin-top: 22px;
    }

    .table-produk {
        margin-top: 22px;
    }

    .pure-material-textfield-standard.kontak, .mitra, .info.perusahaan, .info.tagihan {
        width: 100%;
    }

    .grid-content.total {
        display: inline;
    }

    .grid-content.total .left {
        display: flex;
        justify-content: center;
        margin: 20px auto;
    }

    .grid-content.sign {
        display: inline;
    }

    .action-footer {
        text-align: center;
    }

    #confirmSend .modal-content {
        padding: 3.5rem 2.5rem 2.5rem;
        max-height: 500px;
    }

    .main-tooltip.meterai {
        left: 0;
    }
}

/* Radio Button bayarSupplierModal*/
.payment-method_options_button .container {
    display: block;
    position: relative;
    margin-bottom: 0;
    padding:3px 0;
  }
  
  .payment-method_options_button .container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .payment-method_options_button .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border: 1px solid #8695A1;
    border-radius: 50%;
  }
  
  .payment-method_options_button .container:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  .payment-method_options_button .container input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  .payment-method_options_button .container input:checked ~ .checkmark:after {
    display: block;
  }
  .attach-mobile{
    display: none;
  }
#attachBtn, #attachBtnMobile {
    cursor: pointer;
}
.product-demo .paper-container {
    padding-bottom: 0;
}
#confirmSend .modal-content {
    transform: translateY(20%);
}
.modal-content {
    margin-block: 1em !important;
}

.tooltip-mobile {
    display: none;
}
.tooltip-mobile .tooltip-close {
    position: absolute;
    top: 0;
    bottom: 4px;
    right: 4px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    background: transparent;
  }
  .tooltip-mobile .tooltip-close:focus {
    outline: none;
  }

.sign-container {
    position: relative;
}

/* .main-tooltip.meterai {
    top: 14rem;
    left: 0;
    width: 372px;
    padding: 10px 20px;
} */

@media (max-width: 580px) {
    #tabs {
        display: block;
    }
    #tabs .left {
        display: flex;
        max-width: none;
    }
    .tab_content_demo .e-cont-wrapper {
        display: block;
    }
    #tabs .whiteborder, #tabs .tab {
        padding-inline: 1em;
    }
    #tabs .tab h5, #tabs .tab p {
        font-size: 12px !important;
    }
    #tabs .tab img {
        max-width: 15px !important;
    }
    #tabs {
        height: 100%;
        /* overflow: visible; */
    }
    #attachBtn {
        display: none;
    }
    .attach-mobile {
        display: block;
    }
    .email-container, #tabs .field input {
        max-width: none;
    }
    .datepicker {
        left: 60px !important;
        max-width: 300px;
    }
    .email-container {
        overflow-y: visible;
        height: 100%;
    }
    .warning-info {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .header img.logo {
        max-width: 105px !important;
    }
    .main-tooltip.bottom {
        right: 2em !important;
        top: 13em !important;
    }
    .action-footer {
        display: flex;
        flex-direction: column;
        gap: 1em;
    }
    .footer-send {
        flex-direction: column;
        padding-bottom: 3em;
    }
    .footer-send h5 {
        display: none;
    }
    .footer-send_mobile {
        display: block !important;
        text-align: center;
    }
    .tooltip-mobile {
        display: block;
        position: fixed;
        background: #4199d5;
        color: #fff;
        font-family: 'Lato', sans-serif;
        font-weight: 400;
        font-size: 1.1em;
        padding: 6px 8px;
        line-height: 1.5;
        width: 95%;
        border-radius: 5px;
        text-align: left;
        z-index: 9999;
        bottom: 0;
        margin: 0 5px 10px 10px;
        right: 1%;
    }
    .tooltip-mobile h5 {
        margin: 0;
        padding: 0;
    }
    .demo-blog .main-tooltip {
        display: none;
    }

    .input-form .content {
        flex-direction: column;
    }

    #confirmSend .modal-content {
        max-width: 400px;
        padding: 2rem 2.5rem;
    }
}

@media (max-width: 512px) {
    .body-mitra .content {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #confirmSend .modal-content {
        max-width: 80%;
        padding: 2rem;
    }

    #confirmSend .modal-content h1 {
        font-size: 1.5rem;
    }

    .si-demo .illustration-footer img {
        max-width: 200px !important;
    }
}

@media (max-width: 450px) {
    .main-tooltip.bottom {
        right: -1em !important;
    }
}
@media (max-width: 400px) {
    .main-tooltip.bottom {
        right: -2.3em !important;
    }
}

/* Custom CSS for Blog */
/* .demo-blog #confirmSend .modal-content {
    transform: none;
} */
@media (max-width: 768px) {
    .input-form.blog .content {
        flex-direction: row;
        gap: 20px;
        margin: 10px;
    }
}
@media (max-width: 568px) {
    .input-form.blog .content {
        flex-direction: column;
        gap: 0;
        margin: 0;
    }
}

/* h1 {
    padding-bottom: 1rem !important;
} */

.landing-container.si {
    display: block;
    padding-top: 12rem;
    padding-bottom: 0;
}

.landing-flex {
    display: flex;
    align-items: center;
    padding-bottom: 4rem;
}

.landing-text {
    margin-top: -6em;
    z-index: 9;
    width: 50%;
}

.landing-illustration.si {
    display: flex;
    justify-content: right;
    width: 70%;
    z-index: 9;
}

.landing-illustration img {
    width: 100%;
    max-width: 600px;
    position: relative;
    right: -100px;
}

.landing-cta {
    display: flex;
    gap: 2em;
}

.product-demo {
    padding-top: 4em;
}

@media (max-width: 1033px) {
    .landing-cta {
        justify-content: center;
    }
    .landing-illustration.si {
        width: 100%;
    }
    .landing-flex {
        flex-direction: column;
        padding-bottom: 8rem;
    }
    .landing-illustration.si img {
        max-width: 450px;
        left: 3rem;
        margin: auto;
        padding-bottom: 4em;

    }
}

@media (max-width: 768px) {
    .landing-illustration.si img {
        max-width: 300px;
    }
    .si-demo .footer-content {
        display: grid;
        gap: 0;
    }
    .si-demo .copy-footer, .copy-footer h2, .copy-footer p {
        text-align: center !important;
    }
    .si-demo .copy-footer {
        order: 2;
    }
    .si-demo .illustration-footer {
        order: 1;
    }
    .si-demo .illustration-footer img {
        display: flex;
        margin: 0 auto;
        max-width: 280px;
        width: 100%;
    }
}

.si-demo .navigationActive {
    top: 2.5em;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #133f5d;
    gap: 4em;
}

.footer-content h2 {
    text-align: left;
    padding-bottom: 1rem;
}

.footer-illustration {
    width: 100%;
    max-width: 450px;
}

.footer-illustration img {
    width: 100%;
    max-width: 400px;
}

.footer {
    background-color: #fff;
}

.illustration-footer img {
    width: 100%;
    max-width: 550px;
}

.si-demo .paper-container {
    padding: 7rem 1rem;
}

.si-demo #globalNavigation {
    top: 2.5em;
}