﻿
@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------
	
	* Filename:				default.css
	* Description: 			sets typography, basic grids, 
							and standard formstyles
	* Version:				1.0.0 (2012-06-16)
	* Author:				Ryan Martinez
	
	== INDEX ===============================================
	
	$__generic classes		classes used globally, should be at bottom to prevent semantic inheritance
	
------------------------------------------------------------*/


/*-------------------------------------*/
/* RESET */
/*-------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
    */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

html, button, input, select, textarea {
    font-family: sans-serif;
    color: #222;
}

/*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection declarations have to be separate
     * Also: hot pink! (or customize the background color to match your design)
     */

::-moz-selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

::selection {
    background: rgba(2,139,255,1); /* blue */
    color: #fff;
    text-shadow: none;
}

/* Improve readability of pre-formatted text in all browsers */
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

body {
    color: #444;
    font-size: 12px;
    line-height: 18px;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}

/*-------------------------------------*/
/* HEADER STYLES */
/*-------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    display: block;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        font-weight: inherit;
    }

h1 {
    font-size: 38px;
    line-height: 54px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: normal;
    margin-top: 8px;
    margin-bottom: 10px;
}

h4 {
    font-size: 22px;
    line-height: 36px;
    letter-spacing: normal;
}

h5 {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: normal;
}

h6 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: normal;
}

/* Module titles */
.Head {
    display: inline-block;
    margin-bottom: 6px;
}

/* Some old forge modules use .Head, .SubHead, .SubSubHead in table td, We keep this to be compatible */
td.Head, td.SubHead, td.SubSubHead {
    display: table-cell;
    margin-bottom: 0;
}

input[type="image"] + span.Head, input[type="image"] + span.SubHead {
    display: inline;
}

/*-------------------------------------*/
/* PARAGRAPH STYLES */
/*-------------------------------------*/
p {
    margin: 0 0 18px 0;
}
    /* margin bottom is equal to line-height */
    p img {
        margin: 0;
    }

em, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

small {
    font-size: 80%;
}

/* Set text size in modules*/
.Normal,
.NormalDisabled,
.NormalDeleted {
    color: #444;
    font-size: 12px;
    font-weight: normal;
    line-height: 18px;
    word-wrap: break-word;
}

/* disabled text styles */
.NormalDisabled,
.NormalDeleted {
    color: #999;
}



/* text style used for help text rendered by modules */
.Help {
    padding: 2px;
    border: #000 1px solid;
    background-color: #ff9;
    font-weight: normal;
    font-size: 11px;
    color: #000;
}
/* text style used for rendered text which requires emphasis */
.NormalBold {
    font-weight: bold;
    color: #222;
}

/* text style used for error messages */
.NormalRed {
    font-weight: bold;
    color: red;
}

/* text style used for rendered text which should appear deleted */
.NormalDeleted {
    text-decoration: line-through;
}

/*	Blockquotes  */
blockquote, blockquote p {
    font-size: 17px;
    line-height: 24px;
    color: #777;
    font-style: italic;
}

blockquote {
    margin: 0 0 20px;
    padding: 9px 20px 0 19px;
    border-left: 1px solid #ddd;
}

    blockquote cite {
        display: block;
        font-size: 12px;
        color: #555;
    }

        blockquote cite:before {
            content: "\2014 \0020";
        }

        blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
            color: #555;
        }

hr {
    clear: both;
    margin: 17px 0 17px;
    height: 0;
    border: solid #ddd;
    border-width: 1px 0 0;
}

/*-------------------------------------*/
/* ANCHOR STYLES */
/*-------------------------------------*/
a, a:visited {
    color: rgb(2,139,255); /*blue*/
    text-decoration: underline;
    outline: 0;
}

    a:hover, a:focus, a:active {
        color: #222;
        outline: 0;
    }

p a, p a:visited {
    line-height: inherit;
}

/*-------------------------------------*/
/* IMAGE STYLES */
/*-------------------------------------*/
img.dnn-scale-img {
    max-width: 100%;
    height: auto;
}

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

#dnn_dnnLOGO_imgLogo {
     border: 0;
}

/*-------------------------------------*/
/* lIST STYLES */
/*-------------------------------------*/
ul, ol {
    margin-bottom: 18px;
    margin-left: 18px;
}

ul {
    list-style: square outside;
}

ol {
    list-style: decimal;
}

    /* Nested Styles */
    ul ul, ul ol,
    ol ol, ol ul {
        margin-left: 18px;
        margin-bottom: 0;
    }

    ol ol {
        list-style: lower-roman;
    }

li p {
    line-height: 18px;
}

/*-------------------------------------*/
/* MESSAGE STYLES */
/*-------------------------------------*/
.dnnFormMessage {
    display: block;
    padding: 17px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(2,139,255,0.2); /* blue */
    background: rgba(2,139,255,0.15); /* blue */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    max-width: 100%;
}

    .dnnFormMessage.dnnFormError,
    .dnnFormMessage.dnnFormValidationSummary {
        background-color: rgba(255,0,0,0.15); /* red */
        border-color: rgba(255,0,0,0.2); /* red */
    }

    .dnnFormMessage.dnnFormWarning {
        background-color: rgba(255,255,0,0.15); /* yellow */
        border-color: #CDB21F; /* yellow */
    }

    .dnnFormMessage.dnnFormSuccess {
        background-color: rgba(0,255,0,0.15); /* green */
        border-color: rgba(0,255,0,0.5); /* green */
    }

/*-------------------------------------*/
/* TABLE STYLES */
/*-------------------------------------*/
.dnnTableHeader {
    display: block;
    padding: 15px;
    background: none repeat scroll 0 0 #E3E3E5;
}
.dnnTableHeader a,
.dnnTableHeader input, 
.dnnTableHeader select{
    margin: 0;
}
.dnnTableDisplay {
    margin-bottom: 18px;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-bottom: 0;
}

    .dnnTableDisplay td, .dnnTableDisplay th {
        padding: 5px 9px;
        border-bottom: 1px solid #d1d1d1;
    }

    .dnnTableDisplay th {
        padding: 0;
        border-left: 1px solid #d1d1d1;
        -webkit-box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
        box-shadow: 1px 0px 0px 0px rgba(255, 255, 255, 0.9);
    }

        .dnnTableDisplay th > span,
        .dnnTableDisplay th > a {
            display: block;
            padding: 5px 9px;
        }

    .dnnTableDisplay td:first-child {
        border-left: 1px solid #cfcfcf;
    }

    .dnnTableDisplay label {
        display: inline;
        padding-left: 5px;
    }

    .dnnTableDisplay caption {
        display: none;
    }

    /* thead styles */
    .dnnTableDisplay th {
        background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
        background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
        text-align: left;
        text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
        color: #333;
    }

        .dnnTableDisplay th a, .dnnTableDisplay th label {
            font-weight: normal;
            color: #333;
            text-decoration: none;
        }

        .dnnTableDisplay th a {
            padding: 8px 9px;
        }

            .dnnTableDisplay th a:hover {
                background: #fefefe; /* Old browsers */
                background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
                background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
                color: #333;
            }

            .dnnTableDisplay th a:active {
                border-color: #999;
                background: #c6c6c6; /* Old browsers */
                background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
                background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
                background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
                background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
                background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
                background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
                -webkit-box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0px 2px 3px 0px rgba(0, 0, 0, 0.3);
            }
    /* tbody styles */
    .dnnTableDisplay tr:nth-child(2n) td {
        background: rgba(0,0,0,0.04);
    }

    .dnnTableDisplay tr:hover td {
        background: rgba(2,139,255,0.15); /* blue */
    }

    /* tfooter styles */
    .dnnTableDisplay tfoot tr:hover td {
        background: none;
    }

/* table filter styles */
.dnnTableFilter {
    margin-bottom: 18px;
    background: rgba(0,0,0,0.04);
}

    .dnnTableFilter .dnnTableDisplay {
        margin-bottom: 0;
    }

.dnnFilterSet {
    padding: 18px;
}

    .dnnFilterSet label {
        display: inline-block;
    }

    .dnnFilterSet input,
    .dnnFilterSet select {
        display: inline-block;
        margin: 0 5px;
    }

/* table filter vertical styles */
.verticalFilter .dnnFilterSet {
    float: left;
    width: 20%;
    padding: 2% 18px;
}

.verticalFilter .dnnTableDisplay {
    float: right;
    width: 75%;
}

.verticalFilter input[type=search], .verticalFilter select, .verticalFilter input[type=text] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box; /* Firefox */
    -webkit-box-sizing: border-box; /* Safari */
}

/*-------------------------------------*/
/* PAGINATION & RESULT STYLES */
/*-------------------------------------*/
.dnnResults {
    float: left;
    margin-bottom: 0;
}

.dnnPagination {
    float: right;
    margin: 0;
    padding: 0;
}

    .dnnPagination li {
        float: left;
        list-style: none;
    }

        .dnnPagination li a, .dnnPagination li span {
            display: inline-block;
            padding: 0 5px;
            text-decoration: none;
            color: #333;
        }

            .dnnPagination li a:hover {
                text-decoration: underline;
                color: #222;
            }

        .dnnPagination li span {
            color: #222;
            text-decoration: underline;
        }

/*-------------------------------------*/
/* FORM STYLES */
/*-------------------------------------*/

.dnnFormItem input[type="text"],
.dnnFormItem select,
.dnnFormItem textarea,
.dnnFormItem input[type="email"],
.dnnFormItem input[type="search"],
.dnnFormItem input[type="password"] {
    margin-bottom: 18px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.8), inset 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    color: #333;
    font-size: 12px;
}

    .dnnFormItem input.aspNetDisabled,
    .dnnFormItem textarea.aspNetDisabled {
        background: #ebebeb;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #a7a7a7;
        border-width: 1px;
    }

.aspNetDisabled, a.aspNetDisabled,
.dnnDisabled, a.dnnDisabled {
    color: #ccc;
    cursor: not-allowed;
    text-decoration: none;
}

/* Active and Focus States */
.dnnFormItem input[type="text"]:active, .dnnFormItem input[type="text"]:focus,
.dnnFormItem input[type="password"]:focus, .dnnFormItem input[type="password"]:active,
.dnnFormItem input[type="email"]:active, .dnnFormItem input[type="email"]:focus,
.dnnFormItem select:active, .dnnFormItem select:focus,
.dnnFormItem textarea:active, .dnnFormItem textarea:focus,
.dnnFormItem input[type="search"]:active, .dnnFormItem input[type="search"]:focus {
    background: #fff;
    border: 1px solid rgba(2,139,255,0.5); /* blue */
    -webkit-box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    box-shadow: 0px 0px 3px 0px rgba(2, 139, 255, 0.4);
    color: #333;
}
/* Required Fields */
.required label:after,
legend.required:after {
    display: inline-block;
    margin-top: -2px;
    margin-left: 9px;
    padding: 1px 9px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: rgba(0,0,0,0.03);
    content: 'Required';
    font-weight: normal;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-style: italic;
    color: #777;
}

/* Error Styles */
.error label, legend.error {
    color: rgba(255,0,0,0.9); /* opaque red*/
}

.error input[type="text"],
.error select, .error textarea,
.error input[type="email"],
.error input[type="search"] {
    border: 1px solid rgba(255,0,0,0.6); /* opaque red*/
    color: rgba(255,0,0,0.7); /* opaque red*/
}

/*
	 * 1. Display hand cursor for clickable form elements
	 * 2. Allow styling of clickable form elements in iOS
	 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
	 */

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    display: inline-block;
    padding: 9px 9px;
    margin-bottom: 9px;
    cursor: pointer;
    min-width: 75px;
    *overflow: visible;
    border: 1px solid #c2c2c2;
    background: #eaeaea;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}

.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnFormItem input[type="submit"],
.dnnPrimaryAction,
.dnnSecondaryAction,
.dnnTertiaryAction {
    padding: 6px 6px;
}

/* Primary Action */

