html {
    margin-top: 0 !important;
}

/* ========Header start Cole Lab====== */


.codelab-header-wrapper {
    background-color: #010101;
    color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #010101;
}

.codelab-header-wrapper .title-logwrap .codelab-log {
    background-color: #fff;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.codelab-header-wrapper .title-logwrap h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.codelab-header-wrapper img {
    max-height: 30px;
    width: auto;
}
/* =========Soical Share icons========== */
.codelab-header-wrapper ul.social-share-icon{
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.codelab-header-wrapper ul.social-share-icon li {
    margin-right: 5px;
    display: inline;
}

.codelab-header-wrapper ul.social-share-icon li a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 1px;
    vertical-align: middle;
    font-size: 18px;
    border-radius: 16%;
    color: #fff;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
.codelab-header-wrapper ul.social-share-icon li.share_icon{
    position: relative;
    margin-right: 10px;
}
.codelab-header-wrapper ul.social-share-icon li.share_icon::before{
   content: '';
    position: absolute;
    top: 57%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 96%;
    width: 0;
    height: 0;
    border-style: solid;
        border-width: 9px 0 9px 11px;
    border-color: transparent transparent transparent #e9e9e9;
}
.codelab-header-wrapper ul.social-share-icon li.share_icon::after{
   content: '';
    position: absolute;
    top: 57%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 96%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 10px;
    border-color: transparent transparent transparent #fff;
}
.codelab-header-wrapper ul.social-share-icon li.share_icon a {
    color: #333;
    width: auto;
    height: auto;
    display: inline-block;
    border-radius: 4px 2px 2px 4px;
    padding:3px 5px;
    cursor: default;
    font-size: 17px;

}
.codelab-header-wrapper ul.social-share-icon li.fac_book a {
    color:#3b5999 ;
}
.codelab-header-wrapper ul.social-share-icon li.fac_book a:hover {
    color:#fff ;
    background-color: #3b5999;
}

.codelab-header-wrapper ul.social-share-icon li.whats_app a {
    color: #7bbf6a;
}
.codelab-header-wrapper ul.social-share-icon li.whats_app a:hover {
    color: #fff;
    background-color: #7bbf6a;

}

.codelab-header-wrapper ul.social-share-icon li.twiter_x a {
    color: #333;
}
.codelab-header-wrapper ul.social-share-icon li.twiter_x a:hover {
    color: #fff;
    background-color: #333;
}

.codelab-header-wrapper ul.social-share-icon li.url_copy a {
    color: #333;
    font-size: 16px;
}
.codelab-header-wrapper ul.social-share-icon li.url_copy a:hover {
    color: #fff;
    font-size: 16px;
    background-color: #333;
}



/* ========Header End Cole Lab====== */




/* ========Codelabpage details==== */

.codelab-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.codelab-wrapper .codelab-split-horizontal {
    width: calc(25% - 5px);
}

.codelab-wrapper .codelab-gutter {
    background-repeat: no-repeat;
    background-position: 50%;
    background-color: #444857;
}

.codelab-wrapper .codelab-top-wrap {
    background-color: #444857;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 3px 5px;
    align-items: center;
}

.codelab-wrapper .codelab-top-wrap .col-head {
    color: #fff;
    font-size: 17px;
}

.codelab-wrapper .codelab-top-wrap .expand {
    color: #fff;
    font-size: 17px;
    cursor: pointer;
}

.codelab-wrapper .ace_scrollbar-v::-webkit-scrollbar {
    width: 7px;
}

/* Track */

/* Handle */
.codelab-wrapper .ace_scrollbar-v::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 7px;
}

/* Handle on hover */
.codelab-wrapper .ace_scrollbar-v::-webkit-scrollbar-thumb:hover {
    background: #555;
}




.codelab-wrapper .preview-box {
    width: calc(75% - 5px);
}

.codelab-wrapper .editor {
    width: 100%;
    height: 300px;
    border: 1px solid #444857;
    border-bottom: 10px solid #777;
}

.codelab-wrapper .preview-box iframe {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    background: #fff;
}


/* Fullscreen Mode */
.codelab-wrapper .fullscreen-editor {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    background: #1e1e1e;
    box-sizing: border-box;
}

.codelab-wrapper .fullscreen-editor .editor {
    height: calc(100vh - 30px) !important;
}

.codelab-wrapper .fullscreen-editor .col-head,
.codelab-wrapper .fullscreen-editor .expand {
    z-index: 10000;
    position: relative;
    margin-right: 20px;
}

@media(max-width:992px){
    .codelab-wrapper{
        flex-direction: column-reverse;
    }
    .codelab-wrapper .codelab-split-horizontal{
        width: 100%;
    }
    .codelab-wrapper .preview-box{
        width: 100%;
        height: 100vh;
    }
}