:root{
    --colorlink:#162ca9;
    --colorlinkhover: #0026ff;
    --colorbg:#6179ff;
    --colorprimary: #354dd2;
    --font-mono: ui-monospace,
    "Cascadia Mono",
    "Segoe UI Mono",
    "Liberation Mono",
    Menlo,
    Monaco,
    Consolas,
    "Oxygen Mono", 
    "Ubuntu Monospace", 
    "Source Code Pro",
    "Fira Mono", 
    "Droid Sans Mono", 
    "Courier New",
    "Roboto Mono",
    monospace;
    
    --font-sans:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI Adjusted",
    "Segoe UI",
    "Roboto",
    "Oxygen Sans",
    "Ubuntu",
    "Helvetica Neue",
    "Droid Sans",
    system-ui,
    "Source Sans Pro",
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
}

body,html {
    margin: 0;
    padding: 0;
    color: #232629;
    background: #DAE0E6;
    height: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
    word-wrap: break-word;
    counter-reset: names;
    font-size: 16px;
    font-family: var(--font-sans);
}

/**     header      **/
header.top {
    background: #fff;
    height: 54px;
    line-height: 53px;
    z-index: 1001;
    position: fixed;
    width: 100%;
    top: 0;
}
header.top > div div{display:inline-block;vertical-align: top;height: 100%;margin-left: 10px;}

.searchbox {
    width: 55%;
    text-align: right;
    padding-right: 15px;
    position: relative;
    max-width: 350px;
    float: right;
}
.logo a {
    color: #000;
    text-decoration: none;
}
input#searchwiki {
    height: 25px;
    width: calc(100% - 50px);
    outline: 0;
    text-indent: 11px;
    border-radius: 18px 0 0 18px;
    border: 1px solid  #3f51b5;
    background: #fefefe;
}

button#searchwikibtn {
    height: 25px;
    box-sizing: content-box;
    margin-left: -5px;
    width: 38px;
    background: var(--colorprimary);
    padding: 1px 0;
    cursor: pointer;
    border-radius: 0 18px 18px 0;
    color: #fff;
    border: 1px solid #0027ff;
    outline: 0;
}

button#searchwikibtn.loading span {
    display: none;
}

button#searchwikibtn.loading i {
    display: inline-block;
    animation: rotate 1.7s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
    animation-delay: 0.2s;
}
input#searchwiki.error {
    border-color: #ff0000;
}
span.searchvalid {display: none;position: absolute;background: #f10;color: #fff;padding: 2px 5px;height: 20px;line-height: 20px;border-radius: 6px;font-size: 12px;z-index: 1008;left: 0;right: 34px;margin: auto;width: fit-content;bottom: -22px;}
span.searchvalid span {
    display: block;
    background: red;
    width: 7px;
    height: 7px;
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}
.searchbox.error span.searchvalid {
    display:block
}

span.searchvalid.newname_error {
    margin-top: -12px;
}



#main .container {
    margin: 0 5px 15px;
    background: #fff;
    padding: 10px 10px 20px;
    border-radius: 3px;
    position: relative;
    /* box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 10px 10px -5px rgb(0 0 0 / 4%); */
}

/* Text Color */
a {
    color: var(--colorlink);
}
a:hover{
    color:var(--colorlinkhover);
}

/* Layout Css */

main {
    margin: 65px auto 30px;
    position: relative;
    max-width: 1600px;
    counter-reset: answer;
}

/* Media Queries */

@media only screen and (min-width:1100px){
    .logo.wide {
        margin-left: 30px;
    }
}

.two {
    display: none;
}


.content h1{
    font-size: 24px;
    max-width: 95%;
    font-weight: 600;
    margin: 10px auto 10px 0;
}

.wp-caption-text {
    margin: 0 auto 25px;
    text-align: center;
    color: #797979;
    font-size: 90%;
}

.content img {
    max-width: 100%;
    height: auto;
}

.content .wp-caption {
    max-width: 100%;
}

.content iframe {
    max-width: 100%;
    display: block;
    margin: 50px auto;
}