.dnnPrimaryAction, .dnnFormItem input[type="submit"], a.dnnPrimaryAction {
    border-color: #0D569E; /*dark blue*/
    background: #3792ED;
    background: -moz-linear-gradient(top, #358eea 0%, #2170cd 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#358eea), color-stop(100%,#2170cd)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #358eea 0%,#2170cd 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #358eea 0%,#2170cd 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.6), inset 0px 1px 0px 0px rgba(255, 255, 255, 0.4);
    color: #efefef;
    text-shadow: 0px -1px 0px #185B93;
}

    .dnnPrimaryAction:hover, .dnnFormItem input[type="submit"]:hover, a.dnnPrimaryAction:hover {
        border-color: #0D569E;
        background: #6cb6f3; /* Old browsers */
        background: -moz-linear-gradient(top, #6cb6f3 0%, #4387d2 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6cb6f3), color-stop(100%,#4387d2)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #6cb6f3 0%,#4387d2 100%); /* W3C */
        color: #fff;
    }

    .dnnPrimaryAction:active, .dnnFormItem input[type="submit"]:active, a.dnnPrimaryAction:active {
        border-color: #0D569E;
        background: #1f66be; /* Old browsers */
        background: -moz-linear-gradient(top, #1f66be 0%, #3085e0 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#1f66be), color-stop(100%,#3085e0)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #1f66be 0%,#3085e0 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(top, #1f66be 0%,#3085e0 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        color: #fff;
    }

    .dnnPrimaryAction[disabled], .dnnPrimaryAction[disabled]:hover, .dnnPrimaryAction[disabled]:active {
        background: #ccc !important;
        border: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        color: #aaa !important;
        text-shadow: none;
    }

/* Secondary Action */
.dnnFormItem button, .dnnFormItem input[type="button"],
.dnnFormItem input[type="reset"],
.dnnSecondaryAction,
a.dnnSecondaryAction,
ul.dnnAdminTabNav li a,
.dnnLogin .LoginTabGroup span {
    background: #f5f5f5; /* Old browsers */
    background: -moz-linear-gradient(top, #f5f5f5 0%, #dfdfdf 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#dfdfdf)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* IE10+ */
    background: linear-gradient(top, #f5f5f5 0%,#dfdfdf 100%); /* W3C */
    -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 1px 0px 0px rgba(255, 255, 255, 1);
    text-shadow: 0px 1px 0px #ffffff;
    color: #333;
}

    .dnnFormItem button:hover, .dnnFormItem input[type="button"]:hover,
    .dnnFormItem input[type="reset"]:hover,
    .dnnSecondaryAction:hover,
    a.dnnSecondaryAction:hover,
    ul.dnnAdminTabNav li a:hover,
    .dnnLogin .LoginTabGroup span:hover {
        background: #fefefe; /* Old browsers */
        background: -moz-linear-gradient(top, #fefefe 0%, #e8e8e8 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fefefe), color-stop(100%,#e8e8e8)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* IE10+ */
        background: linear-gradient(top, #fefefe 0%,#e8e8e8 100%); /* W3C */
        color: #555;
    }

    .dnnFormItem button:active,
    .dnnFormItem input[type="button"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnFormItem input[type="reset"]:active,
    .dnnSecondaryAction:active,
    a.dnnSecondaryAction:active,
    ul.dnnAdminTabNav li a:active {
        border-color: #999;
        background: #c6c6c6; /* Old browsers */
        background: -moz-linear-gradient(top, #c6c6c6 0%, #f3f3f3 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c6c6c6), color-stop(100%,#f3f3f3)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* IE10+ */
        background: linear-gradient(top, #c6c6c6 0%,#f3f3f3 100%); /* W3C */
        -webkit-box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
        box-shadow: inset 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
    }

/* Fix some old forge modules use .dnnPrimaryAction and .dnnSecondaryAction in wrong way */
span.dnnPrimaryAction > input[type="image"],
span.dnnSecondaryAction > input[type="image"] {
    display: none;
}

span.dnnPrimaryAction > a.dnnPrimaryAction,
span.dnnSecondaryAction > a.dnnSecondaryAction {
    display: inline;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Tertiary Action */
.dnnTertiaryAction, a.dnnTertiaryAction {
    padding: 10px 10px;
    border: none;
    background: #eaeaea;
    color: #333;
}

    .dnnTertiaryAction:hover, a.dnnTertiaryAction:hover {
        background: #f2f2f2;
    }

    .dnnTertiaryAction:active, a.dnnTertiaryAction:active {
        background: #d8d8d8;
    }

/* Action Button behind input */
.dnnFormItem input[type="text"] + a.dnnPrimaryAction,
.dnnFormItem input[type="text"] + a.dnnSecondaryAction,
.dnnFormItem input[type="text"] + a.dnnTerriaryAction { 
    margin-left: 5px;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    margin: 5px;
}

/* text style for buttons and link buttons used in the portal admin pages */

/* button style for standard HTML buttons */
.StandardButton {
    border: 1px solid blue;
}


/* Re-set default cursor for disabled elements */
.dnnFormItem button[disabled],
.dnnFormItem input[disabled] {
    cursor: default;
    opacity: 0.5;
}


/* Consistent box sizing and appearance */
.dnnFormItem input[type="checkbox"],
.dnnFormItem input[type="radio"] {
    *width: 13px;
    *height: 13px; /*why are we using hacks here*/
    padding: 0;
    box-sizing: border-box;
}

.dnnFormItem input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

    .dnnFormItem input[type="search"]::-webkit-search-decoration,
    .dnnFormItem input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
    }


/* Remove inner padding and border in FF3/4: h5bp.com/l */
.dnnFormItem button::-moz-focus-inner, .dnnFormItem input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
	 * 1. Remove default vertical scrollbar in IE6/7/8/9
	 * 2. Allow only vertical resizing
	 */

.dnnFormItem textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

    /* Colors for form validity */
    .dnnFormItem input:valid, .dnnFormItem textarea:valid {
    }

    .dnnFormItem input:invalid, .dnnFormItem textarea:invalid {
        background-color: #f0dddd;
    }

/*-------------------------------------*/
/* TAXONOMY */
/*-------------------------------------*/

/* Horizontal taxonomy styles */
.horizontal ul.categories,
.horizontal ul.tags {
    list-style: none;
}

.horizontal ul.categories {
}

.horizontal ul.tags {
}

    .horizontal ul.categories li, .horizontal ul.tags li {
    }

        .horizontal ul.tags li.add-tags {
        }

            .horizontal ul.tags li.add-tags img {
            }

/* Vertical taxonomy styles */
.vertical ul.categories,
.vertical ul.tags {
    list-style: none;
}

    .vertical ul.categories li,
    .vertical ul.tags li {
    }

    .vertical ul.categories li {
    }

    .vertical ul.tags li {
    }

        .vertical ul.tags li.add-tags {
        }

            .vertical ul.tags li.add-tags img {
            }

/*-------------------------------------*/
/* TABS : JQUERY UI TABS 1.8.14 */
/*-------------------------------------*/
/* Tabs */
ul.dnnAdminTabNav {
    display: inline-block;
    margin-top: 5px;
    margin-left: 0;
    width: 100%;
    min-height: 37px;
    border-bottom: 1px solid #c2c2c2;
}

    ul.dnnAdminTabNav li {
        float: left;
        margin-right: 4px;
        list-style: none;
    }

        ul.dnnAdminTabNav li a {
            /* most styles are inherited from typography.css */
            margin-bottom: 0;
            border-bottom: 0;
            box-shadow: none;
            webkit-box-shadow: none;
            -webkit-border-radius: 3px 3px 0px 0px;
            border-radius: 3px 3px 0px 0px;
        }

        ul.dnnAdminTabNav li.ui-tabs-active a {
            margin-top: -3px;
            padding: 12px 9px 10px 9px;
            background: #fff;
        }

/* Panels */
.ui-tabs .ui-tabs-panel {
    position: relative;
    display: block;
}

.ui-tabs .ui-tabs-hide {
    display: none;
}

/*-------------------------------------*/
/* LOGIN TAB GROUP */
/*-------------------------------------*/
.dnnLogin .LoginTabGroup {
    display: inline-block;
    width: 100%;
    height: 37px;
    margin-left: 0;
    margin-top: 5px;
    border-bottom: 1px solid #C2C2C2;
}

    .dnnLogin .LoginTabGroup span {
        margin-right: 4px;
        margin-bottom: 0;
        border-bottom: 0 none;
        border-radius: 3px 3px 0 0;
        box-shadow: none;
    }

        .dnnLogin .LoginTabGroup span.LoginTabSelected {
            margin-top: -3px;
            padding: 12px 9px 10px;
            background: none repeat scroll 0 0 #FFFFFF;
        }

/*-------------------------------------*/
/* TABS : JQUERY UI RESIZABLE 1.8.14 */
/*-------------------------------------*/
.dnnForm .ui-resizable {
    position: relative;
}

.dnnForm .ui-resizable-handle {
    position: absolute;
    display: block;
    z-index: 99999;
    font-size: 0.1px;
}

.dnnForm .ui-resizable-disabled .ui-resizable-handle,
.dnnForm .ui-resizable-autohide .ui-resizable-handle {
    display: none;
}

.dnnForm .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

.dnnForm .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

.dnnForm .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

.dnnForm .ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}

.dnnForm .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

.dnnForm .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

.dnnForm .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
/*	

/*-------------------------------------*/
/* FORM ITEMS
/*-------------------------------------*/
.dnnForm {
    width: 100%;
}

    .dnnForm fieldset {
        clear: none;
        position: relative;
        margin-bottom: 18px;
        text-align: left;
    }

        .dnnForm fieldset fieldset {
            width: 100%;
        }

    .dnnForm .dnnFormItem {
        clear: both;
        width: 100%;
        display: block;
        position: relative;
        text-align: left;
    }

/* Label */
.dnnTooltip {
    position: relative;
    display: block;
    width: 32.075%;
    margin-right: 18px;
}

.dnnHelperTip {
    position: relative;
    display: block;
}

.dnnDragdropTip {
    z-index: 10000;
    position: absolute;
    width: auto !important;
    height: auto !important;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.75) url("/images/pin-icn.png") no-repeat 7px 12px;
    font-size: 11px;
    color: #DDD;
    text-align: left;
}

span.dnnFormRequired:after,
div.dnnFormItem.dnnFormRequired > div.dnnLabel span:after {
    content: "*";
    display: inline-block;
    margin: 0 0 0 5px;
    color: Red;
    font-size: 16px;
    line-height: 1em;
    font-weight: bold;
}

.dnnFormItem input[type="checkbox"] + span,
.dnnFormItem input[type="radio"] + span {
    display: inline-block;
    width: auto;
    margin: 6px 5px 6px 5px;
}

/* Help Label */
a.dnnFormHelp,
.dnnForm .dnnFormItem a.dnnFormHelp,
.dnnTooltip label a.dnnFormHelp {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

a.dnnFormHelp {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 2px;
    width: 14px;
    height: 15px;
    background: url("/images/helpI-icn-grey.png") no-repeat left 2px;
    padding: 0 !important;
    margin: 0 !important;
}

.dnnLabel {
    display: inline-block;
    float: left;
    position: relative;
    width: 32.075%;
    padding-right: 20px;
    margin-right: 18px;
    overflow: visible;
    text-align: right;
}

.dnnFormItem > .dnnLabel {
    margin-top: 5px;
}

.dnnLabel > span {
    text-align: right;
}

.dnnForm .dnnFormItem a.dnnFormHelp span {
    position: relative;
}

.dnnForm .dnnFormItem a.dnnFormHelp img {
    display: block;
}

.dnnLabel + span {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 6px;
    white-space: pre-line;
}

/* Compatible with some old forge modules */
td > .dnnLabel {
    width: 220px;
}

/* Help tooltip */
.dnnTooltip .dnnFormHelpContent,
.dnnHelperTip .dnnFormHelpContent {
    visibility: hidden;
    z-index: 10;
    position: absolute;
    width: 200px;
    padding: 10px;
    padding-left: 30px;
    border-radius: 3px;
    background: rgba(0,0,0,0.75);
    font-size: 11px;
    color: #ddd;
    text-align: left;
}

.dnnFormHelpContent span {
    display: block;
	word-wrap: break-word;
}

/*.dnnTooltip .dnnFormHelpContent span:after,
.dnnHelperTip .dnnFormHelpContent span:after {
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}*/

.dnnTooltip .dnnFormHelpContent .dnnHelpText {
    word-wrap: break-word;
}

.bottomArrow:after
{
    position: absolute;
    content: "";
    left: 15px;
    bottom: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #000;
}
.topArrow:before {
    position: absolute;
    content: "";
    left: 15px;
    top: -7px;
    width: 0;
    height: 0;
    opacity: 0.75;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #000;
}

a.pinHelp {
    display: block;
    position: absolute;
    left: 7px;
    top: 12px;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    background: url("/images/pin-icn.png") no-repeat 0 0;
}

    .ui-draggable a.pinHelp,
    a.pinHelp:hover {
        opacity: 1;
    }

/* Error tooltip */
.dnnFormItem span.dnnFormMessage.dnnFormError {
    display: block;
    position: absolute;
    overflow: visible;
    /*top:-95%; right: 12%;*/
    bottom: 95%;
    right: 12%;
    width: 200px;
    margin-bottom: 0;
    padding: 10px;
    border: none;
    border-radius: 3px;
    background: rgba(255,0,0,0.75);
    font-size: 12px;
    color: #fff;
    text-align: left;
}

    .dnnFormItem span.dnnFormMessage.dnnFormError:after {
        position: absolute;
        bottom: -7px;
        left: 15px;
        content: "";
        width: 0;
        height: 0;
        opacity: 0.75;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid red;
    }

/* Input Types*/
.dnnFormItem input[type="text"],
.dnnFormItem input[type="password"],
.dnnFormItem input[type="email"],
.dnnFormItem input[type="tel"],
.dnnFormItem select,
.dnnFormItem textarea {
    width: 45%;
    max-width: 445px;
}

.dnnFormItem select {
    width: 47%;
}

    .dnnFormItem select option {
        color: #333;
    }

.dnnFormItem table {
    background: none;
}

/* Input Customised Checkbox*/

.dnnCheckbox {
    display: inline-block;
    cursor: pointer;
}

    .dnnCheckbox .mark {
        display: inline-block; /*margin-top: 3px;*/
    }

    .dnnCheckbox img {
        display: inline-block;
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnCheckbox img {
        background: transparent url("/images/checkbox.png") no-repeat;
    }

    .dnnCheckbox img {
        background-position: 0px 0px;
    }

.dnnCheckbox-hover img {
    background-position: 0px 0px;
}

.dnnCheckbox-checked img {
    background-position: -51px 0px;
}

.dnnCheckbox-disabled {
    cursor: not-allowed;
}

.dnnCheckbox-disabled img {
    opacity: .5;
}

.dnnCheckbox-checked-error img {
    background-position: -150px 0px;
}

.dnnCheckbox-error img {
    background-position: -100px 0px;
}
.dnnCheckbox-focus {
	background-color: #e3e3e5;
}
.dnnBoxLabel{ display: inline-block;}
/* normal checkbox fix */
.dnnFormItem input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 8px 0 4px 0;
}

/* Input Customised Radiobutton */

.dnnRadiobutton {
    display: inline-block;
    cursor: pointer;
}

    .dnnRadiobutton .mark {
        display: inline-block;
    }

    .dnnRadiobutton img {
        width: 20px;
        height: 18px;
        min-width: 20px;
        vertical-align: middle;
    }

    .dnnRadiobutton img {
        background: transparent url("/images/radiobutton.png") no-repeat;
    }

    .dnnRadiobutton img {
        background-position: 0px 0px;
    }

.dnnRadiobutton-hover img {
    background-position: 0px 0px;
}

.dnnRadiobutton-checked img {
    background-position: -50px 0px;
}

.dnnRadiobutton-disabled img {
    opacity: .5;
}

.dnnRadiobutton-checked-error img {
    background-position: -150px 0px;
}

.dnnRadiobutton-error img {
    background-position: -100px 0px;
}
.dnnRadiobutton-focus {
	background-color: #e3e3e5;
}
/* Input RadioButton group */
div.dnnFormRadioButtons,
div.dnnHSRadioButtons,
span.dnnFormRadioButtons,
span.dnnHSRadioButtons {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
}

table.dnnFormRadioButtons {
    background-color: #f0f0f0;
    margin-bottom: 5px;
}

.RadComboBox_Default .rcbInput {
    width: 100% !important;
}

/* general group*/
div.dnnFormGroup {
    display: inline-block;
    padding: 10px;
    margin-bottom: 5px;
    background-color: #f0f0f0;
    width: 65%;
}

/* Input Customised Spinner */
.dnnSpinner {
    display: inline-block;
    position: relative;
    width: 150px;
    padding: 6px 6px;
    *overflow: visible;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    text-decoration: none;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
}

.dnnFormItem .dnnSpinner {
    width: 45%;
    margin-bottom: 18px;
}

.dnnSpinnerDisplay {
    margin: 0 25px 0 8px;
    background: transparent;
    color: #999;
}

.dnnFormItem .dnnSpinnerDisplay > input[type="text"],
.dnnFormItem .dnnSpinnerDisplay > input[type="text"]:focus {
    border: none;
    margin: 0;
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.dnnSpinnerCtrl {
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    background-color: transparent;
    border-left: 1px solid #c9c9c9;
}

    .dnnSpinnerCtrl > a.dnnSpinnerTopButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerUpArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

    .dnnSpinnerCtrl > a.dnnSpinnerBotButton {
        display: block;
        width: 25px;
        height: 16px;
        background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat;
        background-position: center;
        cursor: pointer;
    }

/* Input Customised Tags */
div.dnnTagsInput {
    display: inline-block;
    margin: 0;
    padding: 5px 0 0 5px;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: #FFF;
    -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8), inset 0 1px 2px 0 rgba(0, 0, 0, 0.3);
}

.dnnFormItem .dnnTagsInput {
    width: 45%;
}

div.dnnTagsInput span.tag {
    display: block;
    float: left;
    padding: 2px 6px 2px 6px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    color: #888;
    cursor: pointer;
    background-color: #eee;
    word-break: break-word;
}

    div.dnnTagsInput span.tag:hover {
        background-color: #e8f1fa;
        color: #444;
    }

    div.dnnTagsInput span.tag a {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 6px 0 0 0;
        background: transparent url("/images/dnnTagClose.png") no-repeat;
        background-position: center;
    }

div.dnnTagsInput > div > input,
div.dnnTagsInput > div > input:focus {
    border: none;
    background: transparent;
    outline: none;
    font-weight: normal;
    font-family: helvetica;
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
    height: 19px;
    padding: 3px 0 3px 3px;
    margin-bottom: 5px;
}

div.dnnTagsInput > div > input::-ms-clear {
  display: none;
}

div.dnnTagsInput div {
    display: block;
    float: left;
}

    div.dnnTagsInput div.dnnTags_filter {
        float: right;
        position: relative;
        margin: 0 0 5px 5px;
    }

        div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label {
            display: inline-block;
            border-left: 1px solid #ccc;
            padding: 3px 15px 0 10px;
            margin-right: 3px;
            color: #999;
            cursor: pointer;
            background: url("/images/dnnSpinnerDownArrow.png") no-repeat;
            background-position: right center;
            height: 22px;
        }

            div.dnnTagsInput div.dnnTags_filter > .dnnTags_filter_label.dnnExpanded {
                color: #666;
                background: url("/images/dnnSpinnerUpArrow.png") no-repeat;
                background-position: right center;
            }

        div.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl {
            display: none;
            position: absolute;
            list-style-type: none;
            background: #fff;
            border: 1px solid #c9c9c9;
            right: 22px;
            top: 28px;
            margin: 0;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            -webkit-box-shadow: 0px 2px 0px 0px #bbb;
            box-shadow: 0px 2px 0px 0px #bbb;
            z-index: 15;
        }

.dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li {
    white-space: nowrap;
    padding: 6px 12px 6px 8px;
    border-top: 1px solid #c9c9c9;
    list-style: none;
    color: #666;
    min-width: 150px;
}

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:first-child {
        border-top: none;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li:hover {
        background-color: #e8f1fa;
        color: #333;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > input {
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
        cursor: pointer;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > span.dnnCheckbox {
        margin-right: 8px;
    }

    .dnnTagsInput div.dnnTags_filter > ul.dnnTags_filter_dropdownUl > li > label {
        display: inline-block;
        vertical-align: top;
        cursor: pointer;
    }

div.dnnTagsInput div.dnnTags_filter a.dnnSearchButton {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("/images/search/searchButton.png");
    background-repeat: no-repeat;
    background-position: center center;
    vertical-align: top;
    cursor: pointer;
    margin: 4px 5px 0 4px;
}

.dnnTagsClear {
    clear: both;
    width: 100%;
    height: 0px;
}

div.dnnTagsInput > div > input.dnnTagsInvalid {
    display: block;
    float: left;
    margin-right: 5px;
    border: none;
    outline: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #FBD8DB; /*light red*/
    cursor: pointer;
    font-size: 12px;
    color: #90111A !important; /* dark red*/
    text-decoration: none; 
}

/* DNN Auto Complete */
.dnn_acResults {
    padding: 0px;
    border: 1px solid #c9c9c9;
    background-color: #fff;
    overflow: hidden;
    z-index: 900001;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    min-width: 150px;
}

    .dnn_acResults ul {
        margin: 0px;
        padding: 0px;
        list-style-position: outside;
        list-style: none;
    }

        .dnn_acResults ul li {
            margin: 0px;
            padding: 6px 22px 6px 22px;
            border-top: 1px solid #c9c9c9;
            color: #666;
            cursor: pointer;
            display: block;
            overflow: hidden;
            color: #333;
        }

            .dnn_acResults ul li:first-child {
                border-top: none;
            }

.dnn_acLoading {
}

.dnn_acSelect {
    background-color: #e8f1fa;
    color: #333;
}

/* Form Item */
.dnnFormMessage .dnnLabel {
    float: none;
    width: 90%;
    text-align: left;
}

/* Pane header */
.dnnFormSectionHead span {
    font-size: 18px;
    color: #222;
}

/* Progressbar*/
.dnnProgressbar {
    height: 25px !important;
    padding: 18px 10px 0 10px;
    border: 1px solid #c9c9c9;
    background: #fff;
    background: -moz-linear-gradient(top, #f0f2f1 0%, #fff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f2f1), color-stop(100%,#fff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #f0f2f1 0%,#fff 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #f0f2f1 0%,#fff 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
    box-shadow: inset 0px 1px 3px 0px rgba(0,0,0,0.25), 0px 1px 0px 0px #fff;
}

.ui-progressbar {
    height: 10px !important;
    overflow: hidden;
    background-color: #ccc;
    -webkit-box-shadow: inset 0px 1px 0px 0px #bbb;
    box-shadow: inset 0px 1px 0px 0px #bbb;
    text-align: left;
}

    .ui-progressbar .ui-progressbar-value {
        margin: 0;
        height: 100%;
        background-color: #1a82f7;
        background: -moz-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, right top, color-stop(0%,#2b7fda), color-stop(100%,#3fbdff)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* Chrome10+,Safari5.1+ */
        background: linear-gradient(left, #2b7fda 0%, #3fbdff 100%); /* W3C */
    }

/* Button Dropdown */
.dnnDropdownSettings {
    position: relative;
    height: 30px !important;
}

.dnnButtonDropdown {
    width: 50px;
    height: 30px !important;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
}

.dnnButtonIcon, .dnnButtonArrow {
    display: inline-block;
    height: 30px !important;
}

.dnnButtonIcon {
    width: 32px;
}

.dnnButtonArrow {
    width: 10px;
    background: transparent url("/images/dnnSpinnerDownArrow.png") no-repeat center;
}

.dnnButtonDropdown-clicked {
    z-index: 100;
    position: absolute;
    width: 50px;
    height: 30px !important;
    background: #fff;
    border: 1px solid #c9c9c9;
    border-bottom: 1px solid #fff;
    -webkit-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    border-top-right-radius: 3px;
}

.dnnButtonDropdown-ul {
    display: none;
    position: absolute;
    z-index: 99;
    top: 29px;
    left: 0;
    width: 200px;
    margin-left: 0;
    background: #fff;
    border: 1px solid #c9c9c9;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 2px 0px 0px #bbb;
    box-shadow: 0px 2px 0px 0px #bbb;
    list-style-type: none;
}

    .dnnButtonDropdown-ul > li, .dnnButtonDropdown-ul > ul > li {
        padding: 8px;
        border-bottom: 1px solid #c9c9c9;
        color: #333;
        cursor: pointer;
        vertical-align: middle;
        list-style: none;
        margin: 0;
    }
	.dnnButtonDropdown-ul > ul{ margin: 0;}
	.dnnButtonDropdown-ul > ul > li{ padding-left: 16px;}

        .dnnButtonDropdown-ul > li:last-child {
            border-bottom: none !important;
        }

        .dnnButtonDropdown-ul > li:hover {
            background-color: #e8f1fa;
            color: #000;
        }

/* Button Group */
ul.dnnButtonGroup {
    display: inline-block;
    margin: 0;
    padding: 0;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 0px 0px #bbb;
    box-shadow: 0px 1px 0px 0px #bbb;
    border: 1px solid #c9c9c9;
    cursor: pointer;
    list-style: none;
}

    ul.dnnButtonGroup > li {
        display: block;
        float: left;
        border-left: 1px solid #c9c9c9;
        margin: 0;
    }

        ul.dnnButtonGroup > li:hover {
            background-color: #e8f1fa;
        }

        ul.dnnButtonGroup > li.dnnButtonGroup-first {
            display: none;
        }

            ul.dnnButtonGroup > li.dnnButtonGroup-first + li {
                border-left: none;
            }

        ul.dnnButtonGroup > li > a {
            display: inline-block;
            padding: 7px 7px 6px 7px;
            text-decoration: none;
            color: #333;
        }

    ul.dnnButtonGroup span {
        color: #333;
    }


/* Grouped Multi Input */
.dnnFormItem .dnnInputGroup {
    float: left;
    display: block;
    width: 32.075%;
    padding: 5px;
    margin-bottom: 18px;
    background: rgba(0,0,0,0.05); /* opaque black */
}

    .dnnFormItem .dnnInputGroup .dnnLeft {
        width: 100%;
    }

    .dnnFormItem .dnnInputGroup span {
        display: inline-block;
        width: 33%;
        text-align: right;
    }

/* Error Styles */
.dnnFormError label a span {
    color: red;
}

.dnnFormError input[type="text"],
.dnnFormError input[type="password"],
.dnnFormError input[type="email"],
.dnnFormError input[type="tel"],
.dnnFormError select,
.dnnFormError textarea {
    border: 1px solid red;
}


/* Tertiary Actions */
.dnnFormItem input[type="text"] + .dnnTertiaryAction,
.dnnFormItem input[type="password"] + .dnnTertiaryAction,
.dnnFormItem input[type="email"] + .dnnTertiaryAction,
.dnnFormItem input[type="tel"] + .dnnTertiaryAction,
.dnnFormItem select + .dnnTertiaryAction {
    display: inline-block;
    max-width: 60px;
}

/* Information Feedback Aside */
.dnnForm fieldset.dnnFormInformation {
    float: left;
    width: 32.075%;
    margin-left: 16px;
    padding: 18px 0;
    background: rgba(0,0,0,0.05);
}

.dnnFormItem textarea {
    min-height: 80px;
}

.dnnAddress input[type="checkbox"] {
    margin: 0 5px;
}

/* Required Fields */
.dnnFormRadioButtons {
    float: left;
    display: block;
    width: auto;
}

    .dnnFormRadioButtons input[type=radio] {
        float: none;
    }

    .dnnFormRadioButtons label,
    .dnnFormItem input[type=radio] + label {
        float: none;
        display: inline;
        width: auto;
        padding-right: 0;
        margin: 0 10px 0 0;
        text-align: left;
        font-weight: normal;
    }

/* Text Editor */
.dnnTextEditor {
    margin-bottom: 18px;
}

/* Action Items */
.dnnActions {
    float: none;
    clear: both;
    display: block; /* prevent ul from collapsing */
    margin: 0;
    padding-top: 18px;
    text-align: left;
}

    .dnnActions li {
        float: left;
        margin-right: 5px;
        list-style: none;
    }

.dnnLoginActions {
    display: inline-block;
}

/* Short Form */
.dnnForm.dnnShortForm .dnnFormItem label {
    float: none;
    width: 100%;
    margin-bottom: 0.25em;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem input,
.dnnForm.dnnShortForm .dnnFormItem select,
.dnnForm.dnnShortForm .dnnFormItem textarea {
    float: none;
    text-align: left;
}

.dnnForm.dnnShortForm .dnnFormItem a.dnnFormHelp {
    background-position: left;
    padding-left: 22px;
}

/* UI Helpers */
.dnnForm .ui-helper-hidden {
    display: none;
}

.dnnForm .ui-helper-hidden-accessible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
}

/* Interaction Cues */
.dnnForm .ui-state-highlight,
.dnnForm .ui-widget-content .ui-state-highlight,
.dnnForm .ui-widget-header .ui-state-highlight {
    border: 1px solid #fed22f;
    background: #ffe45c;
    color: #363636;
}

    .dnnForm .ui-state-highlight a,
    .dnnForm .ui-widget-content .ui-state-highlight a,
    .ui-widget-header .ui-state-highlight a {
        color: #363636;
    }

.dnnForm .ui-state-error,
.dnnForm .ui-widget-content .ui-state-error,
.dnnForm .ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #b81900;
    color: #ffffff;
}

    .dnnForm .ui-state-error a,
    .dnnForm .ui-widget-content .ui-state-error a,
    .dnnForm .ui-widget-header .ui-state-error a {
        color: #ffffff;
    }

.dnnForm .ui-state-error-text,
.dnnForm .ui-widget-content .ui-state-error-text,
.dnnForm .ui-widget-header .ui-state-error-text {
    color: #ffffff;
}

.dnnForm .ui-priority-primary,
.dnnForm .ui-widget-content .ui-priority-primary,
.dnnForm .ui-widget-header .ui-priority-primary {
    font-weight: bold;
}

.dnnForm .ui-priority-secondary,
.dnnForm .ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}

.dnnForm .ui-state-disabled,
.dnnForm .ui-widget-content .ui-state-disabled,
.dnnForm .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none;
}

.dnnForm .ui-draggable {
    cursor: move;
}

/* Corner radius */
.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-left,
.dnnForm .ui-corner-tl {
    border-radius: 4px;
}

.dnnForm .ui-corner-all,
.dnnForm .ui-corner-top,
.dnnForm .ui-corner-right,
.dnnForm .ui-corner-tr {
    border-radius: 4px;
}
/*-------------------------------------*/
/* MODULE TITLE - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.ModuleTitle_MenuContainer {
    border: 1px solid blue;
}

.ModuleTitle_MenuBar {
}

.ModuleTitle_MenuItem {
}

.ModuleTitle_MenuIcon {
}

.ModuleTitle_SubMenu {
}

.ModuleTitle_MenuBreak {
}

.ModuleTitle_MenuItemSel {
}

.ModuleTitle_MenuArrow {
}

.ModuleTitle_RootMenuArrow {
}

/*-------------------------------------*/
/* MAIN MENU - TEMPORARY */
/*-------------------------------------*/

/* Need to determine what this is */
.MainMenu_MenuContainer {
    border: 1px solid green;
}

.MainMenu_MenuBar {
}

.MainMenu_MenuItem {
}

.MainMenu_MenuIcon {
}

.MainMenu_SubMenu {
}

.MainMenu_MenuBreak {
}

.MainMenu_MenuItemSel {
}

.MainMenu_MenuArrow {
}

.MainMenu_RootMenuArrow {
}

/*-------------------------------------*/
/* POPUP */
/*-------------------------------------*/

/* Popup Menu */
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
	z-index: 9999;
}

.dnnFormPopup {
    position: absolute;
    padding: 18px;
    background: #fff;
    -webkit-box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.75);
	z-index: 100000;
}
    /* Popup header */
    .dnnFormPopup, .dnnFormPopup > * {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    .dnnFormPopup .ui-dialog-titlebar {
        position: relative;
        padding: 0 0 18px 0;
        border-bottom: 1px solid #ddd;
        cursor: move;
        font-size: 18px;
        font-weight: bold;
    }

    .dnnFormPopup .dnnModalCtrl {
        display: block;
        position: absolute;
        top: -30px;
        right: -30px;
        width: 69px;
        height: 26px;
        border-radius: 10px;
        background-color: #fff;
        -webkit-border-radius: 10px;
        box-shadow: 0px 0px 5px #666;
    }

        .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close {
            float: right;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 4px 0 1px;
            overflow: hidden;
            -webkit-border-top-right-radius: 8px;
            -webkit-border-bottom-right-radius: 8px;
	        border: none;
	        outline: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
            background: #585858 url("/images/closeBtn.png") no-repeat;
            background-position: 8px 4px;
            text-indent: -9999em;
	        min-width: 0 !important;
        }

            .dnnFormPopup .dnnModalCtrl .ui-dialog-titlebar-close:hover {
                background: #358EEA url("/images/closeBtn.png") no-repeat;
                background-position: 8px 4px;
	            cursor: pointer;
            }

        .dnnFormPopup .dnnModalCtrl a.dnnToggleMax {
            float: left;
            display: block;
            height: 18px;
            width: 30px;
            margin: 4px 0 0 4px;
            overflow: hidden;
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
            background: #585858 url("/images/resizeBtn.png") no-repeat;
            background-position: 10px 2px;
            text-indent: -9999em;
        }

            .dnnFormPopup .dnnModalCtrl a.dnnToggleMax:hover {
                background: #358EEA url("/images/resizeBtn.png") no-repeat;
                background-position: 10px 2px;
            }

div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: block;
    position: absolute;
    top: -30px;
    right: -30px;
    height: 24px;
    width: 24px;
    margin: 0px;
    overflow: hidden;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background: #585858 url("/images/closeBtn.png") no-repeat;
    background-position: 4px 4px;
    border: 3px solid #fff;
    text-indent: -9999em;
	min-width: 0 !important;
}

/* Poup Iframe styles*/
.dnnFormPopup #iPopUp {
    width: 100%!important; /* to overwrite inline javscript styles */
    padding-top: 10px;
}

.dnnFormPopup .ui-dialog-content, #iPopUp .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0px;
    overflow: auto;
    background: #fff;
    zoom: 1;
}

.dnnFormPopup .ui-dialog-buttonpane {
    margin: .5em 0 0 0;
    padding: .3em 1em 0em 0em;
    overflow: hidden;
    border-width: 1px 0 0 0;
    background-image: none;
    text-align: left;
    border-top: 1px solid #ddd;
}

    .dnnFormPopup .ui-dialog-buttonpane button {
        margin: 0.5em 0.4em 0.5em 0em;
        padding: 0.5em 1em;
        cursor: pointer;
        border: none;
        outline: none;
    }

.dnnFormPopup .ui-resizable-se {
    float: right;
    height: 24px;
    width: 24px;
    background: url("/images/modal-resize-icn.png") no-repeat bottom;
}

.dnnFormPopup .dnnDialog {
    padding: 10px;
}

.dnnLoading {
    background: #fff url("/images/loading.gif") no-repeat center center;
    position: absolute;
    z-index: 9999;
}
.dnnPanelLoading {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -ms-opacity: 0.7;
    opacity: 0.7;
}

/*-------------------------------------*/
/* URL ACTION */
/*-------------------------------------*/
.urlControl label {
    width: auto;
    margin-top: 0;
    font-weight: normal;
}

.urlControlLinkType {
    width: auto;
}

    .urlControlLinkType span,
    .dnnFormItem .urlControlLinkType span {
        float: none;
        display: block;
        width: auto;
        text-align: left;
    }

.dnnFormItem .ucLinkTypeRadioButtons label {
    display: inline-block;
    width: 260px;
    padding-right: 0;
    margin-top: 0;
    font-weight: normal;
    text-align: left;
}

.urlControlLinkType span input {
    min-width: 3%;
}

.dnnForm.dnnModuleSettings .dnnFormItem .urlControlLinkType span label {
    text-align: left;
}

.urlControlFileRow {
    clear: both;
}

    .urlControlFileRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlFileRow select, .urlControlFileRow input[type=file] {
        clear: both;
    }

.urlControlImagesRow {
    overflow: hidden;
    clear: both;
}

    .urlControlImagesRow span.dnnFormLabel {
        width: auto;
        text-align: right;
    }

    .urlControlImagesRow select {
        clear: both;
    }

/*-------------------------------------*/
/* WIZARD TABS STEPS
/*-------------------------------------*/

/* Jquery UI tabs base */
.dnnWizardTab.ui-tabs {
    position: relative;
    padding: 0;
}

    .dnnWizardTab.ui-tabs .ui-tabs-nav {
        display: block;
        height: 46px;
        margin: 0;
        padding: 0;
        background: transparent url("/images/InstallWizardBG.png") repeat-x;
    }

        .dnnWizardTab.ui-tabs .ui-tabs-nav li {
            float: left;
            position: relative;
            margin: 0;
            padding: 0;
            border-bottom: 0 !important;
            list-style: none;
            white-space: nowrap;
        }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
                margin-bottom: 0;
            }

                .dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
                .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
                .ui-tabs .ui-tabs-nav li.ui-state-processing a {
                    cursor: text;
                }

            .dnnWizardTab.ui-tabs .ui-tabs-nav li a,
            .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
                cursor: pointer;
            }

    .dnnWizardTab.ui-tabs .ui-tabs-panel {
        clear: both;
        display: block;
        padding: 3em 1em 1.4em;
        border-width: 0;
        background: none;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-hide {
        display: none !important;
    }

    .dnnWizardTab.ui-tabs .ui-tabs-nav li a {
        display: block;
    }

.dnnWizardStep > span {
    display: block;
    float: left;
}

.dnnWizardStep {
    height: 46px;
    padding: 0 0 0 20px;
    background: transparent url("/images/InstallWizardBG.png") repeat-x;
    background-position: 0 0;
    cursor: pointer;
}

.ui-tabs .ui-tabs-nav li:first-child .dnnWizardStep {
    padding-left: 30px;
}

.dnnWizardStepNumber {
    margin: 10px 10px 0 0;
    padding: 3px 8px 3px 8px;
    background-color: #999;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    color: #fff;
    font-weight: bold;
}

.dnnWizardStepTitle {
    margin: 13px 20px 0 0;
    color: #999;
    font-weight: bold;
    text-decoration: none;
}

.dnnWizardStepArrow {
    width: 25px;
    height: 46px;
    background: transparent url("/images/InstallWizardBG.png") no-repeat;
    background-position: 0 -401px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStep {
    height: 46px;
    background-position: 0 -100px;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepNumber {
    background-color: #333;
}

.dnnWizardTab.ui-tabs .ui-tabs-nav li.ui-tabs-active .dnnWizardStepTitle {
    color: #333;
}

.dnnFormExpandContent {
    margin: 10px 0;
}

    .dnnFormExpandContent > a {
        color: #333;
        font-size: 13px;
        font-weight: bold;
    }
/*-------------------------------------*/
/* DNN SIMPLE GRID
/*-------------------------------------*/

table.dnnPermissionsGrid,
table.dnnGrid,
table.dnnASPGrid {
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}

    table.dnnPermissionsGrid {
        color: #777;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td {
        padding: 4px 4px 4px 4px;
        vertical-align: middle;
        line-height: 120%;
        text-align: center;    
    }

    table.dnnPermissionsGrid tr.dnnGridItem td,
    table.dnnPermissionsGrid tr.dnnGridAltItem td {
        padding: 5px 4px 5px 4px;
        border-top: 1px solid #c9c9c9;
        border-bottom: 1px solid #c9c9c9;
        width: 70px;
        text-align: center;
    }

    table.dnnPermissionsGrid tr.dnnGridItem td.permissionHeader,
    table.dnnPermissionsGrid tr.dnnGridAltItem td.permissionHeader {
        border-right: 1px solid #c9c9c9;
        text-align: left;
        padding-left: 10px;
        width: 150px;
    }

    table.dnnPermissionsGrid tr.dnnGridHeader td.permissionHeader {
        padding-left: 10px;
        text-align: left;
    }

    .dnnPermissionsGrid > .dnnFormItem label {
        margin-right: 8px;        
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem select {
        width: 25%;
        margin: 0 5px 5px 0;
        min-width: 180px;
        color: #777;
    }

    .dnnPermissionsGrid > .dnnFormItem input {        
        margin-bottom: 0;
        height: 17px;
        color: #777;
        width: 25%;
    }
    .dnnPermissionsGrid > .dnnFormItem ul.token-input-list-facebook {
        display: inline-block;
        vertical-align: top;
    }

    .dnnPermissionsGrid > .dnnFormItem > .leftGroup {
        margin-right: 35px;
        float:left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup {
        float: left;
    }

    .dnnPermissionsGrid > .dnnFormItem >  .rightGroup  > .dnnSecondaryAction {
        position: absolute;
    }

    .dnnPermissionsGrid > .dnnFormItem {
        margin-bottom: 18px;
        overflow: auto;     
    }

.dnnGridHeader td, thead.dnnGridHeader th,  tr.dnnGridHeader th{
    padding: 6px 12px 6px 12px;
    border-bottom: 1px solid #c9c9c9;
    border-right: 1px solid #c9c9c9;
    background: #f0f2f1;
    background: -moz-linear-gradient(top, #fff 0%, #f0f2f1 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#f0f2f1)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%,#f0f2f1 100%); /* Chrome10+,Safari5.1+ */
    background: linear-gradient(top, #fff 0%,#f0f2f1 100%); /* W3C */
}

.dnnGridItem td, .dnnGridAltItem td {
    padding: 6px;
    border-right: 1px solid #c9c9c9;
}

    .dnnGridItem td input, .dnnGridAltItem td input {
        margin-bottom: none;
    }

.dnnGridAltItem {
    background: #F2F2F2;
}

    .dnnGridItem:hover, .dnnGridAltItem:hover {
        background-color: #e8f1fa;
    }

/* td > input[type="image"],
    td > input[type="image"] + a,
    td a > img{
        display:block;
        float: left;
        margin-right: 3px;
    } */

/*-------------------------------------*/
/* URL Control
/*-------------------------------------*/

.urlControl {
    float: left;
    display: block;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f0f0f0;
}

    .urlControl select,
    .urlControl input {
        width: 180px;
        margin-bottom: 10px;
    }

    .urlControl dnnFormItem > a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        float: left;
    }

    .urlControl .urlControlLinkType {
        float: left;
        width: 100%;
    }

        .urlControl .urlControlLinkType .dnnFormLabel {
            float: left;
            width: auto;
            margin-right: 5px;
        }

        .urlControl .urlControlLinkType input[type="radio"] {
            width: auto;
            margin-right: 5px;
        }

/*-------------------------------------*/
/* File Picker
/*-------------------------------------*/
span[id$="FileControl"] {
    display: block;
    float: left;
}

.dnnFilePicker {
    display: block;
    float: left;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0 15px 0 15px;
    width: 450px;
}

    .dnnFilePicker .dnnLeft {
        margin: 0;
        padding: 0;
        margin-top: -30px;
    }

    .dnnFilePicker dnnFormItem {
        margin: 0;
        margin-top: -10px;
        padding: 0;
        position: static;
    }

    .dnnFilePicker .dnnLeft img {
        max-width: 135px;
        max-height: 100px;
    }

    .dnnFilePicker .dnnLeft .dnnFilePickerImageHolder {
        width: 135px;
        height: 100px;
        background-color: #ccc;
        margin: 20px 15px;
    }

    .dnnFilePicker .dnnFormItem span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFilePicker select,
    .dnnFilePicker input {
        width: 200px;
        margin: 0;
        margin-right: 10px;
        float: none;
    }

    .dnnFilePicker .dnnLeft a.dnnSecondaryAction {
        margin: 10px 10px 0 0;
        display: inline-block;
    }

    .dnnFilePicker .dnnLeft img {
        display: block;
        margin: 20px 15px;
    }

/* FILE UPLOAD CSS */
span.dnnInputFileWrapper > input[type="file"] { /* force file upload style here, cause some module just override */
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    direction: ltr;
    cursor: pointer;
    height: 100%;
	font-size: 200px;
}

span.dnnInputFileWrapper { /* Notes(by Richard): here must set !important */
    overflow: hidden !important;
    margin: 0px 4px 0 0;
    width: auto !important;
    display: block !important;
    float: left !important;
	position: relative;
}

    span.dnnInputFileWrapper > span.dnnSecondaryAction {
        display: inline-block;
        float: none;
        width: auto;
    }

/* DNN DRAG n DROP FILE PICKER UPLOAD */
.dnnFileUploadScope {
    display: block;
    float: left;
    background-color: #F0F0F0;
    margin-bottom: 10px;
    margin-right: 10px;
    padding: 0;
    width: 500px;
}

    .dnnFileUploadScope .dnnLeft {
        margin: 0;
        padding: 15px 10px 15px 10px;
    }

        .dnnFileUploadScope .dnnLeft .dnnFormItem {
            margin-bottom: 10px;
        }

    .dnnFileUploadScope .dnnFormItem span, .urlControlTab .dnnFormItem > span {
        display: block;
        float: left;
        width: 40px;
        margin-top: 8px;
        padding-left: 5px;
        text-align: left;
    }

    .dnnFileUploadScope .dnnFormItem .dnnDropDownList span {
        margin: 0;
        width: auto;
    }

    .dnnFileUploadScope .dnnFormItem .RadComboBox_Default,  .dnnFileUploadScope .dnnFormItem .dnnDropDownList{
        width: 180px;
        margin: 0;
        float: none;
    }

    .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone {
        position: relative;
        margin: 0;
        width: 180px;
        height: 150px;
        background: #d9eeff;
        border: 1px dashed #bbb;
        box-shadow: 0px 1px 0px #fff;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        color: #4577a2;
    }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone span {
            display: block;
            position: absolute;
            left: 38px;
            top: 60px;
            color: #fff;
            font-size: 12px;
            background: rgba(0,0,0,0.5);
            padding: 5px 7px;
            border-radius: 3px;
            box-shadow: 0px 1px 0px #fff, inset 1px 1px 0px #555;
            opacity: 0.5;
            cursor: default;
            -webkit-transition: all 500ms ease-in-out;
            -moz-transition: all 500ms ease-in-out;
            -ms-transition: all 500ms ease-in-out;
            -o-transition: all 500ms ease-in-out;
            transition: all 500ms ease-in-out;
        }

        .dnnFileUploadScope .dnnLeft .dnnFileUploadDropZone:hover span {
            opacity: 1;
        }

input.dnnFixedSizeComboBox {
    width: 200px !important;
    margin-right: 10px;
    float: left;
}

div.dnnFixedSizeComboBox {
    width: 218px !important;
    margin-right: 15px;
    float: left;
}

.dnnFixedSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

input.dnnSmallSizeComboBox {
    width: 100px !important;
    margin-right: 10px;
    float: left;
}

div.dnnSmallSizeComboBox {
    width: 118px !important;
    margin-right: 15px;
    float: left;
}

.dnnSmallSizeComboBox + a.dnnSecondaryAction {
    float: left;
    margin-right: 10px;
}

td.dnnGridHeaderTD-NoBorder {
    border-right: none !important;
}

tr.dnnGridItem td, tr.dnnGridAltItem td {
    border-right: none;
}

    tr.dnnGridItem td input {
        margin-bottom: 0;
    }

/*-------------------------------------*/
/* ACCORDIAN
/*-------------------------------------*/
h2.dnnFormSectionHead {
    margin-top: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
    font-size: 32px;
    line-height: 36px;
    letter-spacing: -0.03em;
}

    h2.dnnFormSectionHead a {
        display: block;
        padding-left: 3px;
        background: url("/images/down-icn.png") no-repeat right 50%;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        letter-spacing: normal;
        font-weight: normal;
    }

        h2.dnnFormSectionHead a:hover {
            color: #222;
            background: rgba(2,139,255,0.05) /* blue */ url("/images/down-icn.png") no-repeat right 50%;
        }

        h2.dnnFormSectionHead a.dnnSectionExpanded {
            background: url("/images/up-icn.png") no-repeat right 50%;
            color: #222;
        }

            h2.dnnFormSectionHead a.dnnSectionExpanded:hover {
                color: #222;
                background: rgba(2,139,255,0.05) /* blue */ url("/images/up-icn.png") no-repeat right 50%; /* ACTIVE BLUE */
            }

/*-------------------------------------*/
/* VERTICAL TABS */
/*-------------------------------------*/
.dnnVerticalTabs {
    margin-left: 0;
}

    .dnnVerticalTabs li {
        list-style: none;
    }

        .dnnVerticalTabs li a {
            display: block;
            padding: 15px 15px;
            border-bottom: 1px solid #ddd;
            border-right: 1px solid #ddd;
            background: rgba(0, 0, 0, 0.04);
            color: #999;
            text-decoration: none;
        }

            .dnnVerticalTabs li a:hover {
                background: rgba(0, 0, 0, 0.06);
                color: #333;
            }

        .dnnVerticalTabs li.active a {
            background: none;
            color: #333;
            border-right: 1px solid transparent;
        }

.tabBody {
    display: none;
}

/*-------------------------------------*/
/* SCROLL BAR */
/*-------------------------------------*/

.jspContainer {
    overflow: hidden;
    position: relative;
}

.jspPane {
    position: absolute;
}

.jspVerticalBar {
    position: absolute;
    top: 0;
    right: 0;
    width: 11px;
    height: 100%;
    background: #ccc;
}

.jspHorizontalBar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: #ccc;
}

    .jspVerticalBar *,
    .jspHorizontalBar * {
        margin: 0;
        padding: 0;
    }

.jspCap {
    display: none;
}

.jspHorizontalBar .jspCap {
    float: left;
}

.jspTrack {
    background: transparent;
    position: relative;
}

.jspVerticalBar .jspTrack {
    width: 10px;
    margin: 0 0 0 3px;
}

.jspHorizontalBar .jspTrack {
    height: 5px;
    margin: 3px 0 3px 0;
}

.jspVerticalBar .jspCap {
    display: block;
    height: 3px;
    width: 11px;
}

.jspHorizontalBar .jspCap {
    display: block;
    width: 3px;
    height: 11px;
}

.jspDrag {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    opacity: .75;
    background: #000;
    cursor: pointer;
}

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
    float: left;
    height: 5px;
}

/*-------------------------------------*/
/* UPGRADE FIXES */
/*-------------------------------------*/

/* Compatible with some old forge modules---*/
div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons label {
    display: inline !important;
}

div.ModDNNAnnouncementsC table.ucLinkTypeRadioButtons span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNAnnouncementsC .urlControl label, div.ModDNNLinksC .urlControl label {
    display: inline !important;
}

div.ModDNNFAQsC .Normal {
    width: auto !important;
}

div.ModDNNFeedbackC .dnnFormItem > label {
    display: inline-block;
    width: 33%;
    text-align: right;
}

div.ModDNNUserDefinedTableC div.RadEditor {
    height: auto !important;
}

div.ModDNNUserDefinedTableC ul.dnnActions {
    display: block;
}

div.ModDNNIFrameC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

div.ModDNNIFrameC table.Normal td .dnnLabel {
    width: 100px;
}

div.ModDNNIFrameC table.Normal td span.dnnRadiobutton {
    margin: 5px 0 0 30px;
}

div.ModDNNLinksC .urlControl span.dnnRadiobutton {
    display: inline !important;
}

/*-------------------------------------*/
/* GENERIC CLASSES */
/*-------------------------------------*/
.left {
    float: left;
}

.right {
    float: right;
}

.dnnLeft {
    float: left;
}

.dnnRight {
    float: right;
}

.dnnClear {
    clear: both;
}

    .dnnClear:after {
        clear: both;
        content: ".";
        display: block;
        height: 0;
        visibility: hidden;
        font-size: 0;
    }

* + html .dnnClear {
    min-height: 1%;
}

/* used to set the different module align options - from module settings */
.DNNAlignleft {
    text-align: left;
}

.DNNAlignright {
    text-align: right;
}

.DNNAligncenter {
    text-align: center;
}

/* used to collapse panes without any content in them */
body:not(.dnnEditState) .DNNEmptyPane {
    width: 0px;
}

/* style to apply if the content should be hidden */
.Hidden {
    display: none;
}
.wordwrap { 
   white-space: pre-wrap;      /* CSS3 */   
   white-space: -moz-pre-wrap; /* Firefox */    
   white-space: -pre-wrap;     /* Opera <7 */   
   white-space: -o-pre-wrap;   /* Opera 7 */    
   word-wrap: break-word;      /* IE */
}
/*Edit In Place Tool Bar Classes*/
.eipbackimg {
	position:absolute;
	margin-top:-32px;
	white-space:nowrap;
	background:url("/images/eip_toolbar.png") repeat-x;
	height:32px;
	z-index: 1;
}
.eipbackimg.editMode {
	border: 1px solid #777777 !important;
	background: -moz-linear-gradient(top, #303030 0%, #191919 100%) !important; /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303030), color-stop(100%,#191919)) !important; /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #303030 0%,#191919 100%) !important; /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #303030 0%,#191919 100%) !important; /* IE10+ */
    background: linear-gradient(to bottom, #303030 0%,#191919 100%) !important; /* W3C */
	opacity: 0.8;
}
.eipbackimg.containerTitle {
	margin-top: -8px;
}
.eipbackimg.containerTitle.editMode {
	left: auto;
	right: 0px;
	margin-top: 2px;
	background: none !important;
	border: none !important;
}
.eipbuttonbackimg{
	width: 32px;
	height: 32px; 
	cursor: pointer;
	float:left;
	background: url("/images/eip_toolbar.png") no-repeat;
	
}
.eipbackimg.editMode .eipbuttonbackimg {
	border-left: 1px solid #1f1f1f;
	border-right: 1px solid #393939;
	opacity: 0.5;
}

.eipbackimg.editMode.containerTitle .eipbuttonbackimg {
	border: none;
	opacity: 1;
}

.eipbuttonbackimg.eipbutton_cancel{ background-position: -32px 0;}
.eipbuttonbackimg.eipbutton_bold{ background-position: -64px 0;}
.eipbuttonbackimg.eipbutton_italic{ background-position: -96px 0;}
.eipbuttonbackimg.eipbutton_underline{ background-position: -128px 0;}
.eipbuttonbackimg.eipbutton_justifyleft{ background-position: -160px 0;}
.eipbuttonbackimg.eipbutton_justifycenter{ background-position: -192px 0;}
.eipbuttonbackimg.eipbutton_justifyright{ background-position: -224px 0;}
.eipbuttonbackimg.eipbutton_orderedlist{ background-position: -256px 0;}
.eipbuttonbackimg.eipbutton_unorderedlist{ background-position: -288px 0;}
.eipbuttonbackimg.eipbutton_outdent{ background-position: -320px 0;}
.eipbuttonbackimg.eipbutton_indent{ background-position: -352px 0;}
.eipbuttonbackimg.eipbutton_createlink{ background-position: -384px 0;}

.eipbackimg.containerTitle .eipbutton_cancel {
	background: url("/images/eip_title_cancel.png") no-repeat center center;
}

.eipbutton_edit {
	background: url("/images/eip_edit.png") no-repeat 100% center;
	float:left;
}

.eipbutton_save {
	background: url("/images/eip_save.png") no-repeat 100% center;
	float:left;
}
.eipbackimg.containerTitle .eipbutton_save {
	background-image: url("/images/eip_title_save.png");
}

.eipbackimg.editMode .eipborderhover {
	background-color: #333;
	opacity: 1;
}
.eipbackimg.editMode.containerTitle .eipborderhover {
	background-color: inherit;
}
div[id$=titleLabel_tb].visible ~ span{ margin-left: 32px;}

/*Critical Error Popup*/
div.errorWin p{ margin: 0 0 10px 0;}

input[type="button"].rspCollapseBarSpacer
{ min-width: 0; padding: 0 0; }


/*------------------------------------------------*/
/* DEFAULT PROFILE STYLE */
/*------------------------------------------------*/

.UserProfileControls ul li {
    list-style-type: none;
}

/*------------------------------------------------*/
/* PROFILE STYLE */
/*------------------------------------------------*/
.console.profile {
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    height: auto;
    background-color: #484848; /* Menu Background Color */
}

.console.profile .console-none div {
    cursor: pointer;
    cursor: hand;
    float: left;
    height: auto;
    /*width: 250px;*/
    width:100% !important; /* updated for responsive*/
    padding: 0px;
    margin: 0px;
    text-align: left;
}

.console.profile .console-none h3 {
    padding: 10px 8px 10px 40px;
    margin: 0;
    border-bottom: solid 1px #fff;
    background: url("/Resources/images/arrow-right-white.png") 18px center no-repeat;
    color: #eee;
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
}

.console.profile .console-none div div {
    display: none;
}

.console.profile .console-mouseon {
    background-color: #70b1c7; /* Menu Hover Background Color */
}
/*-------------------------------------------------*/

/* Login/register/reset paswsword controls in mobile view */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView{
	margin: 0;
	padding: 0;
	width: 100%;
	height: inherit !important;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage{
	margin: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 10px 0 10px 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage.dnnFormValidationSummary{
	padding: 10px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .LoginPanel,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSendPasswordContent,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm {
    width: 100%;
	padding: 18px 0 0 0;
    margin: 0;
    float: none;	
	min-width: inherit !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm{
	width: 100%;
	margin: 0;
	float: none;
	min-width: inherit !important;
}



body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: 100% !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
	padding: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnSocialRegistration{
	display: none;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnCaptcha{
	width: 100%;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnLeft img{
	display: block;
	margin: 0 0 5px 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel a.dnnFormHelp{
	display: none !important;
	width: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel div.dnnTooltip{
	display: none !important;
	width: 0 !important;
	position: static !important;
	right: 0 !important;
	margin: 0 !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem input[type="text"],
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="password"]{
    display: block;
    box-sizing: border-box;
	-webkit-box-sizing:border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: 100% !important;
	margin-bottom: 18px;
	min-width: 100% !important;	
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > span#dnn_ctr_Login_Login_DNN_lblLogin{
	display: none !important;
	width: 0;
	margin: 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem span.dnnFormMessage.dnnFormError{
	border-radius: 0;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	right: 0;
	width: auto;
	max-width: 100%;
	padding: 10px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnPrimaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm.dnnLoginService a.dnnSecondaryAction{
	width: 45%;
	padding: 18px 0 18px 0;
	display: block;
	float: left;
	margin: 0 5px 0 0;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginRememberMe{
	display: block;
	float: left;
	margin: 10px 0 0 5px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnLoginActions {
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnSecondaryAction,
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions a.dnnPrimaryAction{
	width: 100%;
	padding: 18px 0 18px 0;
	display: block;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions{
	padding: 0;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnActions li{
	width: 45%;
}

/* password strength control in iPopup */
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .password-strength-container{
	width: 100%;
	margin: 0 0 12px 0;
	padding: 8px 0 8px 0;
	display: block;
	max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container input[type="password"]{
	display: block;
	margin: 0 8px 0 8px;
	width: calc(100% - 20px);
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container span.min-length-text{
	display: block;	
	margin: 5px 0 5px 8px;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-container div.meter{
	float: none;	
	width: 90%;
	margin: 0 0 0 8px;
}
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem input.unmatched{
	background: none !important;
}

body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .password-strength-tooltip, 
body.mobileView.dnnFormPopup.dnnFormPopupMobileView .dnnRegistrationForm .dnnFormItem .confirm-password-tooltip{
	display: none !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, .mobileVie #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.mobileView .ui-widget-overlay {
    display: none;
}
.dnnFormPopup.dnnFormPopupMobileView {
    width: auto !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    box-shadow: none !important;
}
.dnnFormPopup.dnnFormPopupMobileView div.ui-dialog-titlebar > .ui-dialog-titlebar-close {
    display: none;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-titlebar {
    border-bottom: none;
    cursor: inherit;
    font-size: 22px;
    color: #000;
    padding: 5px 0 0 0;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel {
    display: block;
    text-align: left;
    float: none;
    width: auto !important;
    font-size: 14px;
    margin: 0 0 7px 0;
    vertical-align: top;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > input[type="text"] {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > textarea,
.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .redactor_box {
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > select {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnTagsInput {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100% !important;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 18px;
    max-width: inherit !important;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnForm .dnnFormItem > .dnnLabel > input[type="checkbox"].normalCheckBox {
    display: inline-block;
    margin: 0 5px 0 12px;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormItem span.dnnFormMessage.dnnFormError {
    right: 0;
    width: auto;
    border-radius: 0;
    text-align: right;
    max-width: 100%;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    width: 49%;
    margin: 0;
    padding: 20px 0 20px 0;
    display: block;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnPrimaryAction {
    float: left;
}

.dnnFormPopup.dnnFormPopupMobileView a.dnnSecondaryAction,
.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane button.dnnSecondaryAction {
    float: right;
}

.dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane {
    border-top: none;
}

    .dnnFormPopup.dnnFormPopupMobileView .ui-dialog-buttonpane .ui-dialog-buttonset {
        float: none;
    }

.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnPrimaryAction,
.dnnFormPopup.dnnFormPopupMobileView .four-btn-panel a.dnnSecondaryAction {
    width: 24%;
    display: inline-block;
    margin-right: 1%;
    float: none;
}

.dnnFormPopup.dnnFormPopupMobileView .dnnFormMessage {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    margin: 25px 0 15px 0;
}

html.mobileView {
    overflow: auto !important;
}

.mobileView .dnnFormPopup .ui-dialog-content, 
.mobileView #iPopUp .ui-dialog-content {
    max-height: none !important; 
}

.dnnPlaceholder{ color: #666; }

/* DNN Slider Input Style */
div.dnnSliderInput {
	position: relative;
	display: inline-block;
	width: 47%;
    margin:15px 0 23px 0;
    max-width: 445px;
	border: 1px solid #d3d3d3;
	-ms-border-radius: 3px;
	border-radius: 3px;
	height: 10px;
}

div.dnnSliderInput .ui-slider-handle {
	position: absolute;
    z-index: 2;
    width: 14px;
    height: 14px;
    cursor: default;
	border: 1px solid #aaaaaa;
    background-color: #cccccc;
    font-weight: normal;
    color: #555555;
	outline: none;
	top: -2px;
	margin-left: -7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
div.dnnSliderInput .dnnTooltip {
	top: -37px;
	margin-left: -22px;
}
div.dnnSliderInput .dnnTooltip .dnnFormHelpContent {
	visibility: visible;
	padding: 4px 10px;
	width: 25px;
	text-align: center;
	z-index: 1;
}
/*END DNN Slider Input Style*/

/* Overflow for dnnMenu dropdown */
#dnnMenu .dropdown-menu {
    word-wrap: break-word;
}

/* End Overflow for dnnMenu dropdown */


/* Add Variables */ /* Add Variables */ /*---------------------------------------------
CORE SKIN STYLES
---------------------------------------------*/
/* COLORS
---------------------------------------------*/
/* Text Colors
---------------------------------------------*/
.text-color-primary {
  color: #1A71AE !important;
}

.text-color-primary--light {
  color: #E9F1F7 !important;
}

.text-color-primary--lightest {
  color: #E9F1F7 !important;
}

.text-color-secondary {
  color: #E87D2F !important;
}

.text-color-secondary--light {
  color: #E8E2DC !important;
}

.text-color-secondary--lightest {
  color: #F3F1ED !important;
}

.text-color-gray--100 {
  color: #F6F6F6;
}

.text-color-gray--200 {
  color: #EBEBEB;
}

.text-color-gray--300 {
  color: #D9D9D9;
}

.text-color-gray--400 {
  color: #8F9DA9;
}

.text-color-gray--500 {
  color: #869BB0;
}

.text-color-gray--600 {
  color: #939598;
}

.text-color-gray--700 {
  color: #656D77;
}

/* Background Colors
---------------------------------------------*/
.bg-color-primary {
  background-color: #1A71AE;
}

.bg-color-primary--light {
  background-color: #E9F1F7;
}

.bg-color-primary--lightest {
  background-color: #E9F1F7;
}

.bg-color-secondary {
  background-color: #E87D2F;
}

.bg-color-secondary--light {
  background-color: #E8E2DC;
}

.bg-color-gray--100 {
  background-color: #F6F6F6;
}

.bg-color-gray--200 {
  background-color: #EBEBEB;
}

.bg-color-gray--300 {
  background-color: #D9D9D9;
}

.bg-color-gray--400 {
  background-color: #8F9DA9;
}

.bg-color-gray--500 {
  background-color: #869BB0;
}

.bg-color-gray--600 {
  background-color: #939598;
}

.bg-color-gray--700 {
  background-color: #656D77;
}

/* Border Colors
---------------------------------------------*/
.border-color {
  border-color: #d8d8d8 !important;
}

.border-color-primary {
  border-color: #1A71AE !important;
}

.border-color-primary--light {
  border-color: #E9F1F7 !important;
}

.border-color-primary--lightest {
  border-color: #E9F1F7 !important;
}

.border-color-secondary {
  border-color: #E87D2F !important;
}

.border-color-secondary--light {
  border-color: #E8E2DC !important;
}

.border-color-gray--100 {
  border-color: #F6F6F6 !important;
}

.border-color-gray--200 {
  border-color: #EBEBEB !important;
}

.border-color-gray--300 {
  border-color: #D9D9D9 !important;
}

.border-color-gray--400 {
  border-color: #8F9DA9 !important;
}

.border-color-gray--500 {
  border-color: #869BB0 !important;
}

.border-color-gray--600 {
  border-color: #939598 !important;
}

.border-color-gray--700 {
  border-color: #656D77 !important;
}

/* Font Family
---------------------------------------------*/
/* Bootstrap Updates
---------------------------------------------*/
/* Font family*/
/* Colors     */
/* Add Boostrap */
/* Add Custom CSS */
/* Add Custom Styles */
/*---------------------------------------------
Helpers
---------------------------------------------*/
/* REM Font Size Mixin
---------------------------------------------*/
/* Background Color Opacity Helper
---------------------------------------------*/
/* Truncate Text
---------------------------------------------*/
/* Allow Text Wrap
---------------------------------------------*/
.break-lines {
  white-space: pre-line;
}

/* Hide Content based on DNN Status
---------------------------------------------*/
.logged-in .hide-logged-in {
  display: none !important;
}

.logged-out .hide-logged-out {
  display: none !important;
}

/* Crop Overflow
---------------------------------------------*/
.crop {
  overflow: hidden;
}

/* Margin Spacings
---------------------------------------------*/
.m-t-0 {
  margin-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.m-t-60 {
  margin-top: 60px !important;
}

.m-b-60 {
  margin-bottom: 60px !important;
}

.m-l-60 {
  margin-left: 60px !important;
}

.m-r-60 {
  margin-right: 60px !important;
}

.m-t-90 {
  margin-top: 90px !important;
}

.m-b-90 {
  margin-bottom: 90px !important;
}

.m-l-90 {
  margin-left: 90px !important;
}

.m-r-90 {
  margin-right: 90px !important;
}

.m-t-120 {
  margin-top: 120px !important;
}

.m-b-120 {
  margin-bottom: 120px !important;
}

.m-l-120 {
  margin-left: 120px !important;
}

.m-r-120 {
  margin-right: 120px !important;
}

/* Padding Spacings
---------------------------------------------*/
.p-t-0 {
  padding-top: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

.p-r-60 {
  padding-right: 60px !important;
}

/* Flex Helpers
---------------------------------------------*/
.display--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Center items vertically */
.align-items--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/* Center items horizontally */
.justify-content--center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  -webkit-justify-content: center !important;
  justify-content: center !important;
}

/* Right align items */
.justify-content--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: end;
  justify-content: end;
}

/* Left align items */
.justify-content--start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

/* Equal height columns */
/* Uneven flex columns */
/*---------------------------------------------
Easy Dnn News Module
---------------------------------------------*/
.edn_module_title {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  background: #1A71AE;
  font-size: 12px;
  margin: 0 !important;
  padding: 8px 10px;
}

.resource-card {
  background: #ffffff;
}
.resource-card .edn__articleListWrapper {
  margin-left: 0;
  margin-right: 0;
}
.resource-card .edn__articleListWrapper .resource-article {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) {
  .edncf_VideoCategories {
    display: none;
  }
}
@media (max-width: 767px) {
  .edncf_VideoCategories {
    flex: 1;
    margin-right: 5px;
  }
}
.edncf_VideoCategories select {
  font-size: 12px;
  color: #1A71AE;
  font-style: italic;
  width: 100%;
}
@media (min-width: 768px) {
  .edncf_VideoCategories select {
    width: 260px;
  }
}

.resource-category-menu {
  background: none;
}
@media (max-width: 991px) {
  .resource-category-menu {
    display: none;
  }
}
.resource-category-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.resource-category-menu ul li .resource-category-title {
  display: block;
}
.resource-category-menu .level_1 {
  padding-bottom: 0;
  border: 1px solid #E9F1F7;
  border-top: none;
  background: #ffffff;
}
.resource-category-menu .level_1 div {
  background: #E9F1F7;
  position: relative;
}
@media (min-width: 768px) {
  .resource-category-menu .level_1 div {
    padding-right: 20px;
  }
}
.resource-category-menu .level_1 a {
  color: #1A71AE;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 7px 12px;
  text-decoration: none !important;
}
.resource-category-menu .level_1 a.fa-caret-down {
  display: none;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: all 0.25s ease;
}
.resource-category-menu .level_1.opened div {
  margin-bottom: 5px;
}
.resource-category-menu .level_1.hasChild a.fa-caret-down {
  display: block !important;
}
.resource-category-menu .level_1.hasChild.opened .fa-caret-down {
  transform: translateY(-50%) rotate(-180deg);
}
.resource-category-menu .level_1.hasChild .level_2 a.fa-caret-down {
  display: none !important;
}
.resource-category-menu .level_1.hasChild .level_2.hasChild a.fa-caret-down {
  display: block !important;
}
.resource-category-menu .level_2 {
  padding: 0 20px;
}
.resource-category-menu .level_2 div {
  background: transparent;
  margin-bottom: 0 !important;
}
.resource-category-menu .level_2 a.resource-category-title {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 4px 0;
  color: #515151;
  border-bottom: 1px solid #E9F1F7;
  line-height: 1.5;
}
.resource-category-menu .level_2:last-child a.resource-category-title {
  border-bottom: none;
  padding-bottom: 6px;
}
.resource-category-menu .level_2.active a.resource-category-title {
  font-weight: 700;
}

.edncf_submitContainer {
  height: 0;
  position: absolute;
  overflow: hidden;
}

.edncf_AdvancedSearch {
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .edncf_AdvancedSearch {
    background: #E9F1F7;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .edncf_AdvancedSearch {
    margin-bottom: 20px;
  }
}
.edncf_AdvancedSearch .edncf_container {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .edncf_AdvancedSearch .edncf_container {
    flex-wrap: wrap;
  }
}
.edncf_AdvancedSearch input,
.edncf_AdvancedSearch select {
  height: 30px;
  border: 1px solid #D3DDE6;
  background: #ffffff;
}

@media (max-width: 991px) {
  .edncf_SearchVideos {
    display: flex;
    align-items: center;
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .edncf_SearchVideos {
    display: block;
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .edncf_SearchVideos {
    flex: 1;
  }
}
@media (max-width: 991px) {
  .edncf_SearchVideos .edncf_typeText {
    flex: 1;
  }
}
.edncf_SearchVideos input {
  width: 100%;
  position: relative;
  padding: 0 10px;
  font-size: 12px;
}
.edncf_SearchVideos input::-webkit-input-placeholder {
  color: #1A71AE !important;
  font-style: italic;
}
.edncf_SearchVideos input:-moz-placeholder {
  color: #1A71AE !important;
  font-style: italic;
  opacity: 1;
}
.edncf_SearchVideos input::-moz-placeholder {
  color: #1A71AE !important;
  font-style: italic;
  opacity: 1;
}
.edncf_SearchVideos input:-ms-input-placeholder {
  color: #1A71AE !important;
  font-style: italic;
}
.edncf_SearchVideos input::-ms-input-placeholder {
  color: #1A71AE !important;
  font-style: italic;
}
.edncf_SearchVideos input::placeholder {
  color: #1A71AE !important;
  font-style: italic;
}
.edncf_SearchVideos label {
  font-size: 20px;
  line-height: 1.1;
  padding-left: 7px;
  border-left: 3px solid #E8E2DC;
  color: #1A71AE;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .edncf_SearchVideos label {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .edncf_SearchVideos label {
    font-size: 12px;
    margin-right: 5px;
    border: none;
    padding-left: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .edncf_SearchVideos label {
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.edncf_SearchVideos .edncf_TextInput {
  position: relative;
  display: block;
}
.edncf_SearchVideos .submit-video-search {
  width: 30px;
  height: 30px;
  right: 0;
  top: 0;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
  background: transparent url("/Portals/_default/Skins/ncsl/images/icon-search.svg") no-repeat center center;
  z-index: 1;
  position: absolute;
  cursor: pointer;
}

@media (min-width: 768px) {
  .edncf_SortVideos {
    margin-left: 5px;
  }
}
.edncf_SortVideos span {
  position: relative;
  z-index: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #D3DDE6;
  background: #ffffff url("/Portals/_default/Skins/ncsl/images/icon-sort.svg") no-repeat center center;
  background-size: 18px 13px;
  display: block;
}
.edncf_SortVideos select {
  max-width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
  opacity: 0;
}

.resource-breadcrumbs {
  margin-top: 30px;
  font-size: 10px;
  font-style: italic;
}
.resource-breadcrumbs a {
  color: #1561B5;
}

.resource-main-category .resource-main-category-title {
  color: #515151;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px !important;
}
.resource-main-category .resource-main-category-description {
  font-size: 14px;
  color: #515151;
  line-height: 1.4;
  margin-bottom: 0 !important;
}
.resource-main-category .resource-main-category-description p {
  color: inherit;
  font-size: inherit;
  margin-bottom: inherit;
  line-height: inherit;
}

.resource-card-list {
  border: 1px solid #E9F1F7;
}
.resource-card-list .category-title {
  text-align: center;
  padding: 0.25rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  background: #E9F1F7;
  color: #1A71AE;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  line-height: 1.25;
}
.resource-card-list .resource-article .admin_action.edit {
  margin-bottom: 0;
}

.resource-article__inner {
  display: flex;
  justify-content: space-between;
  clear: both;
}
@media (max-width: 767px) {
  .resource-article__inner {
    flex-direction: column;
  }
}
.resource-article:last-child .resource-article__outer {
  border-bottom: none;
}
.resource-article .resource-title {
  font-weight: 700;
  color: #515151;
  border-left: 3px solid #E8E2DC;
  padding-left: 9px;
  font-family: "Merriweather", serif;
  margin-bottom: 11px !important;
}
.resource-article .resource-tag {
  font-size: 12px;
  font-weight: 700;
  color: #1A71AE;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.resource-article .resource-tag__small {
  font-size: 10px;
}
.resource-article .resource-tag__light {
  color: #9E9E9E;
}
.resource-article .resource-summary {
  font-size: 0.875rem;
  line-height: 1.5;
  clear: both;
}
.resource-article .resource-summary p {
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .resource-article .resource-content {
    flex: 1;
  }
}
.resource-article .resource-image-wrap {
  position: relative;
  display: block;
}
.resource-article .resource-image-wrap .resource-producer {
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 0;
  margin-bottom: 0;
  display: none;
}
.resource-article .resource-image-wrap .resource-producer:last-child {
  display: block;
}
.resource-article .resource-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  display: block;
  position: relative;
}
@media (max-width: 767px) {
  .resource-article .resource-image {
    margin-top: 12px;
    width: 100%;
    height: 215px;
  }
}
.resource-article .resource-image img {
  opacity: 0;
}
@media (min-width: 768px) {
  .resource-article .resource-image img {
    height: 140px;
    width: auto;
  }
}
.resource-article .resource-image:after {
  content: "";
  display: block;
  height: 45px;
  width: 45px;
  background-color: #1A71AE;
  background-image: url("/Portals/_default/Skins/ncsl/images/icon-play.svg");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.5);
}
.resource-article .resource-cta-wrap {
  padding: 20px 0 0 0;
  display: flex;
  position: relative;
}
.resource-article .resource-cta-wrap .fa-play {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #E87D2F;
  color: #ffffff;
  font-size: 4px;
  line-height: 11px;
  text-align: center;
}
.resource-article .resource-cta-wrap .fa-lock {
  top: -1px;
}
.resource-article .resource-cta-wrap .fa,
.resource-article .resource-cta-wrap .fas {
  display: inline-block;
  position: relative;
}
.resource-article .resource-cta-wrap .resource-tag {
  margin-right: 10px;
  display: flex;
  align-items: center;
}
.resource-article .resource-cta-wrap .resource-tag:last-child {
  margin-right: 0;
}
.resource-article .resource-cta-wrap .resource-tag span {
  margin-right: 3px;
  display: inline-block;
}
.resource-article .resource-cta-wrap .btn-purchase {
  background-color: #205F0C;
  background-image: url("/Portals/_default/Skins/ncsl/images/icon-usd.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) 3px;
  background-size: 12px 12px;
  color: #ffffff;
  font-size: 10px;
  border-radius: 3px;
  padding: 1px 20px 1px 5px;
}
.resource-article .resource-cta-wrap .btn-purchase:hover {
  color: #ffffff !important;
  text-decoration: none;
  background-color: #113206;
}
.resource-article .resource-cta-wrap .btn-watch:hover {
  text-decoration: none;
}
.resource-article .resource-cta-wrap .btn-watch:hover span {
  text-decoration: underline;
}

.resource-card-list .resource-article {
  padding: 20px 20px 0 20px;
}
.resource-card-list .resource-article__outer {
  border-bottom: 1px solid #E8E2DC;
  padding: 0 0.5rem 1.25rem 0.5rem;
}
.resource-card-list .resource-article .resource-image,
.resource-card-list .resource-article .resource-image-wrap {
  width: 100%;
  height: 215px;
  margin: 0;
}
@media (min-width: 768px) {
  .resource-card-list .resource-article .resource-image,
  .resource-card-list .resource-article .resource-image-wrap {
    width: 240px;
    height: 150px;
  }
}
.resource-card-list .resource-article .resource-image-wrap {
  margin-left: 25px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .resource-card-list .resource-article .resource-image-wrap {
    margin-top: 0;
  }
}

.resource-card-featured {
  margin-bottom: 20px;
}
.resource-card-featured .resource-article {
  background: #ffffff;
}
.resource-card-featured .resource-article .resource-content {
  border: 1px solid #E9F1F7;
  border-left-width: 4px;
  padding: 15px;
}
.resource-card-featured .resource-article .resource-title {
  font-family: "Merriweather", serif;
  line-height: 1.083;
}
@media (min-width: 768px) {
  .resource-card-featured .resource-article .resource-image {
    flex-basis: 48%;
  }
}
.resource-card-featured .resource-article .resource-image .resource-columns-header {
  display: none;
}
.resource-card-featured.resource-columns {
  background: transparent;
}
.resource-card-featured.resource-columns [class*=article_list_wrapper] {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .resource-card-featured.resource-columns [class*=article_list_wrapper] {
    flex-direction: column;
  }
}
.resource-card-featured.resource-columns .resource-article {
  background: transparent;
  width: calc(50% - 10px);
}
@media (max-width: 767px) {
  .resource-card-featured.resource-columns .resource-article {
    width: 100%;
    margin-bottom: 5px;
  }
}
.resource-card-featured.resource-columns .resource-article__inner {
  flex-direction: column;
}
.resource-card-featured.resource-columns .resource-article .resource-content {
  background: #ffffff;
}
.resource-card-featured.resource-columns .resource-article .resource-summary {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
}
.resource-card-featured.resource-columns .resource-article .resource-image {
  position: relative;
  min-height: 215px;
  max-height: 215px;
}
.resource-card-featured.resource-columns .resource-article .resource-image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #323232 100%);
}
.resource-card-featured.resource-columns .resource-article .resource-image:after {
  left: auto;
  right: 15px;
  top: 15px;
  transform: translate(0, 0);
}
.resource-card-featured.resource-columns .resource-article.has-image .resource-header {
  display: none;
}
.resource-card-featured.resource-columns .resource-article.has-image .resource-image .resource-columns-header {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 20px 20px 20px;
}
.resource-card-featured.resource-columns .resource-article.has-image .resource-image .resource-columns-header .resource-title {
  color: #ffffff;
}
.resource-card-featured.resource-columns .resource-article.has-image .resource-image .resource-columns-header .resource-tag {
  background: #ffffff;
  color: #1A71AE;
  border-radius: 3px;
  padding: 1px 5px;
  display: inline-block;
}
@media (min-width: 768px) {
  .resource-card-featured.resource-columns .resource-article.has-image .resource-image:after {
    left: auto;
    right: 15px;
    top: 15px;
    transform: translate(0, 0);
  }
}
.resource-card-featured.resource-columns .resource-article.no-image {
  display: flex;
}
.resource-card-featured.resource-columns .resource-article.no-image .resource-article__outer {
  display: flex;
  flex: 1;
}
.resource-card-featured.resource-columns .resource-article.no-image .resource-article__inner {
  flex: 1;
}

.resource-producer {
  background: #E87D2F;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  margin-right: 4px;
  padding: 4px 18px;
  display: inline-block;
  margin-bottom: 10px;
  color: #ffffff !important;
  text-decoration: none !important;
}

a.resource-producer:hover {
  background: #cd6417;
}

.resource-details .resource-article .resource-title {
  font-family: "Merriweather", serif;
  margin-bottom: 18px !important;
}
.resource-details .resource-article .resource-image {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .resource-details .resource-article .resource-image {
    height: 450px;
  }
}
.resource-details .resource-article .resource-image:after {
  width: 67px;
  height: 67px;
}
.resource-details .resource-article .resource-image.embedded-media:after {
  display: none;
}
.resource-details .resource-article .resource-image .edn_fluidvids {
  padding: 0 !important;
  height: 100%;
}
.resource-details .resource-article .resource-image:after {
  display: none;
}
.resource-details .resource-article .resource-categories {
  display: flex;
  flex-wrap: wrap;
}
.resource-details .resource-article .resource-categories .NCSL_Legislative_Video_Resource_Center,
.resource-details .resource-article .resource-categories .Policy,
.resource-details .resource-article .resource-categories .Professional_Development {
  display: none;
}
.resource-details .resource-article .resource-categories a {
  background: #E9F1F7;
  color: #1A71AE;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  margin-right: 4px;
  padding: 4px 18px;
  display: inline-block;
}
.resource-details .resource-article .resource-categories a:hover {
  color: #ffffff;
  background: #1A71AE;
}
.resource-details .resource-article .resource-categories a[class*=Produced_by] {
  display: none;
}
.resource-details .resource-article .resource-content {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.4444;
  color: #797979;
}
.resource-details .resource-article .resource-content p,
.resource-details .resource-article .resource-content ul,
.resource-details .resource-article .resource-content li {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.resource-related-content-list {
  background: #F3F1ED;
  padding: 20px 10px 10px 10px;
  margin-top: 20px;
}
.resource-related-content-list .section-title {
  margin-bottom: 20px !important;
  padding-left: 9px;
  border-left: 3px solid #E8E2DC;
  color: #1A71AE;
}
.resource-related-content-list a {
  display: block;
  margin-bottom: 10px;
  background-color: #ffffff;
  font-size: 14px;
  color: #1A71AE;
  font-weight: 700;
  padding: 10px 50px 10px 40px;
  position: relative;
  border: 2px solid #E9F1F7;
  text-decoration: none !important;
}
.resource-related-content-list a:hover {
  background-color: #E9F1F7;
}
.resource-related-content-list .resource-related-documents ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.resource-related-content-list .resource-related-documents a {
  background-image: url("/Portals/_default/Skins/ncsl/images/icon-document.svg");
  background-size: 20px 23px;
  background-repeat: no-repeat;
  background-position: 12px center;
}
.resource-related-content-list .resource-related-documents a:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("/Portals/_default/Skins/ncsl/images/icon-download.svg") no-repeat center center;
  background-size: 18px 18px;
  position: absolute;
  top: calc(50% - 9px);
  right: 15px;
}
.resource-related-content-list .resource-related-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.resource-related-content-list .resource-related-links a {
  background-image: url("/Portals/_default/Skins/ncsl/images/icon-link.svg");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: 12px center;
}
.resource-related-content-list .resource-related-links a:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("/Portals/_default/Skins/ncsl/images/icon-external-link.svg") no-repeat center center;
  background-size: 18px 18px;
  position: absolute;
  top: calc(50% - 9px);
  right: 15px;
}
.resource-related-content-list .resource-related-links a.video-link {
  background-image: url("/Portals/_default/Skins/ncsl/images/icon-video.svg");
  background-size: 21px 15px;
  background-repeat: no-repeat;
  background-position: 12px center;
}

.eds_template_List_Catalog_Featured .edNews_breadCrumbs,
.eds_template_List_Catalog_Default .edNews_breadCrumbs {
  display: none;
}

.article_pager {
  margin-top: 2.8125rem;
  margin-bottom: 4rem;
}
.article_pager a {
  color: #262222;
  background-color: #fff;
  padding: 0.375rem 1.25rem;
  font-size: 0.875rem;
  text-transform: initial;
  display: inline-block;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-color: #D9D9D9;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  position: relative;
  flex: 1 1 auto;
}
.article_pager a.active {
  color: #1A71AE;
}
.article_pager a:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.article_pager a:hover {
  text-decoration: none;
  color: #1A71AE;
}
.article_pager > :not(.btn-check) + a {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.article_pager > a:not(:first-child) {
  margin-left: -1px;
}

.admin_action.edit {
  display: inline-block;
  margin-bottom: 10px;
}

.edn_article_gallery {
  display: none;
}

.resource-locked {
  cursor: pointer;
}

.resource-gated-message {
  padding: 1 rem;
  background: #E9F1F7;
  position: absolute;
  top: 100%;
  display: none;
  z-index: 1;
}
.resource-gated-message:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #e9eff5 transparent;
  position: absolute;
  left: 0;
  top: -5px;
}
.resource-gated-message p {
  margin-bottom: 1px !important;
  font-size: 12px;
  color: #1A71AE;
}
.resource-gated-message .btn {
  font-size: 12px;
}

#paywall-modal:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  display: block;
  height: 100%;
  width: 100%;
  content: "";
}
#paywall-modal.show {
  display: block !important;
}

/*---------------------------------------------
    Font Awesome Overrides
---------------------------------------------*/
.expand_collapse.fas,
.btn-watch .fas,
.resource-tag .fas {
  font-family: "Font Awesome 5 Free";
  font-style: initial;
}

/*# sourceMappingURL=NCSL-VRC.css.map */


/* Avoid very long pages with article permissions */
div[id$="_AddEditArticle_pnlAddPerArticlePermissions"] div:nth-child(5){
    overflow-y: scroll;
    height: 300px;
}

/* Cookie Consent Banner */
.cc-window.cc-banner.cc-bottom {
    background: #155a8b;
}
.cc-window.cc-banner .cc-btn {
    background-color: #E9F1F7;
    color: #1A71AE;
}
.cc-window.cc-banner .cc-btn:hover,
.cc-window.cc-banner .cc-btn:focus {
    background-color: #ffffff;
    color: #1A71AE;
}
.vimeo-container {
    position: relative;
    padding-top: 56.25% !important; /* Force correct aspect ratio for 16:9 */
    height: 0;
    overflow: hidden;
    margin: 0; /* Remove default margins */
}

.vimeo-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}




/*!
 * Font Awesome Free 5.9.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.fab,
.fal,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-xs {
    font-size: .75em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
    margin-left: .3em
}

.fa-spin {
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    animation: fa-spin 1s infinite steps(8)
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scaleX(-1)
}

.fa-flip-vertical {
    transform: scaleY(-1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
    transform: scale(-1)
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-500px:before {
    content: "\f26e"
}

.fa-accessible-icon:before {
    content: "\f368"
}

.fa-accusoft:before {
    content: "\f369"
}

.fa-acquisitions-incorporated:before {
    content: "\f6af"
}

.fa-ad:before {
    content: "\f641"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-card:before {
    content: "\f2bb"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-adn:before {
    content: "\f170"
}

.fa-adobe:before {
    content: "\f778"
}

.fa-adversal:before {
    content: "\f36a"
}

.fa-affiliatetheme:before {
    content: "\f36b"
}

.fa-air-freshener:before {
    content: "\f5d0"
}

.fa-airbnb:before {
    content: "\f834"
}

.fa-algolia:before {
    content: "\f36c"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-alipay:before {
    content: "\f642"
}

.fa-allergies:before {
    content: "\f461"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-amazon-pay:before {
    content: "\f42c"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-amilia:before {
    content: "\f36d"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-android:before {
    content: "\f17b"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angry:before {
    content: "\f556"
}

.fa-angrycreative:before {
    content: "\f36e"
}

.fa-angular:before {
    content: "\f420"
}

.fa-ankh:before {
    content: "\f644"
}

.fa-app-store:before {
    content: "\f36f"
}

.fa-app-store-ios:before {
    content: "\f370"
}

.fa-apper:before {
    content: "\f371"
}

.fa-apple:before {
    content: "\f179"
}

.fa-apple-alt:before {
    content: "\f5d1"
}

.fa-apple-pay:before {
    content: "\f415"
}

.fa-archive:before {
    content: "\f187"
}

.fa-archway:before {
    content: "\f557"
}

.fa-arrow-alt-circle-down:before {
    content: "\f358"
}

.fa-arrow-alt-circle-left:before {
    content: "\f359"
}

.fa-arrow-alt-circle-right:before {
    content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
    content: "\f35b"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-arrows-alt-h:before {
    content: "\f337"
}

.fa-arrows-alt-v:before {
    content: "\f338"
}

.fa-artstation:before {
    content: "\f77a"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-asymmetrik:before {
    content: "\f372"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-atlas:before {
    content: "\f558"
}

.fa-atlassian:before {
    content: "\f77b"
}

.fa-atom:before {
    content: "\f5d2"
}

.fa-audible:before {
    content: "\f373"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-autoprefixer:before {
    content: "\f41c"
}

.fa-avianex:before {
    content: "\f374"
}

.fa-aviato:before {
    content: "\f421"
}

.fa-award:before {
    content: "\f559"
}

.fa-aws:before {
    content: "\f375"
}

.fa-baby:before {
    content: "\f77c"
}

.fa-baby-carriage:before {
    content: "\f77d"
}

.fa-backspace:before {
    content: "\f55a"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-bacon:before {
    content: "\f7e5"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-balance-scale-left:before {
    content: "\f515"
}

.fa-balance-scale-right:before {
    content: "\f516"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-band-aid:before {
    content: "\f462"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-baseball-ball:before {
    content: "\f433"
}

.fa-basketball-ball:before {
    content: "\f434"
}

.fa-bath:before {
    content: "\f2cd"
}

.fa-battery-empty:before {
    content: "\f244"
}

.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battle-net:before {
    content: "\f835"
}

.fa-bed:before {
    content: "\f236"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bezier-curve:before {
    content: "\f55b"
}

.fa-bible:before {
    content: "\f647"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-biking:before {
    content: "\f84a"
}

.fa-bimobject:before {
    content: "\f378"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-biohazard:before {
    content: "\f780"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitcoin:before {
    content: "\f379"
}

.fa-bity:before {
    content: "\f37a"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-blackberry:before {
    content: "\f37b"
}

.fa-blender:before {
    content: "\f517"
}

.fa-blender-phone:before {
    content: "\f6b6"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-blog:before {
    content: "\f781"
}

.fa-blogger:before {
    content: "\f37c"
}

.fa-blogger-b:before {
    content: "\f37d"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-bold:before {
    content: "\f032"
}

.fa-bolt:before {
    content: "\f0e7"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-bone:before {
    content: "\f5d7"
}

.fa-bong:before {
    content: "\f55c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-book-dead:before {
    content: "\f6b7"
}

.fa-book-medical:before {
    content: "\f7e6"
}

.fa-book-open:before {
    content: "\f518"
}

.fa-book-reader:before {
    content: "\f5da"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-bootstrap:before {
    content: "\f836"
}

.fa-border-all:before {
    content: "\f84c"
}

.fa-border-none:before {
    content: "\f850"
}

.fa-border-style:before {
    content: "\f853"
}

.fa-bowling-ball:before {
    content: "\f436"
}

.fa-box:before {
    content: "\f466"
}

.fa-box-open:before {
    content: "\f49e"
}

.fa-boxes:before {
    content: "\f468"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-brain:before {
    content: "\f5dc"
}

.fa-bread-slice:before {
    content: "\f7ec"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-briefcase-medical:before {
    content: "\f469"
}

.fa-broadcast-tower:before {
    content: "\f519"
}

.fa-broom:before {
    content: "\f51a"
}

.fa-brush:before {
    content: "\f55d"
}

.fa-btc:before {
    content: "\f15a"
}

.fa-buffer:before {
    content: "\f837"
}

.fa-bug:before {
    content: "\f188"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-burn:before {
    content: "\f46a"
}

.fa-buromobelexperte:before {
    content: "\f37f"
}

.fa-bus:before {
    content: "\f207"
}

.fa-bus-alt:before {
    content: "\f55e"
}

.fa-business-time:before {
    content: "\f64a"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-calendar:before {
    content: "\f133"
}

.fa-calendar-alt:before {
    content: "\f073"
}

.fa-calendar-check:before {
    content: "\f274"
}

.fa-calendar-day:before {
    content: "\f783"
}

.fa-calendar-minus:before {
    content: "\f272"
}

.fa-calendar-plus:before {
    content: "\f271"
}

.fa-calendar-times:before {
    content: "\f273"
}

.fa-calendar-week:before {
    content: "\f784"
}

.fa-camera:before {
    content: "\f030"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-campground:before {
    content: "\f6bb"
}

.fa-canadian-maple-leaf:before {
    content: "\f785"
}

.fa-candy-cane:before {
    content: "\f786"
}

.fa-cannabis:before {
    content: "\f55f"
}

.fa-capsules:before {
    content: "\f46b"
}

.fa-car:before {
    content: "\f1b9"
}

.fa-car-alt:before {
    content: "\f5de"
}

.fa-car-battery:before {
    content: "\f5df"
}

.fa-car-crash:before {
    content: "\f5e1"
}

.fa-car-side:before {
    content: "\f5e4"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-caret-square-down:before {
    content: "\f150"
}

.fa-caret-square-left:before {
    content: "\f191"
}

.fa-caret-square-right:before {
    content: "\f152"
}

.fa-caret-square-up:before {
    content: "\f151"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-carrot:before {
    content: "\f787"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cash-register:before {
    content: "\f788"
}

.fa-cat:before {
    content: "\f6be"
}

.fa-cc-amazon-pay:before {
    content: "\f42d"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-apple-pay:before {
    content: "\f416"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-centercode:before {
    content: "\f380"
}

.fa-centos:before {
    content: "\f789"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-chair:before {
    content: "\f6c0"
}

.fa-chalkboard:before {
    content: "\f51b"
}

.fa-chalkboard-teacher:before {
    content: "\f51c"
}

.fa-charging-station:before {
    content: "\f5e7"
}

.fa-chart-area:before {
    content: "\f1fe"
}

.fa-chart-bar:before {
    content: "\f080"
}

.fa-chart-line:before {
    content: "\f201"
}

.fa-chart-pie:before {
    content: "\f200"
}

.fa-check:before {
    content: "\f00c"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-check-double:before {
    content: "\f560"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-cheese:before {
    content: "\f7ef"
}

.fa-chess:before {
    content: "\f439"
}

.fa-chess-bishop:before {
    content: "\f43a"
}

.fa-chess-board:before {
    content: "\f43c"
}

.fa-chess-king:before {
    content: "\f43f"
}

.fa-chess-knight:before {
    content: "\f441"
}

.fa-chess-pawn:before {
    content: "\f443"
}

.fa-chess-queen:before {
    content: "\f445"
}

.fa-chess-rook:before {
    content: "\f447"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-chromecast:before {
    content: "\f838"
}

.fa-church:before {
    content: "\f51d"
}

.fa-circle:before {
    content: "\f111"
}

.fa-circle-notch:before {
    content: "\f1ce"
}

.fa-city:before {
    content: "\f64f"
}

.fa-clinic-medical:before {
    content: "\f7f2"
}

.fa-clipboard:before {
    content: "\f328"
}

.fa-clipboard-check:before {
    content: "\f46c"
}

.fa-clipboard-list:before {
    content: "\f46d"
}

.fa-clock:before {
    content: "\f017"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-closed-captioning:before {
    content: "\f20a"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-cloud-download-alt:before {
    content: "\f381"
}

.fa-cloud-meatball:before {
    content: "\f73b"
}

.fa-cloud-moon:before {
    content: "\f6c3"
}

.fa-cloud-moon-rain:before {
    content: "\f73c"
}

.fa-cloud-rain:before {
    content: "\f73d"
}

.fa-cloud-showers-heavy:before {
    content: "\f740"
}

.fa-cloud-sun:before {
    content: "\f6c4"
}

.fa-cloud-sun-rain:before {
    content: "\f743"
}

.fa-cloud-upload-alt:before {
    content: "\f382"
}

.fa-cloudscale:before {
    content: "\f383"
}

.fa-cloudsmith:before {
    content: "\f384"
}

.fa-cloudversify:before {
    content: "\f385"
}

.fa-cocktail:before {
    content: "\f561"
}

.fa-code:before {
    content: "\f121"
}

.fa-code-branch:before {
    content: "\f126"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cog:before {
    content: "\f013"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-coins:before {
    content: "\f51e"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-comment:before {
    content: "\f075"
}

.fa-comment-alt:before {
    content: "\f27a"
}

.fa-comment-dollar:before {
    content: "\f651"
}

.fa-comment-dots:before {
    content: "\f4ad"
}

.fa-comment-medical:before {
    content: "\f7f5"
}

.fa-comment-slash:before {
    content: "\f4b3"
}

.fa-comments:before {
    content: "\f086"
}

.fa-comments-dollar:before {
    content: "\f653"
}

.fa-compact-disc:before {
    content: "\f51f"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-compress:before {
    content: "\f066"
}

.fa-compress-arrows-alt:before {
    content: "\f78c"
}

.fa-concierge-bell:before {
    content: "\f562"
}

.fa-confluence:before {
    content: "\f78d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-cookie:before {
    content: "\f563"
}

.fa-cookie-bite:before {
    content: "\f564"
}

.fa-copy:before {
    content: "\f0c5"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-couch:before {
    content: "\f4b8"
}

.fa-cpanel:before {
    content: "\f388"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-creative-commons-by:before {
    content: "\f4e7"
}

.fa-creative-commons-nc:before {
    content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
    content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
    content: "\f4ea"
}

.fa-creative-commons-nd:before {
    content: "\f4eb"
}

.fa-creative-commons-pd:before {
    content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
    content: "\f4ed"
}

.fa-creative-commons-remix:before {
    content: "\f4ee"
}

.fa-creative-commons-sa:before {
    content: "\f4ef"
}

.fa-creative-commons-sampling:before {
    content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
    content: "\f4f1"
}

.fa-creative-commons-share:before {
    content: "\f4f2"
}

.fa-creative-commons-zero:before {
    content: "\f4f3"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-critical-role:before {
    content: "\f6c9"
}

.fa-crop:before {
    content: "\f125"
}

.fa-crop-alt:before {
    content: "\f565"
}

.fa-cross:before {
    content: "\f654"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-crow:before {
    content: "\f520"
}

.fa-crown:before {
    content: "\f521"
}

.fa-crutch:before {
    content: "\f7f7"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-cut:before {
    content: "\f0c4"
}

.fa-cuttlefish:before {
    content: "\f38c"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-d-and-d-beyond:before {
    content: "\f6ca"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-deaf:before {
    content: "\f2a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-democrat:before {
    content: "\f747"
}

.fa-deploydog:before {
    content: "\f38e"
}

.fa-deskpro:before {
    content: "\f38f"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-dev:before {
    content: "\f6cc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-dharmachakra:before {
    content: "\f655"
}

.fa-dhl:before {
    content: "\f790"
}

.fa-diagnoses:before {
    content: "\f470"
}

.fa-diaspora:before {
    content: "\f791"
}

.fa-dice:before {
    content: "\f522"
}

.fa-dice-d20:before {
    content: "\f6cf"
}

.fa-dice-d6:before {
    content: "\f6d1"
}

.fa-dice-five:before {
    content: "\f523"
}

.fa-dice-four:before {
    content: "\f524"
}

.fa-dice-one:before {
    content: "\f525"
}

.fa-dice-six:before {
    content: "\f526"
}

.fa-dice-three:before {
    content: "\f527"
}

.fa-dice-two:before {
    content: "\f528"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-digital-ocean:before {
    content: "\f391"
}

.fa-digital-tachograph:before {
    content: "\f566"
}

.fa-directions:before {
    content: "\f5eb"
}

.fa-discord:before {
    content: "\f392"
}

.fa-discourse:before {
    content: "\f393"
}

.fa-divide:before {
    content: "\f529"
}

.fa-dizzy:before {
    content: "\f567"
}

.fa-dna:before {
    content: "\f471"
}

.fa-dochub:before {
    content: "\f394"
}

.fa-docker:before {
    content: "\f395"
}

.fa-dog:before {
    content: "\f6d3"
}

.fa-dollar-sign:before {
    content: "\f155"
}

.fa-dolly:before {
    content: "\f472"
}

.fa-dolly-flatbed:before {
    content: "\f474"
}

.fa-donate:before {
    content: "\f4b9"
}

.fa-door-closed:before {
    content: "\f52a"
}

.fa-door-open:before {
    content: "\f52b"
}

.fa-dot-circle:before {
    content: "\f192"
}

.fa-dove:before {
    content: "\f4ba"
}

.fa-download:before {
    content: "\f019"
}

.fa-draft2digital:before {
    content: "\f396"
}

.fa-drafting-compass:before {
    content: "\f568"
}

.fa-dragon:before {
    content: "\f6d5"
}

.fa-draw-polygon:before {
    content: "\f5ee"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-dribbble-square:before {
    content: "\f397"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-drum:before {
    content: "\f569"
}

.fa-drum-steelpan:before {
    content: "\f56a"
}

.fa-drumstick-bite:before {
    content: "\f6d7"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-dumbbell:before {
    content: "\f44b"
}

.fa-dumpster:before {
    content: "\f793"
}

.fa-dumpster-fire:before {
    content: "\f794"
}

.fa-dungeon:before {
    content: "\f6d9"
}

.fa-dyalog:before {
    content: "\f399"
}

.fa-earlybirds:before {
    content: "\f39a"
}

.fa-ebay:before {
    content: "\f4f4"
}

.fa-edge:before {
    content: "\f282"
}

.fa-edit:before {
    content: "\f044"
}

.fa-egg:before {
    content: "\f7fb"
}

.fa-eject:before {
    content: "\f052"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-ello:before {
    content: "\f5f1"
}

.fa-ember:before {
    content: "\f423"
}

.fa-empire:before {
    content: "\f1d1"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-text:before {
    content: "\f658"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-envira:before {
    content: "\f299"
}

.fa-equals:before {
    content: "\f52c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-erlang:before {
    content: "\f39d"
}

.fa-ethereum:before {
    content: "\f42e"
}

.fa-ethernet:before {
    content: "\f796"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-euro-sign:before {
    content: "\f153"
}

.fa-evernote:before {
    content: "\f839"
}

.fa-exchange-alt:before {
    content: "\f362"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-expand:before {
    content: "\f065"
}

.fa-expand-arrows-alt:before {
    content: "\f31e"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-external-link-alt:before {
    content: "\f35d"
}

.fa-external-link-square-alt:before {
    content: "\f360"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-dropper:before {
    content: "\f1fb"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-facebook-messenger:before {
    content: "\f39f"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-fan:before {
    content: "\f863"
}

.fa-fantasy-flight-games:before {
    content: "\f6dc"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-feather:before {
    content: "\f52d"
}

.fa-feather-alt:before {
    content: "\f56b"
}

.fa-fedex:before {
    content: "\f797"
}

.fa-fedora:before {
    content: "\f798"
}

.fa-female:before {
    content: "\f182"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-figma:before {
    content: "\f799"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-alt:before {
    content: "\f15c"
}

.fa-file-archive:before {
    content: "\f1c6"
}

.fa-file-audio:before {
    content: "\f1c7"
}

.fa-file-code:before {
    content: "\f1c9"
}

.fa-file-contract:before {
    content: "\f56c"
}

.fa-file-csv:before {
    content: "\f6dd"
}

.fa-file-download:before {
    content: "\f56d"
}

.fa-file-excel:before {
    content: "\f1c3"
}

.fa-file-export:before {
    content: "\f56e"
}

.fa-file-image:before {
    content: "\f1c5"
}

.fa-file-import:before {
    content: "\f56f"
}

.fa-file-invoice:before {
    content: "\f570"
}

.fa-file-invoice-dollar:before {
    content: "\f571"
}

.fa-file-medical:before {
    content: "\f477"
}

.fa-file-medical-alt:before {
    content: "\f478"
}

.fa-file-pdf:before {
    content: "\f1c1"
}

.fa-file-powerpoint:before {
    content: "\f1c4"
}

.fa-file-prescription:before {
    content: "\f572"
}

.fa-file-signature:before {
    content: "\f573"
}

.fa-file-upload:before {
    content: "\f574"
}

.fa-file-video:before {
    content: "\f1c8"
}

.fa-file-word:before {
    content: "\f1c2"
}

.fa-fill:before {
    content: "\f575"
}

.fa-fill-drip:before {
    content: "\f576"
}

.fa-film:before {
    content: "\f008"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-fingerprint:before {
    content: "\f577"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-fire-alt:before {
    content: "\f7e4"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-first-aid:before {
    content: "\f479"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-first-order-alt:before {
    content: "\f50a"
}

.fa-firstdraft:before {
    content: "\f3a1"
}

.fa-fish:before {
    content: "\f578"
}

.fa-fist-raised:before {
    content: "\f6de"
}

.fa-flag:before {
    content: "\f024"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-flag-usa:before {
    content: "\f74d"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-flipboard:before {
    content: "\f44d"
}

.fa-flushed:before {
    content: "\f579"
}

.fa-fly:before {
    content: "\f417"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-minus:before {
    content: "\f65d"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-folder-plus:before {
    content: "\f65e"
}

.fa-font:before {
    content: "\f031"
}

.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-font-awesome-flag:before {
    content: "\f425"
}

.fa-font-awesome-logo-full:before {
    content: "\f4e6"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-fonticons-fi:before {
    content: "\f3a2"
}

.fa-football-ball:before {
    content: "\f44e"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-fort-awesome-alt:before {
    content: "\f3a3"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-freebsd:before {
    content: "\f3a4"
}

.fa-frog:before {
    content: "\f52e"
}

.fa-frown:before {
    content: "\f119"
}

.fa-frown-open:before {
    content: "\f57a"
}

.fa-fulcrum:before {
    content: "\f50b"
}

.fa-funnel-dollar:before {
    content: "\f662"
}

.fa-futbol:before {
    content: "\f1e3"
}

.fa-galactic-republic:before {
    content: "\f50c"
}

.fa-galactic-senate:before {
    content: "\f50d"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-gas-pump:before {
    content: "\f52f"
}

.fa-gavel:before {
    content: "\f0e3"
}

.fa-gem:before {
    content: "\f3a5"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-ghost:before {
    content: "\f6e2"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-gifts:before {
    content: "\f79c"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-git-alt:before {
    content: "\f841"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-github:before {
    content: "\f09b"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-gitkraken:before {
    content: "\f3a6"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-gitter:before {
    content: "\f426"
}

.fa-glass-cheers:before {
    content: "\f79f"
}

.fa-glass-martini:before {
    content: "\f000"
}

.fa-glass-martini-alt:before {
    content: "\f57b"
}

.fa-glass-whiskey:before {
    content: "\f7a0"
}

.fa-glasses:before {
    content: "\f530"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-globe-africa:before {
    content: "\f57c"
}

.fa-globe-americas:before {
    content: "\f57d"
}

.fa-globe-asia:before {
    content: "\f57e"
}

.fa-globe-europe:before {
    content: "\f7a2"
}

.fa-gofore:before {
    content: "\f3a7"
}

.fa-golf-ball:before {
    content: "\f450"
}

.fa-goodreads:before {
    content: "\f3a8"
}

.fa-goodreads-g:before {
    content: "\f3a9"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-google-drive:before {
    content: "\f3aa"
}

.fa-google-play:before {
    content: "\f3ab"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-gopuram:before {
    content: "\f664"
}

.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-gratipay:before {
    content: "\f184"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-greater-than:before {
    content: "\f531"
}

.fa-greater-than-equal:before {
    content: "\f532"
}

.fa-grimace:before {
    content: "\f57f"
}

.fa-grin:before {
    content: "\f580"
}

.fa-grin-alt:before {
    content: "\f581"
}

.fa-grin-beam:before {
    content: "\f582"
}

.fa-grin-beam-sweat:before {
    content: "\f583"
}

.fa-grin-hearts:before {
    content: "\f584"
}

.fa-grin-squint:before {
    content: "\f585"
}

.fa-grin-squint-tears:before {
    content: "\f586"
}

.fa-grin-stars:before {
    content: "\f587"
}

.fa-grin-tears:before {
    content: "\f588"
}

.fa-grin-tongue:before {
    content: "\f589"
}

.fa-grin-tongue-squint:before {
    content: "\f58a"
}

.fa-grin-tongue-wink:before {
    content: "\f58b"
}

.fa-grin-wink:before {
    content: "\f58c"
}

.fa-grip-horizontal:before {
    content: "\f58d"
}

.fa-grip-lines:before {
    content: "\f7a4"
}

.fa-grip-lines-vertical:before {
    content: "\f7a5"
}

.fa-grip-vertical:before {
    content: "\f58e"
}

.fa-gripfire:before {
    content: "\f3ac"
}

.fa-grunt:before {
    content: "\f3ad"
}

.fa-guitar:before {
    content: "\f7a6"
}

.fa-gulp:before {
    content: "\f3ae"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-hacker-news-square:before {
    content: "\f3af"
}

.fa-hackerrank:before {
    content: "\f5f7"
}

.fa-hamburger:before {
    content: "\f805"
}

.fa-hammer:before {
    content: "\f6e3"
}

.fa-hamsa:before {
    content: "\f665"
}

.fa-hand-holding:before {
    content: "\f4bd"
}

.fa-hand-holding-heart:before {
    content: "\f4be"
}

.fa-hand-holding-usd:before {
    content: "\f4c0"
}

.fa-hand-lizard:before {
    content: "\f258"
}

.fa-hand-middle-finger:before {
    content: "\f806"
}

.fa-hand-paper:before {
    content: "\f256"
}

.fa-hand-peace:before {
    content: "\f25b"
}

.fa-hand-point-down:before {
    content: "\f0a7"
}

.fa-hand-point-left:before {
    content: "\f0a5"
}

.fa-hand-point-right:before {
    content: "\f0a4"
}

.fa-hand-point-up:before {
    content: "\f0a6"
}

.fa-hand-pointer:before {
    content: "\f25a"
}

.fa-hand-rock:before {
    content: "\f255"
}

.fa-hand-scissors:before {
    content: "\f257"
}

.fa-hand-spock:before {
    content: "\f259"
}

.fa-hands:before {
    content: "\f4c2"
}

.fa-hands-helping:before {
    content: "\f4c4"
}

.fa-handshake:before {
    content: "\f2b5"
}

.fa-hanukiah:before {
    content: "\f6e6"
}

.fa-hard-hat:before {
    content: "\f807"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-hat-wizard:before {
    content: "\f6e8"
}

.fa-haykal:before {
    content: "\f666"
}

.fa-hdd:before {
    content: "\f0a0"
}

.fa-heading:before {
    content: "\f1dc"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-headphones-alt:before {
    content: "\f58f"
}

.fa-headset:before {
    content: "\f590"
}

.fa-heart:before {
    content: "\f004"
}

.fa-heart-broken:before {
    content: "\f7a9"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-helicopter:before {
    content: "\f533"
}

.fa-highlighter:before {
    content: "\f591"
}

.fa-hiking:before {
    content: "\f6ec"
}

.fa-hippo:before {
    content: "\f6ed"
}

.fa-hips:before {
    content: "\f452"
}

.fa-hire-a-helper:before {
    content: "\f3b0"
}

.fa-history:before {
    content: "\f1da"
}

.fa-hockey-puck:before {
    content: "\f453"
}

.fa-holly-berry:before {
    content: "\f7aa"
}

.fa-home:before {
    content: "\f015"
}

.fa-hooli:before {
    content: "\f427"
}

.fa-hornbill:before {
    content: "\f592"
}

.fa-horse:before {
    content: "\f6f0"
}

.fa-horse-head:before {
    content: "\f7ab"
}

.fa-hospital:before {
    content: "\f0f8"
}

.fa-hospital-alt:before {
    content: "\f47d"
}

.fa-hospital-symbol:before {
    content: "\f47e"
}

.fa-hot-tub:before {
    content: "\f593"
}

.fa-hotdog:before {
    content: "\f80f"
}

.fa-hotel:before {
    content: "\f594"
}

.fa-hotjar:before {
    content: "\f3b1"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-start:before {
    content: "\f251"
}

.fa-house-damage:before {
    content: "\f6f1"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-hryvnia:before {
    content: "\f6f2"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-hubspot:before {
    content: "\f3b2"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-ice-cream:before {
    content: "\f810"
}

.fa-icicles:before {
    content: "\f7ad"
}

.fa-icons:before {
    content: "\f86d"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-id-card-alt:before {
    content: "\f47f"
}

.fa-igloo:before {
    content: "\f7ae"
}

.fa-image:before {
    content: "\f03e"
}

.fa-images:before {
    content: "\f302"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-industry:before {
    content: "\f275"
}

.fa-infinity:before {
    content: "\f534"
}

.fa-info:before {
    content: "\f129"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-intercom:before {
    content: "\f7af"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-invision:before {
    content: "\f7b0"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-italic:before {
    content: "\f033"
}

.fa-itch-io:before {
    content: "\f83a"
}

.fa-itunes:before {
    content: "\f3b4"
}

.fa-itunes-note:before {
    content: "\f3b5"
}

.fa-java:before {
    content: "\f4e4"
}

.fa-jedi:before {
    content: "\f669"
}

.fa-jedi-order:before {
    content: "\f50e"
}

.fa-jenkins:before {
    content: "\f3b6"
}

.fa-jira:before {
    content: "\f7b1"
}

.fa-joget:before {
    content: "\f3b7"
}

.fa-joint:before {
    content: "\f595"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-journal-whills:before {
    content: "\f66a"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-js-square:before {
    content: "\f3b9"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-kaaba:before {
    content: "\f66b"
}

.fa-kaggle:before {
    content: "\f5fa"
}

.fa-key:before {
    content: "\f084"
}

.fa-keybase:before {
    content: "\f4f5"
}

.fa-keyboard:before {
    content: "\f11c"
}

.fa-keycdn:before {
    content: "\f3ba"
}

.fa-khanda:before {
    content: "\f66d"
}

.fa-kickstarter:before {
    content: "\f3bb"
}

.fa-kickstarter-k:before {
    content: "\f3bc"
}

.fa-kiss:before {
    content: "\f596"
}

.fa-kiss-beam:before {
    content: "\f597"
}

.fa-kiss-wink-heart:before {
    content: "\f598"
}

.fa-kiwi-bird:before {
    content: "\f535"
}

.fa-korvue:before {
    content: "\f42f"
}

.fa-landmark:before {
    content: "\f66f"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-laptop-code:before {
    content: "\f5fc"
}

.fa-laptop-medical:before {
    content: "\f812"
}

.fa-laravel:before {
    content: "\f3bd"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-laugh:before {
    content: "\f599"
}

.fa-laugh-beam:before {
    content: "\f59a"
}

.fa-laugh-squint:before {
    content: "\f59b"
}

.fa-laugh-wink:before {
    content: "\f59c"
}

.fa-layer-group:before {
    content: "\f5fd"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-lemon:before {
    content: "\f094"
}

.fa-less:before {
    content: "\f41d"
}

.fa-less-than:before {
    content: "\f536"
}

.fa-less-than-equal:before {
    content: "\f537"
}

.fa-level-down-alt:before {
    content: "\f3be"
}

.fa-level-up-alt:before {
    content: "\f3bf"
}

.fa-life-ring:before {
    content: "\f1cd"
}

.fa-lightbulb:before {
    content: "\f0eb"
}

.fa-line:before {
    content: "\f3c0"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-linkedin:before {
    content: "\f08c"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-lira-sign:before {
    content: "\f195"
}

.fa-list:before {
    content: "\f03a"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-lock:before {
    content: "\f023"
}

.fa-lock-open:before {
    content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-long-arrow-alt-right:before {
    content: "\f30b"
}

.fa-long-arrow-alt-up:before {
    content: "\f30c"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-luggage-cart:before {
    content: "\f59d"
}

.fa-lyft:before {
    content: "\f3c3"
}

.fa-magento:before {
    content: "\f3c4"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-mail-bulk:before {
    content: "\f674"
}

.fa-mailchimp:before {
    content: "\f59e"
}

.fa-male:before {
    content: "\f183"
}

.fa-mandalorian:before {
    content: "\f50f"
}

.fa-map:before {
    content: "\f279"
}

.fa-map-marked:before {
    content: "\f59f"
}

.fa-map-marked-alt:before {
    content: "\f5a0"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-map-marker-alt:before {
    content: "\f3c5"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-markdown:before {
    content: "\f60f"
}

.fa-marker:before {
    content: "\f5a1"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mask:before {
    content: "\f6fa"
}

.fa-mastodon:before {
    content: "\f4f6"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-medal:before {
    content: "\f5a2"
}

.fa-medapps:before {
    content: "\f3c6"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-medium-m:before {
    content: "\f3c7"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-medrt:before {
    content: "\f3c8"
}

.fa-meetup:before {
    content: "\f2e0"
}

.fa-megaport:before {
    content: "\f5a3"
}

.fa-meh:before {
    content: "\f11a"
}

.fa-meh-blank:before {
    content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
    content: "\f5a5"
}

.fa-memory:before {
    content: "\f538"
}

.fa-mendeley:before {
    content: "\f7b3"
}

.fa-menorah:before {
    content: "\f676"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-meteor:before {
    content: "\f753"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-alt:before {
    content: "\f3c9"
}

.fa-microphone-alt-slash:before {
    content: "\f539"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-microscope:before {
    content: "\f610"
}

.fa-microsoft:before {
    content: "\f3ca"
}

.fa-minus:before {
    content: "\f068"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-mitten:before {
    content: "\f7b5"
}

.fa-mix:before {
    content: "\f3cb"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-mizuni:before {
    content: "\f3cc"
}

.fa-mobile:before {
    content: "\f10b"
}

.fa-mobile-alt:before {
    content: "\f3cd"
}

.fa-modx:before {
    content: "\f285"
}

.fa-monero:before {
    content: "\f3d0"
}

.fa-money-bill:before {
    content: "\f0d6"
}

.fa-money-bill-alt:before {
    content: "\f3d1"
}

.fa-money-bill-wave:before {
    content: "\f53a"
}

.fa-money-bill-wave-alt:before {
    content: "\f53b"
}

.fa-money-check:before {
    content: "\f53c"
}

.fa-money-check-alt:before {
    content: "\f53d"
}

.fa-monument:before {
    content: "\f5a6"
}

.fa-moon:before {
    content: "\f186"
}

.fa-mortar-pestle:before {
    content: "\f5a7"
}

.fa-mosque:before {
    content: "\f678"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-mountain:before {
    content: "\f6fc"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-mug-hot:before {
    content: "\f7b6"
}

.fa-music:before {
    content: "\f001"
}

.fa-napster:before {
    content: "\f3d2"
}

.fa-neos:before {
    content: "\f612"
}

.fa-network-wired:before {
    content: "\f6ff"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-nimblr:before {
    content: "\f5a8"
}

.fa-node:before {
    content: "\f419"
}

.fa-node-js:before {
    content: "\f3d3"
}

.fa-not-equal:before {
    content: "\f53e"
}

.fa-notes-medical:before {
    content: "\f481"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-ns8:before {
    content: "\f3d5"
}

.fa-nutritionix:before {
    content: "\f3d6"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-oil-can:before {
    content: "\f613"
}

.fa-old-republic:before {
    content: "\f510"
}

.fa-om:before {
    content: "\f679"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-osi:before {
    content: "\f41a"
}

.fa-otter:before {
    content: "\f700"
}

.fa-outdent:before {
    content: "\f03b"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-pager:before {
    content: "\f815"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-paint-roller:before {
    content: "\f5aa"
}

.fa-palette:before {
    content: "\f53f"
}

.fa-palfed:before {
    content: "\f3d8"
}

.fa-pallet:before {
    content: "\f482"
}

.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-parachute-box:before {
    content: "\f4cd"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-parking:before {
    content: "\f540"
}

.fa-passport:before {
    content: "\f5ab"
}

.fa-pastafarianism:before {
    content: "\f67b"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-patreon:before {
    content: "\f3d9"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-peace:before {
    content: "\f67c"
}

.fa-pen:before {
    content: "\f304"
}

.fa-pen-alt:before {
    content: "\f305"
}

.fa-pen-fancy:before {
    content: "\f5ac"
}

.fa-pen-nib:before {
    content: "\f5ad"
}

.fa-pen-square:before {
    content: "\f14b"
}

.fa-pencil-alt:before {
    content: "\f303"
}

.fa-pencil-ruler:before {
    content: "\f5ae"
}

.fa-penny-arcade:before {
    content: "\f704"
}

.fa-people-carry:before {
    content: "\f4ce"
}

.fa-pepper-hot:before {
    content: "\f816"
}

.fa-percent:before {
    content: "\f295"
}

.fa-percentage:before {
    content: "\f541"
}

.fa-periscope:before {
    content: "\f3da"
}

.fa-person-booth:before {
    content: "\f756"
}

.fa-phabricator:before {
    content: "\f3db"
}

.fa-phoenix-framework:before {
    content: "\f3dc"
}

.fa-phoenix-squadron:before {
    content: "\f511"
}

.fa-phone:before {
    content: "\f095"
}

.fa-phone-alt:before {
    content: "\f879"
}

.fa-phone-slash:before {
    content: "\f3dd"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-phone-square-alt:before {
    content: "\f87b"
}

.fa-phone-volume:before {
    content: "\f2a0"
}

.fa-photo-video:before {
    content: "\f87c"
}

.fa-php:before {
    content: "\f457"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-pied-piper-hat:before {
    content: "\f4e5"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-piggy-bank:before {
    content: "\f4d3"
}

.fa-pills:before {
    content: "\f484"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-pizza-slice:before {
    content: "\f818"
}

.fa-place-of-worship:before {
    content: "\f67f"
}

.fa-plane:before {
    content: "\f072"
}

.fa-plane-arrival:before {
    content: "\f5af"
}

.fa-plane-departure:before {
    content: "\f5b0"
}

.fa-play:before {
    content: "\f04b"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-playstation:before {
    content: "\f3df"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-plus:before {
    content: "\f067"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-poll:before {
    content: "\f681"
}

.fa-poll-h:before {
    content: "\f682"
}

.fa-poo:before {
    content: "\f2fe"
}

.fa-poo-storm:before {
    content: "\f75a"
}

.fa-poop:before {
    content: "\f619"
}

.fa-portrait:before {
    content: "\f3e0"
}

.fa-pound-sign:before {
    content: "\f154"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-pray:before {
    content: "\f683"
}

.fa-praying-hands:before {
    content: "\f684"
}

.fa-prescription:before {
    content: "\f5b1"
}

.fa-prescription-bottle:before {
    content: "\f485"
}

.fa-prescription-bottle-alt:before {
    content: "\f486"
}

.fa-print:before {
    content: "\f02f"
}

.fa-procedures:before {
    content: "\f487"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-project-diagram:before {
    content: "\f542"
}

.fa-pushed:before {
    content: "\f3e1"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-python:before {
    content: "\f3e2"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-question:before {
    content: "\f128"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-quidditch:before {
    content: "\f458"
}

.fa-quinscape:before {
    content: "\f459"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-quran:before {
    content: "\f687"
}

.fa-r-project:before {
    content: "\f4f7"
}

.fa-radiation:before {
    content: "\f7b9"
}

.fa-radiation-alt:before {
    content: "\f7ba"
}

.fa-rainbow:before {
    content: "\f75b"
}

.fa-random:before {
    content: "\f074"
}

.fa-raspberry-pi:before {
    content: "\f7bb"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-react:before {
    content: "\f41b"
}

.fa-reacteurope:before {
    content: "\f75d"
}

.fa-readme:before {
    content: "\f4d5"
}

.fa-rebel:before {
    content: "\f1d0"
}

.fa-receipt:before {
    content: "\f543"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-red-river:before {
    content: "\f3e3"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-redhat:before {
    content: "\f7bc"
}

.fa-redo:before {
    content: "\f01e"
}

.fa-redo-alt:before {
    content: "\f2f9"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-remove-format:before {
    content: "\f87d"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-reply:before {
    content: "\f3e5"
}

.fa-reply-all:before {
    content: "\f122"
}

.fa-replyd:before {
    content: "\f3e6"
}

.fa-republican:before {
    content: "\f75e"
}

.fa-researchgate:before {
    content: "\f4f8"
}

.fa-resolving:before {
    content: "\f3e7"
}

.fa-restroom:before {
    content: "\f7bd"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-rev:before {
    content: "\f5b2"
}

.fa-ribbon:before {
    content: "\f4d6"
}

.fa-ring:before {
    content: "\f70b"
}

.fa-road:before {
    content: "\f018"
}

.fa-robot:before {
    content: "\f544"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-rocketchat:before {
    content: "\f3e8"
}

.fa-rockrms:before {
    content: "\f3e9"
}

.fa-route:before {
    content: "\f4d7"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-ruble-sign:before {
    content: "\f158"
}

.fa-ruler:before {
    content: "\f545"
}

.fa-ruler-combined:before {
    content: "\f546"
}

.fa-ruler-horizontal:before {
    content: "\f547"
}

.fa-ruler-vertical:before {
    content: "\f548"
}

.fa-running:before {
    content: "\f70c"
}

.fa-rupee-sign:before {
    content: "\f156"
}

.fa-sad-cry:before {
    content: "\f5b3"
}

.fa-sad-tear:before {
    content: "\f5b4"
}

.fa-safari:before {
    content: "\f267"
}

.fa-salesforce:before {
    content: "\f83b"
}

.fa-sass:before {
    content: "\f41e"
}

.fa-satellite:before {
    content: "\f7bf"
}

.fa-satellite-dish:before {
    content: "\f7c0"
}

.fa-save:before {
    content: "\f0c7"
}

.fa-schlix:before {
    content: "\f3ea"
}

.fa-school:before {
    content: "\f549"
}

.fa-screwdriver:before {
    content: "\f54a"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-scroll:before {
    content: "\f70e"
}

.fa-sd-card:before {
    content: "\f7c2"
}

.fa-search:before {
    content: "\f002"
}

.fa-search-dollar:before {
    content: "\f688"
}

.fa-search-location:before {
    content: "\f689"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-searchengin:before {
    content: "\f3eb"
}

.fa-seedling:before {
    content: "\f4d8"
}

.fa-sellcast:before {
    content: "\f2da"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-server:before {
    content: "\f233"
}

.fa-servicestack:before {
    content: "\f3ec"
}

.fa-shapes:before {
    content: "\f61f"
}

.fa-share:before {
    content: "\f064"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-shekel-sign:before {
    content: "\f20b"
}

.fa-shield-alt:before {
    content: "\f3ed"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-shipping-fast:before {
    content: "\f48b"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-shoe-prints:before {
    content: "\f54b"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-shopware:before {
    content: "\f5b5"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-shuttle-van:before {
    content: "\f5b6"
}

.fa-sign:before {
    content: "\f4d9"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-sign-language:before {
    content: "\f2a7"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-signal:before {
    content: "\f012"
}

.fa-signature:before {
    content: "\f5b7"
}

.fa-sim-card:before {
    content: "\f7c4"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-sistrix:before {
    content: "\f3ee"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-sith:before {
    content: "\f512"
}

.fa-skating:before {
    content: "\f7c5"
}

.fa-sketch:before {
    content: "\f7c6"
}

.fa-skiing:before {
    content: "\f7c9"
}

.fa-skiing-nordic:before {
    content: "\f7ca"
}

.fa-skull:before {
    content: "\f54c"
}

.fa-skull-crossbones:before {
    content: "\f714"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-slack:before {
    content: "\f198"
}

.fa-slack-hash:before {
    content: "\f3ef"
}

.fa-slash:before {
    content: "\f715"
}

.fa-sleigh:before {
    content: "\f7cc"
}

.fa-sliders-h:before {
    content: "\f1de"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-smile:before {
    content: "\f118"
}

.fa-smile-beam:before {
    content: "\f5b8"
}

.fa-smile-wink:before {
    content: "\f4da"
}

.fa-smog:before {
    content: "\f75f"
}

.fa-smoking:before {
    content: "\f48d"
}

.fa-smoking-ban:before {
    content: "\f54d"
}

.fa-sms:before {
    content: "\f7cd"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-snowboarding:before {
    content: "\f7ce"
}

.fa-snowflake:before {
    content: "\f2dc"
}

.fa-snowman:before {
    content: "\f7d0"
}

.fa-snowplow:before {
    content: "\f7d2"
}

.fa-socks:before {
    content: "\f696"
}

.fa-solar-panel:before {
    content: "\f5ba"
}

.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-alpha-down:before {
    content: "\f15d"
}

.fa-sort-alpha-down-alt:before {
    content: "\f881"
}

.fa-sort-alpha-up:before {
    content: "\f15e"
}

.fa-sort-alpha-up-alt:before {
    content: "\f882"
}

.fa-sort-amount-down:before {
    content: "\f160"
}

.fa-sort-amount-down-alt:before {
    content: "\f884"
}

.fa-sort-amount-up:before {
    content: "\f161"
}

.fa-sort-amount-up-alt:before {
    content: "\f885"
}

.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-numeric-down:before {
    content: "\f162"
}

.fa-sort-numeric-down-alt:before {
    content: "\f886"
}

.fa-sort-numeric-up:before {
    content: "\f163"
}

.fa-sort-numeric-up-alt:before {
    content: "\f887"
}

.fa-sort-up:before {
    content: "\f0de"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-sourcetree:before {
    content: "\f7d3"
}

.fa-spa:before {
    content: "\f5bb"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-speakap:before {
    content: "\f3f3"
}

.fa-speaker-deck:before {
    content: "\f83c"
}

.fa-spell-check:before {
    content: "\f891"
}

.fa-spider:before {
    content: "\f717"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-splotch:before {
    content: "\f5bc"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-spray-can:before {
    content: "\f5bd"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-square-root-alt:before {
    content: "\f698"
}

.fa-squarespace:before {
    content: "\f5be"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-stackpath:before {
    content: "\f842"
}

.fa-stamp:before {
    content: "\f5bf"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-and-crescent:before {
    content: "\f699"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-star-half-alt:before {
    content: "\f5c0"
}

.fa-star-of-david:before {
    content: "\f69a"
}

.fa-star-of-life:before {
    content: "\f621"
}

.fa-staylinked:before {
    content: "\f3f5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-steam-symbol:before {
    content: "\f3f6"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-sticker-mule:before {
    content: "\f3f7"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stopwatch:before {
    content: "\f2f2"
}

.fa-store:before {
    content: "\f54e"
}

.fa-store-alt:before {
    content: "\f54f"
}

.fa-strava:before {
    content: "\f428"
}

.fa-stream:before {
    content: "\f550"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-stripe:before {
    content: "\f429"
}

.fa-stripe-s:before {
    content: "\f42a"
}

.fa-stroopwafel:before {
    content: "\f551"
}

.fa-studiovinari:before {
    content: "\f3f8"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-subway:before {
    content: "\f239"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-suitcase-rolling:before {
    content: "\f5c1"
}

.fa-sun:before {
    content: "\f185"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-supple:before {
    content: "\f3f9"
}

.fa-surprise:before {
    content: "\f5c2"
}

.fa-suse:before {
    content: "\f7d6"
}

.fa-swatchbook:before {
    content: "\f5c3"
}

.fa-swimmer:before {
    content: "\f5c4"
}

.fa-swimming-pool:before {
    content: "\f5c5"
}

.fa-symfony:before {
    content: "\f83d"
}

.fa-synagogue:before {
    content: "\f69b"
}

.fa-sync:before {
    content: "\f021"
}

.fa-sync-alt:before {
    content: "\f2f1"
}

.fa-syringe:before {
    content: "\f48e"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-table-tennis:before {
    content: "\f45d"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-tablet-alt:before {
    content: "\f3fa"
}

.fa-tablets:before {
    content: "\f490"
}

.fa-tachometer-alt:before {
    content: "\f3fd"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-tape:before {
    content: "\f4db"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-taxi:before {
    content: "\f1ba"
}

.fa-teamspeak:before {
    content: "\f4f9"
}

.fa-teeth:before {
    content: "\f62e"
}

.fa-teeth-open:before {
    content: "\f62f"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-telegram-plane:before {
    content: "\f3fe"
}

.fa-temperature-high:before {
    content: "\f769"
}

.fa-temperature-low:before {
    content: "\f76b"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-tenge:before {
    content: "\f7d7"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-the-red-yeti:before {
    content: "\f69d"
}

.fa-theater-masks:before {
    content: "\f630"
}

.fa-themeco:before {
    content: "\f5c6"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-thermometer:before {
    content: "\f491"
}

.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-think-peaks:before {
    content: "\f731"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbtack:before {
    content: "\f08d"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-times:before {
    content: "\f00d"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-tint:before {
    content: "\f043"
}

.fa-tint-slash:before {
    content: "\f5c7"
}

.fa-tired:before {
    content: "\f5c8"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-toilet:before {
    content: "\f7d8"
}

.fa-toilet-paper:before {
    content: "\f71e"
}

.fa-toolbox:before {
    content: "\f552"
}

.fa-tools:before {
    content: "\f7d9"
}

.fa-tooth:before {
    content: "\f5c9"
}

.fa-torah:before {
    content: "\f6a0"
}

.fa-torii-gate:before {
    content: "\f6a1"
}

.fa-tractor:before {
    content: "\f722"
}

.fa-trade-federation:before {
    content: "\f513"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-traffic-light:before {
    content: "\f637"
}

.fa-train:before {
    content: "\f238"
}

.fa-tram:before {
    content: "\f7da"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-trash-alt:before {
    content: "\f2ed"
}

.fa-trash-restore:before {
    content: "\f829"
}

.fa-trash-restore-alt:before {
    content: "\f82a"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-trello:before {
    content: "\f181"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-truck-loading:before {
    content: "\f4de"
}

.fa-truck-monster:before {
    content: "\f63b"
}

.fa-truck-moving:before {
    content: "\f4df"
}

.fa-truck-pickup:before {
    content: "\f63c"
}

.fa-tshirt:before {
    content: "\f553"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-tv:before {
    content: "\f26c"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-typo3:before {
    content: "\f42b"
}

.fa-uber:before {
    content: "\f402"
}

.fa-ubuntu:before {
    content: "\f7df"
}

.fa-uikit:before {
    content: "\f403"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-umbrella-beach:before {
    content: "\f5ca"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-undo:before {
    content: "\f0e2"
}

.fa-undo-alt:before {
    content: "\f2ea"
}

.fa-uniregistry:before {
    content: "\f404"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-university:before {
    content: "\f19c"
}

.fa-unlink:before {
    content: "\f127"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-untappd:before {
    content: "\f405"
}

.fa-upload:before {
    content: "\f093"
}

.fa-ups:before {
    content: "\f7e0"
}

.fa-usb:before {
    content: "\f287"
}

.fa-user:before {
    content: "\f007"
}

.fa-user-alt:before {
    content: "\f406"
}

.fa-user-alt-slash:before {
    content: "\f4fa"
}

.fa-user-astronaut:before {
    content: "\f4fb"
}

.fa-user-check:before {
    content: "\f4fc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-clock:before {
    content: "\f4fd"
}

.fa-user-cog:before {
    content: "\f4fe"
}

.fa-user-edit:before {
    content: "\f4ff"
}

.fa-user-friends:before {
    content: "\f500"
}

.fa-user-graduate:before {
    content: "\f501"
}

.fa-user-injured:before {
    content: "\f728"
}

.fa-user-lock:before {
    content: "\f502"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-user-minus:before {
    content: "\f503"
}

.fa-user-ninja:before {
    content: "\f504"
}

.fa-user-nurse:before {
    content: "\f82f"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-user-shield:before {
    content: "\f505"
}

.fa-user-slash:before {
    content: "\f506"
}

.fa-user-tag:before {
    content: "\f507"
}

.fa-user-tie:before {
    content: "\f508"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-users:before {
    content: "\f0c0"
}

.fa-users-cog:before {
    content: "\f509"
}

.fa-usps:before {
    content: "\f7e1"
}

.fa-ussunnah:before {
    content: "\f407"
}

.fa-utensil-spoon:before {
    content: "\f2e5"
}

.fa-utensils:before {
    content: "\f2e7"
}

.fa-vaadin:before {
    content: "\f408"
}

.fa-vector-square:before {
    content: "\f5cb"
}

.fa-venus:before {
    content: "\f221"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-vial:before {
    content: "\f492"
}

.fa-vials:before {
    content: "\f493"
}

.fa-viber:before {
    content: "\f409"
}

.fa-video:before {
    content: "\f03d"
}

.fa-video-slash:before {
    content: "\f4e2"
}

.fa-vihara:before {
    content: "\f6a7"
}

.fa-vimeo:before {
    content: "\f40a"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-vimeo-v:before {
    content: "\f27d"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-vk:before {
    content: "\f189"
}

.fa-vnv:before {
    content: "\f40b"
}

.fa-voicemail:before {
    content: "\f897"
}

.fa-volleyball-ball:before {
    content: "\f45f"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-mute:before {
    content: "\f6a9"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-vote-yea:before {
    content: "\f772"
}

.fa-vr-cardboard:before {
    content: "\f729"
}

.fa-vuejs:before {
    content: "\f41f"
}

.fa-walking:before {
    content: "\f554"
}

.fa-wallet:before {
    content: "\f555"
}

.fa-warehouse:before {
    content: "\f494"
}

.fa-water:before {
    content: "\f773"
}

.fa-wave-square:before {
    content: "\f83e"
}

.fa-waze:before {
    content: "\f83f"
}

.fa-weebly:before {
    content: "\f5cc"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-weight:before {
    content: "\f496"
}

.fa-weight-hanging:before {
    content: "\f5cd"
}

.fa-weixin:before {
    content: "\f1d7"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-whmcs:before {
    content: "\f40d"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-wind:before {
    content: "\f72e"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-wine-bottle:before {
    content: "\f72f"
}

.fa-wine-glass:before {
    content: "\f4e3"
}

.fa-wine-glass-alt:before {
    content: "\f5ce"
}

.fa-wix:before {
    content: "\f5cf"
}

.fa-wizards-of-the-coast:before {
    content: "\f730"
}

.fa-wolf-pack-battalion:before {
    content: "\f514"
}

.fa-won-sign:before {
    content: "\f159"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-wordpress-simple:before {
    content: "\f411"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-wpressr:before {
    content: "\f3e4"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-x-ray:before {
    content: "\f497"
}

.fa-xbox:before {
    content: "\f412"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-y-combinator:before {
    content: "\f23b"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-yammer:before {
    content: "\f840"
}

.fa-yandex:before {
    content: "\f413"
}

.fa-yandex-international:before {
    content: "\f414"
}

.fa-yarn:before {
    content: "\f7e3"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-yen-sign:before {
    content: "\f157"
}

.fa-yin-yang:before {
    content: "\f6ad"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-youtube-square:before {
    content: "\f431"
}

.fa-zhihu:before {
    content: "\f63f"
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: normal;
    font-display: auto;
    src: url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-brands-400.eot");
    src: url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-brands-400.woff2") format("woff2"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-brands-400.woff") format("woff"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-brands-400.ttf") format("truetype"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-brands-400.svg#fontawesome") format("svg")
}

.fab {
    font-family: "Font Awesome 5 Brands"
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    font-display: auto;
    src: url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-regular-400.eot");
    src: url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-regular-400.woff2") format("woff2"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-regular-400.woff") format("woff"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-regular-400.ttf") format("truetype"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-regular-400.svg#fontawesome") format("svg")
}

.far {
    font-weight: 400
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: auto;
    src: url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-solid-900.eot");
    src: url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-solid-900.woff2") format("woff2"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-solid-900.woff") format("woff"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-solid-900.ttf") format("truetype"), url("/Portals/_default/skins/ncsl/fonts/fontawesome/webfonts/fa-solid-900.svg#fontawesome") format("svg")
}

.fa,
.far,
.fas {
    font-family: "Font Awesome 5 Free"
}

.fa,
.fas {
    font-weight: 900
}

/* Generated by Glyphter (http://www.glyphter.com) on  Wed Jun 29 2022*/
@font-face {
    font-family: 'icons ncsl';
    src: url("/Portals/_default/skins/ncsl/fonts/fonts/icons-ncsl.eot");
    src: url("/Portals/_default/skins/ncsl/fonts/fonts/icons-ncsl.eot?#iefix") format('embedded-opentype'),
         url("/Portals/_default/skins/ncsl/fonts/fonts/icons-ncsl.woff") format('woff'),
         url("/Portals/_default/skins/ncsl/fonts/fonts/icons-ncsl.ttf") format('truetype'),
         url("/Portals/_default/skins/ncsl/fonts/fonts/icons-ncsl.svg#icons-ncsl") format('svg');
    font-weight: normal;
    font-style: normal;
}
[class^='icon-']:before, [class*=' icon-']:before {
	display: inline-block;
   font-family: 'icons ncsl';
   font-style: normal;
   font-weight: normal;
   line-height: 1;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale 
}
.icon-arrow-down:before{content:'\0041';}
.icon-arrow-left:before{content:'\0042';}
.icon-arrow-right:before{content:'\0043';}
.icon-arrow-thin:before{content:'\0044';}
.icon-arrow-up:before{content:'\0045';}
.icon-audio:before{content:'\0046';}
.icon-add:before{content:'\0047';}
.icon-briefcase:before{content:'\0048';}
.icon-calendar:before{content:'\0049';}
.icon-checkfilled:before{content:'\004a';}
.icon-checktable:before{content:'\004b';}
.icon-close:before{content:'\004c';}
.icon-download:before{content:'\004d';}
.icon-envelope:before{content:'\004e';}
.icon-filter:before{content:'\004f';}
.icon-information:before{content:'\0050';}
.icon-invalid:before{content:'\0051';}
.icon-link:before{content:'\0052';}
.icon-location:before{content:'\0053';}
.icon-pdf:before{content:'\0054';}
.icon-refine:before{content:'\0055';}
.icon-remove:before{content:'\0056';}
.icon-salary:before{content:'\0057';}
.icon-search:before{content:'\0058';}
.icon-social-facebook:before{content:'\0059';}
.icon-social-instagram:before{content:'\005a';}
.icon-social-linkedin:before{content:'\0061';}
.icon-social-twitter:before{content:'\0062';}
.icon-social-youtube:before{content:'\0063';}
.icon-time:before{content:'\0064';}
.icon-toc:before{content:'\0065';}
.icon-tool-pdf:before{content:'\0054';}
.icon-tool-calculator:before{content:'\0066';}
.icon-tool-database:before{content:'\0067';}
.icon-tool-podcast:before{content:'\0068';}
.icon-tool-powerpoint:before{content:'\0069';}
.icon-valid:before{content:'\006a';}
.icon-watch:before{content:'\006b';}
.icon-tool-pointer:before{content:'\006c';}
.icon-tool-watch:before{content:'\006b';}





@import "../fonts/css/icons-ncsl.css";
@charset "UTF-8";
@import "../fonts/css/icons-ncsl.css";
:root {
  --bs-body-color: #262222;
  --bs-body: #262222;
  --bs-blue: #1A71AE;
  --bs-blue-light: #ABC1CC;
  --bs-blue-dark: #004C97;
  --bs-blue-15: #DFEBF5;
  --bs-blue-10: #E9F1F7;
  --bs-red: #BB2D26;
  --bs-green: #1E5332;
  --bs-green-dark: #A4B9AC;
  --bs-green-light: #CAD8B7;
  --bs-gray: #D9D9D9;
  --bs-gray-light: #e8e8e8;
  --bs-gray-lighter: #f2f2f2;
  --bs-blue-purple: #A8B1C8;
  --bs-purple-gray: #C7BEC2;
  --bs-pink: #E4ACA9;
  --bs-tan: #D7C0A7;
  --bs-tan-light: #FAF1DB;
  --bs-teal: #C6E7DF;
  --bs-yellow: #FFFBCC;
  --bs-orange: #FCD9C7;
  --bs-cyan: #D7E7F3;
  --bs-gray-gray-300: #D9D9D9;
  --bs-gray-gray-500: #7a7a7a;
  --bs-primary: #1A71AE;
  --bs-secondary: #E9F1F7;
  --bs-success: #1E5332;
  --bs-danger: #BB2D26;
  --bs-dark: #262222;
  --bs-state-legislatures-news: #FAF1DB;
  --bs-news: #FAF1DB;
  --bs-database: #ABC1CC;
  --bs-event: #FCD9C7;
  --bs-graphic: #FFFBCC;
  --bs-podcast: #D7E7F3;
  --bs-state-legislature-magazine: #E4ACA9;
  --bs-magazine: #E4ACA9;
  --bs-map: #D7C0A7;
  --bs-members: #D9D9D9;
  --bs-purchase: #1E5332;
  --bs-table: #CAD8B7;
  --bs-training: #A4B9AC;
  --bs-video: #A8B1C8;
  --bs-virtual: #C6E7DF;
  --bs-webinar: #C7BEC2;
  --bs-box-shadow-color: #7a7a7a;
  --bs-article: white;
  --bs-state-legislature-news: #FAF1DB;
  --bs-gray-lighter: #f2f2f2;
  --bs-gray-light: #e8e8e8;
  --bs-gray: #D9D9D9;
  --bs-primary-rgb: 26, 113, 174;
  --bs-secondary-rgb: 233, 241, 247;
  --bs-success-rgb: 30, 83, 50;
  --bs-danger-rgb: 187, 45, 38;
  --bs-dark-rgb: 38, 34, 34;
  --bs-state-legislatures-news-rgb: 250, 241, 219;
  --bs-news-rgb: 250, 241, 219;
  --bs-database-rgb: 171, 193, 204;
  --bs-event-rgb: 252, 217, 199;
  --bs-graphic-rgb: 255, 251, 204;
  --bs-podcast-rgb: 215, 231, 243;
  --bs-state-legislature-magazine-rgb: 228, 172, 169;
  --bs-magazine-rgb: 228, 172, 169;
  --bs-map-rgb: 215, 192, 167;
  --bs-members-rgb: 217, 217, 217;
  --bs-purchase-rgb: 30, 83, 50;
  --bs-table-rgb: 202, 216, 183;
  --bs-training-rgb: 164, 185, 172;
  --bs-video-rgb: 168, 177, 200;
  --bs-virtual-rgb: 198, 231, 223;
  --bs-webinar-rgb: 199, 190, 194;
  --bs-box-shadow-color-rgb: 122, 122, 122;
  --bs-article-rgb: 255, 255, 255;
  --bs-state-legislature-news-rgb: 250, 241, 219;
  --bs-gray-lighter-rgb: 242, 242, 242;
  --bs-gray-light-rgb: 232, 232, 232;
  --bs-gray-rgb: 217, 217, 217;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 38, 34, 34;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #262222;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.34375rem + 1.125vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.1875rem;
  }
}

h2, .h2 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 1.5rem;
  }
}

h3, .h3 {
  font-size: 1.25rem;
}

h4, .h4 {
  font-size: 1rem;
}

h5, .h5 {
  font-size: 0.875rem;
}

h6, .h6 {
  font-size: 0.75rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bold;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #1A71AE;
  text-decoration: none;
}
a:hover {
  color: #155a8b;
  text-decoration: underline;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #E4ACA9;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote, blockquote p,
.blockquote p {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child, blockquote p > :last-child,
.blockquote p > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.1875rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row,
[class$=_article_list_wrapper] {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > *,
[class$=_article_list_wrapper] > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.9375rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.9375rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 1.25rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 1.25rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1.56rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1.56rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.875rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.875rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 2.8125rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 2.8125rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 3.125rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 3.125rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.9375rem;
  }
  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.9375rem;
  }
  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 1.25rem;
  }
  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 1.25rem;
  }
  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1.56rem;
  }
  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1.56rem;
  }
  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 2.8125rem;
  }
  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 2.8125rem;
  }
  .g-sm-6,
.gx-sm-6 {
    --bs-gutter-x: 3.125rem;
  }
  .g-sm-6,
.gy-sm-6 {
    --bs-gutter-y: 3.125rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.9375rem;
  }
  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.9375rem;
  }
  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 1.25rem;
  }
  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 1.25rem;
  }
  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1.56rem;
  }
  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1.56rem;
  }
  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 2.8125rem;
  }
  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 2.8125rem;
  }
  .g-md-6,
.gx-md-6 {
    --bs-gutter-x: 3.125rem;
  }
  .g-md-6,
.gy-md-6 {
    --bs-gutter-y: 3.125rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.9375rem;
  }
  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.9375rem;
  }
  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 1.25rem;
  }
  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 1.25rem;
  }
  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1.56rem;
  }
  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1.56rem;
  }
  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 2.8125rem;
  }
  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 2.8125rem;
  }
  .g-lg-6,
.gx-lg-6 {
    --bs-gutter-x: 3.125rem;
  }
  .g-lg-6,
.gy-lg-6 {
    --bs-gutter-y: 3.125rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.9375rem;
  }
  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.9375rem;
  }
  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1.56rem;
  }
  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1.56rem;
  }
  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 2.8125rem;
  }
  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 2.8125rem;
  }
  .g-xl-6,
.gx-xl-6 {
    --bs-gutter-x: 3.125rem;
  }
  .g-xl-6,
.gy-xl-6 {
    --bs-gutter-y: 3.125rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.9375rem;
  }
  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.9375rem;
  }
  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1.56rem;
  }
  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1.56rem;
  }
  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.875rem;
  }
  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.875rem;
  }
  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 2.8125rem;
  }
  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 2.8125rem;
  }
  .g-xxl-6,
.gx-xxl-6 {
    --bs-gutter-x: 3.125rem;
  }
  .g-xxl-6,
.gy-xxl-6 {
    --bs-gutter-y: 3.125rem;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.125rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #262222;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.1875rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #262222;
  background-color: #fff;
  border-color: #8db8d7;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(26, 113, 174, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #262222;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #262222;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
          margin-inline-end: 0.75rem;
  color: #262222;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #262222;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
          margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.1875rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.1875rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #262222;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.1875rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #8db8d7;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(26, 113, 174, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #262222;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #8db8d7;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(26, 113, 174, 0.25);
}
.form-check-input:checked {
  background-color: #1A71AE;
  border-color: #1A71AE;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #1A71AE;
  border-color: #1A71AE;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%238db8d7'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(26, 113, 174, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(26, 113, 174, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #1A71AE;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #bad4e7;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #1A71AE;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #bad4e7;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #7a7a7a;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #7a7a7a;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #262222;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.1875rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #1E5332;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: white;
  background-color: rgba(30, 83, 50, 0.9);
  border-radius: 0.1875rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #1E5332;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231E5332' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #1E5332;
  box-shadow: 0 0 0 0.25rem rgba(30, 83, 50, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #1E5332;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%231E5332' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #1E5332;
  box-shadow: 0 0 0 0.25rem rgba(30, 83, 50, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #1E5332;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #1E5332;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(30, 83, 50, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #1E5332;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #BB2D26;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: white;
  background-color: rgba(187, 45, 38, 0.9);
  border-radius: 0.1875rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #BB2D26;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23BB2D26'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23BB2D26' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #BB2D26;
  box-shadow: 0 0 0 0.25rem rgba(187, 45, 38, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #BB2D26;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23BB2D26'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23BB2D26' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #BB2D26;
  box-shadow: 0 0 0 0.25rem rgba(187, 45, 38, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #BB2D26;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #BB2D26;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(187, 45, 38, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #BB2D26;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.34rem;
  vertical-align: 0.34rem;
  content: "";
  border-top: 0.4rem solid;
  border-right: 0.4rem solid transparent;
  border-bottom: 0;
  border-left: 0.4rem solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #262222;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.1875rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.34rem;
  vertical-align: 0.34rem;
  content: "";
  border-top: 0;
  border-right: 0.4rem solid transparent;
  border-bottom: 0.4rem solid;
  border-left: 0.4rem solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.34rem;
  vertical-align: 0.34rem;
  content: "";
  border-top: 0.4rem solid transparent;
  border-right: 0;
  border-bottom: 0.4rem solid transparent;
  border-left: 0.4rem solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.34rem;
  vertical-align: 0.34rem;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.34rem;
  vertical-align: 0.34rem;
  content: "";
  border-top: 0.4rem solid transparent;
  border-right: 0.4rem solid;
  border-bottom: 0.4rem solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #7a7a7a;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: transparent;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #7a7a7a;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #7a7a7a;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #1A71AE;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #155a8b;
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.1875rem;
  border-top-right-radius: 0.1875rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.1875rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1A71AE;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.40625rem;
  padding-bottom: 0.40625rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.1875rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon, .navbar-toggler .navbar-toggler-icon:after, .navbar-toggler .navbar-toggler-icon:before {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon, .navbar-light .navbar-toggler .navbar-toggler-icon:after, .navbar-toggler .navbar-light .navbar-toggler-icon:after, .navbar-light .navbar-toggler .navbar-toggler-icon:before, .navbar-toggler .navbar-light .navbar-toggler-icon:before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon, .navbar-dark .navbar-toggler .navbar-toggler-icon:after, .navbar-toggler .navbar-dark .navbar-toggler-icon:after, .navbar-dark .navbar-toggler .navbar-toggler-icon:before, .navbar-toggler .navbar-dark .navbar-toggler-icon:before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.1875rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: transparent;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #e8e8e8;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #e8e8e8;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #1A71AE;
}

.link-secondary {
  color: #E9F1F7;
}

.link-success {
  color: #1E5332;
}

.link-danger {
  color: #BB2D26;
}

.link-dark {
  color: #262222;
}

.link-state-legislatures-news {
  color: #FAF1DB;
}

.link-news {
  color: #FAF1DB;
}

.link-database {
  color: #ABC1CC;
}

.link-event {
  color: #FCD9C7;
}

.link-graphic {
  color: #FFFBCC;
}

.link-podcast {
  color: #D7E7F3;
}

.link-state-legislature-magazine {
  color: #E4ACA9;
}

.link-magazine {
  color: #E4ACA9;
}

.link-map {
  color: #D7C0A7;
}

.link-members {
  color: #D9D9D9;
}

.link-purchase {
  color: #1E5332;
}

.link-table {
  color: #CAD8B7;
}

.link-training {
  color: #A4B9AC;
}

.link-video {
  color: #A8B1C8;
}

.link-virtual {
  color: #C6E7DF;
}

.link-webinar {
  color: #C7BEC2;
}

.link-box-shadow-color {
  color: #7a7a7a;
}

.link-article {
  color: white;
}

.link-state-legislature-news {
  color: #FAF1DB;
}

.link-gray-lighter {
  color: #f2f2f2;
}

.link-gray-light {
  color: #e8e8e8;
}

.link-gray {
  color: #D9D9D9;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 2px 4px 0 rgba(217, 217, 217, 0.5) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #e8e8e8 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #e8e8e8 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #e8e8e8 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #e8e8e8 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #e8e8e8 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #1A71AE !important;
}

.border-secondary {
  border-color: #E9F1F7 !important;
}

.border-success {
  border-color: #1E5332 !important;
}

.border-danger {
  border-color: #BB2D26 !important;
}

.border-dark {
  border-color: #262222 !important;
}

.border-state-legislatures-news {
  border-color: #FAF1DB !important;
}

.border-news {
  border-color: #FAF1DB !important;
}

.border-database {
  border-color: #ABC1CC !important;
}

.border-event {
  border-color: #FCD9C7 !important;
}

.border-graphic {
  border-color: #FFFBCC !important;
}

.border-podcast {
  border-color: #D7E7F3 !important;
}

.border-state-legislature-magazine {
  border-color: #E4ACA9 !important;
}

.border-magazine {
  border-color: #E4ACA9 !important;
}

.border-map {
  border-color: #D7C0A7 !important;
}

.border-members {
  border-color: #D9D9D9 !important;
}

.border-purchase {
  border-color: #1E5332 !important;
}

.border-table {
  border-color: #CAD8B7 !important;
}

.border-training {
  border-color: #A4B9AC !important;
}

.border-video {
  border-color: #A8B1C8 !important;
}

.border-virtual {
  border-color: #C6E7DF !important;
}

.border-webinar {
  border-color: #C7BEC2 !important;
}

.border-box-shadow-color {
  border-color: #7a7a7a !important;
}

.border-article {
  border-color: white !important;
}

.border-state-legislature-news {
  border-color: #FAF1DB !important;
}

.border-gray-lighter {
  border-color: #f2f2f2 !important;
}

.border-gray-light {
  border-color: #e8e8e8 !important;
}

.border-gray {
  border-color: #D9D9D9 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.9375rem !important;
}

.gap-2 {
  gap: 1.25rem !important;
}

.gap-3 {
  gap: 1.56rem !important;
}

.gap-4 {
  gap: 1.875rem !important;
}

.gap-5 {
  gap: 2.8125rem !important;
}

.gap-6 {
  gap: 3.125rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.9375rem !important;
}

.m-2 {
  margin: 1.25rem !important;
}

.m-3 {
  margin: 1.56rem !important;
}

.m-4 {
  margin: 1.875rem !important;
}

.m-5 {
  margin: 2.8125rem !important;
}

.m-6 {
  margin: 3.125rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.9375rem !important;
  margin-left: 0.9375rem !important;
}

.mx-2 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-3 {
  margin-right: 1.56rem !important;
  margin-left: 1.56rem !important;
}

.mx-4 {
  margin-right: 1.875rem !important;
  margin-left: 1.875rem !important;
}

.mx-5 {
  margin-right: 2.8125rem !important;
  margin-left: 2.8125rem !important;
}

.mx-6 {
  margin-right: 3.125rem !important;
  margin-left: 3.125rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.9375rem !important;
  margin-bottom: 0.9375rem !important;
}

.my-2 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-3 {
  margin-top: 1.56rem !important;
  margin-bottom: 1.56rem !important;
}

.my-4 {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
}

.my-5 {
  margin-top: 2.8125rem !important;
  margin-bottom: 2.8125rem !important;
}

.my-6 {
  margin-top: 3.125rem !important;
  margin-bottom: 3.125rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.9375rem !important;
}

.mt-2 {
  margin-top: 1.25rem !important;
}

.mt-3 {
  margin-top: 1.56rem !important;
}

.mt-4 {
  margin-top: 1.875rem !important;
}

.mt-5 {
  margin-top: 2.8125rem !important;
}

.mt-6 {
  margin-top: 3.125rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.9375rem !important;
}

.me-2 {
  margin-right: 1.25rem !important;
}

.me-3 {
  margin-right: 1.56rem !important;
}

.me-4 {
  margin-right: 1.875rem !important;
}

.me-5 {
  margin-right: 2.8125rem !important;
}

.me-6 {
  margin-right: 3.125rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.9375rem !important;
}

.mb-2 {
  margin-bottom: 1.25rem !important;
}

.mb-3 {
  margin-bottom: 1.56rem !important;
}

.mb-4 {
  margin-bottom: 1.875rem !important;
}

.mb-5 {
  margin-bottom: 2.8125rem !important;
}

.mb-6 {
  margin-bottom: 3.125rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.9375rem !important;
}

.ms-2 {
  margin-left: 1.25rem !important;
}

.ms-3 {
  margin-left: 1.56rem !important;
}

.ms-4 {
  margin-left: 1.875rem !important;
}

.ms-5 {
  margin-left: 2.8125rem !important;
}

.ms-6 {
  margin-left: 3.125rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.9375rem !important;
}

.p-2 {
  padding: 1.25rem !important;
}

.p-3 {
  padding: 1.56rem !important;
}

.p-4 {
  padding: 1.875rem !important;
}

.p-5 {
  padding: 2.8125rem !important;
}

.p-6 {
  padding: 3.125rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.9375rem !important;
  padding-left: 0.9375rem !important;
}

.px-2 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-3 {
  padding-right: 1.56rem !important;
  padding-left: 1.56rem !important;
}

.px-4 {
  padding-right: 1.875rem !important;
  padding-left: 1.875rem !important;
}

.px-5 {
  padding-right: 2.8125rem !important;
  padding-left: 2.8125rem !important;
}

.px-6 {
  padding-right: 3.125rem !important;
  padding-left: 3.125rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.9375rem !important;
  padding-bottom: 0.9375rem !important;
}

.py-2 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-3 {
  padding-top: 1.56rem !important;
  padding-bottom: 1.56rem !important;
}

.py-4 {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}

.py-5 {
  padding-top: 2.8125rem !important;
  padding-bottom: 2.8125rem !important;
}

.py-6 {
  padding-top: 3.125rem !important;
  padding-bottom: 3.125rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.9375rem !important;
}

.pt-2 {
  padding-top: 1.25rem !important;
}

.pt-3 {
  padding-top: 1.56rem !important;
}

.pt-4 {
  padding-top: 1.875rem !important;
}

.pt-5 {
  padding-top: 2.8125rem !important;
}

.pt-6 {
  padding-top: 3.125rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.9375rem !important;
}

.pe-2 {
  padding-right: 1.25rem !important;
}

.pe-3 {
  padding-right: 1.56rem !important;
}

.pe-4 {
  padding-right: 1.875rem !important;
}

.pe-5 {
  padding-right: 2.8125rem !important;
}

.pe-6 {
  padding-right: 3.125rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.9375rem !important;
}

.pb-2 {
  padding-bottom: 1.25rem !important;
}

.pb-3 {
  padding-bottom: 1.56rem !important;
}

.pb-4 {
  padding-bottom: 1.875rem !important;
}

.pb-5 {
  padding-bottom: 2.8125rem !important;
}

.pb-6 {
  padding-bottom: 3.125rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.9375rem !important;
}

.ps-2 {
  padding-left: 1.25rem !important;
}

.ps-3 {
  padding-left: 1.56rem !important;
}

.ps-4 {
  padding-left: 1.875rem !important;
}

.ps-5 {
  padding-left: 2.8125rem !important;
}

.ps-6 {
  padding-left: 3.125rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-xs {
  font-size: 0.75rem !important;
}

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-base {
  font-size: 1rem !important;
}

.fs-lg {
  font-size: 1.125rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bold !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 1.5625 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-state-legislatures-news {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-state-legislatures-news-rgb), var(--bs-text-opacity)) !important;
}

.text-news {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-news-rgb), var(--bs-text-opacity)) !important;
}

.text-database {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-database-rgb), var(--bs-text-opacity)) !important;
}

.text-event {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-event-rgb), var(--bs-text-opacity)) !important;
}

.text-graphic {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-graphic-rgb), var(--bs-text-opacity)) !important;
}

