@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --white-color: #ffffff;
    --black-color: #000000;
    --main-color: #0A7273;
    --second-color: #E9E3D5;
    --third-color: #FDA521;
    --main-acent-color: #033043;
    --second-acent-color: #888888;
    --background-color: #eeeeee;

    --font-base: 1.25rem;

    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    transition: all 0.5s linear;
    color: var(--black-color);
}

body.active {
    --white-color: #0f0f0f;
    --black-color: #ffffff;
    --main-color: #10a9ac;
    --second-color: #dbd3ca;
    --third-color: #63410f;
    --main-acent-color: #888888;
    --second-acent-color: #033043;
    --background-color: #181818;
}

h1,
.h1 {
    font-size: calc(2.5rem * 1.25);
}

h2,
.h2 {
    font-size: calc(2rem * 1.25);
}

h3,
.h3 {
    font-size: calc(1.75rem * 1.25);
}

h4,
.h4 {
    font-size: calc(1.5rem * 1.25);
}

h5,
.h5 {
    font-size: calc(1.25rem * 1.25);
}

h6,
.h6 {
    font-size: calc(1rem * 1.25);
}

p,
a,
.p {
    font-size: calc(0.85rem * 1.25);
}

.p-1 {
    font-size: calc(0.85rem);
}

a {
    text-decoration: none;
    color: var(--black-color);
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
}

.bg-primary {
    background-color: var(--background-color);
}

.d-flex {
    display: flex;
    gap: 10px;
    flex-flow: row wrap;
}

.d-block {
    display: block;
}

.row {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 10px;
}

.wh-auto {
    width: fit-content !important;
}

.he-auto {
    height: auto !important;
}

.wh-100 {
    width: 100% !important;
}

.wh-90 {
    width: calc(90% - 10px) !important;
}

.wh-85 {
    width: calc(85% - 10px) !important;
}

.wh-80 {
    width: calc(80% - 10px) !important;
}

.wh-75 {
    width: calc(75% - 10px) !important;
}

.wh-70 {
    width: calc(70% - 10px) !important;
}

.wh-66 {
    width: calc(66.6% - 10px) !important;
}

.wh-60 {
    width: calc(60% - 10px) !important;
}

.wh-50 {
    width: calc(50% - 10px) !important;
}

.wh-40 {
    width: calc(40% - 10px) !important;
}

.wh-33 {
    width: calc(33.3% - 10px) !important;
}

.wh-30 {
    width: calc(30% - 10px) !important;
}

.wh-25 {
    width: calc(25% - 10px) !important;
}

.wh-20 {
    width: calc(20% - 10px) !important;
}

.wh-15 {
    width: calc(15% - 10px) !important;
}

.wh-10 {
    width: calc(10% - 10px) !important;
}

button,
.btn {
    padding: 10px 20px;
    font-size: calc(1rem * 1.25);
    cursor: pointer;
    border: 1px solid var(--black-color);
    border-radius: 10px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 1rem;
}

.btn-primary {
    border-color: var(--main-color);
    color: var(--main-color);
}

.btn-secondary {
    border-color: var(--second-color);
    color: var(--second-color);
}

.btn-terciary {
    border-color: var(--third-color);
    color: var(--third-color);
}

.btn-info {
    border-color: #0caadc;
    color: #0caadc;
}

.btn-success {
    border-color: #45cb85;
    color: #45cb85;
}

.btn-danger {
    border-color: #ff715b;
    color: #ff715b;
}

.btn-warning {
    border-color: #eeb902;
    color: #eeb902;
}

.btn-white {
    border-color: #ffffff;
    color: #888888;
}

.btn-black {
    border-color: #343a40;
    color: #343a40;
}

.btn-primary:hover {
    background-color: #085557;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ccc7bb;
    color: #000000;
}

.btn-terciary:hover {
    background-color: #e0921c;
    color: #ffffff;
}

.btn-info:hover {
    background-color: #0a94be;
    color: #ffffff;
}

.btn-success:hover {
    background-color: #3aac71;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #df614e;
    color: #ffffff;
}

.btn-warning:hover {
    background-color: #d4a703;
    color: #ffffff;
}

.btn-white:hover {
    background-color: #dbdbdb;
    color: var(--black-color);
}