.content .aligncenter {
    text-align: center;
    margin: auto;
    clear: both;
}

.content .alignright {
    float: right;
    margin-left: 1.5em;
}

.content .alignleft {
    float: left;
    margin-right: 1.5em;
}

.content h2 {
    font-size: 24px;
}

.content h3 {
    font-size: 18px;
}

.content h4 {
    font-size: 16px;
}

.content h5,.content h6 {
    font-size: 14px;
}

.content blockquote {
    border-left: 3px solid var(--colorprimary);
    padding: 0 9px;
    background: #f1f8ff;
    margin: 10px;
}

.content p {
    line-height: 1.8;
    /* overflow-wrap: anywhere; */
    margin: 0 0 22px;
    font-size: 18px;
}

.content li {
    line-height: 1.4;
    padding: 7px 0;
}

.content a:hover {
    color: var(--colorlinkhover);
}

.content table {
    max-width: 100%;
    display: block;
    overflow: auto;
}

.content pre {
    max-width: 100%;
    overflow: auto;
    white-space: pre;
    width: auto;
    max-height: 600px;
    margin: 15px 10px;
    overflow-wrap: normal;
    padding: 10px;
    background-color: #e7e7e7;
    border-radius: 5px;
}

.content {
    overflow: hidden;
}




pre::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: transparent;
}

pre::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 10px;
}

button {
    cursor: pointer;
}

.head {
    margin: 0;
    text-align: center;
    display: block;
    font-size: 22px;
    font-weight: 600;
}
.sub_heading {
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 4px auto 15px;
    text-align: center;
}

/* Animations */
@keyframes rotate {
    to {
      transform: rotate(360deg);
    }
  }

body.admin-bar header.top{
    top: 46px;
}

@media only screen and (min-width:782px){
    html body.admin-bar header.top{
        top: 32px;
    }
}

i {
    font-size: 14px;
    display: inline-block;
}

footer {
    position: relative;
    clear: both;
}

.left.sidebar {
    display: none;
    position: sticky;
    top: 10px;
    vertical-align: top;
    margin: 0 5px 10px;
}

aside.right.sidebar {
    float: right;
    width: 100%;
}

/**     No ads on logged in devices     **/
body.logged-in #main .edvert,
body.logged-in #main ins {
    display: none;
}

/*    Media Queries    */

/*       Tablets        */
/*       768 x 720      */
@media (min-width: 768px) {
    article.wide{
        display: inline-block;
        vertical-align: top;
        position: relative;
    }
    .content .meta{
        width: 50px;
        float: left;
    }
    .content .meta .vote_box,.content .meta > i{
        display:
        block;
        margin: 0;
    }
    .vote_box > i,.vote_box > span{
        display: block;
    }
    .content .meta .vote_box{
        padding: 0;
    }
    .content .meta .vote_count{
        margin: 10px 0;
    }
    .content .meta i.solved{
        margin-top:40px;
        margin-left: 0;
    }
    .content .body{
        width: calc(100% - 60px);
        float: right;
    }
}

@media (min-width: 768px) and (min-height:670px){
    header.top{
        position: absolute;
    }
    .left.sidebar {
        display: inline-block;
        width: 160px;
    }
    .edvert.left_sidebar_one,.edvert.left_sidebar_one ins{
        display: block;
    }
    article.wide{
        width: calc(100% - 170px);
    }
}

@media (min-width: 768px) and (max-height:670px){
    header.top{
        position:absolute;
    }
    .left.sidebar{
        display: inline-block;
    }
    .edvert.left_sidebar_one {
        display: inline-block;
        width: 160px;
        height: 280px;
    }
    .edvert.left_sidebar_one ins{
        display: block;
        height:280px;
    }
    article.wide{
        width: calc(100% - 170px);
    }
}

/*       small desktops - 1020 or more      */

@media (min-width: 1020px) {
    #main{
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        -o-flex-direction: row;
        -webkit-box-orient: horizontal; /*ie10*/
        flex-direction: row;
        align-content: stretch;
        -webkit-align-content: stretch;
    }
    article.wide{
        width: calc(100% - 170px - 300px);
    }
    aside.right.sidebar{
        display: inline-block;
        width: 302px;
        float: none;
    }
    section.edvert.only_desktop{
        display:block;
    }
}

