/*Docs*/

.body {
    position: relative;
}

.sub-title {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 10px;
    padding-bottom: 0;
}

    .sub-title a {
        font-size: 16px;
    }

.section.docs-heading {
    padding: 30px 0;
}

.affix {
    position: static;
}

@media (min-width: 992px) {
    .affix,
    .affix-bottom {
        width: 213px
    }

    .affix {
        position: fixed;
        top: 20px
    }

    .affix-bottom {
        position: absolute
    }

        .affix .bs-docs-sidenav,
        .affix-bottom .bs-docs-sidenav {
            margin-top: 0;
            margin-bottom: 0
        }
}

@media (min-width: 1200px) {
    .affix,
    .affix-bottom {
        width: 263px
    }
}

/* SIDEBAR */

@media (min-width: 768px) {
    .docs-sidebar {
        padding-top: 40px;
        padding-left: 20px
    }
}

/* all links */
.docs-sidebar .nav > li > a {
    color: #111;
    border-left: 2px solid transparent;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 400;
}

/* nested links */
.docs-sidebar .nav .nav > li > a {
    padding-left: 40px;
    font-size: 14px;
}

/* hover links */
.docs-sidebar .nav > li:not(.active) > a:hover {
    color: #0E97EE;
    text-decoration: none;
    background-color: transparent;
    border-left-width: 1px;
    border-left-color: #0E97EE;
}
/* focus links */
.docs-sidebar .nav > li > a:focus {
    text-decoration: none;
    background-color: transparent;
}
/* active links */
.docs-sidebar .nav > .active > a {
    color: #0E97EE;
    text-decoration: none;
    background-color: transparent;
    border-left-color: #0E97EE;
}
/* all active links */
.docs-sidebar .nav > .active > a,
.docs-sidebar .nav > .active:hover > a,
.docs-sidebar .nav > .active:focus > a {
    font-weight: 700;
}
/* nested active links */
.docs-sidebar .nav .nav > .active > a,
.docs-sidebar .nav .nav > .active:hover > a,
.docs-sidebar .nav .nav > .active:focus > a {
    font-weight: 500;
}

@media (min-width: 992px) {
    .docs-sidebar .nav ul {
        display: none;
        padding-bottom: 10px;
    }

    .docs-sidebar .nav > .active > ul {
        display: block
    }
}
/*Syntax Highlighter : Sublime Theme */

.syntaxhighlighter {
    background-color: #2b303b !important;
    padding: 15px 0;
    margin: 5px 0px !important;
}

    .syntaxhighlighter a,
    .syntaxhighlighter div,
    .syntaxhighlighter code,
    .syntaxhighlighter table,
    .syntaxhighlighter table td,
    .syntaxhighlighter table tr,
    .syntaxhighlighter table tbody,
    .syntaxhighlighter table thead,
    .syntaxhighlighter table caption,
    .syntaxhighlighter textarea {
        line-height: 1.3em !important;
    }

    .syntaxhighlighter .line.alt1 {
        background-color: #2b303b !important;
    }

    .syntaxhighlighter .line.alt2 {
        background-color: #2b303b !important;
    }

    .syntaxhighlighter .string,
    .syntaxhighlighter .string a {
        color: #90be8c !important;
    }

    .syntaxhighlighter .color1,
    .syntaxhighlighter .color1 a {
        color: #d08770 !important;
    }

    .syntaxhighlighter .plain,
    .syntaxhighlighter .plain a {
        color: #c0c5ce !important;
    }

    .syntaxhighlighter .keyword {
        color: #bf616a !important;
    }

    .syntaxhighlighter .gutter {
        color: #757a84 !important;
    }

    .syntaxhighlighter .line.highlighted.alt1,
    .syntaxhighlighter .line.highlighted.alt2 {
        background-color: #333E49 !important;
    }

    .syntaxhighlighter .gutter .line.highlighted {
        background-color: #343d46 !important;
        color: #757a84 !important;
    }

    .syntaxhighlighter .value {
        color: #96b5b4 !important;
    }
    /*css*/
    /* .syntaxhighlighter .css.plain,
.syntaxhighlighter .css.plain a {
    color: #d08770 !important;
} 

.syntaxhighlighter .css.keyword {
    color: #c0c5ce !important;
}*/

    .syntaxhighlighter .color3,
    .syntaxhighlighter .color3 a {
        color: #b48ead !important;
    }
    /*js*/

    .syntaxhighlighter .js.keyword {
        color: #b48ead !important;
    }


/*
 * Callouts
 *
 * Not quite alerts, but custom and helpful notes for folks reading the docs.
 * Requires a base and modifier class.
 */

/* Common styles for all types */
.bs-callout {
    padding: 5px 5px 10px 10px;
    margin: 10px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
    line-height: 20px;
}

    .bs-callout h4 {
        margin-top: 0;
        margin-bottom: 0px;
        padding: 0px;
    }

    .bs-callout p:last-child {
        margin-bottom: 0;
    }

    .bs-callout code {
        border-radius: 3px;
    }

    /* Tighten up space between multiple callouts */
    .bs-callout + .bs-callout {
        margin-top: -5px;
    }

/* Variations */
.bs-callout-success {
    border-left-color: #3c763d;
}

    .bs-callout-success h4 {
        color: #3c763d;
    }

.bs-callout-danger {
    border-left-color: #a94442;
}

    .bs-callout-danger h4 {
        color: #a94442;
    }

.bs-callout-warning {
    border-left-color: #aa6708;
}

    .bs-callout-warning h4 {
        color: #aa6708;
    }

.bs-callout-info {
    border-left-color: #1b809e;
}

    .bs-callout-info h4 {
        color: #1b809e;
    }

