/* BASIC */


.logo-content {
    position: absolute;
    left: 85px;
    top: 18px;
    width: 300px;
}
.logo-content > div {
    background-size: contain;
    background-position-x: 0;
    height: 120px;
}

.loading-page-mundi-box{
    display: flex;
    vertical-align: middle;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

.loading-page-mundi-box img {
    width: 690px;
}

h1 {
    font-size: 32px;
    line-height: 1.2;
    color: #24292E;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
}
.logo-div {
    height: 45px;
    background-image: url(../img/logo-mundibox.jpg);
    background-size: 125px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 20px;
    filter: blur(0.001px);
}
.loading-page-mundi-box{
    background-color: #fcfcfc;
}
body {
    background-color: #fff!important;
    font-family: "Poppins", sans-serif;
}

.content-login{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
a {
    color: #92badd;
    display: inline-block;
    text-decoration: none;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 40px 8px 10px 8px;
    color: #cccccc;
}



/* STRUCTURE */

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

#formContent {
    justify-content: center;
    background: #fff!important;
    padding: 30px;
    max-width: 400px;
    position: relative;
    padding: 0px;
    text-align: center;
}

#formFooter {
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
    color: #cccccc;
}

h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button],
input[type=submit],
input[type=reset] {
    background-color: #56baed;
    border: none;
    color: white;
    padding: 15px 80px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover {
    background-color: #39ace7;
}

input[type=button]:active,
input[type=submit]:active,
input[type=reset]:active {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

input[type=text], 
input[type=password] {
    background-color: #f6f6f6;
    border: none;
    color: #0d0d0d;
    padding: 15px 32px;
    text-decoration: none;
    font-size: 16px;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

input[type=text],:focus 
input[type=password]:focus {
    background-color: #fff;
    border-bottom: 2px solid #5fbae9;
}

input[type=text],:placeholder 
input[type=password]:placeholder {
    color: #cccccc;
}

.admin-background {
    background: #212942;
}

.admin-styles input[type=radio]:checked ~ label{
    color: #212942!important;
}

.admin-styles input[type=radio]:checked ~ .check {
    border: 5px solid #212942!important;
}

.admin-styles input[type=radio]:checked ~ .check::before {
    background: #212942!important;
}

.archive-background {
    background: #56baed;
}

.archive-styles input[type=radio]:checked ~ label{
    color: #56baed!important;
}

.archive-styles input[type=radio]:checked ~ .check {
    border: 5px solid #56baed!important;
}

.archive-styles input[type=radio]:checked ~ .check::before {
    background: #56baed!important;
}
/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.first {
    display: flex;
    justify-content: center;
    border: 6px solid #fff;
    /* border-radius: 100%; */
    padding: 0px;
    /* top: -28px; */
    position: relative;
    width: 130px;
    height: 130px;
    /* border-radius: 100%; */
    z-index: 1;
    background: #dfe0e0;
    cursor: pointer;
    color: #6e7474;
    border-radius: 50%;
    margin: auto;
}
.fadeIn {
    opacity: 0;
    -webkit-animation: fadeIn ease-in 1;
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;

    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
}

.underlineHover:hover {
    color: #0d0d0d;
}

.underlineHover:hover:after {
    width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
}

#icon {
    width: 60%;
}

.alert-success-unique {
    padding: 14px;
    width: 80%;
    margin: auto auto 20px;
    background-color: #46bf4696;
    border-radius: 6px;
    color: white;
    font-weight: bolder;
    font-size: 14pt;
}
.alert-error-unique {
    padding: 14px;
    width: 80%;
    margin: auto auto 20px;
    background-color: #bf464696;
    border-radius: 6px;
    color: white;
    font-weight: bolder;
    font-size: 14pt;
}

ul{
    list-style: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
    display: flex;
}

ul li{
  color: #AAAAAA;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 100px;
	border-bottom: 1px solid #56baed;
}

ul li input[type=radio]{
  position: absolute;
  visibility: hidden;
}

ul li label{
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 12pt;
  padding: 30px 25px 25px 10px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

ul li:hover label{
	color: #56baed;
}

ul li .check{
  display: block;
  position: absolute;
  border: 5px solid #AAAAAA;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 30px;
  left: 20px;
	z-index: 5;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
}

ul li:hover .check {
  border: 5px solid #56baed;
}

ul li .check::before {
  display: block;
  position: absolute;
	content: '';
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 5px;
	left: 5px;
  margin: auto;
	transition: background 0.25s linear;
	-webkit-transition: background 0.25s linear;
}

input[type=radio]:checked ~ .check {
  border: 5px solid #56baed;
}

input[type=radio]:checked ~ .check::before{
  background: #56baed;
}

input[type=radio]:checked ~ label{
  color: #56baed;
}
@media (max-width: 800px) {
    ul li label{
    padding: 30px 25px 25px 60px;
    }
    input[type=button], input[type=submit], input[type=reset] {
        padding: 20px 80px;
    }

    .logo-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .logo-content > div {
        background-position-x: 0;
        height: 120px;
    }

    .logo-div {
        width: 250px;
        height: 45px;
        margin: auto;
    }
    .loading-page-mundi-box img {
        width: 350px;
    }
}