@charset "UTF-8";
/* CSS Document */

html, body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	box-sizing: border-box;
	outline: 0;
	padding: 0px;
	margin: 0px;
}

.fullpage {
    background: #052b3d;
    padding-bottom: 0px;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
}

.fullpage .main__header {
    background-color: #12384A;
    position: relative;
}

.logo__qualifio {
    position: absolute;
    top: 8px;
    left: 10px;
    width: 30px;
}

.logo__qualifio img {
    width: 100%;
    height: auto;
}

.devices {
    display: flex;
    align-items: center;
    justify-content: center;
}

.devices__block {
    transition: .3s;
}

.devices__block a {
    display: block;
    padding: 12px 0;
    width: 50px;
    text-align: center;
    transition: .3s;
    opacity: .5;
    font-size: 25px;
    cursor: auto;
}

.devices__block a:hover {
    background: #052b3d;
    opacity: .7;
}

.devices__block__img {
    max-height: 26px;
}

a.devices__block--active, a.devices__block--active:hover {
	color: #ffffff;
	opacity: 1;
}

main, .iframe__qualifio {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    /* Safari fix */
    height: -webkit-calc(100% - 0px);
    overflow: -webkit-paged-y;
    /* end safari fix */
    /* Firefox fix */
    height: calc(100% - 0px);
    overflow: -moz-hidden-unscrollable;
    /* end Firefox fix */
}

.iframe__qualifio {
	line-height: 0;
}

/*---------------- QR Code ---------------*/

.qr__code {
	text-align: center;
	margin: 40px auto;
}

.qr__code__img img {
	border: 5px solid #12384A !important;
    border-radius: 3px;
}
	
/*------------- END QR Code --------------*/

