﻿@import "../fonts/Roboto/roboto.css";

html {
    font-size: 14px;
    font-family: Roboto, 'Proxima Nova Rg', Montserrat, Inter;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: Roboto, 'Proxima Nova Rg', Montserrat, Inter;
}

/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    color: #0077cc;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

label {
    display: inline-block;
    margin-bottom: 0;
    font-size: 0.9rem;
}
button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}


/* select2 */
.select2-selection {
    font-size: 1rem;
    padding: 0.375rem 0;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e9ecef;
    cursor: default;
}
/* /select2 */


/* select2 */
/*.select2-results__option--highlighted {
    background-color: red !important;
}
*/
.select2-container--default .select2-selection--single {
    border: 1px solid rgb(206, 212, 218) !important;
    _border-radius: 0 !important;
}

.select2-search__field:focus-visible, .select2-selection__rendered:focus-visible, .select2-selection:focus-visible, .select2-selection--single:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

.select2-selection__arrow {
    margin-top: 4px;
}

.select2-container .select2-selection--single {
    height: 37px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    _color: #444;
    line-height: 24px !important;
    font-size: 1rem !important;
}
/* /select2 */


/* BREADCRUMB */
.breadcrumb {
    padding: 0;
    margin-bottom: 5px;
}

.breadcrumb, .breadcrumb, .breadcrumb ol {
    _color: var(--color-primary);
    color: #AAAAAA;
    background-color: transparent;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
}

.breadcrumb-arrow {
    padding-left: 5px;
    padding-right: 5px;
}

.breadcrumb-item a:hover {
    color: var(--btn-bg-primary);
}

/* /BREADCRUMB */

.cut-text {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.nowrap {
    white-space: nowrap;
}

.pointer {
    cursor: pointer;
}

.external-link::after {
    font-size: 12px;
    _color: #EEEEEE;
    padding-left: 4px;
    content: '⭷';
    content: '⮵';
}

.required::after {
    content: "*";
    font-weight: bold;
    color: red;
}

.is-closable > .content, .is-closable > .is-closable-content {
    display: none;
}
.is-closable.show > .content, .is-closable.show > .is-closable-content {
    display: initial;
}
.is-closable .header {
    cursor: pointer;
}
.is-closable .header::after {
    padding-left: 5px;
    content: '▲';
    content: '▶';
}

.is-closable.show .header::after {
    content: '▼';
}


.simple-table {
    margin-top: 20px;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    padding: 10px;
}
.simple-table > div {
    display: flex;
    padding: 15px;
}
.simple-table > div:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.simple-table > div > div:first-child {
    margin-right: auto;
    font-weight: 600;
}
.simple-table > div > div:not(:first-child) {
    padding-left: 7px;
}

.compact-table {
    margin-top: 10px;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    padding: 2px 10px;
}
.compact-table > div {
    display: flex;
    padding: 5px;
}
.compact-table > div:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.compact-table > div > div:first-child {
    margin-right: auto;
    font-weight: 600;
}
.compact-table > div > div:not(:first-child) {
    padding-left: 7px;
}