* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-container {
    max-width: 450px;
    margin: 100px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container h5 {
    font-weight: 100;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: white;
}

.button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #333;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 0.5rem;
}

.button.secondary {
    background: #666;
}

.button.primary {
    background: #007bff;
}

.button.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
}

.button.danger {
    background: #dc3545;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: #f8f8f8;
}

.forms-container {
    margin-top: 2rem;
}

.url-cell {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 1.2rem;
    font-weight: 500;
    font-weight: 600;
}

.status-badge.active {
    color: var(--color-success);
}

.status-badge.paused {
    color: var(--color-warning);
}

.error {
    color: var(--color-danger);
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #dc3545;
    border-radius: 3px;
    background: #ffe6e6;
}

/* Actions Bar */
.actions-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 2.5rem;
}

.actions-bar .button {
    min-width: 120px;
    text-align: center;
}

/* Results page styles */
.results-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.results-container {
    padding: 30px;
    background: #FFF;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.results-summary {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.summary-card {
    padding: 1.5rem;
    flex: 1;
    border-bottom: 1px solid #eee;
}

.summary-card h3 {
    color: #ccc;
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 300;
}

.summary-value {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    line-height: 1;
}

.results-graph-container {
    margin-bottom: 2rem;
}

.results-graph-container h3 {
   color: #ccc;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.results-table-container {
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th,
.results-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.results-table th {
    font-weight: 600;
    color: #666;
}

.results-table tbody tr:hover {
    background-color: #f9f9f9;
}

.results-header .form-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.results-header .form-meta .button {
    margin-left: auto;
}

/* Pagination styles */
.pagination {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pagination-info {
    color: #666;
    font-size: 0.9em;
}

.pagination-controls {
    display: flex;
    gap: 5px;
    align-items: center;
}

.pagination-button {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.2s ease;
}

.pagination-button:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.pagination-button.active {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.meta-item .active {
    color: var(--color-success);
    font-weight: 700;
}

/* Embed Code Styles */
.embed-section {

}

.embed-code-container {
    position: relative;
    margin: 1rem 0;
}

.embed-code {
    padding: 25px;
    position: relative;
}

.embed-code-container .button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1rem; 
    padding: 0.5rem;
}

.embed-params {
    margin-top: 1rem;
    padding: 1rem;
    background: #f7f7ff;
    border-radius: 4px;
}

.embed-params .form-group {
    margin-bottom: 0;
}

/* Form Builder Styles */
.builder-header {
    margin-bottom: 2rem;
}

.builder-form {
    height: 100%;
    overflow-y: auto;
    padding-right: 1rem;
}

.builder-section {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.builder-section input {
    background-color: #fff !important;
}

.builder-section h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.builder-section small {
    display: block;
    color: #666;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* NPS Preview Styles */
.preview-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
}

.form-step {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.form-step h4 {
    background: #f8f8f8;
    margin: 0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ddd;
    font-size: 0.9rem;
    color: #666;
}

.preview-step {
    padding: 2rem;
}

.preview-step h3 {
    text-align: center;
}

.nps-preview {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.feedback-textarea {
    width: 100%;
    min-height: 100px;
    margin: 1rem 0;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
}

.submit-button {
    display: block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    margin-left: auto;
}

.nps-preview h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.nps-scale {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.nps-button {
    width: 100%;
    aspect-ratio: 1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s, opacity 0.2s;
}

.nps-button:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.nps-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Color picker inputs */
.form-group input[type="color"] {
    padding: 0;
    width: 100%
    height: 20px;
}

.form-group input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.form-group input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 3px;
}

/* Number inputs for style customization */
.form-group input[type="number"] {
    width: 100%;
}

.form-meta {
    margin-top: 1rem;
}

.meta-item {
    display: inline-block;
    margin-right: 1.5rem;
    color: #666;
}

.builder-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin: 2rem 0;
    margin-bottom: 100px;
    min-height: 500px;
}

.builder-sidebar,
.builder-canvas {
    background: white;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.builder-sidebar h2,
.builder-canvas h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.preview-container {
    min-height: 400px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.builder-actions {
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    background: #FFF;
    z-index: 55555;
    padding: 15px;
}
html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

body {
    margin: 0;
}

main {
    display: block;
}

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

small {
    font-size: 80%;
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

button,
input { /* 1 */
    overflow: visible;
}

button,
select { /* 1 */
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}


fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

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

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

body.login-template .main-navigation {
    display: none;
}

body.login-template .site-header .inside {
    justify-content: space-around;
}

body.login-template {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='560' preserveAspectRatio='none' viewBox='0 0 1440 560'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1009%26quot%3b)' fill='none'%3e%3cpath d='M222 4L221 170' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M500 118L499 -93' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M865 239L864 -120' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M928 468L927 181' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M858 87L857 -121' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M643 447L642 305' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M693 342L692 617' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M63 273L62 63' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M289 46L288 -112' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M324 156L323 -62' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1295 73L1294 416' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M728 11L727 -172' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M632 239L631 629' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M675 414L674 644' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M223 537L222 359' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M732 354L731 137' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M664 346L663 694' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1056 535L1055 172' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M488 244L487 537' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M492 216L491 569' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M846 401L845 723' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M2 260L1 406' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M817 90L816 -215' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1091 321L1090 578' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M380 115L379 491' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1004 114L1003 -274' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M571 26L570 -356' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M1212 5L1211 294' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M343 258L342 605' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M777 2L776 285' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1026 480L1025 663' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M835 500L834 189' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M683 492L682 651' stroke-width='10' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M5 158L4 -103' stroke-width='6' stroke='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)' stroke-linecap='round' class='Down'%3e%3c/path%3e%3cpath d='M1221 305L1220 481' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3cpath d='M846 19L845 -304' stroke-width='8' stroke='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)' stroke-linecap='round' class='Up'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1009'%3e%3crect width='1440' height='560' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='0%25' y1='100%25' x2='0%25' y2='0%25' id='SvgjsLinearGradient1010'%3e%3cstop stop-color='rgba(238%2c 238%2c 238%2c 0)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(238%2c 238%2c 238%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient x1='0%25' y1='0%25' x2='0%25' y2='100%25' id='SvgjsLinearGradient1011'%3e%3cstop stop-color='rgba(238%2c 238%2c 238%2c 0)' offset='0'%3e%3c/stop%3e%3cstop stop-color='rgba(238%2c 238%2c 238%2c 1)' offset='1'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
}

/* Root Start */

:root {
    --font-family: "Manrope", sans-serif;

    --color-primary: #1F3BB3;
    --color-secondary: #2C2C54;
    --color-dark: #000000;
    --color-white: #FFFFFF;
    --color-danger: #CC0000;
    --color-warning: #Fd7E14;
    --color-info: #1193ad;
    --color-success: #1a8a55;
    --color-border: #ddd;
    --color-grey: #999999;
    --color-blue: #0d6efd;
    --color-indigo: #6610f2;
    --color-purple: #6f42c1;
    --color-pink: #d63384;
    --color-red: #dc3545;
    --color-orange: #fd7e14;
    --color-yellow: #ffc107;
    --color-green: #198754;
    --color-teal: #20c997;
    --color-cyan: #0dcaf0;
    --rp-gutter-x: 1.5rem;
    --rp-gutter-y: 0;
}

.color-primary {
    color: var(--color-primary);
}

.color-secondary {
    color: var(--color-secondary);
}

.color-dark {
    color: var(--color-dark)
}

.color-white {
    color: var(--color-white);
}

.color-danger {
    color: var(--color-danger);
}

.color-success {
    color: var(--color-success);
}

.color-success-hover {
    color: var(--color-success);
}

.color-border {
    color: var(--color-border);
}

.color-grey {
    color: var(--color-grey)
}

.color-warning {
    color: var(--color-warning);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-seconary {
    background-color: var(--color-secondary);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-danger {
    background-color: var(--color-danger);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-border {
    background-color: var(--color-border);
}

.bg-success {
    background-color: var(--color-success);
}


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

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

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

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

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

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

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

.w-23 {
    width: 23%;
}

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

.w-auto {
    width: auto !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;
}

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

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

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

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


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

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

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

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

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

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

.border-radius-4 {
    border-radius: 4rem !important;
}

.border-radius-5 {
    border-radius: 5rem !important;
}

.shadow-none {
    box-shadow: none !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;
}

.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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mr-1,
.mx-1 {
    margin-right: 1rem !important;
}

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

.ml-1,
.mx-1 {
    margin-left: 1rem !important;
}

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

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

.mr-2,
.mx-2 {
    margin-right: 2rem !important;
}

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

.ml-2,
.mx-2 {
    margin-left: 2rem !important;
}

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

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

.mr-3,
.mx-3 {
    margin-right: 3rem !important;
}

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

.ml-3,
.mx-3 {
    margin-left: 3rem !important;
}

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

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

.mr-4,
.mx-4 {
    margin-right: 4rem !important;
}

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

.ml-4,
.mx-4 {
    margin-left: 4rem !important;
}

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

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

.mr-5,
.mx-5 {
    margin-right: 5rem !important;
}

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

.ml-5,
.mx-5 {
    margin-left: 5rem !important;
}

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

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

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

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

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

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

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

.pr-1,
.px-1 {
    padding-right: 1rem !important;
}

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

.pl-1,
.px-1 {
    padding-left: 1rem !important;
}

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

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

.pr-2,
.px-2 {
    padding-right: 2rem !important;
}

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

.pl-2,
.px-2 {
    padding-left: 2rem !important;
}

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

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

.pr-3,
.px-3 {
    padding-right: 3rem !important;
}

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

.pl-3,
.px-3 {
    padding-left: 3rem !important;
}

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

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

.pr-4,
.px-4 {
    padding-right: 4rem !important;
}

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

.pl-4,
.px-4 {
    padding-left: 4rem !important;
}

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

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

.pr-5,
.px-5 {
    padding-right: 5rem !important;
}

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

.pl-5,
.px-5 {
    padding-left: 5rem !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}

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

.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}

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

.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}

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

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

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

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

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


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

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

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

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

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

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

.d-block {
    display: block !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;
}


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

.border {
    border: 1px solid var(--color-border) !important;
}

.border-top {
    border-top: 1px solid var(--color-border) !important;
}

.border-right {
    border-right: 1px solid var(--color-border) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--color-border) !important;
}

.border-left {
    border-left: 1px solid var(--color-border) !important;
}

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

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

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

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

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

.border-primary {
    border-color: var(--color-primary) !important;
}

.border-secondary {
    border-color: var(--color-secondary) !important;
}

.border-success {
    border-color: var(--color-success) !important;
}

.border-info {
    border-color: var(--color-info) !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

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

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

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

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

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

html {
    box-sizing: border-box;
    font-size: 68.5%;
}

body {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.35rem;
    background: #eee;
    color: var(--color-dark);
    font-weight: 400;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    height: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.6;
}

blockquote {
    border-left: 0.3rem solid var(--color-primary);
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 1.5rem;
}

blockquote *:last-child {
    margin-bottom: 0;
}

blockquote cite {
    font-size: 80%;
    font-style: normal;
    color: rgba(0, 0, 0, 0.5);
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

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

.disabled, .button.disabled, .button:disabled {
    opacity: 0.5 !important;
    pointer-events: none;
}

.button.disabled:hover, .button:disabled:hover {
    opacity: 0.5 !important;
    pointer-events: none;
}

.button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
    background-color: transparent;
    border: 0.1rem solid transparent;
    border-radius: 0.4rem;
    color: var(--color-primary);
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: .1rem;
    padding: 1rem 3rem;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.3;
    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, opacity 0.15s ease-in-out;
}

.button:focus, .button:hover,
button:focus,
button:hover,
input[type='button']:focus,
input[type='button']:hover,
input[type='reset']:focus,
input[type='reset']:hover,
input[type='submit']:focus,
input[type='submit']:hover {
    background-color: transparent;
    border-color: transparent;
    color: var(--color-primary);
    transition: 0.15s;
}

.button[disabled],
button[disabled],
input[type='button'][disabled],
input[type='reset'][disabled],
input[type='submit'][disabled] {
    cursor: default;
    opacity: .5;
}


input[type='color']:disabled,
input[type='date']:disabled,
input[type='datetime']:disabled,
input[type='datetime-local']:disabled,
input[type='email']:disabled,
input[type='month']:disabled,
input[type='number']:disabled,
input[type='password']:disabled,
input[type='search']:disabled,
input[type='tel']:disabled,
input[type='text']:disabled,
input[type='url']:disabled,
input[type='week']:disabled,
input:not([type]):disabled,
textarea:disabled,
select:disabled {
    background: var(--color-border);
}

input[type='color']::placeholder,
input[type='date']::placeholder,
input[type='datetime']::placeholder,
input[type='datetime-local']::placeholder,
input[type='email']::placeholder,
input[type='month']::placeholder,
input[type='number']::placeholder,
input[type='password']::placeholder,
input[type='search']::placeholder,
input[type='tel']::placeholder,
input[type='text']::placeholder,
input[type='url']::placeholder,
input[type='week']::placeholder,
input:not([type])::placeholder,
textarea::placeholder,
select::placeholder {
    color: var(--color-grey);
}

.button-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-primary) !important;
}

.button-secondary {
    background-color: var(--color-secondary) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-secondary) !important;
}


.button-warning {
    background-color: var(--color-warning) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-warning) !important;
}


.button-success {
    background-color: var(--color-success) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-success) !important;
}


.button-info {
    background-color: var(--color-info) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-info) !important;
}

.button-danger {
    background-color: var(--color-danger) !important;
    color: var(--color-white) !important;
    border: 1px solid var(--color-danger) !important;
}

.button-link {

}

.button-outline-primary {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.button-outline-secondary {
    color: var(--color-secondary) !important;
    border-color: var(--color-secondary) !important;
}

.button-outline-warning {
    color: var(--color-warning) !important;
    border-color: var(--color-warning) !important;
}

.button-outline-success {
    color: var(--color-success) !important;
    border-color: var(--color-success) !important;
}

.button-outline-info {
    color: var(--color-info) !important;
    border-color: var(--color-info) !important;
}

.button-outline-danger {
    color: var(--color-danger) !important;
    border-color: var(--color-danger) !important;
}

.button-primary:hover {
    opacity: 0.9;
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.button-secondary:hover {
    opacity: 0.9;
    background-color: var(--color-secondary) !important;
    color: var(--color-white) !important;
}

.button-warning:hover {
    opacity: 0.9;
    background-color: var(--color-warning) !important;
    color: var(--color-white) !important;
}

.button-success:hover {
    opacity: 0.9;
    background-color: var(--color-success) !important;
    color: var(--color-white) !important;
}

.button-info:hover {
    opacity: 0.9;
    background-color: var(--color-info) !important;
    color: var(--color-white) !important;
}

.button-danger:hover {
    opacity: 0.9;
    background-color: var(--color-danger) !important;
    color: var(--color-white) !important;
}

.button-outline-primary:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.button-outline-secondary:hover {
    background-color: var(--color-secondary) !important;
    color: var(--color-white) !important;
}

.button-outline-warning:hover {
    background-color: var(--color-warning) !important;
    color: var(--color-white) !important;
}

.button-outline-success:hover {
    background-color: var(--color-success) !important;
    color: var(--color-white) !important;
}

.button-outline-danger:hover {
    background-color: var(--color-danger) !important;
    color: var(--color-white) !important;
}



.button-outline-info:hover {
    background-color: var(--color-info) !important;
    color: var(--color-white) !important;
}

table > thead > tr > td {
    background-color: blue;
}
table > tbody > tr:nth-of-type(odd) > * {
    background-color: #fafafa;
}
.title-heading {
    font-weight: 800;
}
.button-small {
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
}

.button-muted {
    color: var(--color-grey);
}

.button-muted-primary {
    color: var(--color-grey);
}

.button-muted-primary:hover {
    color: var(--color-primary);
}

.button-muted-success {
    color: var(--color-grey);
}
.button-muted-warning {
    color: var(--color-grey);
}
.button-muted-warning:hover {
    color: var(--color-warning);
}
.button-muted-success:hover {

}
.button-muted-danger {
    color: var(--color-grey);
}
.button-muted-danger:hover {
    color: var(--color-danger);
}
.button-large {
    font-size: 1.4rem;
    padding: 2rem 5rem;
}


code {
    background: var(--color-border);
    border-radius: .4rem;
    font-size: 86%;
    margin: 0 .2rem;
    padding: .2rem .5rem;
    white-space: nowrap;
}

pre {
    background: #f7f7ff;
    border-left: 0.3rem solid var(--color-primary);
    overflow-y: hidden;
    padding: 1rem;
}

pre > code {
    border-radius: 0;
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}

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

figcaption, caption {
    font-size: 75%;
}

figure {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}


summary {
    cursor: pointer;
}

hr {
    border: 0;
    border-top: 0.1rem solid var(--color-border);
    margin: 3.0rem 0;
}

small, .small {
    font-size: 80%;
    font-weight: 400;
}

input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
input[type='week'],
input:not([type]),
textarea,
select {
    -webkit-appearance: none;
    background-color: transparent;
    border: 0.1rem solid var(--color-border);
    border-radius: .4rem;
    box-shadow: none;
    box-sizing: inherit;
    padding: 1.05rem 1.25rem;
    font-size: 1.4rem;
    line-height: 1.3;
    font-family: var(--font-family);
    margin-bottom: 0;
}

input[type='color']:focus,
input[type='date']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='email']:focus,
input[type='month']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
input[type='url']:focus,
input[type='week']:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
    border-color: var(--color-primary);
    outline: 0;
}

select {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23d1d1d1" d="M0,0l6,8l6-8"/></svg>') center right no-repeat;
    padding-right: 3.0rem;
}

select:focus {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%239b4dca" d="M0,0l6,8l6-8"/></svg>');
}

select[multiple] {
    background: none;
    height: auto;
}

textarea {
    min-height: 6.5rem;
}

label,
legend {
    display: block;
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

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

input[type='checkbox'],
input[type='radio'] {
    display: inline;
}

.label-inline {
    display: inline-block;
    font-weight: normal;
    margin-left: .5rem;
}

.container-fluid {
    margin: 0 auto;
    padding-right: var(--rp-gutter-x, 0.75rem);
    padding-left: var(--rp-gutter-x, 0.75rem);
    position: relative;
    width: 100%;
}

.container {
    margin: 0 auto;
    padding-right: var(--rp-gutter-x, 0.75rem);
    padding-left: var(--rp-gutter-x, 0.75rem);
    position: relative;
    max-width: 1320px;
}

.container-generator {
    margin: 0 auto;
    padding-right: var(--rp-gutter-x, 0.75rem);
    padding-left: var(--rp-gutter-x, 0.75rem);
    position: relative;
    max-width: 1080px;
}

.container-small {
    margin: 0 auto;
    padding-right: var(--rp-gutter-x, 0.75rem);
    padding-left: var(--rp-gutter-x, 0.75rem);
    position: relative;
    max-width: 980px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--rp-gutter-y) * -1);
    margin-right: calc(var(--rp-gutter-x) / -2);
    margin-left: calc(var(--rp-gutter-x) / -2);
}

.row > * {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--rp-gutter-x) / 2);
    padding-left: calc(var(--rp-gutter-x) / 2);
    margin-top: var(--rp-gutter-y);
}

