html, body {
}

body {
	margin: 0;
    font-family: Nunito, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #8492a6;
    text-align: left;
    background-color: #f8f8fb;
}

a, a:hover, a:focus, a:active {
    color: #8492a6;
    text-decoration: none;
}

span[data-toggle="password-text"] {
	cursor: pointer;
}

.btn-group-sm>.btn,.btn-sm {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: var(--bs-border-radius-sm)
}

.container-application {
    height: 100%;
    overflow-x: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    /*padding-left: 0;
    padding-right: 0;*/
}

.container-application:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    pointer-events: none;
    height: 430px;
    background-color: #4eb89e;
    border-bottom-left-radius: 2.5rem;
}

.text-sm {
    font-size: .875rem !important;
}

.list-group > .list-group-item > .d-flex > i {
    position: relative;
    top: 4px;
}

label.required:after, h6.required:after  {
    content: "*";
    display: inline-block;
    color: #c6240a;
    margin-left: 2px;
}

.tag {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

/*.tag-zrr {
    background-color: rgb(25,135,84) !important;
}

.tag-qpv {
    background-color: rgb(13,202,240) !important;
}

.tag-qva {
    background-color: rgb(255,193,7) !important;
}*/

.tag-litigious {
    background-color: rgb(220, 53, 69) !important;
}

.tag-no-cdm {
    background-color: rgb(220, 53, 69) !important;
}

.min-h-p-450 {
    min-height: 450px;
}

.text-orange {
    color: #FB5531!important;
}

.disabled-content {
    pointer-events: none;
    opacity: 0.6;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

.bg-mentor {
    background-color: #CCF1F7;
    color: #2EBADA;
}

.bg-beneficiary {
    background-color: #D4D6DA;
    color: #333;
}

.bg-soft-success {
    background-color: #36B37E!important;
}

.bg-brand-youtube {
    background-color: #cd201f !important;
}

 .bg-outline-success {
    background: transparent !important;
    border: 3px solid #36b37e!important;
}

.bg-outline-light {
    background: transparent !important;
    border: 3px solid #f8f9fa!important;
}

.accordion-button.collapsed {
    background-color: #66d0b6f3!important;
    color: white!important;
}
  
.accordion-button {
    background-color: #4eb89ef3!important;
    color: white!important;
}

.accordion-button::after {
    filter: grayscale(1) invert(1);
}
  
.accordion-button:not(.collapsed)::after {
    filter: grayscale(1) invert(1);
}

.border-image-logo {
    border: 1px solid #198754;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}
 
.readonly-disabled,
.readonly-disabled .ts-control,
.readonly-disabled .ts-control input
{
    background-color: var(--bs-secondary-bg);
}

.readonly-disabled {
    pointer-events: none;
}

/*Css to manage the scroll buttons on the tables*/
.scroll-controls {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 5px;
    visibility: hidden; 
}

.scroll-controls i {
    font-size: 20px;
    cursor: pointer;
    background: #6c757d;
    color: white;
    padding: 5px;
    border-radius: 10%;
    z-index: 9999;
}

.scroll-controls i:hover {
    background-color: #4eb89e; 
   
}

.table-responsive.overflowed .scroll-controls {
    visibility: visible;
}
.table-responsive {
    position: relative;
    overflow-x: auto;
}