/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}*/

body {
    font-family: 'Poppins', sans-serif !important;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.homeCentral {
    height: 650px;
    background-color: #fff;
    position: relative
}

.homeDev {
    position: absolute;
    right: 18px;
    bottom: 5px;
    font-size: 12px;
    font-weight: bold
}

.textLogin {
    background-color: #EAEAEA;
    color: #14342B
}

.dv-estagio {
    border: 1px solid #60935D;
    position: relative;
}

.btn-add-estagio {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #60935D;
    color: white;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-remove-estagio {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #dc3545;
    color: white;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 991px) {
    .img-home {
        display:none;
    }
}

@media only screen and (max-device-width: 480px) {
    .logoLayout {
        width: 80%;
    }

    .headNomeCli{
        display:none;
    }

}



/* #TIMELINE
================================================== */
.cd-timeline-start {
    position: relative;
    display: block;
    clear: both;
    width: 250px;
    padding: 15px;
    border: 3px solid #E5E5E5;
    margin: 0 auto 10px;
    background: #FFF;
    z-index: 1;
    text-align: center;
}

.cd-final {
    margin-bottom: 0;
}

.cd-timeline-start-caption, .cd-timeline-start-date {
    font-family: 'Lato',Arial,Helvetica,sans-serif;
}

.cd-timeline-start-caption {
    color: #4b4e53;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.cd-timeline-start-date {
    margin-bottom: 5px;
}

.cd-timeline-content h2 {
    line-height: 36px;
    margin-bottom: 0;
}
/*****	#MODULES - reusable parts of our design	*****/
.cd-container {
    /* this class is
        used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
    width: 90%;
    max-width: 1170px;
    margin: 0 auto;
    
}

    .cd-container::after {
        /* clearfix */
        content: '';
        display: table;
        clear: both;
    }

#cd-timeline {
    position: relative;
    padding: 2em 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 2em;
    margin-bottom: 2em;
}

    #cd-timeline::before {
        /* this is the vertical line */
        content: '';
        position: absolute;
        top: 0;
        left: 18px;
        height: 100%;
        width: 4px;
        background: var(--bs-acompanhe);
    }

@media only screen and (min-width: 991px) {
    #cd-timeline {
        margin-top: 3em;
        margin-bottom: 3em;
    }

        #cd-timeline::before {
            left: 50%;
            margin-left: -2px;
        }
}

.cd-timeline-block {
    position: relative;
    margin: 2em 0;
}

    .cd-timeline-block:after {
        content: "";
        display: table;
        clear: both;
    }

    .cd-timeline-block:first-child {
        margin-top: 0;
    }

    .cd-timeline-block:last-child {
        margin-bottom: 0;
    }

@media only screen and (min-width: 991px) {
    .cd-timeline-block {
        margin: 4em 0;
    }

        .cd-timeline-block:first-child {
            margin-top: 0;
        }

        .cd-timeline-block:last-child {
            margin-bottom: 0;
        }
}

.cd-timeline-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

    .cd-timeline-img img {
        display: block;
        width: 24px;
        height: 24px;
        position: relative;
        left: 50%;
        top: 50%;
        margin-left: -12px;
        margin-top: -12px;
    }

    .cd-timeline-img.cd-picture {
        background: var(--bs-acompanhe);
        text-align: center;
        font-size: 24px;
        padding-top: 16px;
        color: #fff;
    }

    .cd-timeline-img.cd-movie {
        background: #c03b44;
    }

    .cd-timeline-img.cd-location {
        background: #f0ca45;
    }

@media only screen and (min-width: 991px) {
    .cd-timeline-img {
        width: 60px;
        height: 60px;
        left: 50%;
        margin-left: -30px;
        /* Force Hardware Acceleration in WebKit */
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
    }

    .cssanimations .cd-timeline-img.is-hidden {
        visibility: hidden;
    }

    .cssanimations .cd-timeline-img.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-1 .6s;
        animation: cd-bounce-1 .6s;
    }
}