/* large desktops - 1270 or more        */
@media (min-width: 1270px) {
    .left.sidebar {
        width: 338px;
    }
    article.wide{
        width: calc(100% - 348px - 302px);
    }
}

header.top > div {
    max-width: 1600px;
    margin: auto;
}

pre code {
    padding: 0;
    white-space: inherit;
    font-family: var(--font-mono);
}

#main pre code {
    overflow: unset;
    padding: 0;
    display: inherit;
    background-color: transparent;
    font-size: 13px;
    text-align: left;
    font-weight: 400;
    color: #2f3337;
}

pre::-webkit-scrollbar-track {
    background-color: transparent;
    border-color: transparent;
}

pre::-webkit-scrollbar-corner {
    background-color: transparent;
    border-color: transparent;
}

.post_author_container .author_info span {
    display: block;
}

.post_author_container > img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
}

.post_author_container .author_info span {
    font-size: 13px;
    font-weight: 400;
    color: #616161;
    text-transform: lowercase;
}

.post_author_container .author_info b {
    font-weight: 600;
}

.post_author_container > .author_info {
    margin-left: 7px;
}

.post_author_container .author_info b span {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.post_author_container .author_info b span:before {
    content: "\2022";
    margin: 0 8px;
    font-size: 15px;
}

.post_author_container .author_info b i.fa-star {
    color: #fcb900;
    margin-right: 3px;
    width: 16px;
    height: 15px;
}

.post_author_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 15px;
}

.vote_box .fa {
    font-size: 22px;
    margin: auto;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
}

.vote_box .vote_count {
    margin: 0 10px;
}

.meta i.solved {
    font-size: 23px;
    color: #00bb77;
    margin-left: 30px;
    text-align: center;
}

.meta .vote_box {
    border: 1px solid #e4e4e4;
    padding: 2px;
    border-radius: 55px;
    display: inline-block;
    text-align: center;
}

.meta i.fa.u:before {
    content: "\f062";
}

.meta i.fa.d:before {
    content: "\f063";
}

i.fas.solved:before {
    content: "\f560";
}

.vote_box .fa:hover {
    background-color: #ececec;
}

#main section.container.replies {
    margin-left: 50px;
    background: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 30px;
}

.comment:before {
    content: "";
    width: 3px;
    height: 17px;
    top: -17px;
    left: 25px;
    position: absolute;
    background-color: white;
    z-index: 1;
}

.comment {
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    min-height: 40px;
    position: relative;
}

.comment.show-more {
    line-height: 20px;
    width: 155px;
    min-width: 100px;
    text-align: center;
    border-radius: 44px;
    background: #3f51b5;
    min-height: 22px;
    font-size: 15px;
    padding: 10px;
    cursor: pointer;
}

.comment.show-more span {
    display: block;
    font-weight: 600;
    color: #ffffff;
}

.comment.show-more:hover {background: #505fb3;}

b.cuser {
    font-weight: 600;
}

span.cdate {
    color: #707070;
    font-size: 0.9rem;
}

section.answer_count {
    margin: 60px 5px 40px;
    position: relative;
    text-align: center;
}

section.answer_count b {
    font-size: 22px;
    font-weight: 600;
}

#main .container.answer {
    margin-top: 70px;
    counter-increment: answer;
}

.container.answer:before {
    content: "#"counter(answer);
    position: absolute;
    top: 12px;
    right: 20px;
    display: block;
    color: #888888;
    text-align: right;
    font-size: 20px;
    font-weight: 600;
}

.related_questions a {
    display: block;
    margin: 0 0 18px;
    text-decoration: none;
    line-height: 20px;
    font-size: 15px;
}

.related_questions {
    margin: 30px 0 0;
}

.footer_menu_container a {
    display: block;
    color: #151515;
    text-align: left;
    margin: 10px 5px;
    text-decoration: underline;
    line-height: 19px;
}

