@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}

body {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    font-size: 14px;
    color: #333;
    overflow-x: hidden;
}

ul {
    list-style-type: none;
}

code {
    font-family: system-ui;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e0e7eb;
    border-radius: 4px;
    background-color: #f2f5f7;
    letter-spacing: 0.1px;
    color: rgba(1, 27, 51, 0.8);
    padding: 1px 4px 2px;
}

hr {
    margin-bottom: 20px;
}

.top-nav {
    display: flex;
    justify-content: flex-end;
    height: 80px;
    color: #333;
    padding: 0px 20px;
    position: fixed;
    top: 0;
    left: 18%;
    right: 0;
    z-index: 3;
    background-color: #fff;
}

    .top-nav .header-actions {
        display: flex;
        margin-top: 25px;
        margin-right: 20px;
        justify-content: flex-end;
    }

        .top-nav .header-actions .btn {
            align-items: center;
            background: #111111cb;
            color: #eee;
            border-radius: 5px;
            border: none;
            font-size: 14px;
            text-decoration: none;
            font-weight: 600;
            line-height: 36px;
            padding-left: 15px;
            padding-right: 15px;
            cursor: pointer;
            margin-left: 10px;
        }

            .top-nav .header-actions .btn:hover {
                opacity: 0.8;
            }

    .top-nav .header-logo {
        position: absolute;
        left: 10px;
        top: 5px;
        display: none;
    }

        .top-nav .header-logo img {
           /* width: 100px;
            height: auto;*/
        }

.open-slide {
    margin: 20px;
    display: none;
    z-index: 5;
}

.side-nav {
    height: 100%;
    width: 0px;
    position: fixed;
    top: 0;
    left: 0;
    overflow-x: hidden;
    z-index: 4;
    background-color: black;
    color: #fff;
    padding-top: 60px;
    transition: 0.9s;
}

    .side-nav a {
        color: #fff;
        display: block;
        padding: 10px 10px 10px 30px;
        font-size: font-size(button-text);
        transition: 0.3s;
        text-decoration: none;
    }

        .side-nav a:hover {
            color: #4e4e4e;
        }

    .side-nav .btn-close {
        position: absolute;
        top: 0;
        right: 22px;
        font-size: 36px;
        margin-left: 50px;
    }

    .side-nav .btn {
        align-items: center;
        background: #fff;
        color: #333;
        border-radius: 5px;
        border: none;
        font-size: 14px;
        text-decoration: none;
        font-weight: 600;
        line-height: 36px;
        padding-left: 15px;
        padding-right: 15px;
        cursor: pointer;
        margin-left: 10px;
        margin-top: 10px;
    }

        .side-nav .btn:hover {
            opacity: 0.8;
        }

.layout-container {
    display: grid;
    grid-template-areas: "nav-container content";
    grid-template-columns: 18% 82%;
}

.fixed-nav {
    background-color: #002649;
    position: fixed;
    width: 18%;
    display: flex;
    flex-direction: column;
    height: 100vh;
    cursor: pointer;
    overflow: scroll;
    color: #fff;
}

    .fixed-nav .header-logo {
        padding-top: 16px;
    }
    /*added*/
    .fixed-nav .header-logo img{
        height:100px;        
    }

    .fixed-nav nav {
        margin-top: 30px;
        margin-left: 30px;
    }

        .fixed-nav nav li {
            margin-bottom: 18px;
            margin-right: 10px;
            word-break: break-word;
        }

            .fixed-nav nav li a {
                display: inline-flex;
                font-size: 14px;
                font-weight: 600;
                color: #fff;
                cursor: pointer;
                text-decoration: none;
            }

                .fixed-nav nav li a:hover {
                    font-weight: 800;
                }

                .fixed-nav nav li a .icon {
                    margin-right: 10px;
                    margin-top: 8px;
                }

                .fixed-nav nav li a .nav-item,
                .fixed-nav nav li a .nav-item-header {
                    color: #fff;
                /*    text-transform: capitalize;*/
                    font-weight: 300;
                    font-size: 16px;
                }

                    .fixed-nav nav li a .nav-item:hover,
                    .fixed-nav nav li a .nav-item-header:hover {
                        font-weight: 900;
                        margin-top: 2px;
                    }

                .fixed-nav nav li a .active {
                    font-weight: 800;
                    margin-top: 2px;
                    color: #bccad3;
                }

        .fixed-nav nav .nav-dynamic {
            margin-bottom: 30px;
        }

            .fixed-nav nav .nav-dynamic .dynamic-hover {
                margin-left: 15px;
            }

