:root{
    --text-color: #222831
}


body {
    --tw-bg-opacity: 1;
    background-color: rgb(241 244 249 / var(--tw-bg-opacity));
    color: var(--text-color);
}
.bg-nav{
    background-color: #0C2B4E;
    color: #ffffff;
}

.navbar-brand{
    color: #ffffff;
}

.form-check-input:checked {
    background-color: #1D546C;
    border-color: #1D546C;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #1A3D64;
    --bs-btn-border-color: #1A3D64;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #1A3D64;
    --bs-btn-hover-border-color: #1A3D64;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #1d4574;
    --bs-btn-active-border-color: #1A3D64;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #1A3D64;
    --bs-btn-disabled-border-color: #1A3D64;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

.fade-in {
    animation: fadeIn 0.6s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.blank-div{
    background-color: #bcbcbc;
    height: 1em;
    width: 1em;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    border-radius: 0.25em;
    -webkit-border-radius: 0.25em;
    -moz-border-radius: 0.25em;
    -ms-border-radius: 0.25em;
    -o-border-radius: 0.25em;
}

.blank-div-circle {
    background-color: #bcbcbc;
    height: 1em;
    width: 1em;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    border-radius: 1em;
    -webkit-border-radius: 1em;
    -moz-border-radius: 1em;
    -ms-border-radius: 1em;
    -o-border-radius: 1em;
}

.range-div{
    display: grid;
    grid-template-columns: auto auto;
}

.navbar-brand:hover{
    color: #FFFFFF;
}

.drag_list_item{
    display: flex;
    gap: 10px;
    cursor: move;
}

.drag-text{
    margin: 0;
}

.drag-icon{
    width: 20px;
}

.ghost-background-class{
    background-color: #cfcfcf;
}

.input-prefix {
    position: relative;
    display: inline-block;
}

.input-prefix .prefix {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: x-large;
}

.input-prefix input {
    padding-left: 25px;
    /* espacio para el prefijo */
}

.error-indication{
    color: #cf3333;
    font-size: 13px;
    padding-left: 10px;
    font-style: italic;
}

.other-list-group{
    margin-top: 10px;
}
.span-info-drag{
    color: #353535;
    font-size: 13px;
    padding-left: 20px;
    font-style: italic;
    margin-bottom: 10px;
}