﻿

body {
    /*color: #858796; - Teste- Cor sugerida pelo Bender*/
    color: #555555;
}

.text-line-through {
    text-decoration: line-through;
}

.line-dotted {
    border: 1px dashed #E0E0E0;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #a3a3a3;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #656565;
    }

.collapse-region .collapse-item .collapse-link[data-toggle="collapse"]::after {
    width: 1rem;
    text-align: center;
    float: right;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    content: '\f106';
    font-family: 'Font Awesome 5 Free';
}

.collapse-region .collapse-item .collapse-link[data-toggle="collapse"].collapsed::after {
    content: '\f107';
}

.btn-collapse[data-toggle="collapse"]::after {
    width: 1rem;
    text-align: center;
    float: left;
    vertical-align: 0;
    border: 0;
    font-weight: 900;
    margin-right: 16px;
    content: '\f106';
    font-family: 'Font Awesome 5 Free';
}

.btn-collapse[data-toggle="collapse"].collapsed::after {
    content: '\f107';
}

.tradermarkbrand,
.ownbrandseller {
    font-size: 0.7em !important;
}

.closemsgpassword {
    position: relative;
    top: -0.4em;
}

.btn-group-xs > .btn,
.btn-xs {
    padding: .25rem .4rem;
    font-size: .875rem;
    line-height: .5;
    border-radius: .2rem;
}

.opacity {
    opacity: 0.65;
    line-height: 1em !important;
}

.opacity-cancel {
    opacity: 0.65;
}

@media (min-width: 1024px) {
    .card-userinfo {
        height: 345px !important;
    }
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    display: none;
}

.small-font-table {
    font-size: 0.8rem;
}

.text-size-10px {
    font-size: 10px;
}

.text-size-12px {
    font-size: 12px;
}

.text-size-14px {
    font-size: 14px;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
/*.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }*/

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

#preloader {
    background: rgba(255, 255, 255, 0);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999999;
}

    #preloader img {
        left: 50%;
        margin-left: -10%;
        margin-top: -142px;
        position: absolute;
        top: 50%;
    }

    #preloader span {
        left: 50%;
        margin-left: -16px;
        margin-top: 50px;
        position: absolute;
        top: 50%;
    }

.mh-20-vh {
    max-height: 20vh;
}

.mh-30-vh {
    max-height: 30vh;
}

.mh-40-vh {
    max-height: 40vh;
}

.mh-50-vh {
    max-height: 50vh;
}

.mh-60-vh {
    max-height: 60vh;
}

.mh-70-vh {
    max-height: 70vh;
}

.row-currency-cloud .row {
    margin-right: -0.60rem;
}

.modal-full {
    min-width: 99%;
}

    .modal-full .modal-content {
        min-height: 90vh;
    }

.modal {
    z-index: 200000;
}


/*.select2-selection__rendered {
    line-height: 29px !important;
}

.select2-container .select2-selection--single {
    height: 33px !important;
}

.select2-selection__arrow {
    height: 32px !important;
}*/

.datepicker {
    position: relative;
    /*z-index: 100;*/
}

.pulse {
    overflow: initial;
    position: relative;
    z-index: 1;
}

    .pulse::before {
        content: '';
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: inherit;
        border-radius: inherit;
        -webkit-transition: opacity .3s, -webkit-transform .3s;
        transition: opacity .3s, -webkit-transform .3s;
        transition: opacity .3s, transform .3s;
        transition: opacity .3s, transform .3s, -webkit-transform .3s;
        -webkit-animation: pulse-animation 1s cubic-bezier(0.24, 0, 0.38, 1) infinite;
        animation: pulse-animation 1.2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
        z-index: -1;
    }

@-webkit-keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
}

.card-body-video {
    padding: .5rem;
}

.demo-span {
    position: fixed;
    z-index: 10000;
    right: 8px;
    top: 350px;
    font-size: 20px;
    transform: rotate(30deg);
    padding: 0 10px;
    opacity: 0.8;
    border: 2px solid;
    border-radius: 6px;
    pointer-events: none;
}

/*.flag {
    max-width: 35px;
    height: auto;
}
*/

.card-item:hover {
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.20), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 150ms ease-in;
    transform: scale(1.01);
    cursor: pointer;
    border-radius: 3%;
}

select[readonly] {
    background: #eee;
    pointer-events: none;
    touch-action: none;
}

/**
Form label
 */