@-webkit-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.cd-timeline-content {
    position: relative;
    margin-left: 60px;
    background: #f3f3f3;
    padding: 20px;
}

    .cd-timeline-content:after {
        content: "";
        display: table;
        clear: both;
    }

    .cd-timeline-content h2 {
        font-size: 20px;
        line-height: 28px;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
        display: inline-block;
    }

    .cd-timeline-content .cd-read-more {
        float: right;
        padding: .8em 1em;
        background: #acb7c0;
        color: white;
        border-radius: .25em;
    }

.no-touch .cd-timeline-content .cd-read-more:hover {
    background-color: #bac4cb;
}

.cd-timeline-content .cd-date {
    float: left;
}

.cd-date-year, .cd-date-month {
    display: block;
    font-family: 'Lato',Arial,Helvetica,sans-serif;
    font-weight: 400;
}

.cd-date-year {
    font-size: 20px;
}

.cd-date-month {
    font-size: 14px;
}

.cd-timeline-content::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid #f3f3f3;
}

h2.portfolio-timeline-title {
    margin: 10px 0 0 0;
}

@media only screen and (min-width: 991px) {
    .cd-timeline-content {
        margin-left: 0;
        padding: 1.6em;
        width: 45%;
    }

        .cd-timeline-content::before {
            top: 24px;
            left: 100%;
            border-color: transparent;
            border-left-color: #f3f3f3;
        }

        .cd-timeline-content .cd-read-more {
            float: left;
        }

        .cd-timeline-content .cd-date {
            position: absolute;
            width: 100%;
            left: 122%;
            top: 6px;
        }

    .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }

        .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
            top: 24px;
            left: auto;
            right: 100%;
            border-color: transparent;
            border-right-color: #f3f3f3;
        }

        .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
            float: right;
        }

        .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
            left: auto;
            right: 122%;
            text-align: right;
        }

    .cssanimations .cd-timeline-content.is-hidden {
        visibility: hidden;
    }

    .cssanimations .cd-timeline-content.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-2 .6s;
        animation: cd-bounce-2 .6s;
    }
}

@media only screen and (min-width: 991px) {
    .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
        -webkit-animation: cd-bounce-2-inverse .6s;
        animation: cd-bounce-2-inverse .6s;
    }
}

@-webkit-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -ms-transform: translateX(100px);
        transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    /* #TIMELINE  ====================================*/
    .cd-timeline-start {
        margin: 0;
    }

    .cd-timeline-img.cd-picture {
        font-size: 18px;
        padding-top: 5px;
    }
}


/* #FIM  TIMELINE
================================================== */

.controled.error {
    border-color: #E42C3E !important;
    z-index: 1;
}

label.error {
    font-weight: normal;
    font-size: 11px;
    color: #e42c3e;
    position: absolute;
    top: 40px;
    /*left: 45px;*/
}

label.error-login {
    font-weight: normal;
    font-size: 11px;
    color: #e42c3e;
    position: absolute;
    top: 40px;
    left: 45px;
}

.checkbox label.error {
    top: 18px;
    left: 0;
}

/*LOGIN SENHA*/
.Short {
    width: 100%;
    background-color: #dc3545;
    height: 3px;
    color: #dc3545;
    font-weight: 500;
    font-size: 12px;
    position: absolute;
    top: 40px;
}

.Weak {
    width: 100%;
    background-color: #ffc107;
    height: 3px;
    color: #ffc107;
    font-weight: 500;
    font-size: 12px;
    position: absolute;
    top: 40px;
}

.Good {
    width: 100%;
    background-color: #28a745;
    height: 3px;
    color: #28a745;
    font-weight: 500;
    font-size: 12px;
    position: absolute;
    top: 40px;
}

.Strong {
    width: 100%;
    background-color: #1600ff;
    height: 3px;
    color: #1600ff;
    font-weight: 500;
    font-size: 12px;
    position: absolute;
    top: 40px;
}

/*Seleciona pedido*/

