/**
* Templates css
*/
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animated {
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

/* material-progress Bar */
.material-progress {
    position: relative;
    height: 4.5px;
    display: block;
    width: 100%;
    background-color: #657cbd;
    border-radius: 2px;
    background-clip: padding-box;
    margin: 0;
    overflow: hidden;
}

.material-progress .determinate {
    position: absolute;
    background-color: inherit;
    top: 0;
    bottom: 0;
    background-color: #a5bbc8;
    transition: width .3s linear;
}

.material-progress .indeterminate {
    background-color: #a5bbc8;
}

.material-progress .indeterminate:before {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
    animation: indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
}

.material-progress .indeterminate:after {
    content: '';
    position: absolute;
    background-color: inherit;
    top: 0;
    left: 0;
    bottom: 0;
    will-change: left, right;
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    animation: indeterminate-short 2.1s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
    -webkit-animation-delay: 1.15s;
    animation-delay: 1.15s;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    60% {
        left: 100%;
        right: -90%;
    }

    100% {
        left: 100%;
        right: -90%;
    }
}

@keyframes indeterminate {
    0% {
        left: -35%;
        right: 100%;
    }

    60% {
        left: 100%;
        right: -90%;
    }

    100% {
        left: 100%;
        right: -90%;
    }
}

@-webkit-keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    60% {
        left: 107%;
        right: -8%;
    }

    100% {
        left: 107%;
        right: -8%;
    }
}

@keyframes indeterminate-short {
    0% {
        left: -200%;
        right: 100%;
    }

    60% {
        left: 107%;
        right: -8%;
    }

    100% {
        left: 107%;
        right: -8%;
    }
}

/**************************/
.material-form-panel {
    display: inline-block;
    max-width: 100%;
    background: white;
    margin-bottom: 5px;
    padding: 30px 25px 5px 25px;
}

.material-form-group {
    position: relative;
    margin-bottom: 23px;
}

.material-form-group[class*="col-"]{
    padding-left: 0px;
}

.material-form-group.no-margin-bottom{
    margin-bottom: 0px;
}


.material-form-group input,
.material-form-group select {
    font-size: 1.159em;
    color: #757575;
    padding: 8px 11px 5px 11px;
    display: block;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #dcdcdc;
    box-shadow: unset;
}

.material-form-group input:focus,
.material-form-group select:focus {
    outline: none;
    border-bottom: none;
}

.material-form-group input.error,
.material-form-group select.error{
    border-bottom-color: #fcacae;
}

.material-form-group input:-webkit-autofill,
.material-form-group select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    box-shadow: 0 0 0 30px white inset;
    color: #757575;
}

.material-form-label.in{
    font-size: 13px;
    color: #5264AE;
    font-weight: normal;
    margin-left: 6px;
    pointer-events: none;
}

.material-form-group label {
    color: #999;
    font-size: 1.159em;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 10px;
    top: 9px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

/** 
* active state 
* Ativa o efeito da label
*/
.material-form-group input:focus ~ label, 
.material-form-group input:valid ~ label, 
.material-form-group input.in ~ label,
.material-form-group select.in ~ label{
    top: -12px;
    left: 5px;
    font-size: 13px;
    color: #5264AE;
}

.material-form-group .bar {
    position: relative;
    display: block;
    width: 100%;
}

.material-form-group .bar:before, 
.material-form-group .bar:after {
    content: '';
    height: 1px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #5264AE;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.material-form-group .bar:before {
    left: 50%;
}

.material-form-group .bar:after {
    right: 50%;
}

/* active state */
.material-form-group input:focus ~ .bar:before, 
.material-form-group input:focus ~ .bar:after,
.material-form-group select:focus ~ .bar:before, 
.material-form-group select:focus ~ .bar:after  {
    width: 50%;
}

.material-form-group .highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.material-form-group input:focus ~ .highlight,
.material-form-group select:focus ~ .highlight {
    -webkit-animation: inputMaterialHighlighter 0.3s ease;
    -moz-animation: inputMaterialHighlighter 0.3s ease;
    animation: inputMaterialHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputMaterialHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputMaterialHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputMaterialHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}


/*************************************/


.panel-material_design {
    border: none;
    background: white;
}

.panel-material_design .panel-heading, .panel-material_design .panel-body {
    /*padding: 1.25em 1.85em;*/
    padding: 1.9em 1.85em 1.25em 1.85em;
}

.panel-material_design .panel-body {
    border: none !important;
}

.a-collapse-material_design, .btn-material_design {
    font-family: Roboto,sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1.2318rem;
    line-height: 2.25rem;
    font-weight: 700;
    letter-spacing: .1629em;
    text-decoration: none;
    text-transform: uppercase;
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform, opacity;
    padding: 0 8px 0 8px;
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-width: 64px;
    height: 36px;
    border: none;
    outline: none;
    line-height: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-appearance: none;
    overflow: hidden;
    vertical-align: middle;
    border-radius: 2px;
}

.btn-material_design:hover{
    cursor: pointer;
}

.btn-material_design:not(:disabled) {
    background-color: rgba(0,0,0,0);
    color: #2f5988;
}

.btn-material_design:disabled {
    background-color: rgba(0,0,0,0);
    color: #9e9e9ecc;
}

.btn-material_design:disabled:hover{
    cursor: not-allowed;
}

.btn-material_design.padding__group{
    padding-left: 16px;
}

.btn-material_design.margin__group{
    margin-left: 16px;
}

.a-collapse-material_design:hover, .a-collapse-material_design:focus, .btn-material_design:hover, .btn-material_design:focus {
    text-decoration: none;
    background-color: whitesmoke;
}
.a-collapse-material_design:focus, .btn-material_design:focus {
    text-decoration: none;
    background-color: #2f598833;
}


.btn-material_design.btn__sm{
    height: 30px;
    font-size: 1.1418rem;
}

.btn-material_design.btn__outlined{
    padding: 0 8px 0 8px;
    border: 1px solid #c5c5c5;
}

.btn-material_design.btn__contained{
    background: #2f5988f0;
    color: white;
}

.btn-material_design.btn__contained:hover{
    background: #56769c;
    color: white;
}

.btn-material_design.btn__contained:focus{
    background: #56769ce8;
    color: white;
}

.btn-material_design.btn__icon_alone.btn__contained,
.btn-material_design.btn__icon_alone.btn__outlined{
    padding: 0px;
    min-width: 44px;
    height: 35px;
}


.btn-material_design > .fa-lg{
    font-size: 1.23333333em;
}

/*****************************/