.btn-black:hover {
    background-color: #000000;
    color: #ffffff;
}

button:disabled,
button[disabled]:hover,
.btn.disabled,
.btn.disabled:hover {
    cursor: default;
    opacity: 0.5;
}

.text-primary {
    color: var(--main-color);
}

.text-secondary {
    color: var(--second-color);
}

.text-terciary {
    color: var(--third-color);
}

.text-main-acent {
    color: var(--main-acent-color);
}

.text-second-acent {
    color: var(--second-acent-color);
}

.text-info {
    color: #0caadc;
}

.text-success {
    color: #45cb85;
}

.text-danger {
    color: #ff715b;
}

.text-warning {
    color: #eeb902;
}

.text-white {
    color: var(--white-color);
}

.text-black {
    color: var(--black-color);
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-normal {
    font-style: normal;
}

.font-italic {
    font-style: italic;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-normal-case {
    text-transform: none;
}

.separator-line-vertical::before {
    font-size: var(--font-base);
    content: "|";
    color: var(--background-color);
}

hr {
    border-top: 1px solid var(--background-color);
    margin: 10px 0;
}

i {
    font-size: var(--font-base);
}

form .row {
    padding: 10px 0;
}

.form-label {
    font-size: calc(var(--font-base) * 0.9);
    align-self: center;
}

.form-control {
    font-size: calc(var(--font-base) * 0.85);
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--second-acent-color);
}

.form-control:focus {
    color: var(--main-acent-color);
    border: 2px solid var(--main-acent-color);
    outline: none;
}

.form-type-1 label {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}
/* 
.form-type-1 input,
.form-type-1 select {
    width: 100%;
} */

div.dt-container {
    width: 100%;
}

label.label-checkbox,
.form-type-1 label.label-checkbox {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.checkbox {
    appearance: none;
    cursor: pointer;
    background-color: #fff;
    appearance: none;
    border: 2px solid #888;
    border-radius: 5px;
    margin-right: 10px;
    width: var(--font-base);
    height: var(--font-base);
}

.form-type-1 label.label-checkbox span {
    cursor: pointer;
}

.checkbox:checked {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

/* Login */
.public-form-body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.public-form-content {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    max-height: 1024px;
    display: flex;
    padding: 25px;
    column-gap: 25px;
}

.public-form-content-alternative {
    flex-direction: row-reverse;
}

.public-form-information {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
    padding: 50px;
}

.public-form-information .public-form-logo {
    width: 175px;
    object-fit: contain;
}

.public-form-information .public-form-tittle {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.public-form-information h1 {
    font-size: 40px;
    font-weight: var(--font-semibold);
}

.public-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.public-form-camp {
    position: relative;
}

.public-form-camp input {
    width: 100%;
    height: 55px;
    padding: 20px;
    padding-left: 46px;
    border-radius: 15px;
    border: 1px solid var(--second-acent-color);
    font-size: 18px;
}

.public-form-camp input::placeholder {
    font-size: 15px;
    color: var(--second-acent-color);
}

.public-form-camp input:focus {
    border: 1px solid var(--main-acent-color);
    color: var(--main-acent-color);
    outline: none;
}

.public-form-camp label {
    font-size: 18px;
    padding: 5px;
    background-color: var(--white-color);
    position: absolute;
    top: -15px;
    left: 17.5px;
}

.public-form-camp i {
    position: absolute;
    top: 20px;
    left: 20px;
}

.public-form-camp button {
    padding: 20px;
    border-radius: 15px;
    background-color: var(--main-color);
    color: var(--white-color);
    font-weight: var(--font-bold);
    margin-top: 40px;
    border: none;
}

.public-form-camp button:hover {
    background-color: var(--main-acent-color);
}

.public-form-camp a {
    font-weight: var(--font-bold);
    color: var(--main-color);
}

.public-form-pattern {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.public-form-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.public-form-slides {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.public-form-slide {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.public-form-slide p {
    width: 75%;
    position: absolute;
    z-index: 1;
    font-size: 60px;
    color: var(--white-color);
    font-weight: var(--font-bold);
    text-align: center;
}

.public-form-pagination {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.5s ease;
}

.dot.active {
    width: 60px;
    border-radius: 10px;
}

.pattern-1 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 25px;
    background: -webkit-linear-gradient(90deg, #d598b3, #be6dc3, #5d5ae8);
}

.pattern-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 25px;
    background: -webkit-linear-gradient(90deg, #51f4d2, #0087c3, #20125e);
}

.pattern-3 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 25px;
    background: -webkit-linear-gradient(90deg, #e8b48b, #f8a8c4, #b2bcfd);
}

.pattern-4 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 25px;
    background: -webkit-linear-gradient(90deg, #de507f, #ca61b1, #9c7ad7);
}

.pattern-5 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 25px;
    background: -webkit-linear-gradient(90deg, #8c4392, #6c4d7f, #575063);
}

.pattern-6 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 25px;
    background: -webkit-linear-gradient(90deg, #280e33, #8a0045, #d63a14);
}

.pattern-7 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 25px;
    background: -webkit-linear-gradient(90deg, #2f05b6, #4b49b5, #7074a9);
}

.pattern-8 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    border-radius: 25px;
    background: -webkit-linear-gradient(90deg, #a52cc5, #95135a, #562727);
}

/* App */
body.app-body {
    background-color: var(--background-color);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container-fluid {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    position: relative;
}

.vertical-menu {
    width: 20%;
    height: calc(100vh - 40px);
    min-height: fit-content;
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s linear;
}

.vertical-menu.reduce-content {
    width: 90px;
}

.vertical-menu.reduce-content span {
    display: none;
}

.vertical-menu-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.vertical-menu-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    padding: 15px;
}

.vertical-menu.reduce-content .vertical-menu-logo {
    width: 50px;
    height: auto;
}

.vertical-menu-logos i {
    cursor: pointer;
    display: none;
}

.vertical-menu-logos i:hover {
    font-weight: var(--font-bold);
    color: var(--main-acent-color);
}

#logo-menu-reduce {
    display: none;
}

.vertical-menu-links,
.vertical-menu-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-item {
    display: block;
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.link-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-item.active {
    background-color: var(--main-color);
    color: var(--white-color);
    font-weight: var(--font-bold);
    border-radius: 10px;
}

.link-item:hover {
    color: var(--main-acent-color);
    font-weight: var(--font-semibold);
}

.link-item.active:hover {
    color: var(--white-color);
    font-weight: var(--font-bold);
}

.vertical-menu-options {
    margin-top: auto;
    border-top: 1px solid var(--background-color);
    padding-top: 10px;
}

.main-content {
    width: 80%;
    min-height: 100%;
    transition: all 0.5s linear;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-content.reduce-content {
    width: 100%;
}

.horizontal-menu {
    width: 100%;
    border-radius: 15px;
    background-color: var(--white-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    color: var(--black-color);
}

.menu-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: auto;
}

.menu-icon:hover {
    color: var(--main-acent-color);
}

.user-information {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-information:hover {
    color: var(--main-acent-color);
}

.user-information .user-image {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    object-fit: cover;
}

.notificacion-icon {
    margin-right: 0;
}

.user-notifications {
    position: absolute;
    z-index: 11;
    right: 0;
    top: calc(100% + 20px);
    width: 300px;
    padding: 15px;
    background-color: var(--white-color);
    border-radius: 15px;
    border: 1px solid var(--background-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    gap: 10px;
}

.notificaciones-content {
    width: 100%;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notificacion-item {
    border-bottom: 1px solid var(--background-color);
    padding-bottom: 10px;
}

.notificacion-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.user-options {
    position: absolute;
    right: 0;
    top: calc(100% + 20px);
    width: 200px;
    padding: 15px;
    background-color: var(--white-color);
    border-radius: 15px;
    border: 1px solid var(--background-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
}

.user-options.active,
.user-notifications.active {
    display: flex;
    flex-direction: column;
}

.page-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.page-ubication {
    display: flex;
    align-items: end;
    gap: 10px;
    cursor: default;
}

.page-ubication p:last-child {
    color: var(--main-acent-color);
    font-weight: var(--font-semibold);
}

.page-tittle {
    display: flex;
    align-items: center;
    color: var(--black-color);
}

.page-tittle a {
    margin-left: auto;
    color: var(--black-color);
}

.page-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--white-color);
    padding: 20px;
    margin-top: auto;
}

.card {
    padding: 20px;
    background-color: var(--white-color);
    color: var(--black-color);
    border-radius: 15px;
}

.card-profile {
    padding: 40px;
}

.profile-information {
    align-items: center;
}

.profile-information label {
    font-size: calc(var(--font-base) * 0.9);
}

.profile-information input {
    font-size: calc(var(--font-base) * 0.85);
}

.profile-information input {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--second-acent-color);
}

.profile-information input:focus {
    color: var(--main-acent-color);
    border: 3px solid var(--main-acent-color);
    outline: none;
}

.profile-information button {
    margin-top: 20px;
    margin-left: auto;
}

.card-information {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-information i {
    font-size: calc(var(--font-base) * 1.5);
    color: var(--main-color);
}

.card-information p:last-child {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: calc(var(--font-base) * 1.5);
    color: var(--main-color);
    font-weight: var(--font-semibold);
}

.card-information p:last-child span {
    font-size: calc(var(--font-base) * 1.2);
    color: var(--main-color);
    font-weight: var(--font-medium);
}

.course-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.course-slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: 10px;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: var(--font-base);
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.section-courses {
    justify-content: start;
}

.card-course {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-course img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 5px;
}

.card-course h6 {
    font-size: calc(var(--font-base) * 1.1);
}

.card-course p {
    font-size: calc(var(--font-base) * 0.8);
    font-weight: var(--font-light);
}

.card-course p.card-course-type {
    font-size: calc(var(--font-base) * 0.6);
    font-weight: var(--font-light);
}

.card-course:hover {
    opacity: 0.8;
}

.week-activities,
.anouncements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.week-activities .activity {
    border: 1px solid var(--background-color);
    border-radius: 15px;
    display: grid;
    grid-template-columns: 10% calc(90% - 20px);
    column-gap: 20px;
    padding: 20px;
    color: var(--main-acent-color);
}

.week-activities .activity i {
    grid-row-start: 1;
    grid-row-end: 3;
    align-self: center;
    justify-self: center;
    font-size: var(--font-base);
    background-color: var(--background-color);
    border-radius: 50%;
    padding: 20px;
}

.week-activities .activity .activity-information {
    display: flex;
    gap: 20px;
    color: var(--second-acent-color);
}

.week-activities .activity .activity-information span {
    font-weight: var(--font-semibold);
}

.class-activity {
    grid-row-start: 1;
    grid-row-end: 3;
    align-self: center;
    justify-self: center;
    align-items: center;
}

.anouncements .anouncement {
    width: 100%;
    display: grid;
    grid-template-columns: 10% calc(90% - 20px);
    column-gap: 20px;
    row-gap: 5px;
    padding: 10px 20px;
    color: var(--main-acent-color);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--background-color);
}

.anouncements .anouncement:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.anouncements .anouncement img {
    grid-row-start: 1;
    grid-row-end: 3;
    align-self: center;
    justify-self: center;
    border-radius: 50%;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.anouncements .anouncement .anouncement-information {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--second-acent-color);
    font-size: calc(var(--font-base) * 0.8);
}

.progress {
    width: 100%;
    background-color: var(--background-color);
    border-radius: 15px;
    font-size: calc(var(--font-base) * 0.5);
    padding: 3px;
}

.progress-bar {
    height: 100%;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 15px;
    text-align: right;
    padding: 3px;
}

#tabs-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.tab {
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
}

.tab.active {
    font-weight: var(--font-semibold);
    color: var(--main-acent-color);
    border-bottom: 3px solid var(--main-acent-color);
}

.course_content {
    height: fit-content;
}

object.course-silabus {
    width: 100%;
    height: auto;
    min-height: 100vh;
    border-radius: 5px;
}

.material-file {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 5px;
}

.section-link {
    width: 100%;
    padding: 0;
    transition: all 0.5s linear;
}

.section-link summary {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    margin: 0;
    border-left: 15px solid var(--main-color);

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;

    transition: all 0.5s linear;
}

.section-link[open] summary {
    border-radius: 15px 15px 15px 0;
}

.section-link summary:hover {
    background-color: var(--second-color);
}

.section-link summary::marker {
    display: none;
}

.section-link summary button {
    margin-left: auto;
    margin-right: 20px;
}

.section-link summary i {
    transition: all 0.5s linear;
}

.section-link[open] summary i {
    transform: rotate(180deg);
}

.section-link[open] summary button i {
    transform: none;
}

.section-link nav {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-link nav a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    margin: 0;
    text-align: left;
    background-color: var(--background-color);
    transition: all 0.5s;
}

.section-link nav a:hover {
    background-color: var(--second-color);
}

.section-link nav a p:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.course_content_load {
    height: fit-content;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course_content_load object {
    width: 100%;
    height: auto;
    min-height: 100vh;
    border-radius: 5px;
}

.course_content_load video {
    width: 100%;
    height: auto;
    border-radius: 5px;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

.course_content_load_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course_content_load_nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--main-acent-color);
    font-weight: var(--font-semibold);
}

.course_content_load_nav a:hover {
    font-weight: var(--font-bold);
}

.wizard>.actions>ul>li,
.wizard>.steps>ul>li {
    float: left;
}

.wizard>.steps>ul>li {
    width: 25%;
}

.wizard>.steps a,
.wizard>.steps a:active,
.wizard>.steps a:hover {
    margin: 3px;
    padding: 15px;
    display: block;
    width: auto;
    border-radius: 5px;
}

.wizard>.steps .disabled a,
.wizard>.steps .disabled a:active,
.wizard>.steps .disabled a:hover,
.wizard>.steps .done a,
.wizard>.steps .done a:active,
.wizard>.steps .done a:hover {
    background-color: var(--third-color);
    color: var(--main-acent-color);
}

.wizard>.steps .current a,
.wizard>.steps .current a:active,
.wizard>.steps .current a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

.wizard>.steps .current-info {
    position: absolute;
    left: -999em;
}

.wizard>.steps .number {
    padding: 5px;
    display: inline-block;
    text-align: center;
    margin-right: 5px;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.wizard>.content {
    background-color: transparent;
    margin: 0 5px;
    border-radius: 0;
    min-height: 150px;
    padding: 20px;
}

.wizard>.content>.title {
    position: absolute;
    left: -999em;
}

.wizard>.content>.body {
    width: 100%;
    height: 100%;
    padding: 20px;
    position: static;
}

.wizard>.actions {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}

.wizard ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard>.actions>ul {
    display: inline-block;
    text-align: right;
}

.wizard>.actions>ul>li {
    display: block;
    margin: 0 .5em;
}

.wizard>.actions>ul>li,
.wizard>.steps>ul>li {
    float: left;
}

.wizard>.actions a,
.wizard>.actions a:active,
.wizard>.actions a:hover {
    background-color: var(--third-color);
    border-radius: 4px;
    padding: 8px 15px;
    color: var(--main-acent-color);
}

.wizard>.actions .disabled a,
.wizard>.actions .disabled a:active,
.wizard>.actions .disabled a:hover {
    opacity: .65;
    background-color: var(--third-color);
    color: var(--main-acent-color);
    cursor: not-allowed;
}

/* estilos para dialog con clase modal solo cuando está activo */
dialog.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    max-width: 750px;
    height: fit-content;
    max-height: 100vh;
    background-color: var(--white-color);
    border: none;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.class-link {
    align-items: center;
}

.class-link i {
    margin-right: 10px;
}

.class-link button {
    margin-left: auto;
}

.table-acciones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.card-price {
    background-color: var(--white-color);
    color: var(--black-color);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-price h2 {
    font-size: calc(var(--font-base) * 1.5);
    font-weight: var(--font-semibold);
}

.card-price hr {
    border-top: 1px solid var(--background-color);
}

.card-price p {
    font-size: calc(var(--font-base) * 0.8);
}

.card-price p.precio,
.card-price p.inscripcion {
    font-size: calc(var(--font-base) * 1.3);
    font-weight: var(--font-semibold);
}

.card-price p.precio span,
.card-price p.inscripcion span {
    font-size: calc(var(--font-base) * 0.8);
    font-weight: var(--font-light);
    color: var(--second-acent-color);
}

.card-price ul {
    list-style: none;
    padding: 0;
    margin: 0 10px;
}

.card-price ul li {
    font-size: calc(var(--font-base) * 0.8);
    font-weight: var(--font-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-price ul li span {
    font-weight: var(--font-medium);
}

.card-price-alt {
    background-color: var(--main-color);
    color: #ffffff;
}