/*.fixed-nav nav .nav-dynamic .dynamic-hover li {
  padding-bottom: 10px;
}*/

.content-area {
    grid-area: content;
}

.nav-container {
    grid-area: nav-container;
}

.content-area {
    padding: 100px 30px 0 30px;
}

    .content-area .content-grid {
        display: grid;
        grid-template-columns: 55% 40%;
        grid-gap: 50px;
        padding: 20px;
        margin-bottom: 20px;
    }

        .content-area .content-grid .main-heading {
            margin-bottom: 40px;
        }

            .content-area .content-grid .main-heading h1 {
                margin-bottom: 10px;
                line-height: 32px;
                font-size: 32px;
                font-weight: 900;
             /*   text-transform: uppercase;
                text-transform: capitalize;*/
            }

            .content-area .content-grid .main-heading p {
                font-size: 14px;
                color: #333;
                text-align: left;
                padding: 10px 0;
                margin: 0;
            }

        .content-area .content-grid .section-intro {
            margin-bottom: 25px;
        }

            .content-area .content-grid .section-intro h2 {
                margin-bottom: 18px;
                line-height: 28px;
                font-size: 28px;
                font-weight: 600;
                color: #333;
                text-transform: capitalize;
                margin-bottom: 6px;
            }

            .content-area .content-grid .section-intro p {
                font-size: 14px;
                color: #333;
                text-align: left;
                padding: 10px 0;
                margin: 0;
            }

    .content-area .callout-area {
        padding: 20px;
        border: none;
        border-radius: 2px;
    }

    .content-area .callout-area-info {
        background-color: #c1edff;
    }

    .content-area .callout-area-danger {
        background-color: #ff6b6b;
    }

    .content-area .callout-area .callout-header .icon {
        height: 20px;
        width: 20px;
        margin-right: 8px;
    }

    .content-area .callout-area .callout-header h5 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        text-transform: uppercase;
    }

    .content-area .callout-area .callout-text p {
        font-size: 14px;
        color: #333;
        text-align: left;
        padding: 10px 0;
        margin: 0;
    }

    .content-area .table-container {
        margin-bottom: 50px;
    }

        .content-area .table-container table {
            text-align: left;
            width: 100%;
            overflow: hidden;
            border-radius: 2px;
            border-collapse: collapse;
            font-size: 15px;
        }

            .content-area .table-container table caption {
                font-size: 14px;
                font-weight: 600;
                color: #4e4e4e;
                text-transform: uppercase;
                margin: 10px 0 10px 15px;
                text-align: left;
            }

            .content-area .table-container table tbody tr:nth-child(even) {
                background-color: rgba(233, 233, 233, 0.377);
            }

            .content-area .table-container table tbody td {
                padding: 16px;
                vertical-align: top;
            }

                .content-area .table-container table tbody td:first-child {
                    font-weight: 600;
                }

                .content-area .table-container table tbody td .object-list {
                    margin-top: 10px;
                }

                    .content-area .table-container table tbody td .object-list .objects {
                        font-size: 14px;
                        font-weight: 600;
                        color: #4e4e4e;
                        text-transform: uppercase;
                        font-size: 16px;
                        margin-bottom: 10px;
                        text-transform: capitalize;
                    }

                    .content-area .table-container table tbody td .object-list .object-values {
                        margin-left: 55px;
                    }

                        .content-area .table-container table tbody td .object-list .object-values .values {
                            margin-left: 30px;
                            margin-bottom: 10px;
                        }

                            .content-area .table-container table tbody td .object-list .object-values .values code:nth-child(1) {
                                margin-right: 20px;
                            }

    .content-area .paragraph-area {
        padding: 20px 0;
    }

        .content-area .paragraph-area .fas {
            margin-right: 5px;
        }

        .content-area .paragraph-area .paragraph-header {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            text-transform: uppercase;
        }

        .content-area .paragraph-area p,
        .content-area .paragraph-area ul {
            font-size: 14px;
            color: #333;
            text-align: left;
            padding: 10px 0;
            margin: 0;
        }

        .content-area .paragraph-area li {
            margin-bottom: 5px;
        }

    .content-area .code-container {
        margin: 30px 0;
        background-color: rgba(1, 27, 51, 0.9);
        opacity: 0.9;
        border: 1px solid #0000000f;
        border-radius: 12px;
        box-sizing: border-box;
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03);
    }

        .content-area .code-container .header-container {
            margin: 0px;
            padding: 0px;
            list-style: none;
            padding: 8px 16px 0px;
        }

            .content-area .code-container .header-container .header,
            .content-area .code-container .header-container .header-description,
            .content-area .code-container .header-container .header-dropdown {
                color: rgba(246, 252, 255, 0.6);
                display: inline-block;
                padding: 8px 0;
                font-weight: 500;
                font-size: 14px;
            }

            .content-area .code-container .header-container .header-label {
                background-color: #e4f6e7;
                color: #177532;
                font-size: 10px;
                font-weight: 500;
                padding: 4px 8px;
                margin-right: 6px;
                border-radius: 100px;
                text-transform: uppercase;
            }

            .content-area .code-container .header-container .header-dropdown {
                position: relative;
                top: 2px;
                font-size: 12px;
                font-weight: 500;
                float: right;
            }

        .content-area .code-container .content-container {
            padding: 0px;
        }

            .content-area .code-container .content-container .code-snippet {
                position: relative;
                text-align: left;
                padding: 24px 16px;
                margin: 0px;
                border-bottom-right-radius: 6px;
                border-bottom-left-radius: 6px;
                background-color: #011B33;
                max-height: 500px;
                max-width: 100%;
                overflow-x: auto;
            }

                .content-area .code-container .content-container .code-snippet .token-line {
                    line-height: 1.5;
                    color: #d6deeb;
                    padding-left: 10px;
                    width: max-content;
                }

                    .content-area .code-container .content-container .code-snippet .token-line .number {
                        display: inline-block;
                        width: 2em;
                        opacity: 0.3;
                    }

                    .content-area .code-container .content-container .code-snippet .token-line .function {
                        color: #82aaff;
                    }

                    .content-area .code-container .content-container .code-snippet .token-line .string {
                        color: #addb67;
                    }

                    .content-area .code-container .content-container .code-snippet .token-line .property {
                        color: #80cbc4;
                    }

                    .content-area .code-container .content-container .code-snippet .token-line .operator {
                        color: #7fdbca;
                    }

                    .content-area .code-container .content-container .code-snippet .token-line .punctuation {
                        color: #c792ea;
                    }

                    .content-area .code-container .content-container .code-snippet .token-line .value {
                        color: #f78c6c;
                        display: inline-block;
                    }

                    .content-area .code-container .content-container .code-snippet .token-line .comment {
                        color: rgba(246, 252, 255, 0.6);
                        font-style: italic;
                        display: inline;
                        margin-left: 2px;
                    }

                    .content-area .code-container .content-container .code-snippet .token-line .space {
                        padding-right: 15px;
                    }

    .content-area .side-area {
        width: 100%;
        position: sticky;
        flex-grow: 1;
        align-self: flex-start;
        top: 100px;
    }