.column {
    flex: 1 0 0;
}

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

.column-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
}

.column-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
}

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

.column-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.column-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
}

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

.column-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
}

.column-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
}

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

.column-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
}

.column-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
}

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

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

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

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

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

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

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

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

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

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

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

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


.fluid {
    width: 100%;
}

.inline {
    display: inline-block;
}

.center-text {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 2.5rem;
}


.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-wrap {
    flex-wrap: wrap !important;
}

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

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

.flex-fill {
    flex: 1 1 auto !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;
}

.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;
}

.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;
}


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

.user-select-auto {
    user-select: auto !important;
}

.user-select-none {
    user-select: none !important;
}

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

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

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

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

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

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

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

.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;
}


.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

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

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

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

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

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

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

.text-muted {
    color: var(--color-grey);
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:focus, a:hover {
    color: var(--color-secondary);
}

dl,
ol,
ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}

dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
    font-size: 90%;
    margin: 1.5rem 0 1.5rem 3.0rem;
}

ol {
    list-style: decimal inside;
}

ul {
    list-style: circle inside;
}


dd,
dt,
li {
    margin-bottom: 1.0rem;
}

fieldset,
input,
select,
textarea {
    margin-bottom: 1.5rem;
}

blockquote,
details,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
    margin-bottom: 2.5rem;
    margin-top: 0;
}