.bs-callout-demo {
    border-left-color: #61b916;
}

    .bs-callout-demo h4 {
        font-weight: bold;
        font-size: 16px;
        font-style: italic;
        color: #61b916;
    }

eg {
    font-size: 100%;
    color: #3c763d;
    font-style: italic;
}

ck {
    padding: 2px 4px;
    font-size: 100%;
    color: #20485b;
    background-color: #eef8fc;
    border-radius: 4px;
}

srmenu {
    white-space: nowrap;
    font-weight: bold;
    color: #1b809e;
    font-style: italic;
}

th, td {
    text-align: center;
}

    td span {
        color: green;
    }


/* Pricing tables
---------------------------------- */
.pricing-tables {
    margin: 60px 0 0;
}

.plan {
    text-align: center;
    border: 1px solid #c5c5c5;
    border-top: none;
    margin-bottom: 40px !important;
}

    .plan + .plan {
        border-left: none;
    }

    .plan .header {
        padding: 10px 0;
        margin: 0 -1px;
    }

        .plan .header h3 {
            display: inline-block;
            font-size: 24px;
            margin: 0;
            line-height: 28px;
            font-weight: normal;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            text-shadow: 0px 1px 1px #494949;
        }

        .plan .header .price {
            display: inline-block;
            font-size: 16px;
            padding: 10px 0 0;
            font-weight: 400;
            color: inherit;
        }

            .plan .header .price span {
                text-transform: uppercase;
            }

    .plan ul {
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 14px;
        list-style: none;
    }

        .plan ul li {
            padding: 12px 0px;
            font-size: 13px;
            line-height: 18px;
            text-shadow: 1px 1px 0 #fff;
        }

            .plan ul li a.pt-popover {
                color: #000;
                border-bottom: 1px dashed #000;
                position: relative;
            }

                .plan ul li a.pt-popover:hover {
                    text-decoration: none;
                }

                .plan ul li a.pt-popover:after {
                    position: absolute;
                    top: 0px;
                    left: -15px;
                    font-family: "FontAwesome";
                    content: "\f059";
                    color: #DDDDDD;
                    font-size: 12px;
                }

.best-value.plan ul li {
    padding: 15px 0;
}

.plan .popover {
    width: 250px;
    font-size: 13px;
    text-align: center;
    border: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.plan .popover-title {
    background-color: #e84c3d;
    color: #ffffff;
    text-shadow: none;
    font-size: 13px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

.plan .popover-content {
    font-size: 12px;
}

.plan .btn {
    text-shadow: none;
}

.gray .plan {
    border-top: 1px solid #c5c5c5;
    background-color: #f1f1f1;
    -webkit-box-shadow: -1px 0 0px rgba(0, 0, 0, 0.15);
    box-shadow: -1px 0 0px rgba(0, 0, 0, 0.15);
}

.gray .col-sm-3 > .plan,
.gray .col-sm-4 > .plan {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.gray .plan .header {
    background: #fafafa;
    border: 1px solid #cacaca;
    width: 150px;
    height: 150px;
    margin: 15px auto;
    border-radius: 100%;
}

    .gray .plan .header h3 {
        color: #3c763d;
        display: block;
        margin-top: 30px;
    }

    .gray .plan .header .price {
        font-size: 24px;
        padding-top: 5px;
    }

.gray .plan ul {
    background: #f1f1f1;
    border-top: 1px solid #e4e4e4;
}

    .gray .plan ul li {
        border-bottom: 1px solid #e4e4e4;
        border-top: 1px solid #f8f8f8;
        color: #333333;
    }

.white .plan {
    border-color: #f3f3f3;
}

    .white .plan .header {
        color: #fff;
        background: #e84c3d;
    }

        .white .plan .header h3 {
            color: #fff;
        }

    .white .plan ul {
        -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
        background-color: #fbfbfb;
    }

        .white .plan ul li {
            border-bottom: 1px solid #f5f5f5;
        }

.stripped .header {
    background: #e84c3d;
    border: none;
    -webkit-box-shadow: 0px 0px 60px #cd3c2e inset;
    -moz-box-shadow: 0px 0px 60px #cd3c2e inset;
    box-shadow: 0px 0px 60px #cd3c2e inset;
    color: #fff;
}

    .stripped .header h3 {
        color: #fff;
    }

.stripped .plan ul {
    -webkit-box-shadow: 0px 0px 32px 0px #cacaca inset;
    -moz-box-shadow: 0px 0px 32px 0px #cacaca inset;
    box-shadow: 0px 0px 32px 0px #cacaca inset;
    background: #fdfdfd;
}

    .stripped .plan ul li {
        border: 1px solid #ececec;
        border-top: none;
        color: #666;
    }

        .stripped .plan ul li:nth-child(even) {
            -webkit-box-shadow: 0px 0px 40px #e4e4e4 inset;
            -moz-box-shadow: 0px 0px 40px #e4e4e4 inset;
            box-shadow: 0px 0px 40px #e4e4e4 inset;
            background: #ffffff;
            border-right: 1px solid #e2e2e2;
            border-bottom: 1px solid #e2e2e2;
        }

/* Small devices (tablets, 768px and up) */
@media (min-width:768px) {
    .best-value.plan {
        top: -40px;
        position: relative;
    }
}

.btn {
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    min-width: 160px;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    margin: 10px 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

    .btn:focus,
    .btn:active {
        outline: none;
        box-shadow: none;
    }

    .btn.btn-lg {
        padding: 17px 12px;
        font-size: 18px;
        min-width: 210px;
    }

    .btn.btn-sm {
        padding: 8px;
        font-size: 12px;
        min-width: 105px;
    }

    .btn.radius {
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        border-radius: 15px;
    }


.faq_table td {
    text-align: left;
    vertical-align: top;
}
