@import url('https://fonts.googleapis.com/css?family=Muli:200,300,400,600,700,900&display=swap&subset=latin-ext,vietnamese');
@import url('stroke-gap.css');
@import url('pe-icon-7-stroke.css');
@import url('all.min.css');

/* GRID BASE */
* {
    /* Firefox */
    scrollbar-color: #6c91c5 #eee;
    scrollbar-width: thin;
    /* Internet Explores */
    scrollbar-face-color: #6c91c5;
    scrollbar-track-color: #eee;
    scrollbar-base-color: #eee;
    scrollbar-3dlight-color: #eee;
    scrollbar-highlight-color: #eee;
    scrollbar-arrow-color: #6c91c5;
    scrollbar-shadow-color: #eee;
    scrollbar-dark-shadow-color: #eee;
    /* Chrome|Edge|Safari */
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: #eee;
}

*::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background-color: #6c91c5;
    background-image: linear-gradient(to top, #6c91c5 0%, #809fca 100%);
}

body {
    background: #ffffff;
    font-family: 'Muli', arial;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 26px;
    color: #777;
}

main > .container {
    padding: 80px 15px 0;
}

.container-fluid {
    padding-right: 115px;
    padding-left: 115px;
}

.footer {
    background-color: #6c91c5;
}

.footer > .container {
    padding-right: 15px;
    padding-left: 15px;
}


/* ELEMENTOS BÁSICOS */
.text-theme {
    color: #6c91c5!important;
}
.bg-theme {
    background-color: #6c91c5!important;
}
.bg-black {
    background-color: #000!important;
}

h3 {
    font-size: 24px;
}
h4 {
    font-size: 18px;
}
h5 {
    font-size: 14px;
    line-height: 22px;
}
h6 {
    font-size: 12px;
}

.btn-light, .btn-light:hover {
    color: #6c91c5;
}
.btn-outline-light:hover {
    color: #6c91c5;
    border-color: #6c91c5;
}
.btn-theme, .btn-outline-theme:hover {
    color: #fff;
    background-color: #6c91c5;
    border-color: #6c91c5;
}
.btn-theme:hover {
    color: #fff;
    background-color: #5f81af;
    border-color: #5f81af;
}
.btn-outline-theme {
    color: #6c91c5;
    border-color: #6c91c5;
}
.btn-outline-theme:not(:disabled):not(.disabled).active, .btn-outline-theme:not(:disabled):not(.disabled):active, .show>.btn-outline-theme.dropdown-toggle {
    color: #fff;
    background-color: #6c91c5;
    border-color: #6c91c5;
}
.btn-outline-select {
    color: #495057;
    border-color: #ced4da;
}
.btn-outline-select:not(:disabled):not(.disabled).active, .btn-outline-select:not(:disabled):not(.disabled):active, .show>.btn-outline-select.dropdown-toggle {
    color: #495057;
    border-color: #ced4da;
}
.btn-facebook {
    color: #fff;
    background-color: #346DA6;
    border-color: #346DA6;
}
.btn-facebook:hover {
    color: #fff;
    background-color: #2e6092;
    border-color: #2e6092;
}
.btn-twitter {
    color: #fff;
    background-color: #4186CD;
    border-color: #4186CD;
}
.btn-twitter:hover {
    color: #fff;
    background-color: #3b7bbb;
    border-color: #3b7bbb;
}
.btn-whatsapp {
    color: #fff;
    background-color: #57BA63;
    border-color: #57BA63;
}
.btn-whatsapp:hover {
    color: #fff;
    background-color: #4fa559;
    border-color: #4fa559;
}
.btn-select {
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
}

.bootstrap-select .dropdown-item { white-space: normal; }

.custom-range::-webkit-slider-thumb {
    background-color: #6c91c5;
}
.custom-range::-moz-range-thumb {
    background-color: #6c91c5;
}
.custom-range::-ms-thumb {
    background-color: #6c91c5;
}

.custom-file-label { overflow: hidden; }

.shadow-top-sm {
    box-shadow: 0 -.125rem .25rem rgba(0,0,0,.075) !important;
}