.text-podcast {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-podcast-rgb), var(--bs-text-opacity)) !important;
}

.text-state-legislature-magazine {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-state-legislature-magazine-rgb), var(--bs-text-opacity)) !important;
}

.text-magazine {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-magazine-rgb), var(--bs-text-opacity)) !important;
}

.text-map {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-map-rgb), var(--bs-text-opacity)) !important;
}

.text-members {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-members-rgb), var(--bs-text-opacity)) !important;
}

.text-purchase {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-purchase-rgb), var(--bs-text-opacity)) !important;
}

.text-table {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-table-rgb), var(--bs-text-opacity)) !important;
}

.text-training {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-training-rgb), var(--bs-text-opacity)) !important;
}

.text-video {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-video-rgb), var(--bs-text-opacity)) !important;
}

.text-virtual {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-virtual-rgb), var(--bs-text-opacity)) !important;
}

.text-webinar {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-webinar-rgb), var(--bs-text-opacity)) !important;
}

.text-box-shadow-color {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-box-shadow-color-rgb), var(--bs-text-opacity)) !important;
}

.text-article {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-article-rgb), var(--bs-text-opacity)) !important;
}

.text-state-legislature-news {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-state-legislature-news-rgb), var(--bs-text-opacity)) !important;
}

.text-gray-lighter {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-lighter-rgb), var(--bs-text-opacity)) !important;
}