/*.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: .5rem;
}

.form-label.required:after {
    content: "*";
    margin-left: .25rem;
    color: #cd201f;
}

.form-label-description {
    float: right;
    font-weight: 400;
    color: #6e7582;
    line-height: 1.5rem;
    font-size: 0.75rem;
}*/



/**
Form label
 */
.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: .5rem;
    color: #666666
}

    .form-label.required:after {
        content: "*";
        margin-left: .25rem;
        color: #cd201f;
    }

.form-label-description {
    float: right;
    font-weight: 400;
    color: #6e7582;
    line-height: 1.5rem;
    font-size: 0.75rem;
}

/**
Form hint
 */
.form-hint {
    display: block;
    font-size: 0.75rem;
    color: #6e7582;
    line-height: 1.4285714;
}

    .form-hint:last-child {
        margin-bottom: 0;
    }

    .form-hint + .form-control {
        margin-top: .25rem;
    }

.form-label + .form-hint {
    margin-top: -.5rem;
}

.form-control + .form-hint,
.form-select + .form-hint {
    margin-top: .25rem;
}

/**
Form control
 */
.form-control:-webkit-autofill {
    box-shadow: 0 0 0 1000px #ffffff inset;
}

.form-control:disabled,
.form-control.disabled {
    color: #6e7582;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-control[size] {
    width: auto;
}

.form-control-light {
    background-color: #f5f7fb;
    border-color: transparent;
}

.form-control-dark {
    background-color: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    border-color: transparent;
}

    .form-control-dark:focus {
        background-color: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        border-color: rgba(255, 255, 255, 0.24);
    }

    .form-control-dark::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-control-dark::-moz-placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-control-dark:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-control-dark::-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-control-dark::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

.form-control::-webkit-input-placeholder {
    color: #bec6cc;
}

.form-control:-moz-placeholder {
    color: #bec6cc;
}

.form-control::-moz-placeholder {
    color: #bec6cc;
}

.form-control::placeholder {
    color: #bec6cc;
}

.form-control:-ms-input-placeholder {
    color: #bec6cc;
}

.form-control-rounded {
    border-radius: 10rem;
}

.form-control-flush {
    padding: 0;
    background: none !important;
    border-color: transparent !important;
    resize: none;
    box-shadow: none !important;
    line-height: inherit;
}

.form-footer {
    margin-top: 2rem;
}

.form-fieldset {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(53, 64, 82, 0.024);
    border: 1px solid rgba(110, 117, 130, 0.2);
    border-radius: 3px;
}



/**
Form help
 */
.form-help {
    display: inline-flex;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    font-size: .75rem;
    color: #6e7582;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: rgba(145, 152, 163, 0.1);
    border-radius: 50%;
    transition: .3s background-color, .3s color;
}

    .form-help:hover,
    .form-help[aria-describedby] {
        color: #ffffff;
        background: #206bc4;
    }

/**
Form switch
 */
.form-check {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .form-check.form-check-highlight .form-check-input:not(:checked) ~ .form-check-label {
        opacity: .64;
    }

.form-check-input {
    background-size: 1rem;
    margin-top: .25rem;
}

.form-switch .form-check-input {
    transition: .3s background-color, .3s background-position;
}

.form-check-label {
    line-height: 1.4285714;
    padding: .125rem 0;
}

.form-check-description {
    color: #6e7582;
    font-size: 0.75rem;
    line-height: 1.4285714;
}


/**
Upload files
 */
.form-file-button {
    margin-left: 0;
    border-left: 0;
}

/**
Icon input
 */
.input-icon {
    position: relative;
}

    .input-icon .form-control:not(:last-child) {
        padding-right: 2.5rem;
    }

    .input-icon .form-control:not(:first-child) {
        padding-left: 2.5rem;
    }

.input-icon-addon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    color: #6e7582;
    pointer-events: none;
    font-size: 1.2em;
}

    .input-icon-addon:last-child {
        right: 0;
        left: auto;
    }

/*
Color Input
 */
.form-colorinput {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 1;
    cursor: pointer;
}

.form-colorinput-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.form-colorinput-color {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
    border: 1px solid rgba(110, 117, 130, 0.2);
    border-radius: 3px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

    .form-colorinput-color:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: no-repeat center center/1rem;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e");
        opacity: 0;
        transition: .3s opacity;
    }

.form-colorinput-input:checked ~ .form-colorinput-color:before {
    opacity: 1;
}

