﻿:root {
    --bs-dark-rgb: 49,87,111;
    --bs-primary: #31576f;
    --bs-eu-blue: #0e47cb;
    --bs-primary-rgb: 49,87,111;
    --bs-primary-2: #ffad2d;
    --bs-primary-2-rgb: 275,173,45;
}

/* Move down content because we have a fixed navbar that is 85px tall */
body {
    padding-top: 100px;
    padding-bottom: 20px;
    /*font-size: 14pt;*/
    background-color: #eeeeee;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set widths on the form inputs since otherwise they're 100% wide */
input,
select,
textarea {
    max-width: 280px;
    /*padding: 4px;*/
    /*border: 1px solid #cccccc;
    border-radius: 5px;*/
}

    input::placeholder {
        font-size: 12pt;
    }

    input:focus, select:focus, textarea:focus {
        outline: none;
    }

/*:-moz-focusring,
:focus,
button::-moz-focus-inner,
:-moz-focusring *,
:focus * {
    outline: revert !important;
    outline-offset: revert !important;
    -moz-outline-radius: revert !important;
    box-shadow: revert !important;
}*/

.bs-primary-2 {
    color: var(--bs-primary-2);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.step-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #ffffff;
    transition: .4s;
}

    .step-button[aria-expanded="true"] {
        width: 60px;
        height: 60px;
        background-color: var(--bs-primary);
        color: #fff;
    }

.done {
    background-color: var(--bs-primary);
    color: #fff;
}

.step-item {
    z-index: 10;
    text-align: center;
    width: 110px;
    padding-top: 20px;
}

.step-title {
    justify-content: center;
}

#progress {
    -webkit-appearance: none;
    position: absolute;
    width: 95%;
    z-index: 5;
    height: 10px;
    margin-left: 18px;
    margin-bottom: 18px;
}
    /* to customize progress bar */
    #progress::-webkit-progress-value {
        background-color: var(--bs-primary);
        transition: .5s ease;
    }

    #progress::-webkit-progress-bar {
        background-color: #ffffff;
    }


.fill-round-primary-large {
    border-radius: 50%;
    border: none;
    background-color: var(--bs-primary);
    color: #ffffff;
    overflow: hidden;
    padding-left: 5px;
    padding-right: 5px;
    vertical-align: middle;
    text-align: center;
}

.font-disabled {
    color: #aaaaaa;
}

fieldset {
    background-color: #eeeeee;
}

legend {
    background-color: gray;
    color: white;
    padding: 5px 10px;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

    .btn-primary:hover, .btn-primary:active, .btn-primary:after, .btn-primary:disabled {
        background-color: #ffad2d;
    }

/*a {
    color: var(--bs-primary);
}

    a:hover, a:active, a:after, a:disabled {
        color: #ffad2d;
    }*/

.captcha-image {
    display: grid;
    align-items: center;
    grid-template-columns: 250px 25px;
    column-gap: 0px;
}

.captcha-refresh {
    height: 60px;
    padding: 2px;
    padding-top: 2px;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
    display: inline-table;
    padding-top: 16px;
    background-color: var(--bs-primary);
    color: #fff;
}

.label-required::after {
    content: ' (*)';
    color: red;
}

.vlidator-message {
    color: red;
    font-size: x-small;
}

#progress {
    color: var(--bs-primary);
}

    #progress::-moz-progress-bar {
        background: var(--bs-primary);
    }

.progress-files {
    width: 400px
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity)) !important;
    border-bottom: solid 4px #ffad2d;
}

.primary-color {
    color: var(--bs-primary);
}

.eu-color {
    color: var(--bs-eu-blue);
}

.edit-button {
    font-size: small;
    color: #fff;
}

.navbar-dark {
    --bs-navbar-color: rgba(255, 255, 255, 1);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #fff;
    --bs-navbar-brand-color: #fff;
    --bs-navbar-brand-hover-color: #fff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
}

.external-link::after,
[class^="external-"]::after,
[class*=" external-"]::after {
    display: inline-block;
    font-display: block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 600 !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.125em;
    padding-left: 4px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f1c5";
}

.spinner {
    position: fixed;
    z-index: 1031;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader {
    background: rgba(255,255,255,0.5);
}

/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
    .menu-border-left {
        border-left: 1px solid var(--bs-navbar-color);
        border-right: 1px solid var(--bs-navbar-color);
    }
}