table {
    border-spacing: 0;
    overflow-x: auto;
    text-align: left;
    width: 100%;
}

td,
th {
    border-bottom: 0.1rem solid #e1e1e1;
    padding: 1.2rem 1.5rem;
}

th {
    background: var(--color-border);
}

b,
strong {
    font-weight: bold;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 2.0rem;
    margin-top: 0;
}

h1 {
    font-size: 4.2rem;
    line-height: 1.2;
}

h2 {
    font-size: 3.6rem;
    line-height: 1.25;
}

h3 {
    font-size: 2.8rem;
    line-height: 1.3;
}

h4 {
    font-size: 2.2rem;
    line-height: 1.35;
}

h5 {
    font-size: 1.8rem;
    line-height: 1.5;
}

h6 {
    font-size: 1.6rem;
    line-height: 1.4;
}

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

.clearfix:after {
    clear: both;
    content: ' ';
    display: table;
}

.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;
}

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

/* VERTICAL MENU */

.vertical-menu {
    position: relative;
}

.vertical-menu span {
    display: inline-block;
    margin-bottom: 2.5rem;
}

.vertical-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vertical-menu li {
    position: relative;
}

.vertical-menu li a {
    display: block;
    color: var(--color-dark);
    font-size: 90%;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: .4rem;
}