.form-colorinput-input:focus ~ .form-colorinput-color {
    border-color: #206bc4;
    box-shadow: 0 0 0 0.2rem rgba(32, 107, 196, 0.25);
}

.form-colorinput-light .form-colorinput-color:before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23354052' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e");
}

/**
Image check
 */
.form-imagecheck {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.form-imagecheck-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.form-imagecheck-figure {
    position: relative;
    display: block;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid rgba(110, 117, 130, 0.2);
    border-radius: 3px;
}

.form-imagecheck-input:focus ~ .form-imagecheck-figure {
    border-color: #206bc4;
    box-shadow: 0 0 0 0.2rem rgba(32, 107, 196, 0.25);
}

.form-imagecheck-input:checked ~ .form-imagecheck-figure {
    border-color: rgba(110, 117, 130, 0.2);
}

.form-imagecheck-figure:before {
    position: absolute;
    top: .25rem;
    left: .25rem;
    z-index: 1;
    display: block;
    width: 1rem;
    height: 1rem;
    color: #fff;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #ffffff;
    border: 1px solid rgba(110, 117, 130, 0.2);
    border-radius: 3px;
    transition: .3s opacity;
}

.form-imagecheck-input:checked ~ .form-imagecheck-figure:before {
    background-color: #206bc4;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e");
    background-repeat: repeat;
    background-position: center;
    background-size: 1rem;
    border-color: rgba(110, 117, 130, 0.2);
}

.form-imagecheck-image {
    max-width: 100%;
    display: block;
    opacity: .64;
    transition: .3s opacity;
}

    .form-imagecheck-image:first-child {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px;
    }

    .form-imagecheck-image:last-child {
        border-bottom-right-radius: 2px;
        border-bottom-left-radius: 2px;
    }

.form-imagecheck:hover .form-imagecheck-image,
.form-imagecheck-input:focus ~ .form-imagecheck-figure .form-imagecheck-image,
.form-imagecheck-input:checked ~ .form-imagecheck-figure .form-imagecheck-image {
    opacity: 1;
}

.form-imagecheck-caption {
    padding: .25rem;
    font-size: 0.765625rem;
    color: #6e7582;
    text-align: center;
    transition: .3s color;
}

.form-imagecheck:hover .form-imagecheck-caption,
.form-imagecheck-input:focus ~ .form-imagecheck-figure .form-imagecheck-caption,
.form-imagecheck-input:checked ~ .form-imagecheck-figure .form-imagecheck-caption {
    color: #354052;
}

/*
Select group
 */
.form-selectgroup {
    display: inline-flex;
    margin: 0 -.5rem -.5rem 0;
    flex-wrap: wrap;
}

    .form-selectgroup .form-selectgroup-item {
        margin: 0 .5rem .5rem 0;
    }

.form-selectgroup-vertical {
    flex-direction: column;
}

.form-selectgroup-item {
    display: block;
    position: relative;
}

.form-selectgroup-input {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.form-selectgroup-label {
    position: relative;
    display: block;
    min-width: calc(1.4285714em + 0.875rem + 2px);
    margin: 0;
    padding: 0.4375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4285714;
    color: #6e7582;
    background: #ffffff;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid rgba(110, 117, 130, 0.2);
    border-radius: 3px;
    transition: border-color .3s, background .3s, color .3s;
}

    .form-selectgroup-label .icon:only-child {
        margin: 0 -.25rem;
    }

    .form-selectgroup-label:hover {
        color: #354052;
    }

.form-selectgroup-check {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 1px solid rgba(110, 117, 130, 0.2);
    vertical-align: middle;
}

.form-selectgroup-check-md {
    width: 2rem;
    height: 2rem;
}

.form-selectgroup-input[type="checkbox"] + .form-selectgroup-label .form-selectgroup-check {
    border-radius: 3px;
}

.form-selectgroup-input[type="radio"] + .form-selectgroup-label .form-selectgroup-check {
    border-radius: 50%;
}

.form-selectgroup-input:checked + .form-selectgroup-label .form-selectgroup-check {
    background-color: #206bc4;
    background-repeat: repeat;
    background-position: center;
    background-size: 1rem;
    border-color: rgba(110, 117, 130, 0.2);
}

.form-selectgroup-input:checked + .form-selectgroup-label .form-selectgroup-check-md {
    background-color: #206bc4;
    background-repeat: repeat;
    background-position: center;
    background-size: 2rem;
    border-color: rgba(110, 117, 130, 0.2);
}

.form-selectgroup-input[type="checkbox"]:checked + .form-selectgroup-label .form-selectgroup-check-green {
    background-color: #1CC6A8;
}

.form-selectgroup-input[type="radio"]:checked + .form-selectgroup-label .form-selectgroup-check-green {
    background-color: #fff;
}


.form-selectgroup-input[type="checkbox"]:checked + .form-selectgroup-label .form-selectgroup-check {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e");
}

.form-selectgroup-input[type="radio"]:checked + .form-selectgroup-label .form-selectgroup-check {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle r='3' fill='%23ffffff' cx='8' cy='8' /%3e%3c/svg%3e");
}

.form-selectgroup-input:checked + .form-selectgroup-label {
    z-index: 1;
    color: #206bc4;
    background: rgba(32, 107, 196, 0.04);
    border-color: #7aade9;
    box-shadow: 0 1px 1px 0 rgba(32, 107, 196, 0.2);
}

.form-selectgroup-input:focus + .form-selectgroup-label {
    z-index: 2;
    color: #206bc4;
    border-color: #7aade9;
    box-shadow: 0 0 0 0.2rem rgba(32, 107, 196, 0.25);
}

.form-selectgroup-input:checked + .form-selectgroup-bg-green {
    border-color: #1CC6A8;
    background: rgba(32, 107, 196, 0.04);
    box-shadow: 0 1px 1px 0 rgba(28, 198, 168, 0.2);
}

.form-selectgroup-input:focus + .form-selectgroup-bg-green {
    border-color: #1CC6A8;
    box-shadow: 0 0 0 0.2rem rgba(28, 198, 168, 0.25);
}

/*.form-selectgroup-input:checked + .form-selectgroup-bg-green-full {
    border-color: #1CC6A8;
    background: #1CC6A8;
    box-shadow: 0 1px 1px 0 rgba(28, 198, 168, 0.2);
}

.form-selectgroup-boxes .form-selectgroup-input:checked + .form-selectgroup-label.form-selectgroup-bg-green-full {
    color: #ffffff !important;
}

.form-selectgroup-input[type="radio"]:checked + .form-selectgroup-label.form-selectgroup-bg-green-full .form-selectgroup-check {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle r='3' fill='%231CC6A8' cx='8' cy='8' /%3e%3c/svg%3e");
}*/

.form-selectgroup-input:checked + .form-selectgroup-bg-green-full {
    border-color: #1CC6A8;
    background: #1CC6A8;
    box-shadow: 0 1px 1px 0 rgba(28, 198, 168, 0.2);
}

.form-selectgroup-boxes .form-selectgroup-input:checked + .form-selectgroup-label.form-selectgroup-bg-green-full {
    color: #ffffff !important;
}

.form-selectgroup-input[type="radio"]:checked + .form-selectgroup-label.form-selectgroup-bg-green-full .form-selectgroup-check {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle r='3' fill='%231CC6A8' cx='8' cy='8' /%3e%3c/svg%3e");
}

.form-selectgroup-input[type="radio"]:checked + .form-selectgroup-label.form-selectgroup-bg-green .form-selectgroup-check {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3ccircle r='3' fill='%231CC6A8' cx='8' cy='8' /%3e%3c/svg%3e");
}




/**
Alternate version of form select group
 */
.form-selectgroup-boxes .form-selectgroup-label {
    text-align: left;
    padding: 1.25rem 1.25rem;
    color: inherit;
}

.form-selectgroup-boxes .form-selectgroup-input:checked + .form-selectgroup-label {
    color: inherit;
}

    .form-selectgroup-boxes .form-selectgroup-input:checked + .form-selectgroup-label .form-selectgroup-title {
        color: #206bc4;
    }

    .form-selectgroup-boxes .form-selectgroup-input:checked + .form-selectgroup-label .form-selectgroup-label-content {
        opacity: 1;
    }

/**
Select group
 */
.form-selectgroup-pills {
    flex-wrap: wrap;
    align-items: flex-start;
}

    .form-selectgroup-pills .form-selectgroup-item {
        flex-grow: 0;
    }

    .form-selectgroup-pills .form-selectgroup-label {
        border-radius: 50px;
    }

/**
Bootstrap color input
 */
.form-control-color::-webkit-color-swatch {
    border: none;
}

/**
Remove the cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.form-control.is-valid-lite,
.form-control.is-invalid-lite {
    border-color: rgba(110, 117, 130, 0.2);
}

.legend {
    display: inline-block;
    background: #e9ecf1;
    width: .75em;
    height: .75em;
    border-radius: 3px;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #cd201f;
}




.input-group-text {
    border-radius: 0px 0.35rem 0.35rem 0px;
}



/*.invalid-feedback {
    display: block;
}*/
#btn-back-account {
    width: 100%;
}


.row-deck > .col,
.row-deck > [class*="col-"] {
    display: flex;
    align-items: stretch;
}

    .row-deck > .col .card,
    .row-deck > [class*="col-"] .card {
        flex: 1 1 auto;
    }

.row-cards {
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

    .row-cards .row-cards {
        flex: 1;
    }

    .row-cards > * {
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }

@media (max-width: 75.23rem) {
    .row-cards {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }

        .row-cards > * {
            padding-left: 0.375rem;
            padding-right: 0.375rem;
        }
}

.select2-dropdown.increasezindex {
    z-index: 99999;
}






.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #ffffff;
    background-clip: border-box;
    border: 1px solid rgba(110, 117, 130, 0.2);
    border-radius: 3px;
}

    .card > hr, .card > .hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit;
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: 2px;
            border-top-right-radius: 2px;
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: 2px;
            border-bottom-left-radius: 2px;
        }

