/* Extracted classes */


/* Buttons */

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}


/* Rounded pill */

.rounded-pill {
    border-radius: 50rem !important;
}


/* Shadow */

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}


/* Card */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}


/* Modal */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}


/* Grid */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}


/* Close button */

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(0, 123, 255, .25);
    opacity: 1;
}


/* Alert */

.owl360_alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

.owl360_alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.owl360_alert-dismissible {
    padding-right: 4rem;
}

.owl360_alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: inherit;
}

.fade {
    transition: opacity .15s linear;
}

.show {
    display: block;
    opacity: 1;
}

.owl360-d-none {
    display: none !important;
}

.owl360-d-block {
    display: block !important;
}


/* Clase para el contenedor del menú */

.owl360-menu-host-wrapper {
    padding: 0px;
}

.owl360-menu-wrapper {
    background-color: #fff;
    /* Fondo blanco */
    padding: 10px;
    /* Espaciado interno */
    border-radius: 5px;
    /* Bordes redondeados (opcional) */
}


/* Clase para el contenedor real del menú */

.owl360-menu-class {
    border: 1px solid #ccc;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* Clase para el <ul> del menú */

.owl360-menu-class ul {
    list-style: none;
    padding: 0;
    padding-left: 30px;
    margin: 0;
}

.owl360-menu-class li {
    padding-top: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* Clase para las opciones del menú */

.owl360-menu-items-class {
    padding: 5px 10px;
    margin: 5px 0;
    cursor: pointer;
}


/* Estilo para cuando se enfoca una opción del menú */

.owl360-menu-items-class:hover,
.owl360-menu-items-class:focus {
    background-color: #f0f0f0;
    /* Fondo gris claro al pasar o enfocar */
    color: #000;
    /* Color de texto (puedes ajustarlo según tu diseño) */
    outline: none;
    /* Elimina el borde predeterminado del foco */
}

.owl360_input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.owl360_input-group>.owl360_custom-file,
.owl360_input-group>.owl360_custom-select,
.owl360_input-group>.owl360_form-control,
.owl360_input-group>.owl360_form-control-plaintext {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}

.owl360_input-group>.owl360_custom-file+.owl360_custom-file,
.owl360_input-group>.owl360_custom-file+.owl360_custom-select,
.owl360_input-group>.owl360_custom-file+.owl360_form-control,
.owl360_input-group>.owl360_custom-select+.owl360_custom-file,
.owl360_input-group>.owl360_custom-select+.owl360_custom-select,
.owl360_input-group>.owl360_custom-select+.owl360_form-control,
.owl360_input-group>.owl360_form-control+.owl360_custom-file,
.owl360_input-group>.owl360_form-control+.owl360_custom-select,
.owl360_input-group>.owl360_form-control+.owl360_form-control,
.owl360_input-group>.owl360_form-control-plaintext+.owl360_custom-file,
.owl360_input-group>.owl360_form-control-plaintext+.owl360_custom-select,
.owl360_input-group>.owl360_form-control-plaintext+.owl360_form-control {
    margin-left: -1px;
}

.owl360_input-group>.owl360_custom-file .owl360_custom-file-input:focus~.owl360_custom-file-label,
.owl360_input-group>.owl360_custom-select:focus,
.owl360_input-group>.owl360_form-control:focus {
    z-index: 3;
}

.owl360_input-group>.owl360_custom-file .owl360_custom-file-input:focus {
    z-index: 4;
}

.owl360_input-group>.owl360_custom-select:not(:last-child),
.owl360_input-group>.owl360_form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.owl360_input-group>.owl360_custom-select:not(:first-child),
.owl360_input-group>.owl360_form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.owl360_input-group>.owl360_custom-file {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.owl360_input-group>.owl360_custom-file:not(:last-child) .owl360_custom-file-label,
.owl360_input-group>.owl360_custom-file:not(:last-child) .owl360_custom-file-label::after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.owl360_input-group>.owl360_custom-file:not(:first-child) .owl360_custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.owl360_input-group-prepend,
.owl360_input-group-append {
    display: -ms-flexbox;
    display: flex;
}

.owl360_input-group-prepend .owl360_btn,
.owl360_input-group-append .owl360_btn {
    position: relative;
    z-index: 2;
}

.owl360_input-group-prepend .owl360_btn:focus,
.owl360_input-group-append .owl360_btn:focus {
    z-index: 3;
}

.owl360_input-group-prepend .owl360_btn+.owl360_btn,
.owl360_input-group-prepend .owl360_btn+.owl360_input-group-text,
.owl360_input-group-prepend .owl360_input-group-text+.owl360_btn,
.owl360_input-group-prepend .owl360_input-group-text+.owl360_input-group-text,
.owl360_input-group-append .owl360_btn+.owl360_btn,
.owl360_input-group-append .owl360_btn+.owl360_input-group-text,
.owl360_input-group-append .owl360_input-group-text+.owl360_btn,
.owl360_input-group-append .owl360_input-group-text+.owl360_input-group-text {
    margin-left: -1px;
}

.owl360_input-group-prepend {
    margin-right: -1px;
}

.owl360_input-group-append {
    margin-left: -1px;
}

.owl360_input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}

.owl360_input-group-text input[type=checkbox],
.owl360_input-group-text input[type=radio] {
    margin-top: 0;
}


/* Margins */

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.ml-5 {
    margin-left: 3rem !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.mr-5 {
    margin-right: 3rem !important;
}


/* Padding */

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.pl-4 {
    padding-left: 1.5rem !important;
}

.pl-5 {
    padding-left: 3rem !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

.pr-4 {
    padding-right: 1.5rem !important;
}

.pr-5 {
    padding-right: 3rem !important;
}

.owl360_col,
.owl360_col-12 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.owl360_col-6 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 50%;
}

.owl360_col-4 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 33.33333333%;
}

.owl360_col-3 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 25%;
}

.owl360_col-sm,
.owl360_col-sm-12 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex-basis: 100%;
    max-width: 100%;
}

.owl360_col-sm-6 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 50%;
}

.owl360_col-sm-4 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 33.33333333%;
}

.owl360_col-sm-3 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 25%;
}

.owl360_col-md,
.owl360_col-md-12 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex-basis: 100%;
    max-width: 100%;
}

.owl360_col-md-6 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 50%;
}

.owl360_col-md-4 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 33.33333333%;
}

.owl360_col-md-3 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 25%;
}

.owl360_col-lg,
.owl360_col-lg-12 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex-basis: 100%;
    max-width: 100%;
}

.owl360_col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 50%;
}

.owl360_col-lg-4 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 33.33333333%;
}

.owl360_col-lg-3 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 25%;
}

.owl360_col-xl,
.owl360_col-xl-12 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex-basis: 100%;
    max-width: 100%;
}

.owl360_col-xl-6 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 50%;
}

.owl360_col-xl-4 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 33.33333333%;
}

.owl360_col-xl-3 {
    position: relative;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    flex: 0 0 auto;
    width: 25%;
}