.bootstrap-tagsinput {
    display: block;
    width: 100%;
    min-height: calc(1.5em + .75rem + 2px);
    height: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.badge-theme {
    color: #fff;
    background-color: #6c91c5;
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff;
    border-color: #6c91c5;
    background-color: #6c91c5;
}

textarea { resize: none; }

.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn, .input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text, .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn, .input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text, .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group>.input-group-append:last-child>.input-group-text:not(:last-child), .input-group>.input-group-prepend>.btn, .input-group>.input-group-prepend>.input-group-text {
    height: calc(1.5em + .75rem + 2px);
}

.input-group.is-invalid .input-group-prepend .btn {
    border-color: #dc3545;
}
.input-group.is-invalid input[type="text"] {
    border-color: #dc3545;
}
.input-group.is-invalid input[type="text"]~.invalid-feedback {
    display: block;
}


/* COMPONENTES */
.title-page:before {
    content: '';
    position: absolute;
    width: 140px;
    height: 2px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #dfdfdf;
}
.title-page:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;    
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #6c91c5;
}

.icon-border {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 30px;
    border: 2px solid #6c91c5;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.icon-border > span {
    font-size: 40px;
    line-height: 100px;
}

#carouselTradutores .carousel-control-prev {
    left: -90px;
}
#carouselTradutores .carousel-control-next {
    right: -95px;
}
#carouselTradutores .carousel-indicators {
    bottom: -40px;
}

#accordionFaqs [data-toggle="collapse"] .fas:before,
#accordionRecommedation [data-toggle="collapse"] .fas:before {  
    content: "\f078";
}
  
#accordionFaqs [data-toggle="collapse"].collapsed .fas:before,
#accordionRecommedation [data-toggle="collapse"].collapsed .fas:before {
    content: "\f077";
}

#accordionFaqs i.fas,
#accordionRecommedation i.fas {
    position: absolute;
    top: 25px;
    right: 15px;
}

.g-recaptcha > div {
    margin: 0 auto;
}
.g-recaptcha.is-invalid > div {
    border:1px solid #dc3545;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}
.g-recaptcha.is-invalid + .invalid-feedback{
    display: block;
}

#waitCheckEmail {
    display: none;
    position: absolute;
    top: 6.5px;
    right: 12px;
}

.border-light-gray {
    border-left: 1px solid #ced4da;
}

#setLanguage {
    width: 80px;
    font-size: 12px;
    color: #fff;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='white' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
    background-color: #6c91c5;
    border: 1px solid #fff;
}


.img-container > div> h4 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    font-size: 1.2em;
}
.img-container div {
    height: 250px;
    background-color: #fff;
    background-position: center center;
    background-size: cover;
}
.img-container .overlay {
    position: absolute;
    top: 0;
    left: 15;
    width: calc(100% - 30px);
    height: 100%;
    background:rgba(0, 0, 0, .8);
    
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);

    transition: transform 500ms ease-in-out;
    -webkit-transition: transform 500ms ease-in-out;
    -moz-transition: transform 500ms ease-in-out;
    -ms-transition: transform 500ms ease-in-out;
    -o-transition: transform 500ms ease-in-out;
}
.img-container:hover .overlay {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.img-container .overlay span {
    position:absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    color: #fff;
    transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
}
.img-container .overlay span h4 {
    font-size: 1.4rem;
}
.img-container .overlay span p {
    font-size: 12px;
}

/*-----STARS-----*/
.score {
    display: block;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}
.score-wrap {
    display: inline-block;
    position: relative;
    height: 19px;
}
.score .stars-active {
    color: #6c91c5;
    position: relative;
    z-index: 10;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}
.score .stars-inactive {
    color: grey;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-text-stroke: initial;
}

.small-title {
    font-size: 12px;
}

.timer .days-wrapper, .timer .hours-wrapper, .timer .minutes-wrapper, .timer .seconds-wrapper {
    display: inline-block;
    width: 50px;
    height: 60px;
    margin: 0 10px;
    padding-top: 1px;
    font-size: 12px;
    cursor: pointer;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}
.timer .days, .timer .hours, .timer .minutes, .timer .seconds {
    font-size: 24px;
    font-weight: 300;
    line-height: 1px;
}

.progress {
    height: 25px;
}
.progress-bar {
    font-size: 20px;
    font-weight: 900;
}

.content-view .card-body {
    max-height: 1000px;
    overflow-y: auto;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    background-color: #6c91c5;
}

#step2, #textContent, #videoContent { display: none; }

.list-group li a {
    display: block;
    padding: .75rem 1.25rem;
    width: 100%;
    height: 100%;
    color: #495057;
    text-decoration: none;
}

.list-group-item.active {
    background-color: #6c91c5;
    border-color: #6c91c5;
}


.personal-image {
    text-align: center;
}
.personal-image input[type="file"] {
    display: none;
}
.personal-figure {
    position: relative;
    width: 50px;
    height: 50px;
}
.personal-avatar {
    cursor: pointer;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 100%;
    border: 2px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
    transition: all ease-in-out .3s;
}
.personal-avatar:hover {
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
}
.personal-figcaption {
    cursor: pointer;
    position: absolute;
    top: 0px;
    width: inherit;
    height: inherit;
    border-radius: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    transition: all ease-in-out .3s;
}
.personal-figcaption:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, .5);
}
.personal-figcaption > img {
    margin-top: 12.5px;
    width: 25px;
    height: 25px;
}
.personal-upload-progress {
    display: none;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, .5);
}
.personal-upload-progress i {
    margin-top: 9.5px;
}