.pedido-select {
    position: absolute;
    top: 185px;
    right: 0;
    overflow: hidden;
}

.pedido-select-box {
    margin-right: -230px;
    position: relative;
    z-index: 2000;
    transition-duration: 0.8s;
}

    .pedido-select-box.show {
        margin-right: 0;
    }

.spin-icon {
    background: #19342bba;
    position: absolute;
    padding: 7px 0px 7px 13px;
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    top: 0;
    left: 0;
    width: 27px;
    color: #fff;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: sideways-right;
}

.pedidos-selecione {
    width: 230px;
    margin-left: 27px;
    background: #f3f3f4;
    padding: 10px;
    min-height: 155px;
    max-height: 400px;
    overflow-x: auto;
}



/* Nestable list */
.dd {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    line-height: 20px;
}

.dd-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .dd-list .dd-list {
        padding-left: 30px;
    }

.dd-collapsed .dd-list {
    display: none;
}

.dd-item,
.dd-empty,
.dd-placeholder {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 20px;
    font-size: 13px;
    line-height: 20px;
}

.dd-handle {
    display: block;
    margin: 5px 0;
    padding: 5px 10px;
    color: #333;
    text-decoration: none;
    border: 1px solid #e7eaec;
    background: #f5f5f5;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

    .dd-handle span {
        font-weight: bold;
    }

    .dd-handle:hover {
        background: #f0f0f0;
        cursor: pointer;
        font-weight: bold;
    }

.dd-item > button {
    display: block;
    position: relative;
    cursor: pointer;
    float: left;
    width: 25px;
    height: 20px;
    margin: 5px 0;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: 0;
    background: transparent;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
}

    .dd-item > button:before {
        content: '+';
        display: block;
        position: absolute;
        width: 100%;
        text-align: center;
        text-indent: 0;
    }

    .dd-item > button[data-action="collapse"]:before {
        content: '-';
    }

#nestable2 .dd-item > button {
    font-family: FontAwesome;
    height: 34px;
    width: 33px;
    color: #c1c1c1;
}

    #nestable2 .dd-item > button:before {
        content: "\f067";
    }

    #nestable2 .dd-item > button[data-action="collapse"]:before {
        content: "\f068";
    }

.dd-placeholder,
.dd-empty {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #b6bcbf;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.dd-empty {
    border: 1px dashed #bbb;
    min-height: 100px;
    background-color: #e5e5e5;
    background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-image: -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.dd-dragel {
    position: absolute;
    z-index: 9999;
    pointer-events: none;
}

    .dd-dragel > .dd-item .dd-handle {
        margin-top: 0;
    }

    .dd-dragel .dd-handle {
        -webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1);
    }
/**
* Nestable Extras
*/
.nestable-lists {
    display: block;
    clear: both;
    padding: 30px 0;
    width: 100%;
    border: 0;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
}

#nestable-menu {
    padding: 0;
    margin: 10px 0 20px 0;
}

#nestable-output,
#nestable2-output {
    width: 100%;
    font-size: 0.75em;
    line-height: 1.333333em;
    font-family: open sans, lucida grande, lucida sans unicode, helvetica, arial, sans-serif;
    padding: 5px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

#nestable2 .dd-handle {
    color: inherit;
    border: 1px dashed #e7eaec;
    background: #f3f3f4;
    padding: 10px;
}

#nestable2 span.label {
    margin-right: 10px;
}

#nestable-output,
#nestable2-output {
    font-size: 12px;
    padding: 25px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.SMSCheck {
    text-align: center;
    font-size: 40px;
    border: solid 1px #ccc;
    box-shadow: 0 0 5px #ccc inset;
    outline: none;
    width: 15%;
    transition: all .2s ease-in-out;
    border-radius: 3px;
}

    .SMSCheck:focus {
        border-color: green;
        box-shadow: 0 0 5px green inset;
    }

    .SMSCheck::selection {
        background: transparent;
    }

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


.dt-paging-button.page-item.active button {
    background-color: #14342B !important;
    border-color: #14342B !important;
}