.card-body {
    flex: 1 1 auto;
    padding: 1.25rem 1.25rem;
}


.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(53, 64, 82, 0.024);
    border-bottom: 1px solid rgba(110, 117, 130, 0.2);
}

    .card-header:first-child {
        border-radius: 2px 2px 0 0;
    }

    .card-header + .list-group .list-group-item:first-child {
        border-top: 0;
    }

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(53, 64, 82, 0.024);
    border-top: 1px solid rgba(110, 117, 130, 0.2);
}

    .card-footer:last-child {
        border-radius: 0 0 2px 2px;
    }

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

    .card-header-tabs .nav-link.active {
        background-color: #ffffff;
        border-bottom-color: #ffffff;
    }

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

.card-group > .card {
    margin-bottom: 1.5rem;
}

@media (min-width: 33rem) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-img-top,
                .card-group > .card:not(:last-child) .card-header {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:last-child) .card-img-bottom,
                .card-group > .card:not(:last-child) .card-footer {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-img-top,
                .card-group > .card:not(:first-child) .card-header {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:first-child) .card-img-bottom,
                .card-group > .card:not(:first-child) .card-footer {
                    border-bottom-left-radius: 0;
                }
}

.accordion > .card {
    overflow: hidden;
}

    .accordion > .card:not(:last-of-type) {
        border-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .accordion > .card:not(:first-of-type) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .accordion > .card > .card-header {
        border-radius: 0;
        margin-bottom: -1px;
    }


.input-group .invalid-feedback {
    flex-basis: 100% !important;
}



/**
Card table
 */
.card-table {
    margin-bottom: 0;
}

    .card-table tr td:first-child,
    .card-table tr th:first-child {
        padding-left: 1.25rem;
    }

    .card-table tr td:last-child,
    .card-table tr th:last-child {
        padding-right: 1.25rem;
    }

    .card-table thead tr:first-child td,
    .card-table thead tr:first-child th {
        border-top: 0;
    }

    .card-table tbody tr:last-child td,
    .card-table tbody tr:last-child th {
        border-bottom: 0;
    }

.card-body + .card-table {
    border-top: 1px solid rgba(110, 117, 130, 0.2);
}

.table-vcenter td,
.table-vcenter th {
    vertical-align: middle;
}

.card {
    margin-bottom: 1.25rem;
    box-shadow: rgba(53, 64, 82, 0.04) 0 2px 4px 0;
}

@media (max-width: 75.23rem) {
    .card {
        margin-bottom: 0.75rem;
    }
}

@media print {
    .card {
        border: none;
        box-shadow: none;
    }
}

a.card {
    color: inherit;
    transition: .3s box-shadow;
}

    a.card:hover {
        text-decoration: none;
        box-shadow: rgba(53, 64, 82, 0.16) 0 2px 16px 0;
    }


.status-icon {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    display: inline-block;
    background: currentColor;
    border-radius: 50%;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    margin-right: .375rem;
    vertical-align: middle;
}

.breadcrumb {
    background-color: transparent !important;
}

.w-5 {
    width: 5% !important;
}

.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}