.text-gray-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-light-rgb), var(--bs-text-opacity)) !important;
}

.text-gray {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-gray-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-state-legislatures-news {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-state-legislatures-news-rgb), var(--bs-bg-opacity)) !important;
}

.bg-news {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-news-rgb), var(--bs-bg-opacity)) !important;
}

.bg-database {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-database-rgb), var(--bs-bg-opacity)) !important;
}

.bg-event {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-event-rgb), var(--bs-bg-opacity)) !important;
}

.bg-graphic {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-graphic-rgb), var(--bs-bg-opacity)) !important;
}

.bg-podcast {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-podcast-rgb), var(--bs-bg-opacity)) !important;
}

.bg-state-legislature-magazine {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-state-legislature-magazine-rgb), var(--bs-bg-opacity)) !important;
}

.bg-magazine {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-magazine-rgb), var(--bs-bg-opacity)) !important;
}

.bg-map {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-map-rgb), var(--bs-bg-opacity)) !important;
}

.bg-members {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-members-rgb), var(--bs-bg-opacity)) !important;
}

.bg-purchase {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-purchase-rgb), var(--bs-bg-opacity)) !important;
}

.bg-table {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-table-rgb), var(--bs-bg-opacity)) !important;
}

.bg-training {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-training-rgb), var(--bs-bg-opacity)) !important;
}