.vertical-menu li a:hover {
    color: rgba(0, 0, 0, 0.6);
}

.vertical-menu li a.active {
    background: var(--color-border);
}

.vertical-menu li ul {
    display: none;
}

.vertical-menu li:hover > ul {
    display: block;
    position: absolute;
    background: var(--color-border);
    border-radius: 0.4rem;
    bottom: 0;
    width: 100%;
    left: 100%;
}

.vertical-menu li.has-children a:after {
    content: "+";
    display: inline-block;
    margin-left: 3px;
    float: right;
}

.vertical-menu li.has-children li a:after {
    display: none;
}


/* HORIZONTAL MENU */

.horizontal-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.horizontal-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.horizontal-menu li {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0;
    position: relative;
}

.horizontal-menu li ul {
    display: none;
}

.horizontal-menu li:hover > ul {
    display: block;
    position: absolute;
    background: var(--color-border);
    border-radius: 0.4rem;
    right: 0;
}

.horizontal-menu li ul li {
    display: block;
    margin-right: 0;
}

.horizontal-menu li:last-of-type {
    margin-right: 0;
}

.horizontal-menu li.has-children a:after {
    content: "+";
    display: inline-block;
    margin-left: 3px;
}

.horizontal-menu li.has-children li a:after {
    display: none;
}

