body {
    overflow-x: visible;
}
#jtdonmet_mainform h1 {
    font-weight: normal;
}

.jtdonmet_alert_style {
    position: relative;
    margin-top: 10px;
    width: 500px; 
    height: 50px; 
    background-color: #5e7192; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border: none; 
    border-radius: 4px; 
    color: #FFF;
}
.jtdonmet_alert_style p {
    position: absolute; display: block; margin-top: 15px; margin-left: 15px; width: 60%; height: auto; 
    text-align: left;
}
.jtdonmet_alert_style button {
    position:absolute; display: block; top: 12px; right: 15px; padding: 5px; width: 80%; max-width: 150px; height: auto; 
    background-color: rgba(255, 255, 255, 0.8); border: none; border-radius: 5px; text-align: center; cursor: pointer;
} .jtdonmet_alert_style button:hover {
    background-color: rgba(255, 255, 255, 0.55);
}

#jtdonmet_submitBtn {
    
    position: fixed;
    right: 30px;
    padding: 10px;
    width: 125px;
    
    color: white;
    font-size: 15px;
    
    border-style: solid;
    border-width: 1.5px;
    border-radius: 5px;
    border-color: rgba(0, 0, 0, 0.14);

    outline-style: none;
}
.jtdonmet_submitBtn_on {
    cursor: pointer;
    background-color: rgb(0, 181, 0);
}
.jtdonmet_submitBtn_on:hover {
    background-color: rgb(1, 150, 1);
}
.jtdonmet_submitBtn_off {
    cursor: not-allowed;
    background-color: rgb(164, 164, 164);
    opacity: 0.5;
}
#jtdonmet_tm_notice {
    position: relative;
    display: block; 
    padding: 5px 25px;
    height: auto; 
    background-color: #FF9200; 
    border: none; 
    color: #FFF;
}
    #jtdonmet_tm_notice p {
        position: relative; 
        margin-left: 15px;
        width: 100%; 
        height: auto; 
        text-align: left;
        font-size: 15px;
    }
    #jtdonmet_tm_notice img {
        position: relative; 
        display: block; 
        margin-top: 6px;
        width: 30px; 
        height: auto;
    }
#jtdonmet_tm_notice_grid {
    display: grid;
    position: relative;
    margin: 0 auto; 
    grid-template-columns: 30px auto; 
    max-width: fit-content;
}

/* Content related */
.jtdonmet_content_pad {
    padding-left: 20px;
}


/* Settings Page Header Related */
#jtdonmet_metereditpage_header_spacer {
    position: relative;
    background: none;
}
.jtdonmet_become_block {
    display: block;
}

#jtdonmet_metereditpage_header {
    padding-bottom: 20px;
    background-color: rgb(249, 249, 249);
    z-index: 4;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
.jtdonmet_header_default {
    position: relative;
    top: 0px;
    width: 100%;
}
.jtdonmet_header_fixed {
    position: fixed;
    top: 32px;
    width: calc(100% - 160px);
}  

@media screen and (max-width: 960px) {
    .jtdonmet_header_fixed {
        width: calc(100% - 36px);
    }
}
@media screen and (max-width: 782px) {
    .jtdonmet_header_fixed {
        top: 46px !important;
        width: 100% !important;
    }
}

/* Loading Related */
.jtdonmet_willReloadPage_icon {
    position: absolute;
    margin-top: 6px;
}
#jtdonmet_loadScreen {
    position: fixed;
    background-color: rgba(255,255,255,0.9);
    width: 100%;
    height: 100%;
    z-index: 5;
}
#jtdonmet_loadScreen div {
    position: relative;
    margin: 40vh auto;
    width: 70px;
    height: 70px;
}

@media screen and (min-width: 960px) {
    #jtdonmet_loadspinner {
        margin-left: -70px; 
    }
}

.jtdonmet_loadSpinAnim {
    animation: load-spin 0.65s linear infinite;
}

@keyframes load-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}