.bg-video {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-video-rgb), var(--bs-bg-opacity)) !important;
}

.bg-virtual {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-virtual-rgb), var(--bs-bg-opacity)) !important;
}

.bg-webinar {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-webinar-rgb), var(--bs-bg-opacity)) !important;
}

.bg-box-shadow-color {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-box-shadow-color-rgb), var(--bs-bg-opacity)) !important;
}

.bg-article {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-article-rgb), var(--bs-bg-opacity)) !important;
}

.bg-state-legislature-news {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-state-legislature-news-rgb), var(--bs-bg-opacity)) !important;
}

.bg-gray-lighter {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-lighter-rgb), var(--bs-bg-opacity)) !important;
}

.bg-gray-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-gray {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-gray-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.1875rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.1875rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.1875rem !important;
  border-top-right-radius: 0.1875rem !important;
}

.rounded-end {
  border-top-right-radius: 0.1875rem !important;
  border-bottom-right-radius: 0.1875rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.1875rem !important;
  border-bottom-left-radius: 0.1875rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.1875rem !important;
  border-top-left-radius: 0.1875rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.9375rem !important;
  }
  .gap-sm-2 {
    gap: 1.25rem !important;
  }
  .gap-sm-3 {
    gap: 1.56rem !important;
  }
  .gap-sm-4 {
    gap: 1.875rem !important;
  }
  .gap-sm-5 {
    gap: 2.8125rem !important;
  }
  .gap-sm-6 {
    gap: 3.125rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.9375rem !important;
  }
  .m-sm-2 {
    margin: 1.25rem !important;
  }
  .m-sm-3 {
    margin: 1.56rem !important;
  }
  .m-sm-4 {
    margin: 1.875rem !important;
  }
  .m-sm-5 {
    margin: 2.8125rem !important;
  }
  .m-sm-6 {
    margin: 3.125rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }
  .mx-sm-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-sm-3 {
    margin-right: 1.56rem !important;
    margin-left: 1.56rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }
  .mx-sm-5 {
    margin-right: 2.8125rem !important;
    margin-left: 2.8125rem !important;
  }
  .mx-sm-6 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
  .my-sm-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-sm-3 {
    margin-top: 1.56rem !important;
    margin-bottom: 1.56rem !important;
  }
  .my-sm-4 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .my-sm-5 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }
  .my-sm-6 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.9375rem !important;
  }
  .mt-sm-2 {
    margin-top: 1.25rem !important;
  }
  .mt-sm-3 {
    margin-top: 1.56rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.875rem !important;
  }
  .mt-sm-5 {
    margin-top: 2.8125rem !important;
  }
  .mt-sm-6 {
    margin-top: 3.125rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.9375rem !important;
  }
  .me-sm-2 {
    margin-right: 1.25rem !important;
  }
  .me-sm-3 {
    margin-right: 1.56rem !important;
  }
  .me-sm-4 {
    margin-right: 1.875rem !important;
  }
  .me-sm-5 {
    margin-right: 2.8125rem !important;
  }
  .me-sm-6 {
    margin-right: 3.125rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.9375rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 1.25rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1.56rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.875rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 2.8125rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 3.125rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.9375rem !important;
  }
  .ms-sm-2 {
    margin-left: 1.25rem !important;
  }
  .ms-sm-3 {
    margin-left: 1.56rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.875rem !important;
  }
  .ms-sm-5 {
    margin-left: 2.8125rem !important;
  }
  .ms-sm-6 {
    margin-left: 3.125rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.9375rem !important;
  }
  .p-sm-2 {
    padding: 1.25rem !important;
  }
  .p-sm-3 {
    padding: 1.56rem !important;
  }
  .p-sm-4 {
    padding: 1.875rem !important;
  }
  .p-sm-5 {
    padding: 2.8125rem !important;
  }
  .p-sm-6 {
    padding: 3.125rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }
  .px-sm-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-sm-3 {
    padding-right: 1.56rem !important;
    padding-left: 1.56rem !important;
  }
  .px-sm-4 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }
  .px-sm-5 {
    padding-right: 2.8125rem !important;
    padding-left: 2.8125rem !important;
  }
  .px-sm-6 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
  .py-sm-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-sm-3 {
    padding-top: 1.56rem !important;
    padding-bottom: 1.56rem !important;
  }
  .py-sm-4 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  .py-sm-5 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }
  .py-sm-6 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.9375rem !important;
  }
  .pt-sm-2 {
    padding-top: 1.25rem !important;
  }
  .pt-sm-3 {
    padding-top: 1.56rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.875rem !important;
  }
  .pt-sm-5 {
    padding-top: 2.8125rem !important;
  }
  .pt-sm-6 {
    padding-top: 3.125rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.9375rem !important;
  }
  .pe-sm-2 {
    padding-right: 1.25rem !important;
  }
  .pe-sm-3 {
    padding-right: 1.56rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.875rem !important;
  }
  .pe-sm-5 {
    padding-right: 2.8125rem !important;
  }
  .pe-sm-6 {
    padding-right: 3.125rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.9375rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 1.25rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1.56rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.875rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 2.8125rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 3.125rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.9375rem !important;
  }
  .ps-sm-2 {
    padding-left: 1.25rem !important;
  }
  .ps-sm-3 {
    padding-left: 1.56rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.875rem !important;
  }
  .ps-sm-5 {
    padding-left: 2.8125rem !important;
  }
  .ps-sm-6 {
    padding-left: 3.125rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.9375rem !important;
  }
  .gap-md-2 {
    gap: 1.25rem !important;
  }
  .gap-md-3 {
    gap: 1.56rem !important;
  }
  .gap-md-4 {
    gap: 1.875rem !important;
  }
  .gap-md-5 {
    gap: 2.8125rem !important;
  }
  .gap-md-6 {
    gap: 3.125rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.9375rem !important;
  }
  .m-md-2 {
    margin: 1.25rem !important;
  }
  .m-md-3 {
    margin: 1.56rem !important;
  }
  .m-md-4 {
    margin: 1.875rem !important;
  }
  .m-md-5 {
    margin: 2.8125rem !important;
  }
  .m-md-6 {
    margin: 3.125rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }
  .mx-md-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-md-3 {
    margin-right: 1.56rem !important;
    margin-left: 1.56rem !important;
  }
  .mx-md-4 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }
  .mx-md-5 {
    margin-right: 2.8125rem !important;
    margin-left: 2.8125rem !important;
  }
  .mx-md-6 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
  .my-md-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-md-3 {
    margin-top: 1.56rem !important;
    margin-bottom: 1.56rem !important;
  }
  .my-md-4 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .my-md-5 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }
  .my-md-6 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.9375rem !important;
  }
  .mt-md-2 {
    margin-top: 1.25rem !important;
  }
  .mt-md-3 {
    margin-top: 1.56rem !important;
  }
  .mt-md-4 {
    margin-top: 1.875rem !important;
  }
  .mt-md-5 {
    margin-top: 2.8125rem !important;
  }
  .mt-md-6 {
    margin-top: 3.125rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.9375rem !important;
  }
  .me-md-2 {
    margin-right: 1.25rem !important;
  }
  .me-md-3 {
    margin-right: 1.56rem !important;
  }
  .me-md-4 {
    margin-right: 1.875rem !important;
  }
  .me-md-5 {
    margin-right: 2.8125rem !important;
  }
  .me-md-6 {
    margin-right: 3.125rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.9375rem !important;
  }
  .mb-md-2 {
    margin-bottom: 1.25rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1.56rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.875rem !important;
  }
  .mb-md-5 {
    margin-bottom: 2.8125rem !important;
  }
  .mb-md-6 {
    margin-bottom: 3.125rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.9375rem !important;
  }
  .ms-md-2 {
    margin-left: 1.25rem !important;
  }
  .ms-md-3 {
    margin-left: 1.56rem !important;
  }
  .ms-md-4 {
    margin-left: 1.875rem !important;
  }
  .ms-md-5 {
    margin-left: 2.8125rem !important;
  }
  .ms-md-6 {
    margin-left: 3.125rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.9375rem !important;
  }
  .p-md-2 {
    padding: 1.25rem !important;
  }
  .p-md-3 {
    padding: 1.56rem !important;
  }
  .p-md-4 {
    padding: 1.875rem !important;
  }
  .p-md-5 {
    padding: 2.8125rem !important;
  }
  .p-md-6 {
    padding: 3.125rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }
  .px-md-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-md-3 {
    padding-right: 1.56rem !important;
    padding-left: 1.56rem !important;
  }
  .px-md-4 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }
  .px-md-5 {
    padding-right: 2.8125rem !important;
    padding-left: 2.8125rem !important;
  }
  .px-md-6 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
  .py-md-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-md-3 {
    padding-top: 1.56rem !important;
    padding-bottom: 1.56rem !important;
  }
  .py-md-4 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  .py-md-5 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }
  .py-md-6 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.9375rem !important;
  }
  .pt-md-2 {
    padding-top: 1.25rem !important;
  }
  .pt-md-3 {
    padding-top: 1.56rem !important;
  }
  .pt-md-4 {
    padding-top: 1.875rem !important;
  }
  .pt-md-5 {
    padding-top: 2.8125rem !important;
  }
  .pt-md-6 {
    padding-top: 3.125rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.9375rem !important;
  }
  .pe-md-2 {
    padding-right: 1.25rem !important;
  }
  .pe-md-3 {
    padding-right: 1.56rem !important;
  }
  .pe-md-4 {
    padding-right: 1.875rem !important;
  }
  .pe-md-5 {
    padding-right: 2.8125rem !important;
  }
  .pe-md-6 {
    padding-right: 3.125rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.9375rem !important;
  }
  .pb-md-2 {
    padding-bottom: 1.25rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1.56rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.875rem !important;
  }
  .pb-md-5 {
    padding-bottom: 2.8125rem !important;
  }
  .pb-md-6 {
    padding-bottom: 3.125rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.9375rem !important;
  }
  .ps-md-2 {
    padding-left: 1.25rem !important;
  }
  .ps-md-3 {
    padding-left: 1.56rem !important;
  }
  .ps-md-4 {
    padding-left: 1.875rem !important;
  }
  .ps-md-5 {
    padding-left: 2.8125rem !important;
  }
  .ps-md-6 {
    padding-left: 3.125rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.9375rem !important;
  }
  .gap-lg-2 {
    gap: 1.25rem !important;
  }
  .gap-lg-3 {
    gap: 1.56rem !important;
  }
  .gap-lg-4 {
    gap: 1.875rem !important;
  }
  .gap-lg-5 {
    gap: 2.8125rem !important;
  }
  .gap-lg-6 {
    gap: 3.125rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.9375rem !important;
  }
  .m-lg-2 {
    margin: 1.25rem !important;
  }
  .m-lg-3 {
    margin: 1.56rem !important;
  }
  .m-lg-4 {
    margin: 1.875rem !important;
  }
  .m-lg-5 {
    margin: 2.8125rem !important;
  }
  .m-lg-6 {
    margin: 3.125rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }
  .mx-lg-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-lg-3 {
    margin-right: 1.56rem !important;
    margin-left: 1.56rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }
  .mx-lg-5 {
    margin-right: 2.8125rem !important;
    margin-left: 2.8125rem !important;
  }
  .mx-lg-6 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
  .my-lg-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-lg-3 {
    margin-top: 1.56rem !important;
    margin-bottom: 1.56rem !important;
  }
  .my-lg-4 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .my-lg-5 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }
  .my-lg-6 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.9375rem !important;
  }
  .mt-lg-2 {
    margin-top: 1.25rem !important;
  }
  .mt-lg-3 {
    margin-top: 1.56rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.875rem !important;
  }
  .mt-lg-5 {
    margin-top: 2.8125rem !important;
  }
  .mt-lg-6 {
    margin-top: 3.125rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.9375rem !important;
  }
  .me-lg-2 {
    margin-right: 1.25rem !important;
  }
  .me-lg-3 {
    margin-right: 1.56rem !important;
  }
  .me-lg-4 {
    margin-right: 1.875rem !important;
  }
  .me-lg-5 {
    margin-right: 2.8125rem !important;
  }
  .me-lg-6 {
    margin-right: 3.125rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.9375rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 1.25rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1.56rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.875rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 2.8125rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 3.125rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.9375rem !important;
  }
  .ms-lg-2 {
    margin-left: 1.25rem !important;
  }
  .ms-lg-3 {
    margin-left: 1.56rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.875rem !important;
  }
  .ms-lg-5 {
    margin-left: 2.8125rem !important;
  }
  .ms-lg-6 {
    margin-left: 3.125rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.9375rem !important;
  }
  .p-lg-2 {
    padding: 1.25rem !important;
  }
  .p-lg-3 {
    padding: 1.56rem !important;
  }
  .p-lg-4 {
    padding: 1.875rem !important;
  }
  .p-lg-5 {
    padding: 2.8125rem !important;
  }
  .p-lg-6 {
    padding: 3.125rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }
  .px-lg-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-lg-3 {
    padding-right: 1.56rem !important;
    padding-left: 1.56rem !important;
  }
  .px-lg-4 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }
  .px-lg-5 {
    padding-right: 2.8125rem !important;
    padding-left: 2.8125rem !important;
  }
  .px-lg-6 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
  .py-lg-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-lg-3 {
    padding-top: 1.56rem !important;
    padding-bottom: 1.56rem !important;
  }
  .py-lg-4 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  .py-lg-5 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }
  .py-lg-6 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.9375rem !important;
  }
  .pt-lg-2 {
    padding-top: 1.25rem !important;
  }
  .pt-lg-3 {
    padding-top: 1.56rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.875rem !important;
  }
  .pt-lg-5 {
    padding-top: 2.8125rem !important;
  }
  .pt-lg-6 {
    padding-top: 3.125rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.9375rem !important;
  }
  .pe-lg-2 {
    padding-right: 1.25rem !important;
  }
  .pe-lg-3 {
    padding-right: 1.56rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.875rem !important;
  }
  .pe-lg-5 {
    padding-right: 2.8125rem !important;
  }
  .pe-lg-6 {
    padding-right: 3.125rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.9375rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 1.25rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1.56rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.875rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 2.8125rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 3.125rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.9375rem !important;
  }
  .ps-lg-2 {
    padding-left: 1.25rem !important;
  }
  .ps-lg-3 {
    padding-left: 1.56rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.875rem !important;
  }
  .ps-lg-5 {
    padding-left: 2.8125rem !important;
  }
  .ps-lg-6 {
    padding-left: 3.125rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.9375rem !important;
  }
  .gap-xl-2 {
    gap: 1.25rem !important;
  }
  .gap-xl-3 {
    gap: 1.56rem !important;
  }
  .gap-xl-4 {
    gap: 1.875rem !important;
  }
  .gap-xl-5 {
    gap: 2.8125rem !important;
  }
  .gap-xl-6 {
    gap: 3.125rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.9375rem !important;
  }
  .m-xl-2 {
    margin: 1.25rem !important;
  }
  .m-xl-3 {
    margin: 1.56rem !important;
  }
  .m-xl-4 {
    margin: 1.875rem !important;
  }
  .m-xl-5 {
    margin: 2.8125rem !important;
  }
  .m-xl-6 {
    margin: 3.125rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }
  .mx-xl-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xl-3 {
    margin-right: 1.56rem !important;
    margin-left: 1.56rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }
  .mx-xl-5 {
    margin-right: 2.8125rem !important;
    margin-left: 2.8125rem !important;
  }
  .mx-xl-6 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
  .my-xl-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xl-3 {
    margin-top: 1.56rem !important;
    margin-bottom: 1.56rem !important;
  }
  .my-xl-4 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .my-xl-5 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }
  .my-xl-6 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.9375rem !important;
  }
  .mt-xl-2 {
    margin-top: 1.25rem !important;
  }
  .mt-xl-3 {
    margin-top: 1.56rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.875rem !important;
  }
  .mt-xl-5 {
    margin-top: 2.8125rem !important;
  }
  .mt-xl-6 {
    margin-top: 3.125rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.9375rem !important;
  }
  .me-xl-2 {
    margin-right: 1.25rem !important;
  }
  .me-xl-3 {
    margin-right: 1.56rem !important;
  }
  .me-xl-4 {
    margin-right: 1.875rem !important;
  }
  .me-xl-5 {
    margin-right: 2.8125rem !important;
  }
  .me-xl-6 {
    margin-right: 3.125rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.9375rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1.56rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.875rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 2.8125rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 3.125rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.9375rem !important;
  }
  .ms-xl-2 {
    margin-left: 1.25rem !important;
  }
  .ms-xl-3 {
    margin-left: 1.56rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.875rem !important;
  }
  .ms-xl-5 {
    margin-left: 2.8125rem !important;
  }
  .ms-xl-6 {
    margin-left: 3.125rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.9375rem !important;
  }
  .p-xl-2 {
    padding: 1.25rem !important;
  }
  .p-xl-3 {
    padding: 1.56rem !important;
  }
  .p-xl-4 {
    padding: 1.875rem !important;
  }
  .p-xl-5 {
    padding: 2.8125rem !important;
  }
  .p-xl-6 {
    padding: 3.125rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }
  .px-xl-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xl-3 {
    padding-right: 1.56rem !important;
    padding-left: 1.56rem !important;
  }
  .px-xl-4 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }
  .px-xl-5 {
    padding-right: 2.8125rem !important;
    padding-left: 2.8125rem !important;
  }
  .px-xl-6 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
  .py-xl-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xl-3 {
    padding-top: 1.56rem !important;
    padding-bottom: 1.56rem !important;
  }
  .py-xl-4 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  .py-xl-5 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }
  .py-xl-6 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.9375rem !important;
  }
  .pt-xl-2 {
    padding-top: 1.25rem !important;
  }
  .pt-xl-3 {
    padding-top: 1.56rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.875rem !important;
  }
  .pt-xl-5 {
    padding-top: 2.8125rem !important;
  }
  .pt-xl-6 {
    padding-top: 3.125rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.9375rem !important;
  }
  .pe-xl-2 {
    padding-right: 1.25rem !important;
  }
  .pe-xl-3 {
    padding-right: 1.56rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.875rem !important;
  }
  .pe-xl-5 {
    padding-right: 2.8125rem !important;
  }
  .pe-xl-6 {
    padding-right: 3.125rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.9375rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1.56rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.875rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 2.8125rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 3.125rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.9375rem !important;
  }
  .ps-xl-2 {
    padding-left: 1.25rem !important;
  }
  .ps-xl-3 {
    padding-left: 1.56rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.875rem !important;
  }
  .ps-xl-5 {
    padding-left: 2.8125rem !important;
  }
  .ps-xl-6 {
    padding-left: 3.125rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.9375rem !important;
  }
  .gap-xxl-2 {
    gap: 1.25rem !important;
  }
  .gap-xxl-3 {
    gap: 1.56rem !important;
  }
  .gap-xxl-4 {
    gap: 1.875rem !important;
  }
  .gap-xxl-5 {
    gap: 2.8125rem !important;
  }
  .gap-xxl-6 {
    gap: 3.125rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.9375rem !important;
  }
  .m-xxl-2 {
    margin: 1.25rem !important;
  }
  .m-xxl-3 {
    margin: 1.56rem !important;
  }
  .m-xxl-4 {
    margin: 1.875rem !important;
  }
  .m-xxl-5 {
    margin: 2.8125rem !important;
  }
  .m-xxl-6 {
    margin: 3.125rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }
  .mx-xxl-2 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1.56rem !important;
    margin-left: 1.56rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }
  .mx-xxl-5 {
    margin-right: 2.8125rem !important;
    margin-left: 2.8125rem !important;
  }
  .mx-xxl-6 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
  .my-xxl-2 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxl-3 {
    margin-top: 1.56rem !important;
    margin-bottom: 1.56rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
  .my-xxl-5 {
    margin-top: 2.8125rem !important;
    margin-bottom: 2.8125rem !important;
  }
  .my-xxl-6 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.9375rem !important;
  }
  .mt-xxl-2 {
    margin-top: 1.25rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1.56rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.875rem !important;
  }
  .mt-xxl-5 {
    margin-top: 2.8125rem !important;
  }
  .mt-xxl-6 {
    margin-top: 3.125rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.9375rem !important;
  }
  .me-xxl-2 {
    margin-right: 1.25rem !important;
  }
  .me-xxl-3 {
    margin-right: 1.56rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.875rem !important;
  }
  .me-xxl-5 {
    margin-right: 2.8125rem !important;
  }
  .me-xxl-6 {
    margin-right: 3.125rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.9375rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1.56rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.875rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 2.8125rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 3.125rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.9375rem !important;
  }
  .ms-xxl-2 {
    margin-left: 1.25rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1.56rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.875rem !important;
  }
  .ms-xxl-5 {
    margin-left: 2.8125rem !important;
  }
  .ms-xxl-6 {
    margin-left: 3.125rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.9375rem !important;
  }
  .p-xxl-2 {
    padding: 1.25rem !important;
  }
  .p-xxl-3 {
    padding: 1.56rem !important;
  }
  .p-xxl-4 {
    padding: 1.875rem !important;
  }
  .p-xxl-5 {
    padding: 2.8125rem !important;
  }
  .p-xxl-6 {
    padding: 3.125rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }
  .px-xxl-2 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxl-3 {
    padding-right: 1.56rem !important;
    padding-left: 1.56rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }
  .px-xxl-5 {
    padding-right: 2.8125rem !important;
    padding-left: 2.8125rem !important;
  }
  .px-xxl-6 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
  .py-xxl-2 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxl-3 {
    padding-top: 1.56rem !important;
    padding-bottom: 1.56rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
  .py-xxl-5 {
    padding-top: 2.8125rem !important;
    padding-bottom: 2.8125rem !important;
  }
  .py-xxl-6 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.9375rem !important;
  }
  .pt-xxl-2 {
    padding-top: 1.25rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1.56rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.875rem !important;
  }
  .pt-xxl-5 {
    padding-top: 2.8125rem !important;
  }
  .pt-xxl-6 {
    padding-top: 3.125rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.9375rem !important;
  }
  .pe-xxl-2 {
    padding-right: 1.25rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1.56rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.875rem !important;
  }
  .pe-xxl-5 {
    padding-right: 2.8125rem !important;
  }
  .pe-xxl-6 {
    padding-right: 3.125rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.9375rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1.56rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.875rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 2.8125rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 3.125rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.9375rem !important;
  }
  .ps-xxl-2 {
    padding-left: 1.25rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1.56rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.875rem !important;
  }
  .ps-xxl-5 {
    padding-left: 2.8125rem !important;
  }
  .ps-xxl-6 {
    padding-left: 3.125rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
.display--flex {
  display: flex;
}

.flex-direction--vertical {
  flex-direction: column;
}

.flex-direction--row {
  flex-direction: row;
}

.flex--1 {
  flex: 1;
}

.flex-grow--0 {
  flex-grow: 0;
}

.flex-grow--1 {
  flex-grow: 1;
}

.flex-grow--2 {
  flex-grow: 2;
}

.flex-grow--3 {
  flex-grow: 3;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-items--center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  -ms-grid-row-align: center !important;
  align-items: center !important;
}

.justify-content--center {
  justify-content: center !important;
}

.justify-content--end {
  justify-content: end;
}

.justify-content--start {
  justify-content: flex-start;
}

.align-self--stretch {
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.align-self--flex-end {
  align-self: flex-end;
}

.-self--flex-start {
  align-self: flex-start;
}

.sc-content-block {
  position: relative;
}

.c-ew__dialog {
  max-width: 90vw !important;
  margin-top: 35px !important;
}

.c-ew__dialog-content adam-hint, .c-ew__dialog-content adam-browser {
  display: none !important;
}

.adam-dialog-content {
  margin-bottom: -150px;
}

body div.actionMenu ul.dnn_mact li.dnn_menu_label {
  height: 100px;
  overflow: hidden;
}

.tinymce-toolbar-container {
  position: fixed;
  top: 0;
  width: 90vw;
  z-index: 11;
}

.dnnCheckbox .mark {
  background-color: transparent !important;
}

body .dnnModuleManager.dnnSortable {
  min-height: 35px !important;
}

.sc-menu a div i {
  text-shadow: none;
}

li p {
  line-height: 1.5em;
}

.Head {
  margin-bottom: 0;
}

.DnnModule-NCSLSearchPageData .Head {
  visibility: hidden;
  display: none;
}

.dnnEditState .DnnModule-NCSLSearchPageData .Head, [data-admin=true] .DnnModule-NCSLSearchPageData .Head {
  visibility: visislbe;
  display: block;
}

.btn {
  display: inline-block;
  font-weight: 700;
  line-height: 1.22;
  color: #262222;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.625rem 2.75rem;
  font-size: 1rem;
  border-radius: 0.1875rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #262222;
  text-decoration: none;
}
.btn:focus {
  outline: 4px;
  box-shadow: 0 0 0 0.25rem rgba(26, 113, 174, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-link {
  font-weight: 400;
  color: #1A71AE;
  text-decoration: none;
}
.btn-link:hover {
  color: #155a8b;
  text-decoration: underline;
}
.btn-link:focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.page-topics {
  text-align: right;
}
.page-topics a {
  padding: 0.375rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 2px;
}

.tag {
  margin-top: 0.9375rem;
}

.related-topics {
  font-size: 0.875rem;
  font-weight: 700;
  margin-right: 0.25rem;
}

.page-search {
  justify-content: center;
}
.page-search > .form-control {
  flex: initial;
  border-color: #262222;
  min-width: 250px;
  padding: 0.25rem 0.75rem;
  font-size: 14px;
}
.page-search > .form-control::-moz-placeholder {
  color: #262222;
}
.page-search > .form-control:-ms-input-placeholder {
  color: #262222;
}
.page-search > .form-control #placeholder, .page-search > .form-control::placeholder {
  color: #262222;
}
.page-search .input-group-text {
  background: none;
  position: relative;
  right: 35px;
  font-size: 14px;
  color: #1A71AE;
  padding: 0.25rem 0.5rem;
}
.page-search .bootstrap-select {
  width: auto;
  background: none;
  border: none;
}
.page-search .bootstrap-select .dropdown-item {
  font-size: 14px;
  line-height: 1.5em;
}
.page-search .bootstrap-select > .dropdown-toggle {
  background: white;
  max-width: 275px;
  border: 1px solid #262222;
  text-transform: none;
  font-weight: normal;
  font-size: 0.875rem;
  text-align: left;
  border-radius: 0.1875rem !important;
  padding: 0.4rem 2.5rem 0.4rem 0.8125rem;
}
.page-search .bootstrap-select > .dropdown-toggle.btn-light {
  color: #262222;
}
.page-search .bootstrap-select > .dropdown-toggle.bs-placeholder {
  color: #262222;
}
.page-search .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .page-search .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .page-search .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #262222;
}
.page-search .bootstrap-select > .dropdown-toggle::after {
  content: "B";
  font-family: "icons ncsl";
  font-size: 0.875rem;
  transform: rotate(-90deg);
}
.page-search .bootstrap-select > .dropdown-toggle.show::after {
  transform: rotate(90deg);
}
.page-search .bootstrap-select .bs-actionsbox {
  text-align: right;
}
.page-search .bootstrap-select .bs-actionsbox .actions-btn {
  font-size: 0.875rem;
  padding: 0;
  text-transform: none;
  color: #1A71AE;
  font-weight: normal;
}
.page-search .bootstrap-select .bs-actionsbox .actions-btn:before {
  content: "L";
  display: inline-block;
  font-size: 10px;
  font-family: "icons ncsl";
  padding-right: 5px;
  font-style: normal;
  font-weight: bold;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page-search .bootstrap-select .bs-actionsbox .actions-btn:first-child {
  display: none;
}
.page-search .bootstrap-select .bs-ok-default:after {
  color: #1A71AE;
  height: 0.9em;
  border-width: 0 0.2em 0.2em 0;
}
.page-search .bootstrap-select .dropdown-menu {
  max-height: 300px;
  padding-top: 0;
}

.tab-link {
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  box-shadow: 0 2px 4px 0 rgba(217, 217, 217, 0.5);
  border-left: 10px solid #E9F1F7;
  padding: 0.8125rem 1.25rem;
  font-weight: bold;
}
.tab-link:hover, .tab-link:focus {
  color: #155a8b;
  background: #E9F1F7;
  text-decoration: none;
}
.tab-link.icon-arrow-thin::before {
  display: block;
  height: 100%;
  color: #1A71AE;
  right: 0;
  order: 2;
}

.list-links--large {
  display: flex;
  width: 100%;
  max-width: 700px;
}
.list-links--large .dropdown-toggle {
  background: white;
  height: 40px;
  padding: 6px 0.8125rem;
  width: 100%;
  border: 1px solid #D9D9D9;
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
}

.btn-label {
  position: relative;
  display: inline-block;
  padding: 2px 10px;
  min-height: 27px;
  line-height: 1.5625;
  font-weight: 600;
  font-size: 0.875rem;
  font-style: italic;
  text-transform: capitalize;
}

.btn-callout {
  display: inline-flex;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 15px;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 0px 10px;
}
.btn-callout .callout-icon {
  display: block;
  padding: 0 5px;
  font-size: 11px;
  line-height: 11px;
  height: 11px;
  width: 11px;
  overflow: hidden;
}

.btn-toggle, .btn-toggle:visited {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  background: none;
  border: 0;
  color: #262222;
  font-size: 0.875rem;
  padding: 0;
  margin-top: 0.5rem;
  position: relative;
  z-index: 12;
  transition: all ease-in 300ms;
}
.btn-toggle::before, .btn-toggle:visited::before {
  color: #1A71AE;
  display: block;
  width: 20px;
}
.btn-toggle:hover, .btn-toggle:visited:hover {
  text-decoration: none;
  color: #1A71AE;
}

.show-read-more .collapse-text.expandable:not(.show) {
  position: relative;
  margin-bottom: -1.25rem;
}
.show-read-more .collapse-text.expandable:not(.show)::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgb(255, 255, 255) 3%, rgba(255, 255, 255, 0) 40%);
  min-height: 270PX;
  pointer-events: none;
  z-index: 11;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.375rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 2px;
  text-transform: initial;
}

.btn-primary {
  color: white;
  background-color: #1A71AE;
  border-color: #1A71AE;
}
.btn-primary:hover {
  color: white;
  background-color: #166094;
  border-color: #155a8b;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: white;
  background-color: #166094;
  border-color: #155a8b;
  box-shadow: 0 0 0 0.25rem rgba(60, 134, 186, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: white;
  background-color: #155a8b;
  border-color: #145583;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 134, 186, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: white;
  background-color: #1A71AE;
  border-color: #1A71AE;
}

.btn-secondary {
  color: #262222;
  background-color: #E9F1F7;
  border-color: #E9F1F7;
}
.btn-secondary:hover {
  color: #262222;
  background-color: #ecf3f8;
  border-color: #ebf2f8;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #262222;
  background-color: #ecf3f8;
  border-color: #ebf2f8;
  box-shadow: 0 0 0 0.25rem rgba(204, 210, 215, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #262222;
  background-color: #edf4f9;
  border-color: #ebf2f8;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(204, 210, 215, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #262222;
  background-color: #E9F1F7;
  border-color: #E9F1F7;
}

.btn-success {
  color: white;
  background-color: #1E5332;
  border-color: #1E5332;
}
.btn-success:hover {
  color: white;
  background-color: #1a472b;
  border-color: #184228;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: white;
  background-color: #1a472b;
  border-color: #184228;
  box-shadow: 0 0 0 0.25rem rgba(64, 109, 81, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: white;
  background-color: #184228;
  border-color: #173e26;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(64, 109, 81, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: white;
  background-color: #1E5332;
  border-color: #1E5332;
}

.btn-danger {
  color: white;
  background-color: #BB2D26;
  border-color: #BB2D26;
}
.btn-danger:hover {
  color: white;
  background-color: #9f2620;
  border-color: #96241e;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: white;
  background-color: #9f2620;
  border-color: #96241e;
  box-shadow: 0 0 0 0.25rem rgba(197, 77, 71, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: white;
  background-color: #96241e;
  border-color: #8c221d;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 77, 71, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: white;
  background-color: #BB2D26;
  border-color: #BB2D26;
}

.btn-dark {
  color: white;
  background-color: #262222;
  border-color: #262222;
}
.btn-dark:hover {
  color: white;
  background-color: #201d1d;
  border-color: #1e1b1b;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: white;
  background-color: #201d1d;
  border-color: #1e1b1b;
  box-shadow: 0 0 0 0.25rem rgba(71, 67, 67, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: white;
  background-color: #1e1b1b;
  border-color: #1d1a1a;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(71, 67, 67, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: white;
  background-color: #262222;
  border-color: #262222;
}

.btn-state-legislatures-news {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}
.btn-state-legislatures-news:hover {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
}
.btn-check:focus + .btn-state-legislatures-news, .btn-state-legislatures-news:focus {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-check:checked + .btn-state-legislatures-news, .btn-check:active + .btn-state-legislatures-news, .btn-state-legislatures-news:active, .btn-state-legislatures-news.active, .show > .btn-state-legislatures-news.dropdown-toggle {
  color: #262222;
  background-color: #fbf4e2;
  border-color: #fbf2df;
}
.btn-check:checked + .btn-state-legislatures-news:focus, .btn-check:active + .btn-state-legislatures-news:focus, .btn-state-legislatures-news:active:focus, .btn-state-legislatures-news.active:focus, .show > .btn-state-legislatures-news.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-state-legislatures-news:disabled, .btn-state-legislatures-news.disabled {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}

.btn-news {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}
.btn-news:hover {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
}
.btn-check:focus + .btn-news, .btn-news:focus {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-check:checked + .btn-news, .btn-check:active + .btn-news, .btn-news:active, .btn-news.active, .show > .btn-news.dropdown-toggle {
  color: #262222;
  background-color: #fbf4e2;
  border-color: #fbf2df;
}
.btn-check:checked + .btn-news:focus, .btn-check:active + .btn-news:focus, .btn-news:active:focus, .btn-news.active:focus, .show > .btn-news.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-news:disabled, .btn-news.disabled {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}

.btn-database {
  color: #262222;
  background-color: #ABC1CC;
  border-color: #ABC1CC;
}
.btn-database:hover {
  color: #262222;
  background-color: #b8cad4;
  border-color: #b3c7d1;
}
.btn-check:focus + .btn-database, .btn-database:focus {
  color: #262222;
  background-color: #b8cad4;
  border-color: #b3c7d1;
  box-shadow: 0 0 0 0.25rem rgba(151, 169, 179, 0.5);
}
.btn-check:checked + .btn-database, .btn-check:active + .btn-database, .btn-database:active, .btn-database.active, .show > .btn-database.dropdown-toggle {
  color: #262222;
  background-color: #bccdd6;
  border-color: #b3c7d1;
}
.btn-check:checked + .btn-database:focus, .btn-check:active + .btn-database:focus, .btn-database:active:focus, .btn-database.active:focus, .show > .btn-database.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(151, 169, 179, 0.5);
}
.btn-database:disabled, .btn-database.disabled {
  color: #262222;
  background-color: #ABC1CC;
  border-color: #ABC1CC;
}

.btn-event {
  color: #262222;
  background-color: #FCD9C7;
  border-color: #FCD9C7;
}
.btn-event:hover {
  color: #262222;
  background-color: #fcdfcf;
  border-color: #fcddcd;
}
.btn-check:focus + .btn-event, .btn-event:focus {
  color: #262222;
  background-color: #fcdfcf;
  border-color: #fcddcd;
  box-shadow: 0 0 0 0.25rem rgba(220, 190, 174, 0.5);
}
.btn-check:checked + .btn-event, .btn-check:active + .btn-event, .btn-event:active, .btn-event.active, .show > .btn-event.dropdown-toggle {
  color: #262222;
  background-color: #fde1d2;
  border-color: #fcddcd;
}
.btn-check:checked + .btn-event:focus, .btn-check:active + .btn-event:focus, .btn-event:active:focus, .btn-event.active:focus, .show > .btn-event.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 190, 174, 0.5);
}
.btn-event:disabled, .btn-event.disabled {
  color: #262222;
  background-color: #FCD9C7;
  border-color: #FCD9C7;
}

.btn-graphic {
  color: #262222;
  background-color: #FFFBCC;
  border-color: #FFFBCC;
}
.btn-graphic:hover {
  color: #262222;
  background-color: #fffcd4;
  border-color: #fffbd1;
}
.btn-check:focus + .btn-graphic, .btn-graphic:focus {
  color: #262222;
  background-color: #fffcd4;
  border-color: #fffbd1;
  box-shadow: 0 0 0 0.25rem rgba(222, 218, 179, 0.5);
}
.btn-check:checked + .btn-graphic, .btn-check:active + .btn-graphic, .btn-graphic:active, .btn-graphic.active, .show > .btn-graphic.dropdown-toggle {
  color: #262222;
  background-color: #fffcd6;
  border-color: #fffbd1;
}
.btn-check:checked + .btn-graphic:focus, .btn-check:active + .btn-graphic:focus, .btn-graphic:active:focus, .btn-graphic.active:focus, .show > .btn-graphic.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(222, 218, 179, 0.5);
}
.btn-graphic:disabled, .btn-graphic.disabled {
  color: #262222;
  background-color: #FFFBCC;
  border-color: #FFFBCC;
}

.btn-podcast {
  color: #262222;
  background-color: #D7E7F3;
  border-color: #D7E7F3;
}
.btn-podcast:hover {
  color: #262222;
  background-color: #ddebf5;
  border-color: #dbe9f4;
}
.btn-check:focus + .btn-podcast, .btn-podcast:focus {
  color: #262222;
  background-color: #ddebf5;
  border-color: #dbe9f4;
  box-shadow: 0 0 0 0.25rem rgba(188, 201, 212, 0.5);
}
.btn-check:checked + .btn-podcast, .btn-check:active + .btn-podcast, .btn-podcast:active, .btn-podcast.active, .show > .btn-podcast.dropdown-toggle {
  color: #262222;
  background-color: #dfecf5;
  border-color: #dbe9f4;
}
.btn-check:checked + .btn-podcast:focus, .btn-check:active + .btn-podcast:focus, .btn-podcast:active:focus, .btn-podcast.active:focus, .show > .btn-podcast.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(188, 201, 212, 0.5);
}
.btn-podcast:disabled, .btn-podcast.disabled {
  color: #262222;
  background-color: #D7E7F3;
  border-color: #D7E7F3;
}

.btn-state-legislature-magazine {
  color: #262222;
  background-color: #E4ACA9;
  border-color: #E4ACA9;
}
.btn-state-legislature-magazine:hover {
  color: #262222;
  background-color: #e8b8b6;
  border-color: #e7b4b2;
}
.btn-check:focus + .btn-state-legislature-magazine, .btn-state-legislature-magazine:focus {
  color: #262222;
  background-color: #e8b8b6;
  border-color: #e7b4b2;
  box-shadow: 0 0 0 0.25rem rgba(200, 151, 149, 0.5);
}
.btn-check:checked + .btn-state-legislature-magazine, .btn-check:active + .btn-state-legislature-magazine, .btn-state-legislature-magazine:active, .btn-state-legislature-magazine.active, .show > .btn-state-legislature-magazine.dropdown-toggle {
  color: #262222;
  background-color: #e9bdba;
  border-color: #e7b4b2;
}
.btn-check:checked + .btn-state-legislature-magazine:focus, .btn-check:active + .btn-state-legislature-magazine:focus, .btn-state-legislature-magazine:active:focus, .btn-state-legislature-magazine.active:focus, .show > .btn-state-legislature-magazine.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(200, 151, 149, 0.5);
}
.btn-state-legislature-magazine:disabled, .btn-state-legislature-magazine.disabled {
  color: #262222;
  background-color: #E4ACA9;
  border-color: #E4ACA9;
}

.btn-magazine {
  color: #262222;
  background-color: #E4ACA9;
  border-color: #E4ACA9;
}
.btn-magazine:hover {
  color: #262222;
  background-color: #e8b8b6;
  border-color: #e7b4b2;
}
.btn-check:focus + .btn-magazine, .btn-magazine:focus {
  color: #262222;
  background-color: #e8b8b6;
  border-color: #e7b4b2;
  box-shadow: 0 0 0 0.25rem rgba(200, 151, 149, 0.5);
}
.btn-check:checked + .btn-magazine, .btn-check:active + .btn-magazine, .btn-magazine:active, .btn-magazine.active, .show > .btn-magazine.dropdown-toggle {
  color: #262222;
  background-color: #e9bdba;
  border-color: #e7b4b2;
}
.btn-check:checked + .btn-magazine:focus, .btn-check:active + .btn-magazine:focus, .btn-magazine:active:focus, .btn-magazine.active:focus, .show > .btn-magazine.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(200, 151, 149, 0.5);
}
.btn-magazine:disabled, .btn-magazine.disabled {
  color: #262222;
  background-color: #E4ACA9;
  border-color: #E4ACA9;
}

.btn-map {
  color: #262222;
  background-color: #D7C0A7;
  border-color: #D7C0A7;
}
.btn-map:hover {
  color: #262222;
  background-color: #ddc9b4;
  border-color: #dbc6b0;
}
.btn-check:focus + .btn-map, .btn-map:focus {
  color: #262222;
  background-color: #ddc9b4;
  border-color: #dbc6b0;
  box-shadow: 0 0 0 0.25rem rgba(188, 168, 147, 0.5);
}
.btn-check:checked + .btn-map, .btn-check:active + .btn-map, .btn-map:active, .btn-map.active, .show > .btn-map.dropdown-toggle {
  color: #262222;
  background-color: #dfcdb9;
  border-color: #dbc6b0;
}
.btn-check:checked + .btn-map:focus, .btn-check:active + .btn-map:focus, .btn-map:active:focus, .btn-map.active:focus, .show > .btn-map.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(188, 168, 147, 0.5);
}
.btn-map:disabled, .btn-map.disabled {
  color: #262222;
  background-color: #D7C0A7;
  border-color: #D7C0A7;
}

