@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body
{
    font-family: 'Catamaran', sans-serif;
    font-size: 11pt;

    display: flex;
    flex-direction: column;

    min-height: 100vh;
    margin: 0;
    padding: 0;

    color: #033045;
}
.logo-container
{
    margin-top: 0;
    margin-bottom: -100px;

    text-align: center;
}

.logo-header
{
    display: flex;
    align-items: center;

    margin-bottom: 20px;
}
.logo-main
{
    width: 100px;
    margin: 20px auto;
}

.logo-image
{
    width: 50px;
}

.logo-heading
{
    margin-bottom: 0;
}

h1
{
    font-family: 'Lato', sans-serif;
    font-size: 25pt;
    font-weight: 700;
    font-style: italic;

    padding-top: 30px;
    padding-bottom: 20px;;
}

h2
{
    font-family: 'Lato', sans-serif;
    font-size: 12pt;
    font-weight: 700;
}

/* Media query for small screens */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body
{
    font-family: 'Catamaran', sans-serif;
    font-size: 11pt;

    display: flex;
    flex-direction: column;

    min-height: 100vh;
    margin: 0;
    padding: 0;

    color: #033045;
}
.logo-container
{
    margin-top: 20px;
    margin-bottom: -100px;

    text-align: center;
}

.logo-header
{
    display: flex;
    align-items: center;

    margin-bottom: 20px;
}
.logo-main
{
    width: 100px;
    margin: 20px auto;
}


.logo-heading
{
    margin-bottom: 0;
}


h2
{
    font-family: 'Lato', sans-serif;
    font-size: 12pt;
    font-weight: 700;
}

.page-title
{
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    width: 100%;
    padding: 10px;

    background-color: #f8f8f8;
}

.row
{
    margin-bottom: 20px;
    display:flex;
}

.navigation-buttons
{
    display: flex;
    justify-content: space-between;

    margin-top: 20px;
}

.previous-button,
.next-button,
.start-over-button
{
    width: 140px;
    height: calc(140px / 4); /* Adjust the proportion as needed */
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;

    cursor: pointer;

    border: none;
    border-radius: 50px; /* Set the border radius to 30px */
}

.container
{
    margin-bottom: 10%; /* Increase the margin-bottom to create space for the footer */
}


.grid-item
{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;

    margin: 10px;
    padding: 10px;

    border: 1px solid #ccc;
    border-radius: 5px;
}

.card-container
{
    display: flex;
    flex-wrap: wrap;

    gap: 20px;
}