.h-5 {
    height: 5% !important;
}

.h-10 {
    height: 10% !important;
}

.h-15 {
    height: 15% !important;
}

.h-20 {
    height: 20% !important;
}

/*TEXT OVER IMAGE*/
/* Container holding the image and the text */
.container-text {
    position: relative !important;
    text-align: center !important;
    color: white !important;
}

/* Bottom left text */
.bottom-left {
    position: absolute !important;
    bottom: 12% !important;
    left: 22% !important;
}

/* Top left text */
.top-left {
    position: absolute !important;
    top: 12% !important;
    left: 22% !important;
}

/* Top right text */
.top-right {
    position: absolute !important;
    top: 12% !important;
    right: 22% !important;
}

/* Bottom right text */
.bottom-right {
    position: absolute !important;
    bottom: 12% !important;
    right: 22% !important;
}

.ms-auto {
    margin-left: auto !important;
}

.lh-1 {
    line-height: 1 !important;
}

.dropdown-menu-end {
    --bs-position: end;
    right: 0 /* rtl:ignore */;
    left: auto /* rtl:ignore */;
}

.text-end {
    text-align: right !important;
}


.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 2rem !important;
}

.me-5 {
    margin-right: 4rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.lh-sm {
    line-height: 1.4285714 !important;
}
/* Centered text */
.centered {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}


@media only screen and (min-width: 1024px) {
    .align-content-to-bottom-parent {
        position: absolute;
        bottom: 0;
    }

    .card-custom-height-54 {
        height: 53vh;
    }

    .card-custom-height-25 {
        height: 25vh;
    }
}


@media (min-width:1024px) and (max-width:1480px) {
    .font-size-responsive {
        font-size: 0.9vw !important;
    }

    .margin-vertical-adjust {
        margin-bottom: 3.4rem !important;
        margin-top: 1.2rem !important;
    }
}

@media only screen and (max-width: 1023px) {
    .font-size-responsive {
        font-size: 2.3vw !important;
    }

    .margin-vertical-adjust {
        margin-bottom: 1.2rem !important;
        margin-top: 1.2rem !important;
    }
}

.card-body-absolute {
    flex: 1 1 auto;
    padding: 1.25rem 1.25rem;
    width: 96% !important;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
}



.select2-dropdown.increasezindex {
    z-index: 9999999999;
}

.carousel-control-prev, .carousel-control-next {
    width: 5% !important;
}

.breadcrumb {
    font-size: 0.85rem;
}


.bg-success-transparent-30 {
    background: rgba(28, 200, 138, 0.3);
}

.bg-gray-100 {
    background-color: #DEE2E6 !important;
}

.text-gray-100 {
    color: #DEE2E6 !important;
}



.card-icon-rigth {
    display: flex;
    flex-direction: column;
    background: #36B9CC;
    position: absolute;
    right: 10px;
    top: -4.51%;
    bottom: 89.28%;
    height: 50px;
    width: 50px;
    align-content: center;
    background: #36B9CC;
    border-radius: 4px;
}

    .card-icon-rigth i {
        display: block;
        margin: auto;
        color: #ffffff;
        background-color: #36B9CC;
    }


.card-title {
    display: block;
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.75rem;
    margin-bottom: 0.75rem;
    font-size: 80%;
    color: #868e96;
}




.card-body > :last-child {
    margin-bottom: 0;
}

.card-sm > .card-body {
    padding: .75rem;
}

@media (min-width: 768px) {
    .card-md > .card-body {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .card-lg > .card-body {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .card-lg > .card-body {
        padding: 4rem;
    }
}

@media print {
    .card-body {
        padding: 0;
    }
}

.card-body + .card-body {
    border-top: 1px solid #e3e7eb;
}

.card-body-scrollable {
    overflow: auto;
}


.btn-green {
    color: #fff;
    background-color: #17A2B8;
    border-color: #17A2B8;
}

    .btn-green:hover {
        color: #fff;
        background-color: #1BBFD9 !important;
        border-color: #0e7281;
    }

    .btn-green:focus, .btn-green.focus {
        box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5) !important;
    }

    .btn-green.disabled, .btn-green:disabled {
        color: #fff;
        background-color: #17A2B8;
        border-color: #17A2B8;
    }

    .btn-green:not(:disabled):not(.disabled):active, .btn-green:not(:disabled):not(.disabled).active, .show > .btn-green.dropdown-toggle {
        color: #fff;
        background-color: #0e7281;
        border-color: #557b81;
    }

        .btn-green:not(:disabled):not(.disabled):active:focus, .btn-green:not(:disabled):not(.disabled).active:focus, .show > .btn-green.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
        }

.ms-3 {
    margin-left: 1rem !important;
}


.progress {
    display: flex;
    height: 0.5rem;
    overflow: hidden;
    font-size: 0.65625rem;
    background-color: #e6e8e9;
    border-radius: 4px;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
    background-color: #206bc4;
    transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 0.5rem 0.5rem;
}

.progress-bar-animated {
    -webkit-animation: 1s linear infinite progress-bar-stripes;
    animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none;
    }
}


