﻿.ContentPlate {
    border: 1px solid #ebebeb;
    margin-top: 2rem;
    position: relative;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-content: center;
}


    .ContentPlate label {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 20px 0px 20px;
        background-color: rgb(220,220,220);
        min-width: 130px;
    }

    .ContentPlate code {
        flex-grow: 1;
        display: flex;
        align-items: center;
        padding: 0px 20px 0px 20px;
        text-overflow: ellipsis;
        overflow: hidden;
    }




/*start Api Emulator*/
.Emulator-Placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .Emulator-Placeholder .Emulator-Item {
        flex-grow: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #2B2B2B;
        height: 45px;
        border-radius: 4px;
    }

        .Emulator-Placeholder .Emulator-Item method {
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #FFFFFF;
            padding: 0px 20px;
            border-right: 1px solid #505050;
        }

        .Emulator-Placeholder .Emulator-Item location {
            flex-grow: 1;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .Emulator-Placeholder .Emulator-Item location input {
                height: 100%;
                flex-grow: 1;
                padding: 0px 10px;
                border: none;
                font-size: 1.1rem;
                background: transparent;
                color: #FFFFFF;
            }

    .Emulator-Placeholder button {
        height: 45px;
        border: none;
        padding: 0px 20px;
        background-color: #0265D2;
        color: white;
        font-size: 1.1rem;
        margin: 0px 0px 0px 10px;
        border-radius: 4px;
        position:relative;
    }

       /* .Emulator-Placeholder button::after {
            position: absolute;
            content: attr(data-time);
            color: red;
            top: -19px;
            right: 0px;
            font-size: 0.7rem;
        }*/


/*end Api Emulator*/
.demo-code-preview button {
    position: absolute;
    top: 25px;
    right: 20px;
    color: #FFFFFF55;
}

    .demo-code-preview button:hover {
        color: #FFFFFF;
    }


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #0AD152;
    outline: none;
    border-radius: 5px;
    position: absolute;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: #0AD152;
        cursor: pointer;
    }