#zoid-paypal-button-3e758b49a5 > .zoid-outlet {
    width: 100% !important;
}

#listPairs span.badge {
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
}
#listPairs span.badge .close {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
}

.dropdown-item.selected {
    background: rgba(108, 145, 197, 0.9);
    color: #fff;
}

.btn-copy {
    position: absolute;
    top: -1px;
    right: -1px;
    border-top: none;
    border-right: none;
}

.zoid-outlet {
    width: 100% !important;
}

.badge-custom {
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: inherit;
}

i.fas.fa-asterisk {
    font-size: 6px;
}

#modalLoading {
    display: none;
}

/*-----CHAT-----*/
#cardChat .card-body ul li span.ml-auto {
    color: #6c91c5;
    background-color: rgba(108, 145, 197, 0.1);
    border: 1px solid #6c91c5;
}

#cardChat .card-body ul li span.mr-auto {
    color: #6c757d;
    background-color: rgba(108, 117, 125, 0.1);
    border: 1px solid #6c757d;
}


/*-------HOME-------*/
#home-1 h1 {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 900;
}
#home-1 h3 {
    color: #9a9a9a;
    line-height: 1.3;
}

#home-2 .card .card-header { min-height: 70px; }
#home-2 .card .card-body .card-text { color: #9a9a9a; }

#home-3 > .row {
    background: #fff url(../img/home/bg-home-3.png) left center no-repeat;
    background-size: contain;
}

#carouselProjects .carousel-control-prev { left: -70px; }
#carouselProjects .carousel-control-next { right: -70px; }
#carouselProjects .carousel-control-next,
#carouselProjects .carousel-control-prev {
    width: 70px;
}
#carouselProjects .carousel-control-prev-icon {
    width: 50px;
    height: 50px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}
#carouselProjects .carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23999' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}
#carouselProjects .badge { border-radius: 15rem; }
/*-----FIM HOME-----*/



/*-------ANALISE DE TEXTO-------*/
.saveAnalyse { display: none; }
/*-----FIM ANALISE DE TEXTO-----*/


#videoCapture video {
    background:#000;
    display:block;
}

.isDisabled {
    color: currentColor;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
    pointer-events: none;
    display: inline-block;
}



/*-----RESPONSIVE-----*/
@media (min-width: 0) {
    
}

@media (max-width: 576px) {
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .border-light-gray {
        border: none;
        border-top: 1px solid #ced4da;
    }

    .card-deck .card {
        flex: 0 0 calc(100% - 30px);
    }

    #home-1 h1 {
        font-size: 50px;
    }
    #home-3 > .row {
        background: #fff url(../img/home/bg-home-3-opacity.png) center center no-repeat;
        background-size: contain;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576.1px) and (max-width:768px) {  
    .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
    
    .card-deck .card {
        flex: 0 0 calc(50% - 30px);
    }
}

/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768.1px) and (max-width:992px) {  
    .card-deck .card {
        flex: 0 0 calc(33.3333333333% - 30px);
    }

    #viewAccount .card-deck .card {
        flex: 0 0 calc(50% - 30px);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992.1px) and (max-width:1200px) { 
    .card-deck .card {
        flex: 0 0 calc(33.3333333333% - 30px);
    }

    #viewAccount .card-deck .card {
        flex: 0 0 calc(50% - 30px);
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
    .card-deck .card {
        flex: 0 0 calc(33.3333333333% - 30px);
    }

    #viewAccount .card-deck .card {
        flex: 0 0 calc(50% - 30px);
    }
}