.avatar {
    --tblr-avatar-size: 2.5rem;
    position: relative;
    width: var(--tblr-avatar-size);
    height: var(--tblr-avatar-size);
    font-size: calc(var(--tblr-avatar-size) / 2.8571429);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #656d77;
    text-align: center;
    text-transform: uppercase;
    vertical-align: bottom;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #f0f2f6 no-repeat center/cover;
    border-radius: 4px;
}

    .avatar svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .avatar .badge {
        position: absolute;
        right: 0;
        bottom: 0;
        border-radius: 50%;
        box-shadow: 0 0 0 2px #ffffff;
    }

a.avatar {
    cursor: pointer;
}

.avatar-rounded {
    border-radius: 50%;
}

.avatar-xs {
    --tblr-avatar-size: 1.25rem;
}

    .avatar-xs .badge:empty {
        width: 0.3125rem;
        height: 0.3125rem;
    }

.avatar-sm {
    --tblr-avatar-size: 2rem;
}

    .avatar-sm .badge:empty {
        width: 0.5rem;
        height: 0.5rem;
    }

.avatar-md {
    --tblr-avatar-size: 3.75rem;
}

    .avatar-md .badge:empty {
        width: 0.9375rem;
        height: 0.9375rem;
    }

.avatar-lg {
    --tblr-avatar-size: 5rem;
}

    .avatar-lg .badge:empty {
        width: 1.25rem;
        height: 1.25rem;
    }

