@font-face {
    font-family: 'JetBrains Mono';
    src: url('../../node_modules/jetbrains-mono/fonts/webfonts/JetBrainsMono-Regular.woff2') format('woff2'),
         url('../../node_modules/jetbrains-mono/fonts/webfonts/JetBrainsMono-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url('../../node_modules/jetbrains-mono/fonts/webfonts/JetBrainsMono-Bold.woff2') format('woff2'),
         url('../../node_modules/jetbrains-mono/fonts/webfonts/JetBrainsMono-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'JetBrains Mono', Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #000;
    font-size: .95rem;
}

p {
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

h1 {
    font-weight: 800;
}

#bodyContent h2 {
    font-weight: 700;
    line-height: 1.4;
}

#bodyContent h3 {
    font-weight: 300;
    line-height: 1.4;
}

#bodyContent h2, h3 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#bodyContent h2 + h3 {
    padding-top: 0;
    margin-top: -2rem;
}

strong {
    font-weight: 700;
}

.card {
    border: 2px solid transparent;
    box-shadow: 0 0 20px 2px #efefef;
    transition: all .2s ease-in-out;
    border-radius: .8rem;
}

.cheaper {
    border: 2px solid #28a745 !important;
    box-shadow: 0 0 20px 2px rgba(40,167,69,0.3) !important;
    background: #f0fff0;
    animation: cheaper-scale .75s ease;
}

@keyframes cheaper-scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.expensive {
    border: 2px solid #dc3545 !important;
    box-shadow: 0 0 20px 2px rgba(220,53,69,0.3) !important;
    background: #fff1f1;
}

.vs-circle {
    width: 64px;
    height: 64px;
    background: #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #495057;
    margin: 0 auto;
}

.input-group-text, 
input[type="number"] {
    border-color: black !important;
}

.form-label {
    font-weight: bold;
    font-size: .9rem;
}

a.alink {
    position: relative;
}

a.alink:after {
    content: '*';
    font-size: 55%;
    position: absolute;
    margin-top: -2px;
    right: -7px;
    color: #555;
}

#langDropdown {
    font-size: .85rem;
}

#langDropdown + ul.dropdown-menu {
    border-color: #000;
}

.dropdown-item {
    font-size: .85rem;
}

@media (max-width: 767.98px) {
    .vs-circle {
        margin-bottom: 1rem;
    }

    h1 span, 
    .lead.intro span {
        display: none;
    } 

    .form-label {
        font-size: .75rem;
    }
}