/*============= SOURCES ================*/
@font-face {
  font-family: 'Merriweather-Bold';
  src: url('../../assets/fonts/Merriweather-Bold.eot?') format('embedded-opentype'),
    url('../../assets/fonts/Merriweather-Bold.woff') format('woff'),
    url('../../assets/fonts/Merriweather-Bold.ttf') format('truetype'),
    url('../../assets/fonts/Merriweather-Bold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Merriweather-Regular';
  src: url('../../assets/fonts/Merriweather-Regular.eot?') format('embedded-opentype'),
    url('../../assets/fonts/Merriweather-Regular.woff') format('woff'),
    url('../../assets/fonts/Merriweather-Regular.ttf') format('truetype'),
    url('../../assets/fonts/Merriweather-Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*============= /SOURCES ================*/

/*============= GENERAL CONFIG ================*/
body {
    margin: 0;
    background-color: var(--lightpurple);
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none; 
}

:root {
    --merrbold: 'Merriweather-Bold', sans-serif;
    --merregular: 'Merriweather-Regular', sans-serif;
    --white: #FFFFFF;
    --orange: #ED4B23;
    --purple: #7F2063;
    --lightgray: #F2F2F2;
    --darkgray: #242424;
    --lightblue: #69B9E7;
    --gray: #707070;
    --lightpurple: #88326E;
    --yellow: #FFF101;

}

.title-profile h1 {
    margin-top: 130px;
    font-size: 3.75rem;
    color: var(--white);
}

.text-secundary {
    font-size: 2.25rem;
    color: var(--white);
}

/*============= /GENERAL CONFIG ================*/

/*============ BREADCRUMB ==============*/
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-item {
    font-size: 16px;
    line-height: 1.25em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: row;
}

.breadcrumb-item {
    max-width: 50%;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: var(--white);
    content: "»";
}

.breadcrumb-item a {
    color: var(--white);
    font-family: var(--merrbold);
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.breadcrumb-item.active a {
    color: #B3B3B3;
    pointer-events: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}
/*============ /BREADCRUMB ==============*/

/*============= FONT CLASS ================*/
.merrbold {
	font-family: var(--merrbold);
  font-weight: 700;
}

.merregular {
	font-family: var(--merregular);
  font-weight: 400;
}
/*============= /FONT CLASS ================*/

/*============= MENU ================*/
.nav-wrap {
    width: 100%;
    background-color: var(--purple);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}

.float-nav {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    max-width: 1140px;
}

.logo-bar {
    width: auto;
    height: auto;
    margin: 0;
    overflow: hidden;
    position: absolute;
    left: 15px;
}

.logo-asas {
    width: 126px;
    height: 40px;
}

.menu-wrap ul {
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center;
}

.menu-wrap ul li {
    display: inline-block;
}

.menu-wrap a {
    padding: 0 7px;
    font-size: 16px;
    font-family: var(--merrbold);
    color: var(--white);
    text-decoration: none;
    align-items: center;
}

.menu-wrap a:hover {
    color: var(--yellow);
}

.change-hamburguer {
    display: none;
}

.hamburguer:after, .hamburguer:before, .hamburguer span, .hamburguer label {
    content: ' ';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    left: 0;
    position: absolute;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.hamburguer {
    width: 35px;
    height: 20px;
    display: block;
    position: relative;
    background: none;
    margin: 0 0 10px 0;
    display: none;
}

.hamburguer label {
    width: 100%;
    height: 100px;
    background: none;
    cursor: pointer;
    z-index: 1000;
}

#change-hamburguer:checked ~ .hamburguer:before {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#change-hamburguer:checked ~ .hamburguer:after {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#change-hamburguer:checked ~ .hamburguer:before, #change-hamburguer:checked ~ .hamburguer:after {
    top: 10px;
    margin-top: -10%;
}

#change-hamburguer:checked ~ .hamburguer span {
    opacity: 0;
}

.menu-wrap .user-perfil span {
    color: var(--yellow);
    padding-left: 10px;
}

.user-perfil:after {
    content: "";
    width: 2px;
    height: 15px;
    background-color: var(--white);
    position: absolute;
    top: 23px;
}

.user-perfil, .user-perfil img {
    padding-left: 10px;
}
/*============= /MENU ================*/

/*============= EXPEDIENTE ================*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 6, 35, .4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    width: 100%;
    max-width: 750px;
    height: 100%;
    max-height: 500px;
    background-color: var(--white);
    position: relative;
    padding-top: 0;
    color: var(--purple);
}

.btn-close {
    color: var(--purple);
    background-color: transparent;
    position: absolute;
    font-weight: 600;
    font-size: 50px;
    line-height: 1em;
    cursor: pointer;
    outline: 0;
    border: 0;
    right: 10px;
    top: 0;
}

.content-wrap {
    width: 100%;
    max-height: 410px;
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-content {
    padding: 0 15px 15px 15px;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: nowrap;
    margin-bottom: 15px;
    width: 100%;
    height: 100%;
}

.modal h2 {
    color: var(--purple);
}

.modal-content .left-content {
    padding-right: 20px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.modal-content .left-content, .modal-content .right-content {
    width: 50%;
}

.left-content h2, .right-content h3 {
    font-size: 22px;
    text-transform: uppercase;
}

.left-content h2 {
    margin-top: 0;
}

.modal-content .right-content {
    padding-left: 20px;
    border-left: 3px solid var(--purple);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    line-height: 30px;
}

.modal-content h3, .modal-content p {
    margin: 0;
}
/*============= /EXPEDIENTE ================*/

/*============= FOOTER ================*/
.footer {
    background-color: var(--purple);
}
.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
    height: 60px;
}
.expediente a {
    cursor: pointer;
    color: var(--white);
    font-family: var(--merregular);
    font-size: 16px;
}
/*============= /FOOTER ================*/

/*============ MEDIA QUERY ==============*/
@media screen and (max-width: 991px){
    .menu-wrap, .image-topo {
        display: none;
    }
    .hamburguer {
        display: block;
    }
    .hamburguer span {
        top: 8px;
    }
    .hamburguer:after {
        bottom: 0;
    }
    .menu-wrap {
        width: 100%;
        height: 100%;
        position: fixed;
        padding-top: 5%;
        margin-top: 0;
        right: 0;
        top: 60px;
        z-index: 10;
        background: rgba(127, 32, 99, 1);
    }
    .menu-wrap ul, .menu-wrap ul li {
        display: block;
        padding: 0;
        line-height: 30px;
    }
    .menu-wrap ul {
        padding: 0 15px;
    }
    .menu-wrap a {
        padding: 0;
    }
    .modal-content {
        flex-direction: column;
        align-items: center;
        height: auto;
        margin-bottom: 0;
        padding: 0 15px 0px 15px;
    }
    .modal-content .left-content, .modal-content .right-content {
        width: 100%;
    }
    .modal-content .left-content {
        padding-left: 0px;
        border-left: 3px solid var(--purple);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    .left-content h2 {
        padding: 15px 15px 0;
    }
    .user-perfil, .user-perfil img {
        padding-left: 0px;
    }
    .user-perfil:after {
        display: none;
    }
}
/*============ /MEDIA QUERY ==============*/
