/* 20230630A */

body {
    font-family: 'Lato', sans-serif;
    background-color: white;
    overflow-x: hidden;
}




h1 {
    color: cadetblue;
    font-weight: 700;
}


h2 {
    color: cornflowerblue;
    font-weight: 400;
}

.text1 {
    color: darkslateblue;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.code {
    color: darkred;
    font-family: 'Encode Sans Expanded', sans-serif;
}

.block {
    margin-bottom: 40px;
}

.flex_row {
    display: flex;
    flex-direction: row;
}

.flex_column {
    display: flex;
    flex-direction: column;
}

.editor {
    width: 100%;
    height: 25vh;
    background-color: antiquewhite;
}

.editor_container {
    width: 100%;
    border: 1px solid #ccc;
}

.sub_heading {
    border-bottom: 1px solid #ccc;
    padding: 5px 10px;
}
.sub_heading span{
    margin-top: 5px;
}
#analytics_request_body,
#analytics_response_body{
    height: 50vh !important;
}
.justify_content_space_between {
    justify-content: space-between;
}

#submit_button {
    border: 0px;
    cursor: pointer;
    background-color: #005276;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 16px;
    margin-left: 15px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.align_items_center {
    align-items: center;
}

#status_text {
    color: #005276;
    font-size: 14px;
}

#processing_icon {
    height: 15px;
    margin-left: 10px;
}

.rotate_img {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(90deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(270deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide {
    display: none;
}
.text1,
.code li{
    font-size: 14px;
}
body .block:not(:last-child){
    margin-bottom: 0px !important;
}