.footer_menu_container {
    margin: 0 auto 30px;
    width: 100%;
    position: relative;
}

.footer_menu_container .menu-col {
    display: inline-block;
    width: 300px;
    text-align: left;
    vertical-align: top;
}

.footer_menu_container a:hover {
    color: #3f51b5;
}

p > code {
    max-height: 600px;
    padding: 3px 5px;
}

section.edvert {
    text-align: center;
    margin: 15px auto;
    overflow: hidden;
}

.edvert.only_desktop,.edvert.only_desktop ins {display: none;}

.edvert.sticky {
    position: sticky;
    top: 10px;
    vertical-align: top;
}

section.edvert.left_sidebar_one {
    margin-top: 0;
}

#main.search h1 {
    text-align: center;
    font-size: 25px;
}

.single-post #main h1,.page #main h1 {
    text-align: center;
    font-size: 26px;
    margin: 0 auto 40px;
    font-weight: 700;
}

p {
    font-size: 17px;
    line-height: 28px;
}

span.dnone {
    display: none;
}

section#answer_box textarea {
    display: block;
    width: 100%;
    min-height: 165px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 2px;
    margin: 15px auto 10px;
    border-color: #b3b3b3;
    outline: 0;
}

section#answer_box button#postanswer {
    display: block;
    height: 36px;
    margin: 20px auto 5px;
    color: #fff;
    border-radius: 3px;
    background: var(--colorprimary);
    border: 2px solid var(--colorprimary);
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
}

button#postanswer.submitting:after {display: block;content: "";position: absolute;right: -25px;color: var(--colorprimary);top: 11px;height: 10px;width: 10px;border-top: 2px solid;border-radius: 50%;border-right: 2px solid;animation: 0.7s rotate infinite;}

.userinfo-box img {
    display: inline-block;
    height: 32px;
    border-radius: 50%;
    width: 32px;
    box-sizing: border-box;
    margin-top: 2px;
}

.userinfo-box {max-width: 400px;margin: auto;position: relative;width: 100%;}

#answer_box input#answer_username {
    display: inline-block;
    height: 35px;
    box-sizing: border-box;
    margin: auto;
    width: calc(100% - 80px);
    border: 1px solid;
    border-radius: 2px;
    border-color: #9c9c9c;
    outline: 0;
    text-indent: 10px;
}

#answer_box .userpic_box {
    width: 65px;
    position: relative;
    display: inline-block;
    height: 35px;
    float: right;
    background: #f0f0f0;
    border-radius: 30px;
}

#answer_box 
 span#redo_gravtar {
    height: 30px;
    width: calc(100% - 33px);
    display: inline-block;
    vertical-align: top;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    box-sizing: border-box;
}

span#redo_gravtar.reloading i {
    animation: 0.7s rotate infinite;
}

div.userpic_box:hover {background: #eaeaea;}

.userpic_box:hover {
    background-color: blueviolet;
    border-radius: 30px;
}

#answer_box span.error {
    display: none;
    margin: auto;
    text-align: center;
    background: #ff7e74;
    padding: 5px 10px 7px;
    border-radius: 2px;
    font-size: 14px;
}

#answer_box span.success {
    display: block;
    text-align: center;
    line-height: 100px;
}

section#answer_box {
    min-height: 100px;
}

code {
    padding: 1px 6px;
    background-color: #e4e4e4;
    border-radius: 2px;
    font-family: var(--font-mono);
    font-size: 14px;
    white-space: pre-wrap;
    overflow-wrap: normal;
}

kbd {
    display: inline-block;
    margin: 0 0.1em;
    padding: 0.1em 0.6em;
    text-shadow: 0 1px 0 #fff;
    background-color: #e3e6e8;
    border: 1px solid #9fa6ad;
    border-radius: 3px;
    box-shadow: 0 1px 1px hsl(210deg 8% 5% / 15%), inset 0 1px 0 0 hsl(0deg 0% 100%);
    overflow-wrap: break-word;
    font-size: 11px;
    line-height: 1.5;
    color: #232629;
}