.btn-members {
  color: #262222;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}
.btn-members:hover {
  color: #262222;
  background-color: #dfdfdf;
  border-color: #dddddd;
}
.btn-check:focus + .btn-members, .btn-members:focus {
  color: #262222;
  background-color: #dfdfdf;
  border-color: #dddddd;
  box-shadow: 0 0 0 0.25rem rgba(190, 190, 190, 0.5);
}
.btn-check:checked + .btn-members, .btn-check:active + .btn-members, .btn-members:active, .btn-members.active, .show > .btn-members.dropdown-toggle {
  color: #262222;
  background-color: #e1e1e1;
  border-color: #dddddd;
}
.btn-check:checked + .btn-members:focus, .btn-check:active + .btn-members:focus, .btn-members:active:focus, .btn-members.active:focus, .show > .btn-members.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(190, 190, 190, 0.5);
}
.btn-members:disabled, .btn-members.disabled {
  color: #262222;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}

.btn-purchase {
  color: white;
  background-color: #1E5332;
  border-color: #1E5332;
}
.btn-purchase:hover {
  color: white;
  background-color: #1a472b;
  border-color: #184228;
}
.btn-check:focus + .btn-purchase, .btn-purchase:focus {
  color: white;
  background-color: #1a472b;
  border-color: #184228;
  box-shadow: 0 0 0 0.25rem rgba(64, 109, 81, 0.5);
}
.btn-check:checked + .btn-purchase, .btn-check:active + .btn-purchase, .btn-purchase:active, .btn-purchase.active, .show > .btn-purchase.dropdown-toggle {
  color: white;
  background-color: #184228;
  border-color: #173e26;
}
.btn-check:checked + .btn-purchase:focus, .btn-check:active + .btn-purchase:focus, .btn-purchase:active:focus, .btn-purchase.active:focus, .show > .btn-purchase.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(64, 109, 81, 0.5);
}
.btn-purchase:disabled, .btn-purchase.disabled {
  color: white;
  background-color: #1E5332;
  border-color: #1E5332;
}

.btn-table {
  color: #262222;
  background-color: #CAD8B7;
  border-color: #CAD8B7;
}
.btn-table:hover {
  color: #262222;
  background-color: #d2dec2;
  border-color: #cfdcbe;
}
.btn-check:focus + .btn-table, .btn-table:focus {
  color: #262222;
  background-color: #d2dec2;
  border-color: #cfdcbe;
  box-shadow: 0 0 0 0.25rem rgba(177, 189, 161, 0.5);
}
.btn-check:checked + .btn-table, .btn-check:active + .btn-table, .btn-table:active, .btn-table.active, .show > .btn-table.dropdown-toggle {
  color: #262222;
  background-color: #d5e0c5;
  border-color: #cfdcbe;
}
.btn-check:checked + .btn-table:focus, .btn-check:active + .btn-table:focus, .btn-table:active:focus, .btn-table.active:focus, .show > .btn-table.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(177, 189, 161, 0.5);
}
.btn-table:disabled, .btn-table.disabled {
  color: #262222;
  background-color: #CAD8B7;
  border-color: #CAD8B7;
}

.btn-training {
  color: #262222;
  background-color: #A4B9AC;
  border-color: #A4B9AC;
}
.btn-training:hover {
  color: #262222;
  background-color: #b2c4b8;
  border-color: #adc0b4;
}
.btn-check:focus + .btn-training, .btn-training:focus {
  color: #262222;
  background-color: #b2c4b8;
  border-color: #adc0b4;
  box-shadow: 0 0 0 0.25rem rgba(145, 162, 151, 0.5);
}
.btn-check:checked + .btn-training, .btn-check:active + .btn-training, .btn-training:active, .btn-training.active, .show > .btn-training.dropdown-toggle {
  color: #262222;
  background-color: #b6c7bd;
  border-color: #adc0b4;
}
.btn-check:checked + .btn-training:focus, .btn-check:active + .btn-training:focus, .btn-training:active:focus, .btn-training.active:focus, .show > .btn-training.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(145, 162, 151, 0.5);
}
.btn-training:disabled, .btn-training.disabled {
  color: #262222;
  background-color: #A4B9AC;
  border-color: #A4B9AC;
}

.btn-video {
  color: #262222;
  background-color: #A8B1C8;
  border-color: #A8B1C8;
}
.btn-video:hover {
  color: #262222;
  background-color: #b5bdd0;
  border-color: #b1b9ce;
}
.btn-check:focus + .btn-video, .btn-video:focus {
  color: #262222;
  background-color: #b5bdd0;
  border-color: #b1b9ce;
  box-shadow: 0 0 0 0.25rem rgba(149, 156, 175, 0.5);
}
.btn-check:checked + .btn-video, .btn-check:active + .btn-video, .btn-video:active, .btn-video.active, .show > .btn-video.dropdown-toggle {
  color: #262222;
  background-color: #b9c1d3;
  border-color: #b1b9ce;
}
.btn-check:checked + .btn-video:focus, .btn-check:active + .btn-video:focus, .btn-video:active:focus, .btn-video.active:focus, .show > .btn-video.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(149, 156, 175, 0.5);
}
.btn-video:disabled, .btn-video.disabled {
  color: #262222;
  background-color: #A8B1C8;
  border-color: #A8B1C8;
}

.btn-virtual {
  color: #262222;
  background-color: #C6E7DF;
  border-color: #C6E7DF;
}
.btn-virtual:hover {
  color: #262222;
  background-color: #cfebe4;
  border-color: #cce9e2;
}
.btn-check:focus + .btn-virtual, .btn-virtual:focus {
  color: #262222;
  background-color: #cfebe4;
  border-color: #cce9e2;
  box-shadow: 0 0 0 0.25rem rgba(174, 201, 195, 0.5);
}
.btn-check:checked + .btn-virtual, .btn-check:active + .btn-virtual, .btn-virtual:active, .btn-virtual.active, .show > .btn-virtual.dropdown-toggle {
  color: #262222;
  background-color: #d1ece5;
  border-color: #cce9e2;
}
.btn-check:checked + .btn-virtual:focus, .btn-check:active + .btn-virtual:focus, .btn-virtual:active:focus, .btn-virtual.active:focus, .show > .btn-virtual.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(174, 201, 195, 0.5);
}
.btn-virtual:disabled, .btn-virtual.disabled {
  color: #262222;
  background-color: #C6E7DF;
  border-color: #C6E7DF;
}

.btn-webinar {
  color: #262222;
  background-color: #C7BEC2;
  border-color: #C7BEC2;
}
.btn-webinar:hover {
  color: #262222;
  background-color: #cfc8cb;
  border-color: #cdc5c8;
}
.btn-check:focus + .btn-webinar, .btn-webinar:focus {
  color: #262222;
  background-color: #cfc8cb;
  border-color: #cdc5c8;
  box-shadow: 0 0 0 0.25rem rgba(175, 167, 170, 0.5);
}
.btn-check:checked + .btn-webinar, .btn-check:active + .btn-webinar, .btn-webinar:active, .btn-webinar.active, .show > .btn-webinar.dropdown-toggle {
  color: #262222;
  background-color: #d2cbce;
  border-color: #cdc5c8;
}
.btn-check:checked + .btn-webinar:focus, .btn-check:active + .btn-webinar:focus, .btn-webinar:active:focus, .btn-webinar.active:focus, .show > .btn-webinar.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(175, 167, 170, 0.5);
}
.btn-webinar:disabled, .btn-webinar.disabled {
  color: #262222;
  background-color: #C7BEC2;
  border-color: #C7BEC2;
}

.btn-box-shadow-color {
  color: #000;
  background-color: #7a7a7a;
  border-color: #7a7a7a;
}
.btn-box-shadow-color:hover {
  color: #262222;
  background-color: #8e8e8e;
  border-color: #878787;
}
.btn-check:focus + .btn-box-shadow-color, .btn-box-shadow-color:focus {
  color: #262222;
  background-color: #8e8e8e;
  border-color: #878787;
  box-shadow: 0 0 0 0.25rem rgba(104, 104, 104, 0.5);
}
.btn-check:checked + .btn-box-shadow-color, .btn-check:active + .btn-box-shadow-color, .btn-box-shadow-color:active, .btn-box-shadow-color.active, .show > .btn-box-shadow-color.dropdown-toggle {
  color: #262222;
  background-color: #959595;
  border-color: #878787;
}
.btn-check:checked + .btn-box-shadow-color:focus, .btn-check:active + .btn-box-shadow-color:focus, .btn-box-shadow-color:active:focus, .btn-box-shadow-color.active:focus, .show > .btn-box-shadow-color.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(104, 104, 104, 0.5);
}
.btn-box-shadow-color:disabled, .btn-box-shadow-color.disabled {
  color: #000;
  background-color: #7a7a7a;
  border-color: #7a7a7a;
}

.btn-article {
  color: #262222;
  background-color: white;
  border-color: white;
}
.btn-article:hover {
  color: #262222;
  background-color: white;
  border-color: white;
}
.btn-check:focus + .btn-article, .btn-article:focus {
  color: #262222;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(222, 222, 222, 0.5);
}
.btn-check:checked + .btn-article, .btn-check:active + .btn-article, .btn-article:active, .btn-article.active, .show > .btn-article.dropdown-toggle {
  color: #262222;
  background-color: white;
  border-color: white;
}
.btn-check:checked + .btn-article:focus, .btn-check:active + .btn-article:focus, .btn-article:active:focus, .btn-article.active:focus, .show > .btn-article.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(222, 222, 222, 0.5);
}
.btn-article:disabled, .btn-article.disabled {
  color: #262222;
  background-color: white;
  border-color: white;
}

.btn-state-legislature-news {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}
.btn-state-legislature-news:hover {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
}
.btn-check:focus + .btn-state-legislature-news, .btn-state-legislature-news:focus {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-check:checked + .btn-state-legislature-news, .btn-check:active + .btn-state-legislature-news, .btn-state-legislature-news:active, .btn-state-legislature-news.active, .show > .btn-state-legislature-news.dropdown-toggle {
  color: #262222;
  background-color: #fbf4e2;
  border-color: #fbf2df;
}
.btn-check:checked + .btn-state-legislature-news:focus, .btn-check:active + .btn-state-legislature-news:focus, .btn-state-legislature-news:active:focus, .btn-state-legislature-news.active:focus, .show > .btn-state-legislature-news.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-state-legislature-news:disabled, .btn-state-legislature-news.disabled {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}

.btn-gray-lighter {
  color: #262222;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}
.btn-gray-lighter:hover {
  color: #262222;
  background-color: #f4f4f4;
  border-color: #f3f3f3;
}
.btn-check:focus + .btn-gray-lighter, .btn-gray-lighter:focus {
  color: #262222;
  background-color: #f4f4f4;
  border-color: #f3f3f3;
  box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-check:checked + .btn-gray-lighter, .btn-check:active + .btn-gray-lighter, .btn-gray-lighter:active, .btn-gray-lighter.active, .show > .btn-gray-lighter.dropdown-toggle {
  color: #262222;
  background-color: whitesmoke;
  border-color: #f3f3f3;
}
.btn-check:checked + .btn-gray-lighter:focus, .btn-check:active + .btn-gray-lighter:focus, .btn-gray-lighter:active:focus, .btn-gray-lighter.active:focus, .show > .btn-gray-lighter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-gray-lighter:disabled, .btn-gray-lighter.disabled {
  color: #262222;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-gray-light {
  color: #262222;
  background-color: #e8e8e8;
  border-color: #e8e8e8;
}
.btn-gray-light:hover {
  color: #262222;
  background-color: #ebebeb;
  border-color: #eaeaea;
}
.btn-check:focus + .btn-gray-light, .btn-gray-light:focus {
  color: #262222;
  background-color: #ebebeb;
  border-color: #eaeaea;
  box-shadow: 0 0 0 0.25rem rgba(203, 202, 202, 0.5);
}
.btn-check:checked + .btn-gray-light, .btn-check:active + .btn-gray-light, .btn-gray-light:active, .btn-gray-light.active, .show > .btn-gray-light.dropdown-toggle {
  color: #262222;
  background-color: #ededed;
  border-color: #eaeaea;
}
.btn-check:checked + .btn-gray-light:focus, .btn-check:active + .btn-gray-light:focus, .btn-gray-light:active:focus, .btn-gray-light.active:focus, .show > .btn-gray-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(203, 202, 202, 0.5);
}
.btn-gray-light:disabled, .btn-gray-light.disabled {
  color: #262222;
  background-color: #e8e8e8;
  border-color: #e8e8e8;
}

.btn-gray {
  color: #262222;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}
.btn-gray:hover {
  color: #262222;
  background-color: #dfdfdf;
  border-color: #dddddd;
}
.btn-check:focus + .btn-gray, .btn-gray:focus {
  color: #262222;
  background-color: #dfdfdf;
  border-color: #dddddd;
  box-shadow: 0 0 0 0.25rem rgba(190, 190, 190, 0.5);
}
.btn-check:checked + .btn-gray, .btn-check:active + .btn-gray, .btn-gray:active, .btn-gray.active, .show > .btn-gray.dropdown-toggle {
  color: #262222;
  background-color: #e1e1e1;
  border-color: #dddddd;
}
.btn-check:checked + .btn-gray:focus, .btn-check:active + .btn-gray:focus, .btn-gray:active:focus, .btn-gray.active:focus, .show > .btn-gray.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(190, 190, 190, 0.5);
}
.btn-gray:disabled, .btn-gray.disabled {
  color: #262222;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}

.label-primary {
  color: white;
  background-color: #1A71AE;
  border-color: #1A71AE;
}
.label-primary:hover {
  color: white;
  background-color: #166094;
  border-color: #155a8b;
}
.btn-check:focus + .label-primary, .label-primary:focus {
  color: white;
  background-color: #166094;
  border-color: #155a8b;
  box-shadow: 0 0 0 0.25rem rgba(60, 134, 186, 0.5);
}
.btn-check:checked + .label-primary, .btn-check:active + .label-primary, .label-primary:active, .label-primary.active, .show > .label-primary.dropdown-toggle {
  color: white;
  background-color: #155a8b;
  border-color: #145583;
}
.btn-check:checked + .label-primary:focus, .btn-check:active + .label-primary:focus, .label-primary:active:focus, .label-primary.active:focus, .show > .label-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 134, 186, 0.5);
}
.label-primary:disabled, .label-primary.disabled {
  color: white;
  background-color: #1A71AE;
  border-color: #1A71AE;
}

.label-secondary {
  color: #262222;
  background-color: #E9F1F7;
  border-color: #E9F1F7;
}
.label-secondary:hover {
  color: #262222;
  background-color: #ecf3f8;
  border-color: #ebf2f8;
}
.btn-check:focus + .label-secondary, .label-secondary:focus {
  color: #262222;
  background-color: #ecf3f8;
  border-color: #ebf2f8;
  box-shadow: 0 0 0 0.25rem rgba(204, 210, 215, 0.5);
}
.btn-check:checked + .label-secondary, .btn-check:active + .label-secondary, .label-secondary:active, .label-secondary.active, .show > .label-secondary.dropdown-toggle {
  color: #262222;
  background-color: #edf4f9;
  border-color: #ebf2f8;
}
.btn-check:checked + .label-secondary:focus, .btn-check:active + .label-secondary:focus, .label-secondary:active:focus, .label-secondary.active:focus, .show > .label-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(204, 210, 215, 0.5);
}
.label-secondary:disabled, .label-secondary.disabled {
  color: #262222;
  background-color: #E9F1F7;
  border-color: #E9F1F7;
}

