body {
    margin: 0px;
    background-color: #000
}
.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}
.middle {
    display: table-cell;
    vertical-align: middle;
}
.inner {
    margin-left: auto;
    margin-right: auto;
}
.flexbox-centering {
    display: flex;
    justify-content: center;
    align-items: center;
}
.page {
    height: 100vh;
}
.group {
    height: 40px;
}
.container-products {
    width: 810px;
    display: flex;
    justify-content: space-between;
}
.span-products {
    height: 34px;
}
.products {
    height: 34px;
    -webkit-transition: height 0.25s; /* Safari */
    transition: height 0.25s;
}
.width-100 {
    width: 100%;
}
.line {
    width: 810px;
    border-top: 1px solid #b8bdcc;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    -webkit-margin-start: 0px !important;
    -webkit-margin-end: 0px !important;
}

.anim-line {
    opacity: 0;
    animation: width 4s;
    animation-delay: 2.5s;
    animation-fill-mode: forwards;
    -webkit-transition: width 4s;
    -moz-transition: width 4s;
    -o-transition: width 4s;
    transition: width 4s;
}
@keyframes width {
    from {
        width: 1%;
        opacity: 1;
    }
    to   {
        width: 810px;
        opacity: 1;
    }
}
/* Firefox < 16 */
@-moz-keyframes width {
    from {
        width: 1%;
        opacity: 1;
    }
    to   {
        width: 810px;
        opacity: 1;
    }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes width {
    from {
        width: 1%;
        opacity: 1;
    }
    to   {
        width: 810px;
        opacity: 1;
    }
}
/* Internet Explorer */
@-ms-keyframes width {
    from {
        width: 1%;
        opacity: 1;
    }
    to   {
        width: 810px;
        opacity: 1;
    }
}
/* Opera < 12.1 */
@-o-keyframes width {
    from {
        width: 1%;
        opacity: 1;
    }
    to   {
        width: 810px;
        opacity: 1;
    }
}

.anim-fade-actuar {
    animation-delay: 2.5s !important;
}
.anim-fade-paguela {
    animation-delay: 3s !important;
}
.anim-fade-toletus {
    animation-delay: 3.5s !important;
}
.anim-fade-facilfit {
    animation-delay: 4s !important;
}
.anim-fade-in {
    opacity: 0;
    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
        -ms-animation: fadein 2s; /* Internet Explorer */
        -o-animation: fadein 2s; /* Opera < 12.1 */
            animation: fadein 2s;
            animation-fill-mode: forwards;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.anim-go-up {
    margin-top: 3em;
    -webkit-animation: go-up 1s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: go-up 1s; /* Firefox < 16 */
    -ms-animation: go-up 1s; /* Internet Explorer */
    -o-animation: go-up 1s; /* Opera < 12.1 */
    animation: go-up 1s;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}
@keyframes go-up {
    from { margin-top: 3em; }
    to   { margin-top: 0em; }
}
/* Firefox < 16 */
@-moz-keyframes go-up {
    from { margin-top: 3em; }
    to   { margin-top: 0em; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes go-up {
    from { margin-top: 3em; }
    to   { margin-top: 0em; }
}
/* Internet Explorer */
@-ms-keyframes go-up {
    from { margin-top: 3em; }
    to   { margin-top: 0em; }
}
/* Opera < 12.1 */
@-o-keyframes go-up {
    from { margin-top: 3em; }
    to   { margin-top: 0em; }
}

#actuar:hover {
    cursor: pointer;
    height: 36px;
}
#paguela:hover {
    cursor: pointer;
    height: 36px;
}
#toletus:hover {
    cursor: pointer;
    height: 36px;
}
#facilfit:hover {
    cursor: pointer;
    height: 36px;
}
