:root {
    --tba-dark: #1e1f24;
    --tba-iron: #f8f9fa;
    --tba-eagle: #b3baa0;
    --tba-juniper: #648c94;
    --tba-gray: #454545;
    --tba-text-light: #F8F9FA;
}

@font-face {
    font-family: 'Booter - Five Five';
    src: local('../fonts/BOOTERFF.ttf'), url('../fonts/BOOTERFF.ttf');
}

.tba-bg-dark {
    --bs-bg-opacity: 1;
    background-color: var(--tba-dark) !important;
}

.tba-font-dark {
    color: var(--tba-dark);
}

/*Binds the header label and text to the left*/
.header .top-parent {
    float: left;
}

/*Binds the header label and text to the left*/
.header .top-child {
    float: left;
}

/*Binds the header text above and below each other*/
.header .label-outer {
    width: 180px;
    height: 50px;
    margin: 10px 20px 0 0;
    /* important part */
    display: grid;
    place-items: left;
    grid-template-areas: "inner-div";
}

    .header .label-outer .inner {
        width: 100px;
        height: 25px;
        margin-top: -20px;
        /* important part */
        grid-area: inner-div;
    }

@media (min-width: 768px) {
    .header .label-outer {
        width: 180px;
        height: 50px;
        margin: 25px 20px 0 0;
        /* important part */
        display: grid;
        place-items: left;
        grid-template-areas: "inner-div";
    }

        .header .label-outer .inner {
            width: 100px;
            height: 25px;
            margin-top: -20px;
            /* important part */
            grid-area: inner-div;
        }
}

.header .company_label {
    height:60px;
    margin:2px;
}
@media (min-width: 768px) {
    .header .company_label {
        height: 90px;
        margin: 5px;
    }
}

.header .company_title {
    font-family: 'Booter - Five Five';
    color: #d3d3d3 !important;
    font-size: 38px;
    text-decoration: none;
    margin-top: 0px;
    display: inline-block;
}

/*Binds the header text above and below each other*/
.footer .label-outer {
    width: 200px;
    height: 280px;
    margin: 0 20px 0 0;
    /* important part */
    display: grid;
    place-items: left;
    grid-template-areas: "inner-div";
}

    .footer .label-outer .inner {
        width: 100px;
        height: 25px;
        margin-top: -50px;
        /* important part */
        grid-area: inner-div;
    }

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 40px;
    background-color: #f8f9fa;
}

.collapse {
    display: block;
}

@media (min-width: 768px) {
    .device-gap-3 {
        gap: 1rem !important;
    }
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default:focus,
.btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c;
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    background-image: none;
    border-color: #adadad;
}

    .btn-default:active:hover,
    .btn-default.active:hover,
    .open > .dropdown-toggle.btn-default:hover,
    .btn-default:active:focus,
    .btn-default.active:focus,
    .open > .dropdown-toggle.btn-default:focus,
    .btn-default:active.focus,
    .btn-default.active.focus,
    .open > .dropdown-toggle.btn-default.focus {
        color: #333;
        background-color: #d4d4d4;
        border-color: #8c8c8c;
    }

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc;
}

.btn-default .badge {
    color: #fff;
    background-color: #333;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-md-5th, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-1 {
    width: 8.3333333333%;
}

.col-xs-2 {
    width: 16.6666666667%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-4 {
    width: 33.3333333333%;
}

.col-xs-5 {
    width: 41.6666666667%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-7 {
    width: 58.3333333333%;
}

.col-xs-8 {
    width: 66.6666666667%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-10 {
    width: 83.3333333333%;
}

.col-xs-11 {
    width: 91.6666666667%;
}

.col-xs-12 {
    width: 100%;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 40px;
}

@media (max-width: 768px) {
    .footer .company-label-hide {
        display: none;
    }
}

    .footer .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 10px;
        padding-right: 10px;
    }

        .footer .container:before, .footer .container:after {
            content: " ";
            display: table;
        }

        .footer .container:after {
            clear: both;
        }

    @media (min-width: 768px) {
        .footer .container {
            width: 750px;
        }
    }

    @media (min-width: 992px) {
        .footer .container {
            width: 970px;
        }
    }

    @media (min-width: 1200px) {
        .footer .container {
            width: 1170px;
        }
    }

    .footer .company-title {
        font-family: 'Booter - Five Five';
        color: var(--tba-text-light);
        font-size: 40px;
        text-decoration: none;
        margin-bottom: 6px;
        display: inline-block;
    }

    .footer-section-middle {
        padding-top: 5px;
        padding-bottom: 5px;
        background-color: var(--tba-gray);
    }

    @media (min-width: 768px) {
        .footer-column-4 {
            padding-top: 60px;
        }
    }

    @media (min-width: 768px) {
        .footer .link-column {
            padding-top: 40px;
            padding-left: 40px;
        }
    }

.footer .link-column-title {
    font-family: 'Booter - Five Five';
    color: var(--tba-text-light);
    font-size: 30px;
    text-decoration: none;
    margin-bottom: 13px;
    display: inline-block;
}

    @media (min-width: 768px) {
        .footer .link-column-title {
            pointer-events: none;
        }
    }


.footer .link-column-item {
    font-family: 'Booter - Five Five';
    color: var(--tba-text-light);
    text-decoration: none;
    margin-bottom: 0px;
    font-size: 25px;
}

    .footer .row {
        margin-left: 5px;
        margin-right: 5px;
    }

        .footer .row:before, .row:after {
            content: " ";
            display: table;
        }

        .footer .row:after {
            clear: both;
        }

    .navbar-dropdown-item-pirate {
        font-family: 'Booter - Five Five';
        font-size: 25px;
    }

    .navbar-text-pirate {
        font-family: 'Booter - Five Five';
        font-size: 30px;
    }

    .pirate-gray {
        /*color: #d3d3d3 !important;*/
    }