.label-success {
  color: white;
  background-color: #1E5332;
  border-color: #1E5332;
}
.label-success:hover {
  color: white;
  background-color: #1a472b;
  border-color: #184228;
}
.btn-check:focus + .label-success, .label-success:focus {
  color: white;
  background-color: #1a472b;
  border-color: #184228;
  box-shadow: 0 0 0 0.25rem rgba(64, 109, 81, 0.5);
}
.btn-check:checked + .label-success, .btn-check:active + .label-success, .label-success:active, .label-success.active, .show > .label-success.dropdown-toggle {
  color: white;
  background-color: #184228;
  border-color: #173e26;
}
.btn-check:checked + .label-success:focus, .btn-check:active + .label-success:focus, .label-success:active:focus, .label-success.active:focus, .show > .label-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(64, 109, 81, 0.5);
}
.label-success:disabled, .label-success.disabled {
  color: white;
  background-color: #1E5332;
  border-color: #1E5332;
}

.label-danger {
  color: white;
  background-color: #BB2D26;
  border-color: #BB2D26;
}
.label-danger:hover {
  color: white;
  background-color: #9f2620;
  border-color: #96241e;
}
.btn-check:focus + .label-danger, .label-danger:focus {
  color: white;
  background-color: #9f2620;
  border-color: #96241e;
  box-shadow: 0 0 0 0.25rem rgba(197, 77, 71, 0.5);
}
.btn-check:checked + .label-danger, .btn-check:active + .label-danger, .label-danger:active, .label-danger.active, .show > .label-danger.dropdown-toggle {
  color: white;
  background-color: #96241e;
  border-color: #8c221d;
}
.btn-check:checked + .label-danger:focus, .btn-check:active + .label-danger:focus, .label-danger:active:focus, .label-danger.active:focus, .show > .label-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(197, 77, 71, 0.5);
}
.label-danger:disabled, .label-danger.disabled {
  color: white;
  background-color: #BB2D26;
  border-color: #BB2D26;
}

.label-dark {
  color: white;
  background-color: #262222;
  border-color: #262222;
}
.label-dark:hover {
  color: white;
  background-color: #201d1d;
  border-color: #1e1b1b;
}
.btn-check:focus + .label-dark, .label-dark:focus {
  color: white;
  background-color: #201d1d;
  border-color: #1e1b1b;
  box-shadow: 0 0 0 0.25rem rgba(71, 67, 67, 0.5);
}
.btn-check:checked + .label-dark, .btn-check:active + .label-dark, .label-dark:active, .label-dark.active, .show > .label-dark.dropdown-toggle {
  color: white;
  background-color: #1e1b1b;
  border-color: #1d1a1a;
}
.btn-check:checked + .label-dark:focus, .btn-check:active + .label-dark:focus, .label-dark:active:focus, .label-dark.active:focus, .show > .label-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(71, 67, 67, 0.5);
}
.label-dark:disabled, .label-dark.disabled {
  color: white;
  background-color: #262222;
  border-color: #262222;
}

.label-state-legislatures-news {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}
.label-state-legislatures-news:hover {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
}
.btn-check:focus + .label-state-legislatures-news, .label-state-legislatures-news:focus {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-check:checked + .label-state-legislatures-news, .btn-check:active + .label-state-legislatures-news, .label-state-legislatures-news:active, .label-state-legislatures-news.active, .show > .label-state-legislatures-news.dropdown-toggle {
  color: #262222;
  background-color: #fbf4e2;
  border-color: #fbf2df;
}
.btn-check:checked + .label-state-legislatures-news:focus, .btn-check:active + .label-state-legislatures-news:focus, .label-state-legislatures-news:active:focus, .label-state-legislatures-news.active:focus, .show > .label-state-legislatures-news.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.label-state-legislatures-news:disabled, .label-state-legislatures-news.disabled {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}

.label-news {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}
.label-news:hover {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
}
.btn-check:focus + .label-news, .label-news:focus {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-check:checked + .label-news, .btn-check:active + .label-news, .label-news:active, .label-news.active, .show > .label-news.dropdown-toggle {
  color: #262222;
  background-color: #fbf4e2;
  border-color: #fbf2df;
}
.btn-check:checked + .label-news:focus, .btn-check:active + .label-news:focus, .label-news:active:focus, .label-news.active:focus, .show > .label-news.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.label-news:disabled, .label-news.disabled {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}

.label-database {
  color: #262222;
  background-color: #ABC1CC;
  border-color: #ABC1CC;
}
.label-database:hover {
  color: #262222;
  background-color: #b8cad4;
  border-color: #b3c7d1;
}
.btn-check:focus + .label-database, .label-database:focus {
  color: #262222;
  background-color: #b8cad4;
  border-color: #b3c7d1;
  box-shadow: 0 0 0 0.25rem rgba(151, 169, 179, 0.5);
}
.btn-check:checked + .label-database, .btn-check:active + .label-database, .label-database:active, .label-database.active, .show > .label-database.dropdown-toggle {
  color: #262222;
  background-color: #bccdd6;
  border-color: #b3c7d1;
}
.btn-check:checked + .label-database:focus, .btn-check:active + .label-database:focus, .label-database:active:focus, .label-database.active:focus, .show > .label-database.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(151, 169, 179, 0.5);
}
.label-database:disabled, .label-database.disabled {
  color: #262222;
  background-color: #ABC1CC;
  border-color: #ABC1CC;
}

.label-event {
  color: #262222;
  background-color: #FCD9C7;
  border-color: #FCD9C7;
}
.label-event:hover {
  color: #262222;
  background-color: #fcdfcf;
  border-color: #fcddcd;
}
.btn-check:focus + .label-event, .label-event:focus {
  color: #262222;
  background-color: #fcdfcf;
  border-color: #fcddcd;
  box-shadow: 0 0 0 0.25rem rgba(220, 190, 174, 0.5);
}
.btn-check:checked + .label-event, .btn-check:active + .label-event, .label-event:active, .label-event.active, .show > .label-event.dropdown-toggle {
  color: #262222;
  background-color: #fde1d2;
  border-color: #fcddcd;
}
.btn-check:checked + .label-event:focus, .btn-check:active + .label-event:focus, .label-event:active:focus, .label-event.active:focus, .show > .label-event.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 190, 174, 0.5);
}
.label-event:disabled, .label-event.disabled {
  color: #262222;
  background-color: #FCD9C7;
  border-color: #FCD9C7;
}

.label-graphic {
  color: #262222;
  background-color: #FFFBCC;
  border-color: #FFFBCC;
}
.label-graphic:hover {
  color: #262222;
  background-color: #fffcd4;
  border-color: #fffbd1;
}
.btn-check:focus + .label-graphic, .label-graphic:focus {
  color: #262222;
  background-color: #fffcd4;
  border-color: #fffbd1;
  box-shadow: 0 0 0 0.25rem rgba(222, 218, 179, 0.5);
}
.btn-check:checked + .label-graphic, .btn-check:active + .label-graphic, .label-graphic:active, .label-graphic.active, .show > .label-graphic.dropdown-toggle {
  color: #262222;
  background-color: #fffcd6;
  border-color: #fffbd1;
}
.btn-check:checked + .label-graphic:focus, .btn-check:active + .label-graphic:focus, .label-graphic:active:focus, .label-graphic.active:focus, .show > .label-graphic.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(222, 218, 179, 0.5);
}
.label-graphic:disabled, .label-graphic.disabled {
  color: #262222;
  background-color: #FFFBCC;
  border-color: #FFFBCC;
}

.label-podcast {
  color: #262222;
  background-color: #D7E7F3;
  border-color: #D7E7F3;
}
.label-podcast:hover {
  color: #262222;
  background-color: #ddebf5;
  border-color: #dbe9f4;
}
.btn-check:focus + .label-podcast, .label-podcast:focus {
  color: #262222;
  background-color: #ddebf5;
  border-color: #dbe9f4;
  box-shadow: 0 0 0 0.25rem rgba(188, 201, 212, 0.5);
}
.btn-check:checked + .label-podcast, .btn-check:active + .label-podcast, .label-podcast:active, .label-podcast.active, .show > .label-podcast.dropdown-toggle {
  color: #262222;
  background-color: #dfecf5;
  border-color: #dbe9f4;
}
.btn-check:checked + .label-podcast:focus, .btn-check:active + .label-podcast:focus, .label-podcast:active:focus, .label-podcast.active:focus, .show > .label-podcast.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(188, 201, 212, 0.5);
}
.label-podcast:disabled, .label-podcast.disabled {
  color: #262222;
  background-color: #D7E7F3;
  border-color: #D7E7F3;
}

.label-state-legislature-magazine {
  color: #262222;
  background-color: #E4ACA9;
  border-color: #E4ACA9;
}
.label-state-legislature-magazine:hover {
  color: #262222;
  background-color: #e8b8b6;
  border-color: #e7b4b2;
}
.btn-check:focus + .label-state-legislature-magazine, .label-state-legislature-magazine:focus {
  color: #262222;
  background-color: #e8b8b6;
  border-color: #e7b4b2;
  box-shadow: 0 0 0 0.25rem rgba(200, 151, 149, 0.5);
}
.btn-check:checked + .label-state-legislature-magazine, .btn-check:active + .label-state-legislature-magazine, .label-state-legislature-magazine:active, .label-state-legislature-magazine.active, .show > .label-state-legislature-magazine.dropdown-toggle {
  color: #262222;
  background-color: #e9bdba;
  border-color: #e7b4b2;
}
.btn-check:checked + .label-state-legislature-magazine:focus, .btn-check:active + .label-state-legislature-magazine:focus, .label-state-legislature-magazine:active:focus, .label-state-legislature-magazine.active:focus, .show > .label-state-legislature-magazine.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(200, 151, 149, 0.5);
}
.label-state-legislature-magazine:disabled, .label-state-legislature-magazine.disabled {
  color: #262222;
  background-color: #E4ACA9;
  border-color: #E4ACA9;
}

.label-magazine {
  color: #262222;
  background-color: #E4ACA9;
  border-color: #E4ACA9;
}
.label-magazine:hover {
  color: #262222;
  background-color: #e8b8b6;
  border-color: #e7b4b2;
}
.btn-check:focus + .label-magazine, .label-magazine:focus {
  color: #262222;
  background-color: #e8b8b6;
  border-color: #e7b4b2;
  box-shadow: 0 0 0 0.25rem rgba(200, 151, 149, 0.5);
}
.btn-check:checked + .label-magazine, .btn-check:active + .label-magazine, .label-magazine:active, .label-magazine.active, .show > .label-magazine.dropdown-toggle {
  color: #262222;
  background-color: #e9bdba;
  border-color: #e7b4b2;
}
.btn-check:checked + .label-magazine:focus, .btn-check:active + .label-magazine:focus, .label-magazine:active:focus, .label-magazine.active:focus, .show > .label-magazine.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(200, 151, 149, 0.5);
}
.label-magazine:disabled, .label-magazine.disabled {
  color: #262222;
  background-color: #E4ACA9;
  border-color: #E4ACA9;
}

.label-map {
  color: #262222;
  background-color: #D7C0A7;
  border-color: #D7C0A7;
}
.label-map:hover {
  color: #262222;
  background-color: #ddc9b4;
  border-color: #dbc6b0;
}
.btn-check:focus + .label-map, .label-map:focus {
  color: #262222;
  background-color: #ddc9b4;
  border-color: #dbc6b0;
  box-shadow: 0 0 0 0.25rem rgba(188, 168, 147, 0.5);
}
.btn-check:checked + .label-map, .btn-check:active + .label-map, .label-map:active, .label-map.active, .show > .label-map.dropdown-toggle {
  color: #262222;
  background-color: #dfcdb9;
  border-color: #dbc6b0;
}
.btn-check:checked + .label-map:focus, .btn-check:active + .label-map:focus, .label-map:active:focus, .label-map.active:focus, .show > .label-map.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(188, 168, 147, 0.5);
}
.label-map:disabled, .label-map.disabled {
  color: #262222;
  background-color: #D7C0A7;
  border-color: #D7C0A7;
}

.label-members {
  color: #262222;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}
.label-members:hover {
  color: #262222;
  background-color: #dfdfdf;
  border-color: #dddddd;
}
.btn-check:focus + .label-members, .label-members:focus {
  color: #262222;
  background-color: #dfdfdf;
  border-color: #dddddd;
  box-shadow: 0 0 0 0.25rem rgba(190, 190, 190, 0.5);
}
.btn-check:checked + .label-members, .btn-check:active + .label-members, .label-members:active, .label-members.active, .show > .label-members.dropdown-toggle {
  color: #262222;
  background-color: #e1e1e1;
  border-color: #dddddd;
}
.btn-check:checked + .label-members:focus, .btn-check:active + .label-members:focus, .label-members:active:focus, .label-members.active:focus, .show > .label-members.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(190, 190, 190, 0.5);
}
.label-members:disabled, .label-members.disabled {
  color: #262222;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}

.label-purchase {
  color: white;
  background-color: #1E5332;
  border-color: #1E5332;
}
.label-purchase:hover {
  color: white;
  background-color: #1a472b;
  border-color: #184228;
}
.btn-check:focus + .label-purchase, .label-purchase:focus {
  color: white;
  background-color: #1a472b;
  border-color: #184228;
  box-shadow: 0 0 0 0.25rem rgba(64, 109, 81, 0.5);
}
.btn-check:checked + .label-purchase, .btn-check:active + .label-purchase, .label-purchase:active, .label-purchase.active, .show > .label-purchase.dropdown-toggle {
  color: white;
  background-color: #184228;
  border-color: #173e26;
}
.btn-check:checked + .label-purchase:focus, .btn-check:active + .label-purchase:focus, .label-purchase:active:focus, .label-purchase.active:focus, .show > .label-purchase.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(64, 109, 81, 0.5);
}
.label-purchase:disabled, .label-purchase.disabled {
  color: white;
  background-color: #1E5332;
  border-color: #1E5332;
}

.label-table {
  color: #262222;
  background-color: #CAD8B7;
  border-color: #CAD8B7;
}
.label-table:hover {
  color: #262222;
  background-color: #d2dec2;
  border-color: #cfdcbe;
}
.btn-check:focus + .label-table, .label-table:focus {
  color: #262222;
  background-color: #d2dec2;
  border-color: #cfdcbe;
  box-shadow: 0 0 0 0.25rem rgba(177, 189, 161, 0.5);
}
.btn-check:checked + .label-table, .btn-check:active + .label-table, .label-table:active, .label-table.active, .show > .label-table.dropdown-toggle {
  color: #262222;
  background-color: #d5e0c5;
  border-color: #cfdcbe;
}
.btn-check:checked + .label-table:focus, .btn-check:active + .label-table:focus, .label-table:active:focus, .label-table.active:focus, .show > .label-table.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(177, 189, 161, 0.5);
}
.label-table:disabled, .label-table.disabled {
  color: #262222;
  background-color: #CAD8B7;
  border-color: #CAD8B7;
}

.label-training {
  color: #262222;
  background-color: #A4B9AC;
  border-color: #A4B9AC;
}
.label-training:hover {
  color: #262222;
  background-color: #b2c4b8;
  border-color: #adc0b4;
}
.btn-check:focus + .label-training, .label-training:focus {
  color: #262222;
  background-color: #b2c4b8;
  border-color: #adc0b4;
  box-shadow: 0 0 0 0.25rem rgba(145, 162, 151, 0.5);
}
.btn-check:checked + .label-training, .btn-check:active + .label-training, .label-training:active, .label-training.active, .show > .label-training.dropdown-toggle {
  color: #262222;
  background-color: #b6c7bd;
  border-color: #adc0b4;
}
.btn-check:checked + .label-training:focus, .btn-check:active + .label-training:focus, .label-training:active:focus, .label-training.active:focus, .show > .label-training.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(145, 162, 151, 0.5);
}
.label-training:disabled, .label-training.disabled {
  color: #262222;
  background-color: #A4B9AC;
  border-color: #A4B9AC;
}

.label-video {
  color: #262222;
  background-color: #A8B1C8;
  border-color: #A8B1C8;
}
.label-video:hover {
  color: #262222;
  background-color: #b5bdd0;
  border-color: #b1b9ce;
}
.btn-check:focus + .label-video, .label-video:focus {
  color: #262222;
  background-color: #b5bdd0;
  border-color: #b1b9ce;
  box-shadow: 0 0 0 0.25rem rgba(149, 156, 175, 0.5);
}
.btn-check:checked + .label-video, .btn-check:active + .label-video, .label-video:active, .label-video.active, .show > .label-video.dropdown-toggle {
  color: #262222;
  background-color: #b9c1d3;
  border-color: #b1b9ce;
}
.btn-check:checked + .label-video:focus, .btn-check:active + .label-video:focus, .label-video:active:focus, .label-video.active:focus, .show > .label-video.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(149, 156, 175, 0.5);
}
.label-video:disabled, .label-video.disabled {
  color: #262222;
  background-color: #A8B1C8;
  border-color: #A8B1C8;
}

.label-virtual {
  color: #262222;
  background-color: #C6E7DF;
  border-color: #C6E7DF;
}
.label-virtual:hover {
  color: #262222;
  background-color: #cfebe4;
  border-color: #cce9e2;
}
.btn-check:focus + .label-virtual, .label-virtual:focus {
  color: #262222;
  background-color: #cfebe4;
  border-color: #cce9e2;
  box-shadow: 0 0 0 0.25rem rgba(174, 201, 195, 0.5);
}
.btn-check:checked + .label-virtual, .btn-check:active + .label-virtual, .label-virtual:active, .label-virtual.active, .show > .label-virtual.dropdown-toggle {
  color: #262222;
  background-color: #d1ece5;
  border-color: #cce9e2;
}
.btn-check:checked + .label-virtual:focus, .btn-check:active + .label-virtual:focus, .label-virtual:active:focus, .label-virtual.active:focus, .show > .label-virtual.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(174, 201, 195, 0.5);
}
.label-virtual:disabled, .label-virtual.disabled {
  color: #262222;
  background-color: #C6E7DF;
  border-color: #C6E7DF;
}

.label-webinar {
  color: #262222;
  background-color: #C7BEC2;
  border-color: #C7BEC2;
}
.label-webinar:hover {
  color: #262222;
  background-color: #cfc8cb;
  border-color: #cdc5c8;
}
.btn-check:focus + .label-webinar, .label-webinar:focus {
  color: #262222;
  background-color: #cfc8cb;
  border-color: #cdc5c8;
  box-shadow: 0 0 0 0.25rem rgba(175, 167, 170, 0.5);
}
.btn-check:checked + .label-webinar, .btn-check:active + .label-webinar, .label-webinar:active, .label-webinar.active, .show > .label-webinar.dropdown-toggle {
  color: #262222;
  background-color: #d2cbce;
  border-color: #cdc5c8;
}
.btn-check:checked + .label-webinar:focus, .btn-check:active + .label-webinar:focus, .label-webinar:active:focus, .label-webinar.active:focus, .show > .label-webinar.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(175, 167, 170, 0.5);
}
.label-webinar:disabled, .label-webinar.disabled {
  color: #262222;
  background-color: #C7BEC2;
  border-color: #C7BEC2;
}

.label-box-shadow-color {
  color: #000;
  background-color: #7a7a7a;
  border-color: #7a7a7a;
}
.label-box-shadow-color:hover {
  color: #262222;
  background-color: #8e8e8e;
  border-color: #878787;
}
.btn-check:focus + .label-box-shadow-color, .label-box-shadow-color:focus {
  color: #262222;
  background-color: #8e8e8e;
  border-color: #878787;
  box-shadow: 0 0 0 0.25rem rgba(104, 104, 104, 0.5);
}
.btn-check:checked + .label-box-shadow-color, .btn-check:active + .label-box-shadow-color, .label-box-shadow-color:active, .label-box-shadow-color.active, .show > .label-box-shadow-color.dropdown-toggle {
  color: #262222;
  background-color: #959595;
  border-color: #878787;
}
.btn-check:checked + .label-box-shadow-color:focus, .btn-check:active + .label-box-shadow-color:focus, .label-box-shadow-color:active:focus, .label-box-shadow-color.active:focus, .show > .label-box-shadow-color.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(104, 104, 104, 0.5);
}
.label-box-shadow-color:disabled, .label-box-shadow-color.disabled {
  color: #000;
  background-color: #7a7a7a;
  border-color: #7a7a7a;
}

.label-article {
  color: #262222;
  background-color: white;
  border-color: white;
}
.label-article:hover {
  color: #262222;
  background-color: white;
  border-color: white;
}
.btn-check:focus + .label-article, .label-article:focus {
  color: #262222;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(222, 222, 222, 0.5);
}
.btn-check:checked + .label-article, .btn-check:active + .label-article, .label-article:active, .label-article.active, .show > .label-article.dropdown-toggle {
  color: #262222;
  background-color: white;
  border-color: white;
}
.btn-check:checked + .label-article:focus, .btn-check:active + .label-article:focus, .label-article:active:focus, .label-article.active:focus, .show > .label-article.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(222, 222, 222, 0.5);
}
.label-article:disabled, .label-article.disabled {
  color: #262222;
  background-color: white;
  border-color: white;
}

.label-state-legislature-news {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}
.label-state-legislature-news:hover {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
}
.btn-check:focus + .label-state-legislature-news, .label-state-legislature-news:focus {
  color: #262222;
  background-color: #fbf3e0;
  border-color: #fbf2df;
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.btn-check:checked + .label-state-legislature-news, .btn-check:active + .label-state-legislature-news, .label-state-legislature-news:active, .label-state-legislature-news.active, .show > .label-state-legislature-news.dropdown-toggle {
  color: #262222;
  background-color: #fbf4e2;
  border-color: #fbf2df;
}
.btn-check:checked + .label-state-legislature-news:focus, .btn-check:active + .label-state-legislature-news:focus, .label-state-legislature-news:active:focus, .label-state-legislature-news.active:focus, .show > .label-state-legislature-news.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(218, 210, 191, 0.5);
}
.label-state-legislature-news:disabled, .label-state-legislature-news.disabled {
  color: #262222;
  background-color: #FAF1DB;
  border-color: #FAF1DB;
}

.label-gray-lighter {
  color: #262222;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}
.label-gray-lighter:hover {
  color: #262222;
  background-color: #f4f4f4;
  border-color: #f3f3f3;
}
.btn-check:focus + .label-gray-lighter, .label-gray-lighter:focus {
  color: #262222;
  background-color: #f4f4f4;
  border-color: #f3f3f3;
  box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.btn-check:checked + .label-gray-lighter, .btn-check:active + .label-gray-lighter, .label-gray-lighter:active, .label-gray-lighter.active, .show > .label-gray-lighter.dropdown-toggle {
  color: #262222;
  background-color: whitesmoke;
  border-color: #f3f3f3;
}
.btn-check:checked + .label-gray-lighter:focus, .btn-check:active + .label-gray-lighter:focus, .label-gray-lighter:active:focus, .label-gray-lighter.active:focus, .show > .label-gray-lighter.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 211, 211, 0.5);
}
.label-gray-lighter:disabled, .label-gray-lighter.disabled {
  color: #262222;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.label-gray-light {
  color: #262222;
  background-color: #e8e8e8;
  border-color: #e8e8e8;
}
.label-gray-light:hover {
  color: #262222;
  background-color: #ebebeb;
  border-color: #eaeaea;
}
.btn-check:focus + .label-gray-light, .label-gray-light:focus {
  color: #262222;
  background-color: #ebebeb;
  border-color: #eaeaea;
  box-shadow: 0 0 0 0.25rem rgba(203, 202, 202, 0.5);
}
.btn-check:checked + .label-gray-light, .btn-check:active + .label-gray-light, .label-gray-light:active, .label-gray-light.active, .show > .label-gray-light.dropdown-toggle {
  color: #262222;
  background-color: #ededed;
  border-color: #eaeaea;
}
.btn-check:checked + .label-gray-light:focus, .btn-check:active + .label-gray-light:focus, .label-gray-light:active:focus, .label-gray-light.active:focus, .show > .label-gray-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(203, 202, 202, 0.5);
}
.label-gray-light:disabled, .label-gray-light.disabled {
  color: #262222;
  background-color: #e8e8e8;
  border-color: #e8e8e8;
}

.label-gray {
  color: #262222;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}
.label-gray:hover {
  color: #262222;
  background-color: #dfdfdf;
  border-color: #dddddd;
}
.btn-check:focus + .label-gray, .label-gray:focus {
  color: #262222;
  background-color: #dfdfdf;
  border-color: #dddddd;
  box-shadow: 0 0 0 0.25rem rgba(190, 190, 190, 0.5);
}
.btn-check:checked + .label-gray, .btn-check:active + .label-gray, .label-gray:active, .label-gray.active, .show > .label-gray.dropdown-toggle {
  color: #262222;
  background-color: #e1e1e1;
  border-color: #dddddd;
}
.btn-check:checked + .label-gray:focus, .btn-check:active + .label-gray:focus, .label-gray:active:focus, .label-gray.active:focus, .show > .label-gray.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(190, 190, 190, 0.5);
}
.label-gray:disabled, .label-gray.disabled {
  color: #262222;
  background-color: #D9D9D9;
  border-color: #D9D9D9;
}

.btn-primary {
  color: white;
  background-color: #1A71AE;
  border-color: #1A71AE;
}
.btn-primary:hover {
  color: white;
  background-color: #155a8b;
  border-color: #155a8b;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: white;
  background-color: #155a8b;
  border-color: #155a8b;
  box-shadow: 0 0 0 0.25rem rgba(60, 134, 186, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: white;
  background-color: #124f7a;
  border-color: #124f7a;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 134, 186, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: white;
  background-color: #1A71AE;
  border-color: #1A71AE;
}
.btn-primary:visited {
  color: white;
}

.btn-secondary {
  color: #262222;
  background-color: #E9F1F7;
  border-color: #E9F1F7;
  color: #1A71AE;
}
.btn-secondary:hover {
  color: #262222;
  background-color: #edf4f9;
  border-color: #edf4f9;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #262222;
  background-color: #edf4f9;
  border-color: #edf4f9;
  box-shadow: 0 0 0 0.25rem rgba(204, 210, 215, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #262222;
  background-color: #f0f5f9;
  border-color: #f0f5f9;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(204, 210, 215, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #262222;
  background-color: #E9F1F7;
  border-color: #E9F1F7;
}
.btn-secondary:visited {
  color: #1A71AE;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-padding-top: 160px;
  scroll-margin-top: 160px;
}

body {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #fff;
  overflow-x: hidden;
  min-height: 100%;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
  max-height: 100vh;
}

.Normal,
.NormalDisabled,
.NormalDeleted {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1em;
  color: #262222;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

@supports (aspect-ratio: 1) {
  iframe[src*=youtube],
iframe[src*="youtu.be"],
iframe[src*=vimeo],
iframe[src*=facebook] {
    display: block;
    aspect-ratio: 16/9;
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-inline: auto;
  }
}
@supports not (aspect-ratio: 1) {
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 83vw;
  }
}
@media (max-width: 575.98px) {
  .container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: none;
  }
}

/* two columns */
@media (min-width: 992px) {
  .twocol {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
  .twocol p {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}
#page-64 .ncsl-content-wrapper {
  overflow-x: hidden;
}
@media (max-width: 575.98px) {
  #page-64 .ncsl-content-wrapper .container {
    padding-left: 0;
    padding-right: 0;
  }
  #page-64 .ncsl-content-wrapper .container .grid-spacer--56 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #page-64 .ncsl-content-wrapper .container .heading-card {
    padding: 1.875rem 1rem;
  }
}

