html, body, main {
	position: relative;
	height: 100%;
	overflow-y: hidden;
}

#contenedor-loading{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	z-index: 10000 !important;
}

#contenedor-loading img{
	width: 400px;
	height: auto;
}

.swiper-container {
	width: 100%;
	height: 100%;
}

.swiper-button-prev{
    transform: rotate(90deg);
}

.swiper-button-next{
    transform: rotate(90deg);
}

main {
    padding-top: 80px;
    display: flex;
}

nav{
    background-color: #1BA333 !important;
    color: #FFF !important;
    z-index: 10;
    box-shadow: 0 0 5px 1px #000;
}

.uk-navbar-nav>li>a{
    color: #FFF;
}

.uk-navbar-nav>li>a:hover{
    color: #FFF !important;
}

#navbar{
    opacity: 1;
    z-index: 101;
    transition: all 0.5s;
}

#navbar .uk-navbar-right{
    padding-right: 25px;
}

#menuBTN{
    display: none;
    position: absolute;
    right: 10px;
}

#sidenav{
    position: fixed;
    height: calc(100% - 80px);
    bottom: 0;
    width: 300px;
    background-color: #daf1df;
    padding: 20px;
    z-index: 100;
    box-sizing: border-box;
}

.uk-nav-default>li>a{
    color: #1BA333;
    font-weight: bold;
    transition: all 0.3s;
}

.uk-nav-default .uk-nav-sub a{
    color: #135423 !important;
    transition: all 0.3s;
}

.uk-nav-default>li>a:hover, .uk-nav-default .uk-nav-sub a:hover{
    color: #000 !important;
}

.active-link{    
    color: #000 !important;
    border-left: solid thick #000;
    padding-left: 10px !important;
    /* font-weight: bolder; */
}

#content{
    margin-left: 300px;
    padding: 10px;
    width: calc(100% - 300px);
    box-sizing: border-box;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide{
    display: flex;
    justify-content: center;
}

.img-page{
    box-shadow: 0 8px 6px -6px black;
}

#flechas{
    position: fixed;
    left: calc(100% - 125px);
    bottom: 50px;
    width: 100px;
    z-index: 99;
}

img[data-src][src*='data:image'] {
    background-color: rgba(0,0,0,0.2);
    background-image: url('../../wp-content/themes/unag-base/img/logoUnag-B125.png');
    background-repeat: no-repeat;
    background-position: center center;
}

.color-verde{
    color: #1BA333 !important;
}

@media screen and (max-width: 600px) {
    #navbar .uk-navbar-right{
        padding-right: 0 !important;
        margin: 0 !important;
        text-align: center;
    }

    #menuBTN{
        display: inline;
    }

    main{
        flex-wrap: wrap;
    }

    #sidenav{
        left: -300px;
    }

    #content{
        width: 100%;
        margin-left: 0;
    }

    .swiper-container {
        position: absolute;
        left: 0;
        height: 100%;
    }

    #flechas{
        left: calc(50% - 50px);
        bottom: 50px;
    }
}