/* Shared */
.loginBtn {
    box-sizing: border-box;
    position: relative;
    /* width: 13em;  - apply for fixed size */
    margin: 0.2em;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    cursor: pointer;
    border: 1px solid black;
    text-align: left;
    line-height: 34px;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #ffffff;
}

.loginBtn:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 34px;
    height: 100%;
}

.loginBtn:focus {
    outline: none;
}

.loginBtn:active {
    box-shadow: inset 0 0 0 32px rgba(0, 0, 0, 0.1);
}

.loginBtn--svg {
    margin-top: -0.3em;
    margin-bottom: -0.3em;
}

/* Facebook */
.loginBtn--facebook {
    background-color: #4c69ba;
    color: white;
}

/* GitHub */
.loginBtn--github {
    background-color: black;
    color: white;
}

/* Google */
.loginBtn--google {
    background: #d6d9dc;
    color: black;
}

.s-input {
    width: 100% !important;
    margin: 0;
    padding: .6em .7em;
    border: 1px solid #bbc0c4;
    border-radius: 3px;
    background-color: #daedf5;
    color: #0c0d0e;
    font-family: inherit;
    line-height: 1.15384615;
}

.s-button {
    box-sizing: border-box;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    width: 100% !important;
    cursor: pointer;
    border: 1px solid black;
    text-align: center;
    line-height: 34px;
    font-style: normal;
    white-space: nowrap;
    border-radius: 0.2em;
    font-size: 16px;
    color: #ffffff;
    background: black;
}

.s-div-container {
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05), 0 20px 48px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.1);
    background-color: white !important;
    padding: 10px;
    margin-bottom: 5px;
}

.s-widget-box {
    margin: 10px;
}

#maincol {
    border-right: 1px solid #000000;
    padding-right: 24px;
    width: auto;
    min-width: 678px;
    margin-right: 280px;
}

.s-search-box {
    width: 70% !important;
}

#embed_div {
    display: none;
    float: right;
    color: black;
    background: white;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
}

div .related-snippet-container {
    margin-left: 15px;
    margin-right: 15px;
}

div .related-snippet-row {
    padding-bottom: 5px;
}

div .snippet-view-count {
    background: #eff0f1;
    padding: 3px 0;
    white-space: nowrap;
    width: 38px;
    text-align: center;
    box-sizing: border-box;
    height: 20px;
    float: none;
    border-radius: 2px;
    font-size: 90%;
}

.snippet-language {
    text-decoration: none;
}

.tags {
    list-style: none;
    overflow: hidden;
    padding: 0;
    margin: 5px 0 0;
}

.tags li {
    float: left;
}

.tag {
    background: #cee0ed;
    border-radius: 3px 0 0 3px;
    color: black;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    padding: 0 10px 0 10px;
    position: relative;
    margin: 0px 5px 5px 0;
    text-decoration: none;
    -webkit-transition: color 0.2s;
}

.tag:hover {
    background: #afe7ed;
}

.about-img {
    float: left;
    margin-right: 12px;
    padding: 6px;
    border: 1px solid #000000;
}

.comment-like-icon {
    color: red
}

.comment-dislike-icon {
    color: black;
}

.snippet-list-item {
    padding-bottom: 0 !important;
}

.tag-list-item {
    border: #d6d9dc solid 1px;
    padding: 10px;
    margin: 10px;
}

.user-list-item {
    border: #d6d9dc solid 1px;
    padding: 10px;
    margin: 10px;
}

.user-comment-list-item-box {
    border: black dotted;
    margin: 10px;
    padding: 10px;
}

a.snippet-list-title {
    text-transform: capitalize;
    letter-spacing: .05em;
    font-weight: bold;
}

a.snippet-list-title {
    color: #000000;
    text-decoration: none;
    padding: 3px 0 0 0;
    text-transform: capitalize;
    letter-spacing: .05em;
    font-weight: bold;
}

a.snippet-list-title:hover {
    background-color: #e0f0f6;
}

.snippet-list-item-container {
    display: flex;
    border-bottom: 1px solid #eff0f1;
    margin-top: 6px;
}

span.language a {
    color: black;
    background-color: #e8e8e8;
    padding: 2px;
}

span.posted-by {
    font-size: 77%;
    font-style: italic;
}

/* Color Classes */
.black {
    color: black;
}

.green {
    color: green;
}

.red {
    color: red;
}