.horizontal-menu li a {
    display: block;
    color: var(--color-dark);
    font-size: 90%;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: .4rem;
}

.horizontal-menu li a:hover {
    color: rgba(0, 0, 0, 0.6);
}

.horizontal-menu li a.active {
    background: var(--color-border);
}


/* CARDS */

.card {
    border: 1px solid var(--color-border);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    padding: 30px;
    background: #FFF;
}

.card .card-header {
    padding: 2rem;
}

.card .card-body {
    padding: 2rem;
}

.card .card-body h5 {
    font-weight: 700;
}

.card .card-header img {
    display: block;
}

.card .card-header h2, .card .card-header h3, .card .card-header h4, .card .card-header h5, .card .card-header h6 {

}

.card .card-header h1 {
    font-weight: 700;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 90%;
}

.breadcrumb ol, .breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb .item {
    display: inline-block;
    margin-bottom: 0;
}

.breadcrumb .item:after {
    content: '/';
    display: inline-block;
    margin: 0 10px;
}

.breadcrumb .item:last-of-type:after {
    display: none;
}

.breadcrumb .active {
    color: var(--color-grey);
}

/* Pagination */

.pagination ol, .pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination .item {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 0;
}

.pagination .item:last-of-type {
    margin-right: 0;
}

.pagination .active {
    font-weight: 700;
}

