@import url('https://fonts.googleapis.com/css2?family=Asap&display=swap');

:root {
    --bs-primary: #000000;
    --bs-primary-rgb: 0, 0, 0;
    --hover-opacity: 0.7;
    --bg: #000000;
    --text-color: #FFFFFF;
    --text-color-rgb: 255, 255, 255;
    --body-bg: #FFFFFF;
    --body-text-color: #FFFFFF;
    --company-name: '[T=Ø]';
}

body {
    background: var(--bg);
    font-family: 'Asap', sans-serif;
}

a {
    color: #E32227;
}

#main {
    background: url(background.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--body-text-color);
    padding: 0 4rem 0;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#main > header + * {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#main > header + * .row {
    width: 100%;
}

.logotype {
    display: block;
    width: 20rem;
    height: 3.467rem;
    background-image: url('logo.svg');
    background-repeat: no-repeat;
}

.text-bg-primary {
    background-color: var(--bs-primary) !important;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(var(--bs-primary-rgb), var(--hover-opacity));
    --bs-btn-hover-border-color: rgba(var(--bs-primary-rgb), var(--hover-opacity));
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: rgba(var(--bs-primary-rgb), var(--hover-opacity));
    --bs-btn-active-border-color: rgba(var(--bs-primary-rgb), var(--hover-opacity));
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

#header {
    color: var(--text-color);
    width: 100%;
}

#header nav {
    font-size: 1.2rem;
}

#header .border-bottom {
    border-bottom: 0 !important;
}

#header .pb-3 {
    padding-bottom: 0 !important;
}

#header .mb-4 {
    margin-bottom: 0 !important;
}

#footer .border-top {
    border-top: 0 !important;
}

#footer h5 {
    color: rgba(var(--text-color-rgb), 0.75);
}

#footer .text-decoration-none {
    text-decoration: underline !important;
}

#footer .link-secondary {
    color: var(--text-color) !important;
}

#footer .logotype {
    width: 10rem;
    height: 2rem;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--text-color), var(--bs-text-opacity)) !important;
}

.form-control:focus {
    border-color: rgba(var(--bs-primary-rgb), var(--hover-opacity));
    box-shadow: 0 0 0 0.25rem rgb(255, 255, 255, 0.25);
}

.company-name::after {
    content: var(--company-name);
    display: inline-block;
}

.text-muted {
    color: var(--text-color) !important;
}

.pricing-header {
    margin-bottom: 2rem;
}

.card-header {
    background-color: transparent !important;
    border-bottom: 0 !important;
}

.pricing-header h2 {
    margin-bottom: 4rem;
    font-size: 1.25rem;
}

.card {
    background-color: rgba(0, 0, 0, 0.5);
}

.card-body {
    background: transparent;
    color: #FFFFFF;
    padding: 0 4rem 4rem 4rem;
}

.card-body button {
    background-color: #FFF;
    color: #000;
}

.card-body button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #000;
}

.card-header h4 {
    font-size: 2rem;
    padding-top: 2rem;
}

label[for=targetBrandMap], label[for=identifier] {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

input {
    border-radius: 0 !important;
    border: 1px solid #FFFFFF;
    color: #FFF !important;
    background: transparent !important;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(255, 255, 255, 0.75) !important;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.75) !important;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.75) !important;
}

.card-body ul {
    margin-bottom: 2rem !important;
}

.card-body ul li {
    margin-bottom: 1rem;
}

.disclaimer {
    color: #FFF;
    font-size: 0.75rem;
}

.brand-map-box {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    color: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-map-form + .brand-map-form {
    margin-top: 1rem;
}

.brand-map-box + input + .brand-map-box {
    margin-top: 1rem;
}

.brand-map-box .brand-map-box__image {
    width: 6rem;
    height: 6rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.brand-map-box .brand-map-box__image .brand-map-box__image-content {
    width: 100%;
    height: 100%;
    background-color: #868686;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.brand-map-box .brand-map-box__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-bottom: 1rem;
}

.brand-map-box .brand-map-box__text .brand-map-box__text-label {
    font-size: 1.125rem;
    font-weight: 600;
}

.brand-map-box .brand-map-box__text .brand-map-box__text-price {
    font-size: 1rem;
    font-weight: 600;
    color: #bebebe;
}

.brand-map-form__tac-checkbox {
    display: none;
}

.brand-map-box .brand-map-box__button {
    padding: 0.5rem;
    border-radius: 4px;
    color: #37305F;
    background-color: #FFF;
    text-transform: uppercase;
    min-width: 8rem;
    border: 1px solid #37305F;
    font-weight: bold;
}

.brand-map__toc-box a {
    color: #FFF;
}

@media (min-width: 768px) {
    .brand-map-box {
        flex-direction: row;
        justify-content: start;
        align-items: center;
    }

    .brand-map-box .brand-map-box__image {
        width: 4rem;
        height: 4rem;
        margin-right: 1rem;
        margin-bottom: 0;
    }

    .brand-map-box .brand-map-box__text {
        text-align: left;
        margin-right: 1rem;
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        max-width: 100%;
        min-width: 60rem;
        width: auto;
    }
}