.bg-banner-img {
  background: url("/Portals/_default/skins/ncsl/img/bg-search-home.png") no-repeat;
  background-size: cover;
}
.bg-banner-img h3, .bg-banner-img .h3 {
  text-align: center;
  padding-top: 1.25rem;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .bg-banner-img h3, .bg-banner-img .h3 {
    white-space: nowrap;
    margin-right: 2.5rem;
    text-align: right;
    padding-top: 0;
    margin-left: -2rem;
  }
}
@media (min-width: 1080px) and (max-width: 1199px) {
  .bg-banner-img h3, .bg-banner-img .h3 {
    margin-left: -3rem;
  }
}
@media (max-width: 575.98px) {
  .bg-banner-img h3, .bg-banner-img .h3 {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.show-read-more,
.read-more-wrap {
  margin-bottom: 2.8125rem;
}
@media (max-width: 767.98px) {
  .show-read-more,
.read-more-wrap {
    margin-bottom: 1.875rem;
  }
}

.cutoff-text {
  --max-lines: 13;
  --line-height: 1.5;
  max-height: calc(var(--max-lines) * 1em * var(--line-height));
  line-height: var(--line-height);
  overflow: hidden;
  position: relative;
  transition: all ease-in 3000ms;
  /*
    .continue-reading {  
      display: none;
      margin-top: 0;
      padding-top: 0;
      margin-bottom: 0;
      padding-bottom: 1rem;
      padding-right: 1.5rem;
      color: $primary;
    }
    */
}
.cutoff-text::before {
  content: "";
  position: absolute;
  height: calc(1em * var(--line-height));
  width: 100%;
  min-height: 270px;
  bottom: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgb(255, 255, 255) 3%, rgba(255, 255, 255, 0) 40%);
  z-index: 1;
}
.cutoff-text.expanded {
  max-height: none;
  /* Add continue button on read mores
      .continue-reading {
        display: flex;
        align-content: center;
        float: right;

        &::before {
          order: 2;
        }
      }
      */
}
.cutoff-text.expanded::before {
  display: none;
}

/* When less than 200 words hide fade to read more*/
.hide-before .cutoff-text::before {
  display: none;
}

.btn-toggle, .continue-reading {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  padding: 2rem 0;
  display: block;
  margin-top: -1.875rem;
  margin-bottom: -2rem;
}

.hide {
  display: none !important;
}
.hide.show {
  visibility: visible;
  display: inline-block !important;
}

/* VERY IMPORTNANT: FOR Charts and maps to render inside the toggle read more this CSS is vital to not having to reload the chart or map on click of read more */
.hideall {
  display: inline;
  position: fixed;
  left: 10000%;
  top: 0;
  /*fixes large white spaces before read more links */
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

/* OLD READ MORE TOGGGLE CSS
.collapse-text.show {

  .hideall {
      position:relative;
      left: auto; 
      overflow:visible!important;   
      clip:auto!important; 
      white-space: normal!important;   
  }

  .intro-teaser {
    display: none;
  }
}
*/
.dropdown-menu {
  list-style: none;
}

.show {
  visibility: visible;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  transition: height ease-in 300ms;
}

.modal-content {
  border: none;
  border-radius: 0.1875rem;
  box-shadow: 0 2px 4px 0 rgba(108, 117, 125, 0.5);
}
.modal-content .detailsTitle {
  font-size: 1.5rem;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.text-admin {
  color: #BB2D26;
  font-weight: bold;
  opacity: 0.5;
}

a,
a:visited {
  transition: all ease-in 300ms;
  color: #1A71AE;
}

p,
.p,
.p > p {
  color: #262222;
  line-height: 1.5;
  margin-bottom: 0.9375rem;
}
@media (min-width: 768px) {
  p,
.p,
.p > p {
    margin-bottom: 1.25rem;
  }
}

.p1,
p.large,
.p1 > p {
  line-height: 1.5625;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
}
@media (min-width: 768px) {
  .p1,
p.large,
.p1 > p {
    font-size: 1.125rem;
  }
}

.p2,
p.small,
.p2 > p {
  line-height: 1.25;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.875rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

h1,
.h1 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h1,
.h1 {
    font-size: 2.1875rem;
    line-height: 1.2;
  }
}

h2,
.h2 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h2,
.h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
}

h3,
.h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}

h4,
.h4 {
  font-size: 1rem;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h5,
.h5 {
  font-size: 0.875rem;
  line-height: 1.285;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h6,
.h6 {
  font-size: 0.75rem;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.heading-tag {
  background: #E9F1F7;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #1A71AE;
  padding: 0.25rem 1rem;
}
.heading-tag .Head {
  margin-bottom: 0;
}

.sub-text, .sub-text-sm {
  line-height: 1.25;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 0.875rem;
  font-style: italic;
}
.sub-text-sm {
  font-size: 0.75rem;
}

label,
.dnnLabel {
  font-size: 0.6875rem;
  line-height: 0.9375;
}

input[type="*"] {
  font-size: 0.75rem;
  line-height: 1.0625;
}

.error {
  font-size: 0.75rem;
}

.ncsl-content-wrapper {
  margin-bottom: 2.8125rem;
}
@media (min-width: 768px) {
  .ncsl-content-wrapper {
    margin: 0 5rem;
  }
}

.bg-box {
  background: #f2f2f2;
  padding: 1.875rem 1.25rem;
  margin-block: 1.56rem;
}

blockquote,
.blockquote,
blockquote p,
.blockquote p {
  font-family: "Merriweather", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 1.2;
  color: #262222;
  padding: 0;
  border-left: none;
}
[class^=icon-]:before,
[class*=" icon-"]:before {
  display: inline-block;
  font-family: "icons ncsl";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-primary::before {
  color: #1A71AE;
  display: block;
  font-size: 16px;
  content: "icon-primary";
}

.icon-secondary::before {
  color: #E9F1F7;
  display: block;
  font-size: 16px;
  content: "icon-secondary";
}

.icon-success::before {
  color: #1E5332;
  display: block;
  font-size: 16px;
  content: "icon-success";
}

.icon-danger::before {
  color: #BB2D26;
  display: block;
  font-size: 16px;
  content: "icon-danger";
}

.icon-dark::before {
  color: #262222;
  display: block;
  font-size: 16px;
  content: "icon-dark";
}

.icon-state-legislatures-news::before {
  color: #FAF1DB;
  display: block;
  font-size: 16px;
  content: "icon-state-legislatures-news";
}

.icon-news::before {
  color: #FAF1DB;
  display: block;
  font-size: 16px;
  content: "icon-news";
}

.icon-database::before {
  color: #ABC1CC;
  display: block;
  font-size: 16px;
  content: "icon-database";
}

.icon-event::before {
  color: #FCD9C7;
  display: block;
  font-size: 16px;
  content: "icon-event";
}

.icon-graphic::before {
  color: #FFFBCC;
  display: block;
  font-size: 16px;
  content: "icon-graphic";
}

.icon-podcast::before {
  color: #D7E7F3;
  display: block;
  font-size: 16px;
  content: "icon-podcast";
}

.icon-state-legislature-magazine::before {
  color: #E4ACA9;
  display: block;
  font-size: 16px;
  content: "icon-state-legislature-magazine";
}

.icon-magazine::before {
  color: #E4ACA9;
  display: block;
  font-size: 16px;
  content: "icon-magazine";
}

.icon-map::before {
  color: #D7C0A7;
  display: block;
  font-size: 16px;
  content: "icon-map";
}

.icon-members::before {
  color: #D9D9D9;
  display: block;
  font-size: 16px;
  content: "icon-members";
}

.icon-purchase::before {
  color: #1E5332;
  display: block;
  font-size: 16px;
  content: "icon-purchase";
}

.icon-table::before {
  color: #CAD8B7;
  display: block;
  font-size: 16px;
  content: "icon-table";
}

.icon-training::before {
  color: #A4B9AC;
  display: block;
  font-size: 16px;
  content: "icon-training";
}

.icon-video::before {
  color: #A8B1C8;
  display: block;
  font-size: 16px;
  content: "icon-video";
}

.icon-virtual::before {
  color: #C6E7DF;
  display: block;
  font-size: 16px;
  content: "icon-virtual";
}

.icon-webinar::before {
  color: #C7BEC2;
  display: block;
  font-size: 16px;
  content: "icon-webinar";
}

.icon-box-shadow-color::before {
  color: #7a7a7a;
  display: block;
  font-size: 16px;
  content: "icon-box-shadow-color";
}

.icon-article::before {
  color: white;
  display: block;
  font-size: 16px;
  content: "icon-article";
}

.icon-state-legislature-news::before {
  color: #FAF1DB;
  display: block;
  font-size: 16px;
  content: "icon-state-legislature-news";
}

.icon-gray-lighter::before {
  color: #f2f2f2;
  display: block;
  font-size: 16px;
  content: "icon-gray-lighter";
}

.icon-gray-light::before {
  color: #e8e8e8;
  display: block;
  font-size: 16px;
  content: "icon-gray-light";
}

.icon-gray::before {
  color: #D9D9D9;
  display: block;
  font-size: 16px;
  content: "icon-gray";
}

@media (max-width: 767.98px) {
  li {
    font-size: 0.875rem;
  }
}

.list-plain,
.Mod2sxcC ul:not(.list-unstyled):not(.dropdown-menu) {
  margin: 5px 0 1.875rem;
  position: relative;
  padding-left: 0.8125rem;
  list-style: none;
}
.list-plain.styled-list,
.Mod2sxcC ul:not(.list-unstyled):not(.dropdown-menu).styled-list {
  border-left: 3px solid #e8e8e8;
}
.list-plain.styled-list li:not(:last-child),
.Mod2sxcC ul:not(.list-unstyled):not(.dropdown-menu).styled-list li:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.list-plain ul,
.Mod2sxcC ul:not(.list-unstyled):not(.dropdown-menu) ul {
  border: none;
  margin-block: 1.25rem;
}
.list-plain li,
.Mod2sxcC ul:not(.list-unstyled):not(.dropdown-menu) li {
  position: relative;
  padding-left: 0.8125rem;
  margin-bottom: 0.5rem;
}
.list-plain li::before,
.Mod2sxcC ul:not(.list-unstyled):not(.dropdown-menu) li::before {
  content: "";
  display: inline-flex;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #262222;
  position: absolute;
  left: 0;
  top: 10px;
}

.lightbox {
  cursor: pointer;
}
.lightbox:hover {
  filter: brightness(0.5);
}

.figure-caption {
  text-decoration: none;
  font-style: italic;
  max-width: 800px;
  text-align: center;
  margin: 0.8125rem auto 2.8125rem;
}

#tablesettings,
.table-wrapper {
  overflow-y: scroll;
  cursor: -webkit-grab;
  cursor: grab;
  width: 100%;
  max-height: 80vh;
  margin-bottom: 1.875rem;
}

.table-title {
  border-bottom: 3px solid #e8e8e8;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}

table,
.table-row {
  background-color: #fff;
  caption-side: top;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.875rem;
  position: relative;
}
@media (max-width: 767.98px) {
  table,
.table-row {
    margin-bottom: 1.56rem;
  }
}

table caption {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Merriweather", serif;
  color: #262222;
  max-width: 100vw;
  border-bottom: 3px solid #e8e8e8;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
@media (max-width: 767.98px) {
  table caption {
    font-size: 1.25rem;
  }
}
table thead > tr {
  border-bottom: 1px solid #e8e8e8;
}
table .tbody th,
table tbody th[scope=row] {
  background: inherit !important;
  position: initial !important;
  vertical-align: top !important;
}
table tr {
  text-align: left;
}
table tr:nth-child(even) {
  background: #f2f2f2;
}
table tr p:last-child {
  margin-bottom: 0;
}
table tr td {
  padding: 0.8125rem;
  font-size: 0.875rem;
  vertical-align: top;
}
table tr td:nth-child(even) {
  background: rgba(232, 232, 232, 0.45);
}
table tr td i {
  font-size: 0.875rem;
}
table tr td h6, table tr td .h6,
table tr td h5,
table tr td .h5 {
  margin-bottom: 0;
}
table tr th {
  padding: 0.8125rem;
  line-height: 1rem;
  font-size: 0.875rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}
table tr th * {
  font-size: 0.875rem;
}
table tr .table-row--header {
  border-bottom: 1px solid #e8e8e8;
}
table tr .sc-menu .table-row-icons div {
  width: auto !important;
}
table tr .icon-add-row::before {
  content: "Add Row";
  border-radius: 0;
  font-family: arial, sans-serif;
  width: 100px;
  font-weight: bold;
  display: inline-block;
}

/* fixing background of table caption when there isn't a thead */
table:not(:has(thead)) caption {
  background-color: white;
}

.tinymce-container table caption,
.mce-item-table:not([border]) caption {
  z-index: initial !important;
  position: initial !important;
}

.modal-body {
  font-size: 0.875rem;
}

.modal-header .close {
  border: none;
  font-size: 1.5rem;
  line-height: 1em;
  background: none;
}
.modal-header .close:hover {
  color: #1A71AE;
}

a.skip-main {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

a.skip-main:focus,
a.skip-main:active {
  position: absolute;
  top: 0;
  left: 50%;
  width: auto;
  height: auto;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #1A71AE;
  z-index: 999;
}

a.skip-main:focus {
  -webkit-text-decoration: dotted underline currentColor 2px;
          text-decoration: dotted underline currentColor 2px;
  text-underline-offset: 2px;
}

a.skip-main:active {
  -webkit-text-decoration: solid underline currentColor 1px;
          text-decoration: solid underline currentColor 1px;
}

.line-thru {
  position: relative;
  opacity: 1;
}
.line-thru::after {
  content: "";
  position: absolute;
  border-bottom: 1px solid #e8e8e8;
  top: 50%;
  width: 100%;
  left: 0;
}
.line-thru span {
  background: #fff;
  padding: 0 0.9375rem;
  margin-left: 8%;
  position: relative;
  z-index: 2;
}

.icons-list {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .icons-list {
    justify-content: center;
    margin: 1rem 0;
  }
}
.icons-list--intro {
  margin-right: 1.56rem;
  white-space: nowrap;
}
.icons-list--list {
  display: flex;
  align-items: center;
  margin: 0;
}
.icons-list--item {
  padding-inline: 0.625rem;
}
.icons-list--item i {
  font-size: 22px;
}
.icons-list--item i::before {
  color: #E9F1F7;
}

/* ------------------------------------
// Utility: AddThis Social Share script used on EDN pages
// ------------------------------------ */
.addthis-smartlayers {
  left: 3.35rem !important;
}
.addthis-smartlayers .at4-share {
  left: 3.35rem !important;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.125);
  z-index: 1;
  display: block;
  width: 5rem !important;
  text-align: center;
  padding: 1rem 1rem 0 !important;
}
.addthis-smartlayers #at4-share {
  background: white;
  top: 5% !important;
  margin-top: 205px !important;
}
.addthis-smartlayers .at-share-close-control {
  right: 1rem;
  bottom: 3px;
}
.addthis-smartlayers .at4-share-title {
  margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .site-logo {
    max-height: 40px;
    margin-left: 1rem;
  }
}

#siteheader {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  background: #fff;
  height: 60px;
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 768px) {
  #siteheader {
    height: 100px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 111;
  }
}
@media (min-width: 992px) {
  #siteheader {
    height: 140px;
  }
}

.navbar-right {
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: 100%;
}

.navbar .navbar-collapse .nav-top.navbar-nav {
  display: flex;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) {
  .navbar .navbar-collapse .nav-top.navbar-nav {
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    gap: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  .navbar .navbar-collapse .nav-top.navbar-nav {
    order: 2;
  }
}
.navbar .navbar-collapse .nav-top.navbar-nav .nav-link {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: normal;
}
@media (min-width: 768px) {
  .navbar .navbar-collapse .nav-top.navbar-nav .nav-link {
    font-size: 0.875rem;
  }
}
@media (max-width: 767.98px) {
  .navbar .navbar-collapse .nav-top.navbar-nav a.btn {
    background: none;
    text-align: left;
    margin-left: 0.5rem;
    border: none;
    padding: 0.75rem 1rem;
    font-weight: normal;
    color: #1A71AE;
  }
}

.navbar-toggler {
  z-index: 99;
  position: absolute;
  right: 0.95rem;
  top: 1rem;
  padding-right: 0;
  padding-left: 0;
}
.navbar-toggler:focus:not(:focus-visible) {
  box-shadow: none !important;
  outline: none;
}
.navbar-toggler .navbar-toggler-icon, .navbar-toggler .navbar-toggler-icon:after, .navbar-toggler .navbar-toggler-icon:before {
  position: relative;
  background: #1A71AE;
  width: 33px;
  height: 3px;
  margin: 0px 0 2px;
}
.navbar-toggler .navbar-toggler-icon:after, .navbar-toggler .navbar-toggler-icon:before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  margin-top: 2px;
}
.navbar-toggler .navbar-toggler-icon:after {
  top: auto;
  bottom: -9px;
}

.navbar {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  padding: 0;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  min-height: 60px;
}
.navbar .navbar-collapse {
  display: flex;
  justify-content: end;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .navbar .navbar-collapse {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
  }
}
@media (max-width: 767.98px) {
  .navbar .navbar-collapse.show > .navbar-nav {
    transition: all ease-in 300ms;
    opacity: 1;
    bottom: auto;
    top: 60px;
  }
}
.navbar .navbar-collapse .navbar-nav {
  width: 100%;
  margin-left: 0;
}
@media (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    justify-content: end;
  }
}
.navbar .navbar-collapse .navbar-nav:last-child {
  order: 1;
}
@media (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item:last-child a.nav-link {
    margin-right: -1rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-link {
  color: #262222;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-link {
    font-weight: 700;
    font-family: "Merriweather", serif;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767.98px) {
  .navbar .navbar-collapse .navbar-nav .nav-link {
    border-bottom: 1px solid #e8e8e8;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-link.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.navbar .navbar-collapse .navbar-nav .nav-link.dropdown-toggle::after {
  border-left-color: #1A71AE;
}
@media (min-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-link.dropdown-toggle::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar .navbar-collapse .navbar-nav .nav-link.dropdown-toggle.show {
    font-size: 0.875rem;
    padding-left: 1.125rem;
    padding-top: 0.6875rem;
    padding-bottom: 0.6875rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-link.dropdown-toggle.show::after {
  position: absolute;
  left: 1em;
  transform: rotate(180deg);
}
.navbar .navbar-collapse .navbar-nav a:visited,
.navbar .navbar-collapse .navbar-nav .nav-link:visited {
  color: #262222;
}
.navbar .navbar-collapse .navbar-nav a.active, .navbar .navbar-collapse .navbar-nav a:hover, .navbar .navbar-collapse .navbar-nav a:focus,
.navbar .navbar-collapse .navbar-nav .nav-link.active,
.navbar .navbar-collapse .navbar-nav .nav-link:hover,
.navbar .navbar-collapse .navbar-nav .nav-link:focus {
  color: #1A71AE;
}
.navbar .navbar-collapse .navbar-nav a:focus, .navbar .navbar-collapse .navbar-nav a:focus-visible,
.navbar .navbar-collapse .navbar-nav .nav-link:focus,
.navbar .navbar-collapse .navbar-nav .nav-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
@supports selector(:focus-visible) {
  .navbar .navbar-collapse .navbar-nav a:focus:not(:focus-visible),
.navbar .navbar-collapse .navbar-nav .nav-link:focus:not(:focus-visible) {
    outline: 0;
  }
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 0 1rem;
  box-shadow: 0 2px 4px 0 rgba(217, 217, 217, 0.5);
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu[data-bs-popper] {
  left: auto;
  right: 0;
  top: auto;
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 767.98px) {
  .navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    padding: 0.6rem 0.375rem;
    font-size: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item:hover {
  background: none;
  color: #1A71AE;
}
.navbar .navbar-collapse.show {
  transition: all ease-in 300ms;
  opacity: 1;
  bottom: auto;
  top: 60px;
  pointer-events: all;
}

/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}
.search-box {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  border-radius: 3px;
  height: 2rem;
  box-shadow: 0 0px 0 0 transparent;
  position: relative;
  transition: none;
}
@media (max-width: 767.98px) {
  .search-box {
    margin: 0.5rem 1rem;
    box-shadow: 0 2px 0 0 #004C97;
    height: 2.25rem;
  }
}
.search-box .form-label {
  width: 2rem;
  height: 2rem;
  color: #1A71AE;
  font-size: 0.875rem;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .search-box .form-label {
    background: #1A71AE;
    color: white;
    height: 2.25rem;
  }
}
.search-box .search-btn {
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  bottom: 0;
  pointer-events: all;
  z-index: 2;
}
@media (min-width: 768px) {
  .search-box .search-btn {
    display: none;
    opacity: 0;
    transition: all ease-in 300ms;
  }
}
.search-box .btn-link {
  padding: 0.375rem 0.5rem;
  height: 100%;
  width: 35px;
}
.search-box.open {
  box-shadow: 0 2px 0 0 #004C97;
  width: 350px;
  transition: all ease-in 300ms;
  transition-delay: 300ms;
}
.search-box.open .form-label {
  position: relative;
  z-index: 10;
  width: 350px;
  margin-bottom: 0;
}
.search-box.open .form-label .search-text {
  display: block;
}
.search-box.open .form-label .icon-search::before {
  left: 0.75rem;
}
.search-box.open .search-btn {
  display: block;
  opacity: 1;
}
.search-box.open .btn-link {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
.search-box.open .btn-link .icon-search {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.375rem 0.5rem;
  pointer-events: all;
}
.search-box .form-control {
  position: absolute;
  right: 0;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 0.75rem;
  color: #262222;
  height: 2rem;
  width: 350px;
}
@media (min-width: 768px) {
  .search-box .form-control {
    display: none;
    padding-left: 2rem;
  }
}
@media (max-width: 767.98px) {
  .search-box .form-control {
    width: 100%;
    border-color: #D9D9D9;
    height: 2.25rem;
    display: block !important;
  }
}
.search-box .form-control.show {
  display: block;
  padding-right: 100px;
  border-color: #D9D9D9;
}

/* blocking NCSL users from seeing the template pages */
.site-footer {
  background: #1A71AE;
  padding-block: 3.125rem;
}
.site-footer *:not(.icon-img a, .icon-img i):not(.btn) {
  color: #fff;
}
.site-footer h6, .site-footer .h6 {
  margin-bottom: 0.3925rem;
}
.site-footer .btn-secondary {
  margin-bottom: 1.56rem !important;
  color: #1A71AE !important;
  margin: 0 auto;
}
.site-footer .icon-img a {
  color: #E9F1F7;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.site-footer .icon-img a:hover {
  color: #E9F1F7;
}
.site-footer .img-item {
  filter: brightness(100);
}
.site-footer .footer-block {
  font-size: 0.875rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .site-footer .footer-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .site-footer .footer-block {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .site-footer .footer-block--section {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .site-footer .footer-block--section {
    flex: 51.5%;
  }
  .site-footer .footer-block--section:first-child {
    flex: 40%;
  }
}
@media (max-width: 767.98px) {
  .site-footer .footer-block .address-wrapper {
    display: none;
  }
}
.site-footer .footer-block .address-wrapper .close-modal {
  display: none;
}
.site-footer .footer-block .address-wrapper.show {
  display: block !important;
  position: absolute;
  width: 95vw;
  bottom: 1rem;
  background: white;
  padding: 1.875rem 1.56rem 0;
}
.site-footer .footer-block .address-wrapper.show .footer-block--address {
  display: flex;
  justify-content: space-between;
  text-align: left;
  align-items: center;
}
.site-footer .footer-block .address-wrapper.show .footer-block--address:first-of-type {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 1.56rem;
}
.site-footer .footer-block .address-wrapper.show .close-modal {
  display: block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 28px;
}
.site-footer .footer-block .address-wrapper.show * {
  color: #262222;
}
.site-footer .footer-block .address-wrapper.show a {
  color: #1A71AE;
}
.site-footer .footer-block--logo {
  margin-bottom: 1.875rem;
  margin-left: -0.8rem;
}
.site-footer .footer-block--address {
  min-width: 217px;
}
.site-footer--copyright {
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer--copyright {
    margin-left: 45%;
    text-align: left;
  }
}
.site-footer--copyright .privacy-item {
  margin-left: 0.8125rem;
  margin-right: 0.8125rem;
  font-size: 0.75rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .site-footer--copyright .privacy-item {
    margin-right: 1.25rem;
    margin-left: 0;
  }
}
.site-footer--copyright a {
  text-decoration: underline;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #262222;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #262222;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #262222;
}

:-moz-placeholder { /* Firefox 18- */
  color: #262222;
}

::-moz-selection {
  border: 2px solid rgba(26, 113, 174, 0.25);
  background: #a8d1ff;
}

::selection {
  border: 2px solid rgba(26, 113, 174, 0.25);
  background: #a8d1ff;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid rgba(26, 113, 174, 0.25);
  border-radius: 0.25rem;
}

.skin .bootstrap-select .dropdown-toggle:focus, .skin .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: thin dotted #a8d1ff !important;
  outline-offset: 0px;
}

.dropdown-toggle:not(.nav-link) {
  border-radius: 0.1875rem;
  box-shadow: 0 2px 4px 0 rgba(217, 217, 217, 0.5);
}
.dropdown-toggle:not(.nav-link)::after {
  content: "A";
  font-family: "icons ncsl";
  border: none;
  position: absolute;
  color: #1A71AE;
  right: 0.8125rem;
}
.dropdown-toggle:not(.nav-link).show {
  border-color: #1A71AE;
  box-shadow: 0 2px 0 0 #1A71AE;
}
.dropdown-toggle:not(.nav-link).show::after {
  transform: rotate(180deg);
}

.dnnFormItem table {
  border: 0;
}
.dnnFormItem table td, .dnnFormItem table th {
  padding: 0.1rem;
  vertical-align: middle;
}
.dnnFormItem table td:nth-child(3), .dnnFormItem table th:nth-child(3) {
  display: none;
}
.dnnFormItem table input[type=text] {
  margin-bottom: 0;
}

.DnnModule-LiveForms {
  z-index: 100021 !important;
}

.btn-toggle-icon {
  position: fixed;
  z-index: 112;
}
.btn-toggle-icon:not(.btn-top) {
  top: 460px;
}
@media (max-width: 575.98px) {
  .btn-toggle-icon {
    bottom: 80px;
    top: auto !important;
  }
}
@media (min-width: 710px) and (max-width: 992px) {
  .btn-toggle-icon.form-toggle_news, .btn-toggle-icon.form-toggle_wide {
    left: 4.25rem;
  }
}
@media (max-width: 709px) {
  .btn-toggle-icon.form-toggle_news, .btn-toggle-icon.form-toggle_wide {
    left: 0.25rem;
    top: 80% !important;
  }
}
@media (min-width: 993px) {
  .btn-toggle-icon.form-toggle_wide {
    margin-left: -85px;
  }
}
.btn-toggle-icon .toggle-icon {
  font-size: 1.7rem;
  line-height: 60px;
  color: #1A71AE;
  background: #f2f2f2;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  box-shadow: 0 2px 1px 0 rgba(122, 122, 122, 0.5);
  border: none;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-toggle-icon .toggle-icon:hover {
  background: #E9F1F7;
}
.btn-toggle-icon.btn-top {
  bottom: 10vh;
  right: 4vw;
}
.btn-toggle-icon.btn-top .icon-arrow-up {
  display: block;
  background: #1A71AE;
  color: white;
  text-align: center;
}

@media (min-width: 710px) and (max-width: 992px) {
  .Mod2sxcC #messageicon {
    margin-left: -45px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .Mod2sxcC #messageicon {
    margin-left: -67px;
  }
}

#LiveForm1120,
.LiveForm.Default > div {
  display: none;
}
#LiveForm1120 .page-break-section,
.LiveForm.Default > div .page-break-section {
  padding-top: 1.5rem;
}

#LiveForm1120,
.LiveForm.Default > div,
.LiveForm.Default .thank-you {
  position: fixed;
  z-index: 111;
  width: 270px;
  top: 25vh;
  left: 0;
}

[data-admin=true] #LiveForm1120,
[data-admin=true] .LiveForm.Default > div,
[data-admin=true] .LiveForm.Default .thank-you {
  left: 80px;
}

.form-title {
  background: #1A71AE;
  color: white;
  font-weight: 700;
  position: absolute;
  top: -30px;
  left: -15px;
  width: 270px;
  padding: 0.5rem 1rem;
}
.form-title i {
  position: absolute;
  right: 0.75rem;
  background: white;
  color: #1A71AE;
  transform: rotate(180deg);
  padding: 0.15rem 0.3rem;
  line-height: 0rem;
  border-radius: 0.15rem;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-title i:hover {
  background: #E9F1F7;
}

.thank-you .form-title {
  left: 0;
}

[data-authenticated=true] #LiveForm1120,
[data-authenticated=true] #dnn_ctr1120_ModuleContent .LiveForm.Default .thank-you {
  left: 80px;
}

.skin .LiveForm.Default ul.page-break-section .Field {
  padding: 10px 15px 0px;
}

.skin .LiveForm.Default .Field.Matrix.Checkb.Required table, .skin .LiveForm.Default .Field.Matrix.Radiob.Required table, .skin .LiveForm.Default .Field.Required input, .skin .LiveForm.Default .Field.Required textarea, .skin .LiveForm.Default .Field.Required .plupload_filelist_footer, .skin .LiveForm.Default .Field.Required select, .skin .LiveForm.Default .Field.Required.Radiobutton table, .skin .LiveForm.Default .Field.Required.Checkbox table, .skin .LiveForm.Default .Field.Required.ScaleRating table, .skin .LiveForm.Default .Field.Required .StarRatingRequired, .skin.LiveForm.Default .ElectronicSignature.Required .jSignature, .skin .LiveForm.Default .Field.Required tags {
  border-left: 1px solid;
  border-radius: 0.1875rem;
  border-color: #dee2e6;
  padding: 0.25rem;
}

.skin .LiveForm.Default input, .skin .LiveForm.Default select:not([size]) {
  height: 30px;
}

.skin .LiveForm.Default input[type=submit], .skin .LiveForm.Default input[type=button] {
  background: #1A71AE;
}/*# sourceMappingURL=skin.css.map */

.rateit {
    display: -moz-inline-box;
    display: inline-block;
    position: relative;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.rateit .rateit-range
{
    position: relative;
    display: -moz-inline-box;
    display: inline-block;
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif");
    height: 16px;
    outline: none;
}

.rateit .rateit-range * {
    display:block;
}

/* for IE 6 */
* html .rateit, * html .rateit .rateit-range
{
    display: inline;
}

/* for IE 7 */
* + html .rateit, * + html .rateit .rateit-range
{
    display: inline;
}

.rateit .rateit-hover, .rateit .rateit-selected
{
    position: absolute;
    left: 0px;
}

.rateit .rateit-hover-rtl, .rateit .rateit-selected-rtl
{
    left: auto;
    right: 0px;
}

.rateit .rateit-hover
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif") left -32px;
}

.rateit .rateit-hover-rtl
{
    background-position: right -32px;
}

.rateit .rateit-selected
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif") left -16px;
}

.rateit .rateit-selected-rtl
{
    background-position: right -16px;
}

.rateit .rateit-preset
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif") left -48px;
}

.rateit .rateit-preset-rtl
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/star.gif") left -48px;
}

.rateit button.rateit-reset
{
    background: url("/DesktopModules/EasyDNNnews/static/rateit/css/delete.gif") 0 0;
    width: 16px;
    height: 16px;
    display: -moz-inline-box;
    display: inline-block;
    float: left;
    outline: none;
    border:none;
    padding: 0;
}

.rateit button.rateit-reset:hover, .rateit button.rateit-reset:focus
{
    background-position: 0 -16px;
}



/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0");src:url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format('embedded-opentype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0") format('woff2'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0") format('woff'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0") format('truetype'),url("/DesktopModules/EasyDNNNews/static/font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}

@import url("/DesktopModules/EasyDNNNews/static/font-awesome/css/font-awesome.min.css");
.eds_modalWrapper {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99999;
  transition: all 200ms ease-in 0s;
  opacity: 0;
  visibility: hidden;
}
.eds_modalWrapper * {
  box-sizing: content-box;
}
.eds_modalWrapper *.eds_attendantsPrices li input[type=text] {
  width: 35px;
}
.eds_modalWrapper .eds_modalContent {
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 6% auto;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  display: none;
  box-sizing: border-box;
  font-family: Arial;
  color: #7b7b7b;
  font-size: 12px;
  text-align: left;
}
.eds_modalWrapper .eds_modalContent > div {
  padding: 20px 20px 0;
  position: relative;
  overflow: auto;
}
.eds_modalWrapper .eds_modalContent .dnnLabel {
  margin: 0;
  padding: 0;
  text-align: left;
  width: auto;
}
.eds_modalWrapper .eds_modalContent .dnnFormHelp {
  right: 8px;
}
.eds_modalWrapper .eds_modalContent .dnnTooltip {
  display: inline;
}
.eds_modalWrapper .eds_modalContent > h3 {
  background-color: #189fd3;
  color: #fff !important;
  font: normal 18px/50px Arial !important;
  font-weight: normal;
  margin: 0;
  padding: 0 20px;
  letter-spacing: normal;
  border-radius: 3px 3px 0 0;
  height: 50px;
}
.eds_modalWrapper .eds_modalContent > h3::before {
  font-family: "FontAwesome";
  color: #fff;
  padding-right: 15px;
  font-size: 30px;
  line-height: 50px;
  vertical-align: middle;
}
.eds_modalWrapper .eds_modalContent > h3 > span,
.eds_modalWrapper .eds_modalContent > h3 > label {
  color: inherit;
  font: inherit;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
  background: none #F9F9F9;
  border: solid 1px #ddd;
  border-radius: 3px;
  box-shadow: none;
  line-height: 1;
  font-family: Arial;
  font-size: 12px;
  text-shadow: none;
  color: #444;
  margin: 0;
  padding: 0 10px;
  box-sizing: border-box;
  width: 240px;
  transition: box-shadow 200ms linear;
}
.eds_modalWrapper .eds_modalContent input[type=text]:hover,
.eds_modalWrapper .eds_modalContent textarea:hover,
.eds_modalWrapper .eds_modalContent select:hover {
  border: solid 1px #C1C1C1;
  box-shadow: none;
  color: #444;
  background: none #F9F9F9;
}
.eds_modalWrapper .eds_modalContent input[type=text]:focus,
.eds_modalWrapper .eds_modalContent textarea:focus,
.eds_modalWrapper .eds_modalContent select:focus {
  border: solid 1px #BABDC9;
  box-shadow: 0 0 3px #98ACF4;
  background: transparent #fff;
  color: #444;
}
.eds_modalWrapper .eds_modalContent input[type=text]:disabled,
.eds_modalWrapper .eds_modalContent textarea:disabled,
.eds_modalWrapper .eds_modalContent select:disabled {
  color: #929292;
  text-shadow: 1px 1px 0 #fff;
  cursor: not-allowed;
}
.eds_modalWrapper .eds_modalContent input[type=text].eds_numberOfTickets {
  width: 45px;
  border-right-width: 3px;
  border-right-color: #f00;
}
.eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent select {
  height: 26px;
  padding-right: 0;
  width: 240px;
}
.eds_modalWrapper .eds_modalContent textarea {
  padding: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent input[type=text],
.eds_modalWrapper .eds_modalContent textarea,
.eds_modalWrapper .eds_modalContent select {
    width: 100% !important;
  }
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper {
  text-align: right;
  margin: 20px 0;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button],
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  box-shadow: none !important;
  border: none !important;
  border-radius: 3px !important;
  font-family: Arial !important;
  font-size: 16px !important;
  font-weight: normal !important;
  line-height: 48px !important;
  text-shadow: none !important;
  padding: 0 30px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-transform: none !important;
  margin: 0 !important;
  height: auto !important;
  transition: all 100ms linear !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit] {
  background: none #189fd3 !important;
  color: #fff !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper input[type=submit]:hover {
  background: none #2cb3e7 !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose {
  margin-right: 20px !important;
  background: none #e9e9ed !important;
  color: #7b7b7b !important;
}
.eds_modalWrapper .eds_modalContent .edn_bottomButtonWrapper button[type=button].eds_modalClose:hover {
  background: none #d0d0d7 !important;
}
.eds_modalWrapper .eds_modalContent input[type=radio] + label,
.eds_modalWrapper .eds_modalContent input[type=checkbox] + label {
  line-height: 22px;
  margin-left: 3px;
  font-weight: normal;
  display: inline-block;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput {
  margin: 0 0 10px;
  padding: 0;
  white-space: nowrap;
  position: relative;
  font-size: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput::after {
  display: block;
  content: "";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput .HTMLeditor,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnLeft,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > .dnnRight {
  float: none;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
  font-size: 11px;
  line-height: 1;
  color: #C42323;
  margin-left: 8px;
  width: auto !important;
  display: inline;
  margin: 0;
  font-weight: normal;
  margin-left: 5px;
  position: absolute;
  left: 165px;
  bottom: -5px;
  top: auto;
  text-shadow: 0px 0px 2px #fff;
  transition: opacity 200ms ease;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select ~ span {
    bottom: auto;
    left: auto;
    right: 10px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput input:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput textarea:focus ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput select:focus ~ span {
  opacity: 0.1;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo {
  font-size: 12px;
  line-height: 1;
  color: #3b3b3b;
  margin: 0 0 7px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo > span {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal {
  font-weight: bold;
  font-size: 16px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_paymentInfo.eds_estimatedTotal > span {
  color: #e3011f;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > div,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    width: 100%;
    clear: both;
    float: none;
    display: block;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > span {
  width: auto;
  white-space: normal;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  line-height: 1.3;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > input,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_noWidthLabel > label {
  vertical-align: top;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 > span {
  width: 100px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 select,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea {
  width: 280px;
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
  left: 125px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 input ~ span,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_labelWidth100 textarea ~ span {
    left: auto;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
  width: 440px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput input[type=text],
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput select {
    width: 280px;
  }
}
.eds_modalWrapper .eds_modalContent .eds_labelAndInput.eds_bigInput textarea {
  height: 110px;
}
.eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
  font-family: Arial;
  font-size: 13px;
  line-height: 26px;
  color: #7B7B7B;
  width: 140px;
  display: inline-block;
  margin: 0 15px 0 0;
  vertical-align: top;
  font-weight: bold;
  text-decoration: none;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .eds_modalContent label,
.eds_modalWrapper .eds_modalContent .eds_labelAndInput > span {
    display: block;
    width: 100%;
  }
}
.eds_modalWrapper .eds_modalContent a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnForm .dnnFormItem a.dnnFormHelp,
.eds_modalWrapper .eds_modalContent .dnnTooltip label a.dnnFormHelp {
  font-family: Arial;
  font-size: 13px;
  line-height: 1;
  color: #7B7B7B;
}
.eds_modalWrapper .eds_modalContent > div .eds_eventRegistrationLoading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5) url("/DesktopModules/EasyDNNNews/static/common/images/eventRegistrationLoading.gif") no-repeat center center;
}
.eds_modalWrapper .edn_errorMessage {
  font-family: Arial;
  line-height: 1;
  font-size: 11px;
  color: #AB1111;
  margin-left: 10px;
}
@media handheld, only screen and (max-width: 768px), only screen and (max-device-width: 768px) {
  .eds_modalWrapper .edn_errorMessage {
    display: block;
    margin-top: 2px;
    margin-left: 0;
  }
}
.eds_modalWrapper .eds_closeWindowButtonOuter {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  text-align: center;
  border: solid 1px #115f7d;
  border-radius: 3px;
  line-height: 0 !important;
  font-size: 0 !important;
  cursor: pointer;
  background: none transparent;
  transition: background 100ms linear;
}
.eds_modalWrapper .eds_closeWindowButtonOuter::before {
  font-family: "FontAwesome";
  color: #fff;
  font-size: 22px;
  line-height: 28px;
  content: "\f00d";
}
.eds_modalWrapper .eds_closeWindowButtonOuter:hover {
  background-color: #115f7d;
}
.eds_modalWrapper .edNews_tooltipContent {
  border-radius: 5px;
  border: 1px solid #B8D5E0;
  background: #0A445B;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  max-width: 350px;
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 16px;
  padding: 5px 8px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms;
  top: auto;
  bottom: 100%;
  z-index: 999;
}
.eds_modalWrapper .edNews_tooltip {
  position: relative;
}
.eds_modalWrapper .edNews_tooltip::after {
  position: absolute;
  top: 0;
  left: auto;
  right: -6px;
  display: block;
  background: none;
  content: "\f059";
  font: 16px/1 "FontAwesome";
  text-align: center;
  padding: 0;
  color: #555;
  transition: color ease-in-out 0.4s;
}
.eds_modalWrapper .edNews_tooltip:hover .edNews_tooltipContent {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper .eds_labelAndInput:first-child .edNews_tooltipContent {
  top: 100%;
  bottom: auto;
}
.eds_modalWrapper .eds_updateProfile {
  font-size: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-align: right;
  float: right;
  margin: 11px 70px 0 0;
}
.eds_modalWrapper .eds_updateProfile > a {
  text-decoration: underline;
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  display: inline-block;
  background: url("/DesktopModules/EasyDNNNews/static/common/images/user.png") no-repeat 0 0;
  padding: 1px 0 0 22px;
}
.eds_modalWrapper .eds_updateProfile > a:hover {
  text-decoration: none;
}
.eds_modalWrapper .eds_infoMessages {
  margin: 10px 0;
  display: block;
  line-height: 1.1 !important;
  font-size: 16px !important;
  color: #fff !important;
  padding: 15px 25px;
  border-radius: 2px;
  margin: 5px;
}
.eds_modalWrapper .eds_infoMessages::before {
  font-size: 21px;
  color: #fff !important;
  font-family: "FontAwesome";
  padding-right: 20px;
  line-height: 1;
}
.eds_modalWrapper .eds_infoMessages.eds_success {
  background-color: #00be9c;
}
.eds_modalWrapper .eds_infoMessages.eds_success::before {
  content: "\f058";
}
.eds_modalWrapper .eds_infoMessages.eds_info {
  background-color: #189fd3;
}
.eds_modalWrapper .eds_infoMessages.eds_info::before {
  content: "\f05a";
}
.eds_modalWrapper .eds_infoMessages.eds_warning {
  background-color: #f3c500;
}
.eds_modalWrapper .eds_infoMessages.eds_warning::before {
  content: "\f071";
}
.eds_modalWrapper .eds_infoMessages.eds_error {
  background-color: #e07171;
}
.eds_modalWrapper .eds_infoMessages.eds_error::before {
  content: "\f06a";
}
.eds_modalWrapper .eds_formStatus {
  padding-bottom: 15px;
}
.eds_modalWrapper .edNews_eventDateRestriction {
  margin: 10px 0 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table {
  width: 100%;
  border: solid 1px #ffffff;
  box-shadow: 0 0 0 1px #E9E9E9;
  margin-bottom: 10px;
  border-collapse: collapse;
  border-spacing: 0;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td {
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  border: none;
  border-bottom: solid 1px #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td:first-child {
  background-color: #F4F4F4;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr > td input[type=radio] {
  margin: 10px;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td {
  border-bottom: solid 1px #fff;
  background-color: #E6E6E6;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:nth-child(odd) > td:first-child {
  background-image: linear-gradient(to top right, #F4F4F4, #F4F4F4 50%, #E6E6E6 50%, #E6E6E6);
  border-bottom-color: #F4F4F4;
  position: relative;
}
.eds_modalWrapper .edNews_eventDateRestriction > table > tbody > tr:last-child > td {
  border-bottom: none;
}
.eds_modalWrapper .eds_styledRadio {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio * {
  vertical-align: middle;
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio *::before,
.eds_modalWrapper .eds_styledRadio *::after {
  box-sizing: border-box;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] {
  display: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label {
  display: inline-block;
  position: relative;
  margin: 0;
  vertical-align: baseline;
  border-radius: 50% 0 0 50%;
  padding: 2px 0 0 25px;
  min-height: 25px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before, .eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #fff;
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  transition: all ease-in-out 0.2s;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::before {
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label::after {
  border: 2px solid #919191;
  background: transparent;
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::before {
  background: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio] + label:hover::after {
  border-color: #60cb20 !important;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::before {
  background: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:checked + label::after {
  border-color: #189fd3;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled {
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio input[type=radio]:disabled + label {
  opacity: 0.6;
  pointer-events: none;
}
.eds_modalWrapper .eds_styledRadio.eds_noLabel {
  overflow: hidden;
  width: 22px;
  height: 22px;
}
.eds_modalWrapper .eds_preview_cell_title_disabled {
  opacity: 0.6;
}
.eds_modalWrapper.eds_modalVisible {
  opacity: 1;
  visibility: visible;
}
.eds_modalWrapper.eds_modalVisible .eds_modalContent {
  display: block;
}
.eds_modalWrapper.eds_contactForm .eds_modalContent > h3::before {
  content: "\f0e0";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > h3::before {
  content: "\f022";
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div {
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p {
  margin: 0;
  padding: 0;
  color: #7b7b7b;
}
.eds_modalWrapper.eds_authorProfileFullInfo .eds_modalContent > div p + p {
  margin-top: 15px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent {
  width: 90%;
  max-width: 1200px;
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent > h3::before {
  content: "\f085";
}
.eds_modalWrapper.eds_themeSettings .eds_modalContent .edNews_adminTheme {
  overflow: unset;
  padding: 0;
}
.eds_modalWrapper.eds_width70 .eds_modalContent {
  width: 70%;
  max-width: 70%;
}
.eds_modalWrapper .edn__contentLoading {
  height: 200px;
  text-align: center;
}
.eds_modalWrapper .edn__contentLoading > img {
  display: inline-block;
  margin: 40px auto;
}
.eds_modalWrapper .eds_animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.eds_modalWrapper .styleDisplayNone {
  display: none !important;
}
.eds_modalWrapper .loading {
  position: relative;
}
.eds_modalWrapper .loading::before, .eds_modalWrapper .loading::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 999;
}
.eds_modalWrapper .loading::before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.eds_modalWrapper .loading::after {
  content: "\f021";
  font: 900 3rem/1 "FontAwesome";
  color: #189fd3;
  -webkit-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
  top: 50%;
  left: 50%;
  margin-top: -2rem;
  margin-left: -1rem;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.eds_modalWrapper .eds_fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.edNews_adminInfo {
  display: inline-block;
  margin: 1rem;
  border-width: 1px;
  border-style: solid;
  border: solid 1px #ababab;
  border-radius: 3px;
  padding: 5px 10px;
  line-height: 0;
  background-color: #fff;
  font: normal normal 12px/1.1 "Arial";
}
.edNews_adminInfo label {
  font: inherit;
}
.edNews_adminInfo.edNews_info {
  border-color: #85bdf8;
  color: #85bdf8 !important;
}
.edNews_adminInfo.edNews_warning {
  border-color: #fa6900;
  color: #fa6900 !important;
}
.edNews_adminInfo.edNews_blockCenter {
  display: block;
  margin-left: 0;
  margin-right: 0;
}
.edNews_adminInfo .edNews_textCenter {
  text-align: center;
}
.edNews_adminInfo .edNews_inputGroup * {
  vertical-align: middle;
}
.edNews_adminInfo .edNews_inputGroup input[type=checkbox],
.edNews_adminInfo .edNews_inputGroup input[type=radio] {
  margin: 0;
}
.edNews_adminInfo .edNews_inputGroup input + label {
  margin: 0 0 0 7px;
}

.eds_modalContent ul {
  margin: 15px 0;
  padding: 0;
}
.eds_modalContent ul li {
  list-style-type: none;
  margin: 0 0 5px;
  padding: 0;
}
.eds_modalContent ul li label {
  font-weight: normal;
}
.eds_modalContent ul li label span {
  font-weight: bold;
}

body.eds__modalWindowOpened {
  height: 100vh;
  overflow-y: hidden;
}

.personalBarContainer ~ div .eds_modalWrapper {
  left: 80px;
}

.news .edn_userDashboard {
  margin-bottom: 2rem;
  font-size: 0;
  position: relative;
  border-radius: 7px !important;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard {
    margin-bottom: 1rem;
  }
}
.news .edn_userDashboard::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32px;
  background-color: #f7f7f7;
  border-radius: 7px;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard::before {
    height: 100%;
  }
}
.news .edn_userDashboard > div,
.news .edn_userDashboard a {
  display: inline-block;
}
.news .edn_userDashboard a {
  position: relative;
  font: 12px/32px Arial !important;
  color: #9b9b9b !important;
  text-decoration: none !important;
  text-align: center !important;
  padding: 0 0.4rem !important;
  background: none !important;
  transition: all 400ms !important;
  height: 32px !important;
  background-color: #f7f7f7 !important;
  cursor: pointer;
  text-transform: none !important;
  border: none !important;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard a {
    font-size: 0 !important;
    height: 40px !important;
  }
}
.news .edn_userDashboard a::before {
  display: inline-block;
  vertical-align: middle;
}
.news .edn_userDashboard a::before {
  font: 20px/0 "FontAwesome";
  transition: all 400ms;
  z-index: 1;
  color: #c9c9c9;
  padding-right: 0.2rem;
}
@media handheld, only screen and (max-width: 992px), only screen and (max-device-width: 992px) {
  .news .edn_userDashboard a::before {
    font-size: 24px;
    padding-right: 0;
    line-height: 40px;
  }
}
.news .edn_userDashboard a:hover {
  color: #5f5f5f !important;
  background-color: #edeef0 !important;
  text-decoration: none !important;
}
.news .edn_userDashboard a:hover::before {
  color: #5f5f5f;
}
.news .edn_userDashboard a:first-child {
  border-top-left-radius: 7px;
}
.news .edn_userDashboard a:first-child:hover {
  border-top-left-radius: 0;
}
.news .edn_userDashboard a:last-child {
  border-top-right-radius: 7px;
}
.news .edn_userDashboard a:last-child:hover {
  border-top-right-radius: 0;
}
.news .edn_userDashboard a.add_article::before {
  content: "\f055";
}
.news .edn_userDashboard a.article_manager::before {
  content: "\f15c";
}
.news .edn_userDashboard a.event_manager::before {
  content: "\f133";
}
.news .edn_userDashboard a.approve_articles::before {
  content: "\f046";
}
.news .edn_userDashboard a.approve_comments::before {
  content: "\f0e6";
}
.news .edn_userDashboard a.category_manager::before {
  content: "\f0ca";
}
.news .edn_userDashboard a.dashboard::before {
  content: "\f26c";
}
.news .edn_userDashboard a.settings::before {
  content: "\f013";
}
.news .edn_userDashboard a.author_profile::before {
  content: "\f2be";
}
.news .edn_userDashboard a.themeSettings::before {
  content: "\f1fc";
}
