/*
https://material.io/resources/color/#!/?view.left=0&view.right=0&primary.color=00b0ff&secondary.color=FF9800&primary.text.color=212121&secondary.text.color=212121
*/
:root {
    --primary: #c8e07a;
    --p-dark: #a6ca4a;
    --p-light: #ffffff;
    --secondary: #faaa19;
    --s-dark: #bb8532;
    --s-light: #f9beae;
    --text-primary: #111111;
    --text-secondary: #576617;
    --light: #ffffff;
    --dark: #111111;
    --gray: #dee2e7;
    --light-gray:#BDBDBD;
    --success: #8cc3d9;
    --su-dark: #08819e;
    --su-light: #bcdee8;
    --danger: #e24574;
    --d-dark: #b32544;
    --d-light: #f8d7da;
    --bs-radius: 1rem;
    --bs-width: 2px;

    --bs-link-color: var(--text-primary);
    --bs-link-hover-color: #7f522d;
   
    
}


/*@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Montserrat:wght@200;300;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Montserrat:wght@200;300;700&display=swap');
@font-face {
    font-family: 'LuckiestGuy';
    src: url('../font/LuckiestGuy-Regular.ttf') format('truetype');
}

html{
    height: calc(100% - 70px);
}

body{
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    /*font-weight: 200;*/
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    height: 100%;

}

.luckiest-guy-regular {
    font-family: "LuckiestGuy", cursive;
    font-weight: 400;
    font-style: normal;
    color: #576617;
}

b, strong {
    font-weight: 600;
}

h3{
    font-size: 1em;
}

ol{
    margin-bottom: 0;
}

a{
    text-decoration: none!important;
}

.header{
    background-image: url('../img/img-xl-03-01-003.png');
    background-repeat: repeat;
}

.f-title{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700!important;
}

.f-subtitle{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.btn-link{
    cursor: pointer;
}

.nav-link{
    font-size: 1.5rem;
}

.bg-patron{
    position: relative;
    z-index: 2;
   
}

.bg-patron:before {
    content: ' ';
    display: block;
    position: fixed;
    background-color: var(--p-dark);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/img-xl-03-01-003.png');
    background-repeat: repeat;
    background-position: 50%;
    
}

.menu{
    position: fixed;
    top:0;
    left:0;
    opacity: 0;
    width: 100%;
    padding: 0;
    z-index: 1050;
    height: 100vh;
    display: none;
    background-color: rgba(0,0,0,0.5);
}

.menu-dialog{
    position: relative;
    left:120%;
}

#menu-open:hover, #menu-close:hover{
    cursor: pointer;
}

.bg-gray{
    background-color: var(--gray)!important;
}

.bg-danger{
    background-color: var(--danger)!important;
}

.bg-danger-dark{
    background-color: var(--d-dark)!important;
}

.bg-danger-light{
    background-color: var(--d-light)!important;
}

.alert-danger{
    background-color: var(--d-dark)!important;
    color: var(--light)!important;
    
}

.bg-success{
    background-color: var(--success)!important;
    background-color: var(--su-dark)!important;
}

.bg-success-dark{
    background-color: var(--su-dark)!important;
}

.bg-success-light{
    background-color: var(--su-light)!important;
}

.alert-success{
    background-color: var(--su-dark)!important;
    color: var(--light)!important;
    
}

.bg-primary{
    background-color: var(--primary)!important;
}

.bg-primary-dark{
    background-color: var(--p-dark)!important;
}

.bg-primary-light{
    background-color: var(--p-light)!important;
}

.bg-secondary{
    background-color: var(--secondary)!important;
}

.bg-secondary-dark{
    background-color: var(--s-dark)!important;
}

.bg-secondary-light{
    background-color: var(--s-light)!important;
}


.text-primary{
    color: var(--text-primary)!important;
}

.btn-link-primary, .highlight-primary{
    /*color:var(--primary-dark)!important;*/
    color:var(--text-secondary)!important;
    font-weight: 600;
}



.text-secondary{
    color: var(--secondary)!important;
}

.text-disabled{
    color: var(--light-gray)!important;
}

.btn-primary-light{
    background-color: var(--light)!important;
    color:var(--text-primary)!important;
    border: 0!important;
    border-bottom: 4px solid var(--su-dark)!important;
}