.pagination .active a {
    text-decoration: underline;
}

/* Badges */
.badge {
    padding: 0.2rem 0.7rem;
    border-radius: 0.4rem;
    font-weight: normal;
    font-size: 90%;
    margin: 0 5px;
}

/* Notification  */

.notification {
    padding: 1rem 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 90%;
    -webkit-border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    border-radius: 0.4rem;
}

.notification-primary {
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

.notification-secondary {
    border: 1px solid var(--color-secondary);
    background: var(--color-secondary);
    color: var(--color-white);
}

.notification-success {
    border: 1px solid var(--color-success);
    background: var(--color-success);
    color: var(--color-white);
}

.notification-danger {
    border: 1px solid var(--color-danger);
    background: var(--color-danger);
    color: var(--color-white);
}

.notification-warning {
    border: 1px solid var(--color-warning);
    background: var(--color-warning);
    color: var(--color-white);
}

.notification-info {
    border: 1px solid var(--color-info);
    background: var(--color-info);
    color: var(--color-dark);
}

.notification-light {
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-dark);
}


.notification-dark {
    border: 1px solid var(--color-dark);
    background: var(--color-dark);
    color: var(--color-white);
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

.close {
    font-weight: 400;
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 18px;
    border-radius: 999rem;
    cursor: pointer;
    transform: rotate(45deg);
}

.box {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0.5em 1em -0.125em rgb(10 10 10 / 10%), 0 0 0 1px rgb(10 10 10 / 2%);
    border: 1px solid var(--color-border);
    display: block;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

@-webkit-keyframes animate-stripes {
    100% {
        background-position: -100px 0;
    }
}

@keyframes animate-stripes {
    100% {
        background-position: -100px 0;
    }
}


@-webkit-keyframes moveIndeterminate {
    from {
        background-position: 200% 0;
    }
    to {
        background-position: -200% 0;
    }
}

@keyframes moveIndeterminate {
    from {
        background-position: 200% 0;
    }
    to {
        background-position: -200% 0;
    }
}

progress {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 9999px;
    display: block;
    overflow: hidden;
    padding: 0;
    width: 100%;
    height: 2rem;
}

progress[value]::-webkit-progress-bar {
    background-color: var(--color-border);
    border-radius: 0.4rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) inset;
}

progress:not([value]) {

}

.progress::-moz-progress-bar {
    background-color: #4a4a4a;
}

.progress::-ms-fill {
    background-color: #4a4a4a;
    border: none;
}

.progress:indeterminate {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: moveIndeterminate;
    animation-name: moveIndeterminate;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background-color: #ededed;
    background-image: linear-gradient(to right, #4a4a4a 30%, #ededed 30%);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 150% 150%;
}

.progress-primary::-webkit-progress-value {
    background-color: var(--color-primary);
}

.progress-secondary::-webkit-progress-value {
    background-color: var(--color-secondary);
}

.progress-success::-webkit-progress-value {
    background-color: var(--color-success);
}

.progress-danger::-webkit-progress-value {
    background-color: var(--color-danger);
}

.progress-warning::-webkit-progress-value {
    background-color: var(--color-warning);
}

.progress-info::-webkit-progress-value {
    background-color: var(--color-info);
}

.progress-dark::-webkit-progress-value {
    background-color: var(--color-dark);
}

body.modal-open {
    overflow: hidden;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal-overlay.show {
    display: block;
    opacity: 1;
}

.modal-dialog {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 400px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.modal-overlay.show .modal-dialog {
    opacity: 1;
    transform: translate(-50%, 50px);
}

.modal-overlay.hiding .modal-dialog {
    transform: translate(-50%, -100px);
}


.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    max-width: 980px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.close-modal {
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.site-header {
    padding: 15px 0;
    background: var(--color-primary);
    margin-bottom: 60px;
}
.site-header .inside {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.site-header .site-branding {

}

.site-header .inside ul {
    font-size: 14px;
        list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .inside ul li {
    display: inline-block;
    margin-right: 30px;
}

.site-header .inside ul li:last-of-type {
    margin-right: 0;
}

.site-header .inside ul li a i {
    margin-right: 5px;
    margin-left: 5px;
}

.site-header .inside ul li ul {
    display: none;
}

.site-header .inside ul li a {
    color: #FFF;
}

.site-header .site-branding a {
    color: #FFF;
    font-weight: 900;
    font-size: 2rem;
}

.site-header nav {
    font-size: 1.3rem;
}

.site-header nav a {
    color: #ccc;
    margin-right: 30px;
}
.site-header nav a:hover {
    color: #FFF;
}
.site-header nav a:last-of-type {
    margin-right: 0;
}
.site-header nav a.active {
    color: #fff;
    font-weight: 600;
}

.openMenu {
    display: none;
}

@media only screen and (max-width: 980px) {
    table {
        display: block;
        overflow-x: auto;
    }
    .main-navigation {
        display: none;
        position: fixed;
        top: 65px;
        z-index: 999999;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--color-secondary);
    }
    .site-header .inside ul li {
        display: block;
        margin-top: 30px;
        font-size: 2rem;
        padding: 0 15px;
    }
    .site-header .inside ul li a {

    }

    .site-header .inside ul li a i {

    }

    .site-header .inside ul li {

    }
    .site-header .inside ul li ul {
        display: block;
    }
    .site-header .inside ul li ul li {
        margin-top: 10px;
        font-size: 1.5rem;
    }
    .openMenu {
        display: block;
        position: absolute;
        color: #FFF;
        font-size: 2.5rem;
        right: 15px;
        top: -3px;
    }
    .site-header {
        margin-bottom: 30px;
    }
    .results-container {
        padding: 15px;
    }
    .results-summary {
    }
    .summary-card {
        padding: 0;
        padding-bottom: 1.5rem;
    }
    .summary-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .summary-value {
        font-size: 2rem;
    }
    .card {
        padding: 15px;
    }
    body {
        font-size: 1.4rem;
    }
    .actions-bar {
        display: block;
    }
    .actions-bar p .button {
        width: 100%;
    }
    .title-heading {
        font-size: 1.6rem;
    }
    .builder-container {
        display: block;
    }
    .builder-actions {
        display: block !important;
    }
    .login-container  {
        margin: 100px 15px;
    }
    body.login-template .openMenu {
        display: none;
    }
    .builder-form {
        padding-right: 0;
    }
}   