.icons-danger {
    color: #ff0000;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 5;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.8);
    /* Modal Content */
}

    .modal .modal-content {
        background-color: #fff;
        box-shadow: 0px 3px 6px #000000ea;
        margin: auto;
        padding: 20px;
        border: 1px solid #d1d1d1;
        width: 80%;
        border-radius: 3px;
        /* The Close Button */
    }

        .modal .modal-content hr {
            margin-top: 10px;
            width: 10%;
        }

        .modal .modal-content h3 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            text-transform: uppercase;
        }

        .modal .modal-content .btn {
            align-items: center;
            background: #111111cb;
            color: #eee;
            border-radius: 5px;
            border: none;
            font-size: 14px;
            text-decoration: none;
            font-weight: 600;
            line-height: 36px;
            padding-left: 15px;
            padding-right: 15px;
            cursor: pointer;
            margin-top: 20px;
        }

            .modal .modal-content .btn:hover {
                opacity: 0.8;
            }

        .modal .modal-content label {
            /*display: inline-flex;*/
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            text-decoration: none;
            margin-left: 10px;
            color: #333;
        }

        .modal .modal-content .custom-control {
            line-height: 2.2;
        }

        .modal .modal-content .close {
            color: #555555;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

            .modal .modal-content .close:hover {
                color: #000;
                text-decoration: none;
                cursor: pointer;
            }

    .modal .downloadMenu {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

        .modal .downloadMenu .download-grid-header {
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 600;
            text-decoration: underline;
            margin-bottom: 12px;
        }

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(156, 131, 131, 0.3);
    border-radius: 12px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 12px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #111;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

    .row:before, .row:after {
        display: table;
        content: " ";
    }

    .row:after {
        clear: both;
    }

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 61%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}


.sticky {
    position: sticky;
    top: 0;
    background-color: white;
}

.modal-header {
    height: 3rem;
    border-bottom: 1px solid #e5e5e5;
    z-index: 10;
}

/*.modal-body {
    max-height: calc(100vh - 210px);
    overflow-y: auto;
}*/

/*# sourceMappingURL=styles.css.map */