.btn-primary{
    background-color: var(--primary)!important;
    color:var(--text-primary)!important;
    border: 0!important;
    border-bottom: 4px solid var(--p-dark)!important;
}

.btn-default-light{
    background-color: white!important;
    color:var(--bs-gray-700)!important;
    border: 2px solid var(--bs-border-color)!important;
    border-bottom: 4px solid var(--light-gray)!important;
}

.btn-secondary{
    background-color: var(--secondary)!important;
    color:var(--text-primary)!important;
    border: 0!important;
    border-bottom: 4px solid var(--s-dark)!important;
}

.btn-danger-light{
    background-color: var(--light)!important;
    color:var(--d-dark)!important;
    border: 0!important;
    border-bottom: 4px solid var(--danger)!important;
}

.btn-danger{
    background-color: var(--danger)!important;
    color:var(--text-primary)!important;
    border: 0!important;
    border-bottom: 4px solid var(--d-dark)!important;
}

.btn-success-light{
    background-color: var(--light)!important;
    color:#08819e!important;
    border: 0!important;
    border-bottom: 4px solid var(--success)!important;
}

.btn-success{
    background-color: var(--success)!important;
    color:var(--text-primary)!important;
    border: 0!important;
    border-bottom: 4px solid var(--su-dark)!important;
    
}

.fill_space{
    width: 120px;
    height: 50px;
    display: inline-block;
    vertical-align: middle;
}

.shadow-default{
    border: 0!important;
    border-bottom: 4px solid var(--light-gray)!important;
   
}

.border-1 {
    border: 1px solid var(--bs-border-color);
}

.shadow-primary{
    border: 0!important;
    border-bottom: 4px solid var(--p-dark)!important;
}

.shadow-secundary{
    border: 0!important;
    border-bottom: 4px solid var(--s-dark)!important;
}

.shadow-danger{
    border: 0!important;
    border-bottom: 4px solid var(--d-dark)!important;
}

.shadow-success{
    border: 0!important;
    border-bottom: 4px solid var(--su-dark)!important;
}

.btn-op{
    cursor: pointer;
}

.btn-op:hover{
    background-color: var(--light)!important;
}

.btn-op.active,.btn-op:active{
    background-color: var(--p-light)!important;
    color: #7f522d!important;
    border-color: var(--primary)!important;
    border-bottom: 4px solid var(--primary)!important;
}

.card-header {
   
    border-width: var(--bs-width)!important;
   /* border-top-left-radius: var(--bs-radius)!important;
    border-top-right-radius: var(--bs-radius)!important;*/
}
.card{
    border-width: var(--bs-width)!important;
    border-radius: var(--bs-radius)!important;
    border-bottom: 4px solid var(--bs-border-color)!important;
}

.logo, .logo-uned {
    width: 100px;
    height: auto;
}

p.francesa{
    margin-left: 2em;
    text-indent: -2em;
}

.content-area{
    min-height: calc(100% - 60px);
}

.footer{
    line-height: 60px;
    height: 60px;
    
}

#link-uned:before {
    content: "UNED";
}

.w-xl{
    max-width: 650px;
}

.w-lg{
    max-width: 450px;
}

.w-md{
    max-width: 250px;
}

.w-sm{
    max-width: 100px;
}

.w-xs{
    max-width: 50px;
}

.w-xxs{
    max-width: 30px;
}

.h-xl{
    max-height: 600px;
}

.h-lg{
    max-height: 400px;
}

.h-md{
    max-height: 250px;
}

.h-sm{
    max-height: 100px;
}

.ms-dd .ms-dd-header, .ms-dd .ms-dd-header .ms-filter-box {
    border-radius: 0.5rem!important;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(118, 118, 118);
    
}
.ms-dd, .ms-dd .ms-list-option.option-selected, .ms-dd .ms-optgroup ul .ms-list-option.option-selected {
    background: transparent;
}
.ms-dd-header a {
    min-height: 40px!important;
}

.ms-dd .ms-dd-header .ms-filter-box {
    border-radius: 0.5rem!important;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(118, 118, 118);

    
}
.ms-dd .ms-dd-option-image, .ms-dd .ms-dd-selected-img {
    max-width: 45px;
}

@media (min-width: 450px){
    #link-uned:before {
        content: "Universidad Estatal a Distancia";
    }
}