.avatar-xl {
    --tblr-avatar-size: 7rem;
}

    .avatar-xl .badge:empty {
        width: 1.75rem;
        height: 1.75rem;
    }

.avatar-list {
    display: inline-flex;
    padding: 0;
    margin: 0 0 -.5rem;
}

    .avatar-list .avatar {
        margin-bottom: .5rem;
    }

        .avatar-list .avatar:not(:last-child) {
            margin-right: .5rem;
        }

    .avatar-list a.avatar:hover {
        z-index: 1;
    }

.avatar-list-stacked .avatar {
    margin-right: -.5rem !important;
    box-shadow: 0 0 0 2px #ffffff;
}

.card-footer .avatar-list-stacked .avatar {
    box-shadow: 0 0 0 2px #f4f6fa;
}

.avatar-upload {
    width: 4rem;
    height: 4rem;
    border: 1px dashed #e6e8e9;
    background: #ffffff;
    flex-direction: column;
    transition: .3s color, .3s background-color;
}

    .avatar-upload svg {
        width: 1.5rem;
        height: 1.5rem;
        stroke-width: 1;
    }

    .avatar-upload:hover {
        border-color: #206bc4;
        color: #206bc4;
        text-decoration: none;
    }

.avatar-upload-text {
    font-size: 0.625rem;
    line-height: 1;
    margin-top: .25rem;
}


.btn-video:hover {
    transition: 1s ease-in-out;
    background: #4F95DA;
}

    .btn-video:hover svg {
        stroke-dashoffset: -480;
    }

.btn-video span {
    color: white;
    font-size: 18px;
    font-weight: 100;
}

.menu-sidebar {
    z-index: 100 !important;
}

a.link:link {
    color: #4299e1;
    text-decoration: underline;
}

a.link:visited {
    color: #4299e1;
}

a.link:hover {
    color: rgba(10, 33, 82, 0.8);
}

.min-height-onboarding {
    min-height: calc(100vh - 90px)
}

.min-height-without-footer {
    min-height: calc(100vh - 78px)
}

.see-demo-link {
    font-size: 70%;
    color: #999;
    cursor: pointer;
    text-decoration: underline;
}

.break-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