.card
{
    padding: 20px;

    text-align: center;

    border-radius: 5px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.card span
{
    font-weight: bold;
}

.icon-container
{
    margin-top: 10px;

    text-align: center;
}

.tshirt-icon
{
    display: none;

    color: gray;
}

.card.selected .tshirt-icon
{
    display: inline-block;
}

.table
{
    width: 100%;
    margin-bottom: 1rem;

    color: #212529;
}

.table th,
.table td
{
    padding: .75rem;

    vertical-align: top;

    border-top: 1px solid #dee2e6;
}

.table thead th
{
    vertical-align: bottom;

    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody
{
    border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td
{
    padding: .3rem;
}

.table-bordered
{
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td
{
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td
{
    border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd)
{
    background-color: rgba(0, 0, 0, .05);
}

.table-hover tbody tr:hover
{
    background-color: rgba(0, 0, 0, .075);
}

.table-primary,
.table-primary > th,
.table-primary > td
{
    background-color: #c6e0f5;
}

.table-hover .table-primary:hover
{
    background-color: #b0d4f1;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th
{
    background-color: #b0d4f1;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td
{
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover
{
    background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th
{
    background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td
{
    background-color: #c7eed8;
}

.table-hover .table-success:hover
{
    background-color: #b3e8ca;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th
{
    background-color: #b3e8ca;
}

.table-info,
.table-info > th,
.table-info > td
{
    background-color: #d6e9f9;
}

.table-hover .table-info:hover
{
    background-color: #c0ddf6;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th
{
    background-color: #c0ddf6;
}

.table-warning,
.table-warning > th,
.table-warning > td
{
    background-color: #fffacc;
}

.table-hover .table-warning:hover
{
    background-color: #fff6a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th
{
    background-color: #fff6a1;
}

.table-danger,
.table-danger > th,
.table-danger > td
{
    background-color: #f7c6c5;
}

.table-hover .table-danger:hover
{
    background-color: #f1b0af;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th
{
    background-color: #f1b0af;
}

.table-light,
.table-light > th,
.table-light > td
{
    background-color: #f8f9fa;
}

.table-hover .table-light:hover
{
    background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th
{
    background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td
{
    color: #fff;
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover
{
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th
{
    background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td
{
    background-color: rgba(0, 0, 0, .075);
}

.table-hover .table-active:hover
{
    background-color: rgba(0, 0, 0, .075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th
{
    background-color: rgba(0, 0, 0, .075);
}

.table .thead-dark th
{
    color: #fff;
    border-color: #32383e;
    background-color: #212529;
}

.table .thead-light th
{
    color: #495057;
    border-color: #dee2e6;
    background-color: #e9ecef;
}

.table-dark
{
    color: #fff;
    background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody
{
    border-color: #32383e;
}

.table-dark.table-bordered
{
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd)
{
    background-color: hsla(0, 0%, 100%, .05);
}

.table-dark.table-hover tbody tr:hover
{
    background-color: hsla(0, 0%, 100%, .075);
}

@media (max-width: 575.98px)
{
    .table-responsive-sm
    {
        display: block;
        overflow-x: auto;

        width: 100%;

        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-sm > .table-bordered
    {
        border: 0;
    }
}

@media (max-width: 767.98px)
{
    .table-responsive-md
    {
        display: block;
        overflow-x: auto;

        width: 100%;

        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-md > .table-bordered
    {
        border: 0;
    }
}

@media (max-width: 991.98px)
{
    .table-responsive-lg
    {
        display: block;
        overflow-x: auto;

        width: 100%;

        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-lg > .table-bordered
    {
        border: 0;
    }
}

@media (max-width: 1199.98px)
{
    .table-responsive-xl
    {
        display: block;
        overflow-x: auto;

        width: 100%;

        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xl > .table-bordered
    {
        border: 0;
    }
}

.table-responsive
{
    display: block;
    overflow-x: auto;

    width: 100%;

    -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered
{
    border: 0;
}

.collapsed
{
    display: none;
}

.collapsing
{
    position: relative;

    overflow: hidden;

    height: 0;

    transition-timing-function: ease;
    transition-duration: .35s;
    transition-property: height, visibility;
}

.collapsing.width
{
    width: 0;
    height: auto;

    transition-property: width, visibility;
}

.collapsing.show
{
    display: block;

    height: auto;
}

.collapse.show
{
    display: block;
}

.collapsing.collapsed
{
    display: none;

    height: 0;
}

.collapsible-header
{
    cursor: pointer;
}

.collapsible-body
{
    padding: .75rem;
}


.container-heading
{
    margin-top: 0; /* Add a value for margin-top, such as 0 */

    text-align: center;
}

.container-column
{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.container-column
{
    min-height: 200px;
    margin-bottom: 20px;
    padding: 10px;

    border-radius: 5px;
}

.table-wrapper
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.table-wrapper .col
{
    flex-basis: calc(33.33% - 20px);

    margin-bottom: 20px;
}

.table-wrapper .col .container-column
{
    overflow: auto;

    height: 250px; /* Adjust the height as needed */
}

.table-wrapper .col h2
{
    margin-bottom: 10px;
}

.table-wrapper .col table
{
    width: 100%;
}

.table-wrapper table
{
    width: 100%;
    min-width: 600px;
    margin-bottom: 1rem;

    background-color: #fff;
}

.table-wrapper .col table th,
.table-wrapper .col table td
{
    white-space: normal;
    word-break: break-word;
}

.tshirt-icon
{
    font-size: 24px;

    margin-bottom: 10px;
}


/* Custom classes for adjusting padding, margin, and spacing */
.custom-input-group
{
    margin-bottom: 5px; /* Adjust the margin-bottom as needed */

    border-color: #dee2e6;
}

.custom-form-control
{
    font-size: 14px; /* Adjust the font size as needed */

    padding: 5px; /* Adjust the padding as needed */

    border-color: #dee2e6;
    border-right-style: none;
}

.custom-delete-btn
{
    margin-left: 10px; /* Adjust the margin-left as needed */
}

.input-group
{
    padding: 3px;
}

.delete-btn
{
    font-size: 16px;

    z-index: 10;

    cursor: pointer;

    border: 1px;
    border-style: solid;
    border-color: #dee2e6;
    border-left-style: none;
    background: none;
}

.drop-container
{
    align-items: center;

    margin-left: -30px;
}

/* Add custom styles for draggable list items */
.drop-list li
{
    align-items: center;
    justify-content: space-between;

    width: 100%;
    margin-bottom: 5px;
    padding: 5px;

    list-style-type: none; /* Remove the bullets */

    color: gray;
    border-width: 1px;
    border-style: solid;
    border-color: #dee2e6;
    border-radius: 5px;

    touch-action: none;
}

.item-content
{
    display: flex;
    align-items: center;
}

.item-text
{
    margin-right: auto;

    word-break: break-word;
}

.reorder-handle
{
    margin-right: 5px;
    margin-left: auto;
}

.drop-list li:hover
{
    position: relative;

    background-color: whitesmoke;

    touch-action: none;
}

.drop-list li:hover::before
{
    font-size: x-small;

    position: absolute;
    top: 50%;
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    content: 'Drag to reorder';
    transform: translate(-50%, -50%);
    text-align: center;

    color: lightgray;

    touch-action: none;
}
.impact-labels
{
    display: flex;
    flex-direction: column;
}

.highest-impact
{
    font-family: 'Figtree Bold', sans-serif;
    font-size: x-small;
    font-weight: bold;

    margin-bottom: 5px;

    text-align: right;
}

.lowest-impact
{
    font-family: 'Figtree Bold', sans-serif;
    font-size: x-small;
    font-weight: bold;

    margin-top: 5px;

    text-align: right;
}
.icon
{
    color: lightgray; /* Set the desired color for the icon */
}

.item-text
{
    color: black; /* Set the desired color for the item text */
}


.italic
{
    font-style: italic;
}


.checkmark-icon
{
    display: none;

    margin-left: 5px;
}

.checkmark-icon.show
{
    display: inline-block;
}

.toggle-table
{
    margin-bottom: 20px;
}

.toggle-button
{
    width: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;

    cursor: pointer;

    color: #fff;
    border: none;
    border-radius: 5px;
    background-color: lightgray;
}

.toggle-button:hover
{
    background-color: #6c757d;
}

.export-button
{
    width: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;

    cursor: pointer;

    color: #fff;
    border: none;
    border-radius: 50px;
    background-color: lightgray;
}

.export-button:hover
{
    background-color: #1d7d39;
}

.container-column li:hover
{
    cursor: pointer;

    background-color: #f7f7f7;
}

.container-column li:highlighted
{
    cursor: pointer;

    background-color: green;
}

.container-column li.selected
{

    background-color: #f7f7f7;
}

.container-column li span
{
    display: none;
}

.container-column li:hover span
{
    display: inline-block;
}

.items li.highlighted
{
    cursor: pointer;

    background-color: green;
}

.items li:hover
{
    cursor: pointer;

    background-color: cornflowerblue;
}

.container-column li.highlighted,
.items li.highlighted
{
    cursor: pointer;

    background-color: green;
}

.highlighted
{
    background-color: #cee7f3;
}

/*  ribbon css */
.box
{
    position: relative;
    flex:1;

    width: 100%;
    max-width: 100%;
    margin-top: 10px;

    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
}

/* common */

/* yellow ribbon */
.ribbon-now
{
    position: absolute;

    overflow: hidden;

    width: 150px;
    height: 150px;
}
.ribbon-now::before,
.ribbon-now::after
{
    position: absolute;
    z-index: -1;

    display: block;

    content: '';

    border: 5px solid #219ebc;
}
.ribbon-now span
{
    font-size: 14pt;
    font-weight: bold;

    position: absolute;

    display: block;

    width: 225px;
    padding: 10px 0;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background-color: #8ecae6;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
}

.ribbon-next
{
    position: absolute;

    overflow: hidden;

    width: 150px;
    height: 150px;
}
.ribbon-next::before,
.ribbon-next::after
{
    position: absolute;
    z-index: -1;

    display: block;

    content: '';

    border: 5px solid #023047;
}
.ribbon-next span
{
    font-size: 14pt;
    font-weight: bold;

    position: absolute;

    display: block;

    width: 225px;
    padding: 10px 0;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background-color: #219ebc;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
}

/* blue ribbon */
.ribbon-later
{
    position: absolute;

    overflow: hidden;

    width: 150px;
    height: 150px;
}
.ribbon-later::before,
.ribbon-later::after
{
    position: absolute;
    z-index: -1;

    display: block;

    content: '';

    border: 5px solid #000;
}
.ribbon-later span
{
    font-size: 14pt;
    font-weight: bold;

    position: absolute;

    display: block;

    width: 225px;
    padding: 10px 0;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background-color: #023047;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
}

/* top right*/
.ribbon-top-right
{
    top: -10px;
    right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after
{
    border-top-color: transparent;
    border-right-color: transparent;
}
.ribbon-top-right::before
{
    top: 0;
    left: 0;
}
.ribbon-top-right::after
{
    right: 0;
    bottom: 0;
}
.ribbon-top-right span
{
    top: 30px;
    left: -25px;

    transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left
{
    bottom: -10px;
    left: -10px;
}
.ribbon-bottom-left::before,
.ribbon-bottom-left::after
{
    border-bottom-color: transparent;
    border-left-color: transparent;
}
.ribbon-bottom-left::before
{
    right: 0;
    bottom: 0;
}
.ribbon-bottom-left::after
{
    top: 0;
    left: 0;
}
.ribbon-bottom-left span
{
    right: -25px;
    bottom: 30px;

    transform: rotate(225deg);
}

#row1
{
    padding: 10px;

    border: 3px solid #033045;
    border-radius: 10px;
}

.divider
{
    display: inline-block;
    align-self: stretch;

    width: 1px;

    background-color: whitesmoke;
}
.drop-container
{
    position: relative;
}

.drop-label-top,
.drop-label-bottom
{
    font-size: small;
    font-weight: bold;

    position: absolute;
    right: 0;

    text-transform: uppercase;
}

.drop-label-top
{
    top: -20px;
}

.drop-label-bottom
{
    bottom: -20px;
}

.page-title
{
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    width: 100%;
    padding: 10px;

    background-color: #f8f8f8;
}



.navigation-buttons
{
    display: flex;
    justify-content: space-between;

    margin-top: 20px;
}

.previous-button,
.next-button
{
    width: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;

    cursor: pointer;

    border: none;
    border-radius: 50px;
}
.start-over-button
{
    width: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;

    cursor: pointer;

    border: none;
    border-radius: 50px;
}

.container
{
    z-index: 0;

    margin-bottom: 10%; /* Increase the margin-bottom to create space for the footer */
}


.grid-item
{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;

    margin: 10px;
    padding: 10px;

    border: 1px solid #ccc;
    border-radius: 5px;
}

.card-container
{
    display: flex;
    flex-wrap: wrap;

    gap: 20px;
}

.card
{
    padding: 20px;

    text-align: center;

    border-radius: 5px;
    background-color: #f5f5f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.card span
{
    font-weight: bold;
}

.icon-container
{
    margin-top: 10px;

    text-align: center;
}

.tshirt-icon
{
    display: none;

    color: gray;
}

.card.selected .tshirt-icon
{
    display: inline-block;
}

.table
{
    width: 100%;
    margin-bottom: 1rem;

    color: #212529;
}

.table th,
.table td
{
    padding: .75rem;

    vertical-align: top;

    border-top: 1px solid #dee2e6;
}

.table thead th
{
    vertical-align: bottom;

    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody
{
    border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td
{
    padding: .3rem;
}

.table-bordered
{
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td
{
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td
{
    border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd)
{
    background-color: rgba(0, 0, 0, .05);
}

.table-hover tbody tr:hover
{
    background-color: rgba(0, 0, 0, .075);
}

.table-primary,
.table-primary > th,
.table-primary > td
{
    background-color: #c6e0f5;
}

.table-hover .table-primary:hover
{
    background-color: #b0d4f1;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th
{
    background-color: #b0d4f1;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td
{
    background-color: #d6d8db;
}

.table-hover .table-secondary:hover
{
    background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th
{
    background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td
{
    background-color: #c7eed8;
}

.table-hover .table-success:hover
{
    background-color: #b3e8ca;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th
{
    background-color: #b3e8ca;
}

.table-info,
.table-info > th,
.table-info > td
{
    background-color: #d6e9f9;
}

.table-hover .table-info:hover
{
    background-color: #c0ddf6;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th
{
    background-color: #c0ddf6;
}

.table-warning,
.table-warning > th,
.table-warning > td
{
    background-color: #fffacc;
}

.table-hover .table-warning:hover
{
    background-color: #fff6a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th
{
    background-color: #fff6a1;
}

.table-danger,
.table-danger > th,
.table-danger > td
{
    background-color: #f7c6c5;
}

.table-hover .table-danger:hover
{
    background-color: #f1b0af;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th
{
    background-color: #f1b0af;
}

.table-light,
.table-light > th,
.table-light > td
{
    background-color: #f8f9fa;
}

.table-hover .table-light:hover
{
    background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th
{
    background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td
{
    color: #fff;
    background-color: #c6c8ca;
}

.table-hover .table-dark:hover
{
    background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th
{
    background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td
{
    background-color: rgba(0, 0, 0, .075);
}

.table-hover .table-active:hover
{
    background-color: rgba(0, 0, 0, .075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th
{
    background-color: rgba(0, 0, 0, .075);
}

.table .thead-dark th
{
    color: #fff;
    border-color: #32383e;
    background-color: #212529;
}

.table .thead-light th
{
    color: #495057;
    border-color: #dee2e6;
    background-color: #e9ecef;
}

.table-dark
{
    color: #fff;
    background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody
{
    border-color: #32383e;
}

.table-dark.table-bordered
{
    border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd)
{
    background-color: hsla(0, 0%, 100%, .05);
}

.table-dark.table-hover tbody tr:hover
{
    background-color: hsla(0, 0%, 100%, .075);
}

@media (max-width: 575.98px)
{
    .table-responsive-sm
    {
        display: block;
        overflow-x: auto;

        width: 100%;

        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-sm > .table-bordered
    {
        border: 0;
    }
}

@media (max-width: 767.98px)
{
    .table-responsive-md
    {
        display: block;
        overflow-x: auto;

        width: 100%;

        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-md > .table-bordered
    {
        border: 0;
    }
}

@media (max-width: 991.98px)
{
    .table-responsive-lg
    {
        display: block;
        overflow-x: auto;

        width: 100%;

        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-lg > .table-bordered
    {
        border: 0;
    }
}

@media (max-width: 1199.98px)
{
    .table-responsive-xl
    {
        display: block;
        overflow-x: auto;

        width: 100%;

        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xl > .table-bordered
    {
        border: 0;
    }
}

.table-responsive
{
    display: block;
    overflow-x: auto;

    width: 100%;

    -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered
{
    border: 0;
}

.collapsed
{
    display: none;
}

.collapsing
{
    position: relative;

    overflow: hidden;

    height: 0;

    transition-timing-function: ease;
    transition-duration: .35s;
    transition-property: height, visibility;
}

.collapsing.width
{
    width: 0;
    height: auto;

    transition-property: width, visibility;
}

.collapsing.show
{
    display: block;

    height: auto;
}

.collapse.show
{
    display: block;
}

.collapsing.collapsed
{
    display: none;

    height: 0;
}

.collapsible-header
{
    cursor: pointer;
}

.collapsible-body
{
    padding: .75rem;
}


.container-heading
{
    margin-top: 10px; /* Add a value for margin-top, such as 0 */

    text-align: center;
}

.container-column
{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.container-column
{
    margin-bottom: 20px;
    padding: 10px;

    border-radius: 5px;
}

.table-wrapper
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.table-wrapper .col
{
    flex-basis: calc(33.33% - 20px);

    margin-bottom: 20px;
}

.table-wrapper .col .container-column
{
    overflow: auto;

    height: 250px; /* Adjust the height as needed */
}

.table-wrapper .col h2
{
    margin-bottom: 10px;
}

.table-wrapper .col table
{
    width: 100%;
}

.table-wrapper table
{
    width: 100%;
    min-width: 600px;
    margin-bottom: 1rem;

    background-color: #fff;
}

.table-wrapper .col table th,
.table-wrapper .col table td
{
    white-space: normal;
    word-break: break-word;
}

.tshirt-icon
{
    font-size: 24px;

    margin-bottom: 10px;
}


/* Custom classes for adjusting padding, margin, and spacing */
.custom-input-group
{
    margin-bottom: 5px; /* Adjust the margin-bottom as needed */

    border-color: #dee2e6;
}

.custom-form-control
{
    font-size: 14px; /* Adjust the font size as needed */

    padding: 5px; /* Adjust the padding as needed */

    border-color: #dee2e6;
    border-right-style: none;
}

.custom-delete-btn
{
    margin-left: 10px; /* Adjust the margin-left as needed */
}

.input-group
{
    padding: 3px;
}

.delete-btn
{
    font-size: 16px;

    z-index: 10;

    cursor: pointer;

    border: 1px;
    border-style: solid;
    border-color: #dee2e6;
    border-left-style: none;
    background: none;
}

.drop-container
{
    align-items: center;

    margin-left: -30px;
}

/* Add custom styles for draggable list items */
.drop-list li
{
    align-items: center;
    justify-content: space-between;

    width: 100%;
    margin-bottom: 5px;
    padding: 5px;

    list-style-type: none; /* Remove the bullets */

    color: gray;
    border-width: 1px;
    border-style: solid;
    border-color: #dee2e6;
    border-radius: 5px;

    touch-action: none;
}

.item-content
{
    display: flex;
    align-items: center;
}

.item-text
{
    margin-right: auto;

    word-break: break-word;
}

.reorder-handle
{
    margin-right: 5px;
    margin-left: auto;
}

.drop-list li:hover
{
    position: relative;

    background-color: whitesmoke;

    touch-action: none;
}

.drop-list li:hover::before
{
    font-size: x-small;

    position: absolute;
    top: 50%;
    left: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    content: 'Drag to reorder';
    transform: translate(-50%, -50%);
    text-align: center;

    color: lightgray;

    touch-action: none;
}
.impact-labels
{
    display: flex;
    flex-direction: column;
}

.highest-impact
{
    font-family: 'Figtree Bold', sans-serif;
    font-size: x-small;
    font-weight: bold;

    margin-bottom: 5px;

    text-align: right;
}

.lowest-impact
{
    font-family: 'Figtree Bold', sans-serif;
    font-size: x-small;
    font-weight: bold;

    margin-top: 5px;

    text-align: right;
}
.icon
{
    color: lightgray; /* Set the desired color for the icon */
}

.item-text
{
    color: black; /* Set the desired color for the item text */
}


.italic
{
    font-style: italic;
}


.checkmark-icon
{
    display: none;

    margin-left: 5px;
}

.checkmark-icon.show
{
    display: inline-block;
}

.toggle-table
{
    margin-bottom: 20px;
}

.toggle-button
{
    width: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;

    cursor: pointer;

    color: #fff;
    border: none;
    border-radius: 50px;
    background-color: lightgray;
}

.toggle-button:hover
{
    background-color: #6c757d;
}

.export-button
{
    width: 140px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 5px;

    cursor: pointer;

    color: #fff;
    border: none;
    border-radius: 50px;
    background-color: lightgray;
}

.export-button:hover
{
    background-color: #1d7d39;
}

.container-column li:hover
{
    cursor: pointer;

    background-color: #f7f7f7;
}

.container-column li:highlighted
{
    cursor: pointer;

    background-color: green;
}
.container-column li.selected
{
    

    background-color: #f7f7f7;
}

.container-column li span
{
    display: none;
}

.container-column li:hover span
{
    display: inline-block;
}

.items li.highlighted
{
    cursor: pointer;

    background-color: green;
}

.items li:hover
{
    cursor: pointer;

    background-color: cornflowerblue;
}

.container-column li.highlighted,
.items li.highlighted
{
    cursor: pointer;

    background-color: green;
}

.highlighted
{

    background-color: #cee7f3;
}

/*  ribbon css */.box
{
    position: relative;

    width: 100%;
    max-width: 100%;
    min-height: 200px;
    margin-top: 20px;

    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
}

/* common */

/* yellow ribbon */
.ribbon-now
{
    position: absolute;

    overflow: hidden;

    width: 150px;
    height: 150px;
}
.ribbon-now::before,
.ribbon-now::after
{
    position: absolute;
    z-index: -1;

    display: block;

    content: '';

    border: 5px solid #219ebc;
}
.ribbon-now span
{
    font-size: 14pt;
    font-weight: bold;

    position: absolute;

    display: block;

    width: 225px;
    padding: 10px 0;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background-color: #8ecae6;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
}

.ribbon-next
{
    position: absolute;

    overflow: hidden;

    width: 150px;
    height: 150px;
}
.ribbon-next::before,
.ribbon-next::after
{
    position: absolute;
    z-index: -1;

    display: block;

    content: '';

    border: 5px solid #023047;
}
.ribbon-next span
{
    font-size: 14pt;
    font-weight: bold;

    position: absolute;

    display: block;

    width: 225px;
    padding: 10px 0;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background-color: #219ebc;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
}

/* blue ribbon */
.ribbon-later
{
    position: absolute;

    overflow: hidden;

    width: 150px;
    height: 150px;
}
.ribbon-later::before,
.ribbon-later::after
{
    position: absolute;
    z-index: -1;

    display: block;

    content: '';

    border: 5px solid #000;
}
.ribbon-later span
{
    font-size: 14pt;
    font-weight: bold;

    position: absolute;

    display: block;

    width: 225px;
    padding: 10px 0;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background-color: #023047;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
}

/* top right*/
.ribbon-top-right
{
    top: -10px;
    right: -10px;
}
.ribbon-top-right::before,
.ribbon-top-right::after
{
    border-top-color: transparent;
    border-right-color: transparent;
}
.ribbon-top-right::before
{
    top: 0;
    left: 0;
}
.ribbon-top-right::after
{
    right: 0;
    bottom: 0;
}
.ribbon-top-right span
{
    top: 30px;
    left: -25px;

    transform: rotate(45deg);
}

/* bottom left*/
.ribbon-bottom-left
{
    bottom: -10px;
    left: -10px;
}
.ribbon-bottom-left::before,
.ribbon-bottom-left::after
{
    border-bottom-color: transparent;
    border-left-color: transparent;
}
.ribbon-bottom-left::before
{
    right: 0;
    bottom: 0;
}
.ribbon-bottom-left::after
{
    top: 0;
    left: 0;
}
.ribbon-bottom-left span
{
    right: -25px;
    bottom: 30px;

    transform: rotate(225deg);
}

#row1
{
    padding: 10px;

    border: 3px solid #033045;
    border-radius: 10px;
}

.badge1-promo
{
    font-family: 'Lato', sans-serif;
    font-size: 12pt;
    font-weight: 500;
    font-style: italic;
    
    padding: 5px;

    text-align: center;

    color: white;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    background-color: #033045;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
}
.divider
{
    display: inline-block;
    align-self: stretch;

    width: 1px;

    background-color: whitesmoke;
}
.drop-container
{
    position: relative;
}

.drop-label-top,
.drop-label-bottom
{
    font-size: 10px;
    font-weight: 200;

    position: absolute;
    right: 0;

    text-transform: uppercase;
}

.drop-label-top
{
    top: -15px;
}

.drop-label-bottom
{
    bottom: -15px;
}

/* Default styling */
footer
{
    position: fixed;
    z-index: 1;
    bottom: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    padding: 5px;

    color: #fec93b;
    background-color: #033045;
}

.footer-left
{
    font-family: 'Lato' 'sans-serif';
    font-size: small;

    display: flex;
    align-items: center;

    margin-left: 20px;

    color: #67828f;
}

.footer-left .left-icon
{
    margin-right: 5px;
}

.footer-middle
{
    font-size: small;

    display: flex;
    align-items: center;

    text-align: center;
    letter-spacing: -.4px;

    color: #67828f;
}

.footer-right
{
    display: flex;
    align-items: center;

    margin-right: 20px;
}

.footer-right .right-icon
{
    margin-right: 5px;

    color: #fec93b;
}

.footer-right .feedback-link
{
    transition: color .3s;
    text-decoration: none;

    color: #fec93b;
}

.footer-right .feedback-link:hover
{
    text-decoration: none;

    color: #269eb9;
}

.footer-right .feedback-link:hover:visited
{
    color: #fb8627;
}

/* Responsive styling */
@media (max-width: 768px)
{
    footer
    {
        line-height: 1;

        align-items: center;
        flex-direction: column;
        justify-content: center;

        padding: 10px;
    }

    .footer-left,
    .footer-right
    {
        display: flex;
        justify-content: center;

        margin: 0;
    }

    .footer-left
    {
        margin-left: 0;
    }

    .footer-right
    {
        margin-right: 0;
        padding: 10px;
    }

    .footer-left .rocket-leap,
    .footer-right .feedback-link,
    .footer-middle
    {
        display: inline-block;
    }
}

/* Add the following media queries at the end of your style.css file */

/* Responsive Styles for Screens Smaller than 480px */
@media (max-width: 480px)
{
    .container
    {
        padding: 10px;
    }
    .logo-image
    {
        width: 30%;
    }


    .logo-header
    {
        align-items: center;
        flex-direction: column;

        text-align: center;
    }


    h1
    {
        font-family: 'Lato',sans-serif;
        font-size: 32px;
        font-weight: 600;

        margin-top: -30px;
    }

    .container-column
    {
        min-height: auto;
    }
    .box
    {
        margin-bottom: 20px;
        display:flex;
        flex-direction: column;
        height:100%;
    }
    .box > div,
.box > h3,
.box > .container-column {
  flex: 1;
}

    .container-heading
    {
        font-size: 16px;
    }

    .col
    {
        flex-basis: 100%;

        margin-bottom: 20px;
    }

    .divider
    {
        display: none;
    }

    .navigation-buttons
    {
        align-items: center;
        flex-direction: column;
    }

    .toggle-table
    {
        align-items: center;
        flex-direction: column;
    }

    .toggle-button,
    .export-button
    {
        width: 100%;
        margin-top: 10px;
    }
}

/* Responsive Styles for Screens Between 480px and 768px */
@media (min-width: 481px) and (max-width: 768px)
{
    h1
    {
        font-size: 22px;
    }
    .next-button
    {
        order: -1;
    }
    .container-column
    {
        min-height: 200px;
    }
}

/* Responsive Styles for Screens Between 768px and 1024px */
@media (min-width: 769px) and (max-width: 1024px)
{
    .next-button
    {
        order: -1;
    }
    h1
    {
        font-size: 26px;
    }
    .navigation-buttons
    {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .navigation-buttons button
    {
        width: 100%;
    }
}
@media (max-width: 767px)
{
    .navigation-buttons
    {
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .next-button
    {
        order: -1;
    }
    .navigation-buttons button
    {
        width: 100%;
    }
}



.reorder-handle-container
{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px; /* Adjust the width to make the drag zone bigger */
    height: 30px; /* Adjust the height to make the drag zone bigger */

    cursor: move;

    border-radius: 5px;
    background-color: transparent;
}

.reorder-handle-container:hover
{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px; /* Adjust the width to make the drag zone bigger */
    height: 30px; /* Adjust the height to make the drag zone bigger */

    cursor: p;

    border-radius: 5px;
    background-color: transparent;
}

.reorder-handle
{
    display: flex;
    align-items: center;
    justify-content: center;

    width: 16px; /* Adjust the width of the grab icon */
    height: 16px; /* Adjust the height of the grab icon */
    padding-right: 10px;

    cursor: grab;
    color: #ccc; /* Set the color of the grab icon */
}

.video-container {
    position: relative;
    width: 930px;
    height: 523.125px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  @media (max-width: 1160px) {
    .video-container {
      width: 100%;
      height: 0;
      padding-bottom: 56.25%;
    }
  }
  
  .video-info {
    display: flex;
    align-items: center;
  }

  .product-container {
    font-family: 'Lato', sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .pcard {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content horizontally */
    justify-content: center; /* Center content vertically */
    width: calc(30%);
    margin: 15px;
    margin-bottom:30px;
    text-align: center;
    color: var(--card-text-color, #033045);
    border-radius: 20px;
    background-color: var(--card-bg-color, 'whitesmoke');
  }

.pcard:hover
{
    background-color: whitesmoke;
    transition: 0.3s;
    box-shadow: 0 0 10px #fec93b; /* Add shadow on hover */
    color:#033045;
}

.pcard img
{
    max-height: 100px;
    height: auto;
    margin: 0 auto;
    padding-bottom:20px;
    filter: brightness(0) invert(1);
opacity: .3;
}

.pcard:hover img
{
    max-height: 100px;
    height: auto;
    margin: 0 auto;
    filter: invert(0) brightness(0);
opacity: .3;
}

.pcard h1{
    color: #fff;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    }

    .pcard:hover h1{
        color: #033045;
        font-size: 56px;
        font-style: normal;
        }
.pcard h2
{
    font-size: 18px;
    font-weight:bold;
    font-weight: 900;
}

.pcard h3
{
    font-size: 36px;
    font-weight: 900;

    margin-top: 20px;
}

.pcard h4
{
    font-size: 24px;
    font-weight: 900;
    padding-top:40px;

    z-index: 1;
}

.pcard h5{
    flex-grow: 1;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    padding:10px;
}

.pcard h5 strong {
    color: #fec93b;
    font-style: italic;
    padding-bottom: 10px;
    font-weight: 500;
}

.pcard:hover h5 strong {
    color: #033045;
    font-style: italic;
    padding-bottom: 10px;
}

.pcard p{
    flex-grow: 1;
    font-size: 14px;
}

.pcard .course p, ul{
    font-size:12px;
    text-align:left;
}

.pbutton
{
    display: block;
    align-self: center;

    box-sizing: border-box; /* Include padding in the total width */
    width: 80%;
    margin: 30px;
    padding: 10px 20px;

    text-align: center; /* Center the button text */
    text-decoration: none;

    color: var(--button-text-color, #033045);
    border-radius: 50px;
    background-color: var(--button-bg-color,#fec93b);
    border-color:#fec93b;
    border-style:solid;
}

.pbutton:hover{
    background-color: #fdb731;
    border-color:#033045;
    border-style:solid;
}


.pbutton2
{
    display: block;
    align-self: center;

    box-sizing: border-box; /* Include padding in the total width */
    width: 80%;
    padding: 10px 20px;

    text-align: center; /* Center the button text */
    text-decoration: none;

    color: #fec93b;
    border-radius: 5px;
    border-color:#fec93b;
    border-style: solid;
    background-color: transparent;
}

.pbutton2:hover{
    border-color: #033045;
    color:#033045;
    background-color: #fec93b;
}

.pcard:hover .water-drop-button{
    border-color:#033045;
    border-style:solid;
    color:#033045;

}

/* CSS for the water-drop-button */
.water-drop-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #033045;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: block;
    align-self: center;

    box-sizing: border-box; /* Include padding in the total width */
    width: 80%;
    margin: 30px;
    padding: 10px 20px;

    text-align: center; /* Center the button text */
    text-decoration: none;

    border-radius: 50px;
    border-color:#fec93b;
    border-style: solid;
    background-color: transparent;
  }

  
  /* Keyframes for the bouncing animation */
  @keyframes bounce-effect {
    0%, 100% {
      transform: translateY(0);
    }
    25% {
      transform: translateY(-20px);
    }
    50% {
      transform: translateY(0);
    }
    75% {
      transform: translateY(-10px);
    }
  }
  
  /* Animation on hover */
  .pcard:hover .water-drop-button {
    animation: bounce-effect 0.5s ease;
  }
  
.pcard h2,
.pcard h1,
.pcard h4,
.pcard h5 {
  margin: 0;
}

@media (max-width: 1024px)
{
    .pcard
    {
        width: calc(50% - 20px);
    }
}
@media (max-width: 600px)
{
    .pcard
    {
        width: 100%;
    }
}

.pcard.card
{
    --card-bg-color: #033045;
    --card-text-color: #fff;
    --button-bg-color: #fec93b;
    --button-text-color: #033045;
}
.pcard.card strong {
    color: #fec93b;
    font-style: italic;
}

.pcard .tagline {
    font-size: 15px;
    font-weight: 400;
    font-style: italic;
    margin: -10px;
}


.info-icon
{
    font-size: 18px;

    display: inline-block;

    margin-left: 10px;

    cursor: pointer;
    transition: color .3s; /* Add transition for smooth color change */

    color: lightgray;
}

.info-icon:hover
{
    color: #269eb9; /* Change the color on hover if desired */
}




#resultsTable tbody tr {
    font-size: 14px;
  }

 
  .box {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  

