@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Manrope', sans-serif;
    font-size: .9rem;
    font-weight: 400;
}

:root {
    --first-color-dark-blue: #002967;
    --second-color-blue: #0089cb;
    --third-color-yellow: #F9AE00;
    --fourth-color-bg-light-blue: #eef9fc;
    --fifth-color-bg-blue: rgba(0, 137, 203, 0.2);
    --sixth-color-bg-yellow: rgba(249, 174, 0, 0.2);
    --seventh-color-blue-light: rgb(0, 137, 203, 0.1);
}

body {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), no-repeat center center fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;


}

.navbar-brand {
    max-width: 200px;
    padding: 0;
}

.main-box-container {
    min-height: 75vh;
    background: #FFFFFF50 0% 0% no-repeat padding-box;
    border: 4px solid #FFFFFF;
    border-radius: 6px;
    opacity: 1;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    /* backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px); */
}

.country-flag-page {
    min-height: 30vh;
}

.navbar {
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .03)) drop-shadow(0 1px 1px rgba(0, 0, 0, .02));
    z-index: 1;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 6px;
}

.nav-link {
    font-weight: 600;
}

.title-section {
    border-bottom: 4px solid #f2f2f2;
    color: var(--first-color-dark-blue);
    margin-bottom: 1rem;
}

.btn-row .btn-info .fa-solid {
    color: #fff;
}

.custom-size {
    font-size: 1.2rem;
}

.max-width-95 {
    max-width: 90%;
    justify-content: center;
}

.dropdown-menu {
    border: 4px solid rgb(0 59 126 / 16%) !important;
    padding: 0;
}

.dropdown-menu .dropdown-item {
    padding: 8px 12px;
    border-bottom: 1px solid #e9e9e9;
}

.sec-color {
    color: var(--second-color-blue);
}

.ter-color {
    color: var(--third-color-yellow);
}

.navbar-brand .project-name div {
    font-weight: 700;
    font-size: .9rem;
    line-height: 1.2;
}


.navbar-brand img {
    max-height: 30px;
}

.nav-item .nav-link {
    padding: .4rem 1rem !important;
    color: var(--second-color-blue);
    opacity: .9;
    margin-right: .5rem;
}

.nav-item .nav-link.active {
    background-color: #F9AE0033;
    border: 1px solid var(--third-color-yellow);
    ;
    color: var(--first-color-dark-blue);
    opacity: 1;
    border-radius: .3rem;
    font-weight: 700;
}

.btn-info {
    color: #fff;
}

.btn-row .btn {
    margin-right: .4rem;
}

.btn-row .add-user,
.btn-row .export-user-date,
.btn-row .reset-filter {
    background-color: var(--seventh-color-blue-light);
    border: 0;
}

.btn-row .reset-filter .fa-solid {
    color: var(--third-color-yellow);
}

.btn-row .add-user .fa-solid,
.btn-row .export-user-date .fa-solid {
    color: var(--second-color-blue);
}

.btn-row .add-user:hover .fa-solid,
.btn-row .export-user-date:hover .fa-solid {
    color: #fff;
}

.btn.btn-info.disabled {
    color: #f1f1f1;
}

.dataTables_length,
.invoiceList_filter {
    margin-bottom: 1rem;
}

.col-auto label.inputLabel {
    margin-bottom: .4rem;
    font-weight: 600;
}

.user-menu .nav-link {
    background-color: #fff;
    border-radius: .4rem;
    border: 1px solid #cdcdcd;
    color: var(--first-color-dark-blue);
}

.dataTables_paginate,
.dataTables_info {
    margin-bottom: .8rem;
}

.data-table-section {
    border-radius: .4rem;
    background: #fff 0% 0% no-repeat padding-box;
    border: 3px solid #003B7E1A;
    opacity: 1;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    margin: .8rem 0;
}

.form-check-input {
    width: 1.4em;
    height: 1.4em;
    margin-right: 10px;
    border-width: 2px;
}

.form-check.form-check-inline {
    align-items: center;
    display: inline-flex;
}

.text-gray {
    color: #7E7E7E;
}

.status-filter-sec {
    border-right: 2px solid #e0e0e0;
}

.footer-branding img {
    max-width: 200px;
}

footer {
    background-color: #fff;
    bottom: 0;
    position: relative;
    margin-top: 6px;
}

.title-section h1 {
    font-size: 1.6em;
}

.title-section h2 {
    font-size: 1.4em;
}

table.dataTable tbody th,
table.dataTable tbody td {
    border-color: #efefef;
}

.data-table-section ::-webkit-scrollbar-track {
    border: 3px solid white;
    background-color: #e7e7e7;
}

.data-table-section ::-webkit-scrollbar {
    height: 10px;
    background-color: #fff;
}

.data-table-section ::-webkit-scrollbar-thumb {
    background-color: #b9b9b9;
    border-radius: .4rem;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 0 !important;
}

table tr:last-child td {
    border-bottom: 0 !important;
}

table thead {
    background-color: #EEF9FC;
}

.btn:hover {
    background-color: var(--first-color-dark-blue);
    border-color: var(--first-color-dark-blue);
    color: #fff;
}

.dataTables_wrapper .dataTables_length select {
    margin: 0 .4rem;
}

.invoice-value-show {
    padding: 4px 10px;
    border-radius: .4rem;
    background-color: #fff;
    border: 1px solid #e3e3e3;
    font-weight: bold;
}

.invoiceDataShow label {
    margin-right: 10px;
}

.modal-content {
    background: #f8f8f8 0% 0% no-repeat padding-box;
    border: 4px solid #FFFFFF;
    border-radius: 6px;
    opacity: 1;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

label {
    font-weight: 500 !important;
    letter-spacing: unset !important;
    line-height: 1.4;
    margin-bottom: 4px;
}

.dataTables_filter input {
    margin-left: .4rem;
}

.login-page-box {
    padding: 2rem;
    background-color: #fff;
    border-radius: .4rem;
    max-width: 800px;
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .03)) drop-shadow(0 1px 1px rgba(0, 0, 0, .02));
    margin-left: auto;
    margin-right: auto;
}

main {
    min-height: 85vh;
}

.center-middle {
    display: grid;
    place-items: center;
}

.table__button-group {
    display: none;
}

.sup_status,
.pur_area_status,
.pur_store_status,
.tat_status,
.target_status,
.transaction_status {
    cursor: pointer;
}

.pddt_status {
    text-decoration: none;
}

.deleteform {
    display: inline-block;
    margin-left: 3px
}

.text-red,
.error {
    color: rgb(241 70 70);
}

.summary-view {
    background: #F9AE001A 0% 0% no-repeat padding-box;
    border: 1px solid var(--third-color-yellow);
    ;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.2rem;
}

.summary-view-title {
    color: #323232;
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.summary-view-title-value {
    color: var(--first-color-dark-blue);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}

/* .breadcrumb-section .breadcrumb-item+.breadcrumb-item:before{
content: "\f105" !important;
font-family: "Font Awesome 6 Pro";
} */
.form-control {
    font-size: 1.1rem;
    font-weight: 500;
    border: 2px solid #E4E4E4;
    box-shadow: inset 0 0 2px 0 rgba(148, 97, 97, 0.2);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.change-history-sec .change-year,
.change-history-sec .change-month {
    color: var(--first-color-dark-blue);
    font-weight: 700;
}

.change-history-sec .change-month {
    font-size: 150%;
}

.data-table-section .table-block {
    overflow-x: auto;
}

.info-tile .info-title {
    margin-bottom: 4px;
}

.info-tile .info-value {
    background: #EEF9FC 0% 0% no-repeat padding-box;
    color: var(--second-color-blue);
    padding: 2px 6px;
    border-radius: 4px;
}

.custom_badge {
    --bs-badge-padding-x: 1.65em;
    --bs-badge-padding-y: 1em;
    --bs-badge-font-size: 0.85em;
    border-radius: 0%;
    background-color: rgb(3, 3, 127);
    border-right: 1px solid rgb(76, 76, 172);
}

th,
td {
    white-space: nowrap !important;
}

;

#ganttcontainer {
    max-width: 1200px;
    min-width: 800px;
    height: 400px;
    margin: 1em auto;
}

.scrolling-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.expandable-row {
    display: none;
}

.expandable-row.is-expanded {
    display: table-row;
}

table .fa-solid,
table .fa-regular {
    color: var(--second-color-blue);
}

.fiscal-year-editable-fields td {
    padding-left: .4rem;
    padding-right: .4rem;
}

.fiscal-year-editable-fields .form-control-sm {
    padding: .1rem .4rem;
}

.summary-view {
    display: inline-flex;
}

.project-id {
    background-color: #EEF9FC !important;
}

.separator-sec {
    border-bottom: 4px solid #EEF9FC;
    line-height: 0;
    height: 1px;
    max-height: 2px;
    margin: 10px 0 20px;
}

td .table-action-icon:first-child {
    margin-right: .2rem;
}

.comment_td {
    /* width: 200px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 100px;
    max-width: 200px;
}

.comment_td:hover {
    width: 200px;
    white-space: wrap;
    overflow: visible;
    text-overflow: ellipsis;
}

.max-width-800 {
    max-width: 800px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.max-width-1000 {
    max-width: 1000px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.country-flag-link {
    padding: .6rem;
    text-decoration: unset;
    font-size: .9rem;
    /* border: 2px solid #f2f2f2;  */
    display: flex;
    align-items: center;
    font-weight: 700;
    border-radius: .3rem;
    background-color: #fff;
    box-shadow: 0 2px 3px -1px #0000001a, 0 1px 2px -1px #0000001a;
}

.country-flag-link:hover {
    background-color: #EEF9FC;
}

.country-flag-link img {
    margin-right: .6rem;
    /*margin-bottom: .5rem;*/
    max-height: 1.5rem;
    border: 1px solid #cecece;
    border-radius: .2rem;
    max-width: 3rem;
}

.all-countries-icon,
.single-countries-icon {
    min-width: 36px;
    display: flex;
    justify-content: center;
}

.editTable table {
    margin: 1em 0;
    border-collapse: collapse;
}

.editTable th,
.editTable td {
    padding: 0.25em 0.5em 0.25em 1em;
    vertical-align: text-top;
    text-align: left;
    text-indent: -0.5em;
}

.editTable th {
    vertical-align: bottom;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-weight: bold;
}

.editTable .row td:nth-of-type(2),
.editTable .cell td:nth-of-type(3) {
    font-style: italic;
}

.editTable .row th:nth-of-type(3),
.editTable .row td:nth-of-type(3),
.editTable .cell th:nth-of-type(4),
.editTable .cell td:nth-of-type(4) {
    text-align: right;
}

.editTable td[colspan] {
    background-color: #eee;
    color: #000;
    font-weight: normal;
    font-style: italic;
    padding: 0;
    text-indent: 0;
}

.editTable tr.shown,
.editTable tr.hidden {
    background-color: #eee;
    display: table-row;
    transition: opacity 1s ease-out
}

.editTable tr.hidden {
    display: none;
}

.hidden {
    display: none;
}

.editTable .row button {
    background-color: transparent;
    border: 0.1em solid transparent;
    font: inherit;
    padding: 0.25em 0.5em 0.25em 0.25em;
    width: 100%;
    text-align: left;
}

.editTable .row button:focus,
.editTable .row button:hover {
    background-color: #ddd;
    outline: 0.2em solid #0089cb;
}

.editTable .row button svg {
    width: 0.8em;
    height: 0.8em;
    margin: 0 0 -0.05em 0;
    fill: #66f;
    transition: transform 0.25s ease-in;
    transform-origin: center 45%;
}

.editTable .row button:hover svg,
.editTable .row button:focus svg {
    fill: #0089cb;
}

/* Lean on programmatic state for styling */
.editTable .row button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.editTable .cell button {
    font-size: 60%;
    color: #000;
    background-color: var(--second-color-blue);
    padding: 0.3em 0.2em 0 0.2em;
    border: 0.2em solid #0089cb;
    border-radius: 4px;
    line-height: 1;
    text-align: center;
    text-indent: 0;
    transform: rotate(270deg);
}

.editTable .cell button svg {
    width: 1.25em;
    height: 1.25em;
    fill: #fff;
    transition: transform 0.25s ease-in;
    transform-origin: center 45%;
}

.editTable .cell button:hover,
.editTable .cell button:focus {
    background-color: #fff;
    outline: none;
}

.editTable .cell button:hover svg,
.editTable .cell button:focus svg {
    fill: #0089cb;
}

/* Lean on programmatic state for styling */
.editTable .cell button[aria-expanded="true"] svg {
    transform: rotate(90deg);
}

/* Proven method to visually hide something but */
/* still make it available to assistive technology */
.editTable .visually-hidden {
    position: absolute;
    top: auto;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    /* IE 6/7 */
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    white-space: nowrap;
}

.editTable thead th {
    text-align: center;
}

.table-sm> :not(caption)>*>* {
    padding-left: .8rem;
    padding-right: .8rem;
}

th {
    font-weight: 800;
}

td {
    border-right: 1px solid #f2f2f2 !important;
    white-space: normal !important;
}

th {
    border-right: 1px solid #ddd !important;
    border-bottom: 2px solid #dee2e6 !important;
}

table.dataTable.no-footer {
    border-bottom: 2px solid #dee2e6 !important;
}

table.dataTable {
    min-height: 10vh;
}

tbody tr:nth-child(even) {
    background-color: #fafafa;
}

td input {
    box-shadow: inset 0 0 4px 0 rgba(148, 97, 97, 0.2);
    background-color: #F8F8F8 !important;
}

.selected-country img {
    max-height: 30px;
    display: block;
    border: 1px solid #cecece;
}

table .earlierTitle {
    background-color: #00A4C7;
    color: #fff;
}

table .requestedTitle {
    background-color: var(--third-color-yellow);
}

table thead th,
table thead td {
    padding: .3rem .6rem !important;
    line-height: 1.4;
}

th {
    font-weight: 800;
}

tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.data-table-content {
    overflow-x: scroll;
}

.datepicker table tr td span {
    width: 100%;
}

.select2-container .select2-search--inline {
    float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:before,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-size: 0.85rem;
    height: 0.85rem;
    width: 0.85rem;
    position: absolute;
    top: 22%;
    left: -4px;
    border-right: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: transparent;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    float: right;
    margin-left: 0.7rem;
    margin-right: 0.5rem;
    font-size: 0px;
    display: inline-block;
    position: relative;
    line-height: 1rem;
}

.select2-container--classic .select2-selection__choice,
.select2-container--default .select2-selection__choice {
    font-size: 0.9rem;
    margin-top: 6px !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #224d89 !important;
    border-color: #224d89 !important;
    color: #fff;
    padding: 2px 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 0 6px;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}

.select2-container--classic .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    min-height: 38px !important;
    border: 1px solid #d8d6de;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}

.select2-container--classic.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #224d89 !important;
    outline: 0;
}

.select2-container {
    width: 100% !important;
    margin: 0;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    box-sizing: border-box;
}

.select2-container--classic.select2-container--focus,
.select2-container--default.select2-container--focus {
    outline: 0;
}

.select2-selection {
    display: flex !important;
    width: 100%;
}

.select2 {
    max-width: 150px;
}

.project-view-item {
    background-color: var(--fourth-color-bg-light-blue);
    padding: .2rem .6rem;
    border-radius: .4rem;
    font-weight: 800;
    font-size: 120%;
    width: auto;
    color: var(--first-color-dark-blue);
    display: inherit;
    min-height: 2rem;
}

.project-view-item p {
    min-height: 4rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: unset;
    background-color: var(--seventh-color-blue-light);
    border: 0;
}

.back-btn {
    line-height: 1.2;
}

.dashboard-card .table {
    margin-bottom: 0;
}

.dashboard-card {
    height: 100%;
}

.project-details .table td input.form-control {
    line-height: 1;
    padding: .3rem .4rem;
    font-size: .8rem;
    font-weight: 600;
    min-height: calc(1.5em);
}

.project-details .table td {
    vertical-align: middle;
}

#welcome-img-container[data-v-bab3dee6] {
    color: #2a2622;
    align-self: stretch;
    display: flex;
    justify-content: center;
    margin-bottom: 2.25vh;
    margin-top: 20px;
}

#welcome-img-container span[data-v-bab3dee6] {
    flex: 33% 0 0;
    padding: 0;
}

#welcome-img-container span p[data-v-bab3dee6] {
    color: #2a2622;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    white-space: nowrap
}

#welcome-img-container span img[data-v-bab3dee6] {
    width: 38px;
    height: 38px
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    width: 50%;
    margin-left: -20px;
    margin-top: 5px;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 10%;
    float: left;
    position: relative;
    font-weight: 400;
    margin: 0 .2rem;
}

#progressbar #step1:before {
    content: " "
}

#progressbar #step2:before {
    content: " "
}

#progressbar #step3:before {
    content: " "
}

#progressbar #step4:before {
    content: " "
}

#progressbar #step5:before {
    content: " "
}

#progressbar #step6:before {
    content: " "
}

#progressbar #step7:before {
    content: " "
}

#progressbar #step8:before {
    content: " "
}

#progressbar li:before {
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    margin: 0 auto 10px auto;
    padding: 4px;

}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: rgb(2, 23, 49);
}

.feedback-wrapper {
    width: 100%;
    padding-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    min-height: 200px;
    color: #3d3933;
    align-items: center;
    /* opacity: .73; */
    cursor: pointer;
    margin-left: 16px;
    text-align: center;

}

.question-wrapper {
    width: 100%;
}

.feedback-heading {
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 30px;
    margin-top: 25px;
}

.thankyou-text {
    font-size: 1.8rem;
    font-weight: bolder;
    margin-top: 2rem;
}

.question h5 {
    font-weight: 900;
    font-size: 1.46rem;
    line-height: 1.4;
}

.next-question {
    background-color: var(--first-color-dark-blue);
    border-color: var(--first-color-dark-blue);
    opacity: 1;
}

.next-question,
.submit {
    border-radius: .4rem;
    min-width: 100px;
}

.btn-row .btn {
    margin-right: .6rem;
}

.previous-question {
    color: var(--first-color-dark-blue);
    margin-top: 3rem;
    margin-left: 1rem;
    text-decoration: none;

}

.back-btn {
    font-size: 1.2rem;
    font-weight: 700;

}

.quetionaire-box {
    max-width: 800px;
    display: grid;
    place-items: center;
    min-height: 90vh;
    margin: 0 auto;
    margin-top: -3rem;
}

.question-number-counter {
    color: #999;
    margin-left: 30px;
    font-weight: 700;
}

#progressbar .active {
    color: var(--first-color-dark-blue);
}

.radio-rating {
    border-radius: 3px;
    padding: 0;
    height: auto;
    width: fit-content;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

label.radio-red.active {
    color: #fff;
    background-color: #e40000;
    border: 0.2em solid #b30000;

}

label.radio-red:hover {
    color: #fff;
    background-color: #e40000;
    border: 0.2em solid #b30000;
}

label.radio-yellow.active {
    color: #fff;
    background-color: #FFBF00;
    border: 0.2em solid #E6AC00;

}

label.radio-yellow:hover {
    color: #fff;
    background-color: #FFBF00;
    border: 0.2em solid #E6AC00;
}

label.radio-green.active {
    color: #fff;
    background-color: green;
    border: 0.2em solid darkgreen;

}

label.radio-green:hover {
    color: #fff;
    background-color: green;
    border: 0.2em solid darkgreen;
}

label.radio-label.active span:first-of-type {
    color: #fff;
    font-size: 1.2em;
}

label.radio-label:hover span:first-of-type {
    color: #fff;
    font-size: 1.2em;
}

.rating-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
}

.rating-description {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}

.radio-label {
    padding: 0;
    border: 0.13em solid darkgray;
    border-radius: 10px;
    margin: 6px;
    width: 3.3em;
    height: 3.8em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

label span:first-of-type {
    position: relative;
    color: darkgray;
    font-size: 1.02rem;
    left: 0;
    top: 0;
    font-weight: 700;
}

#rate {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;

}

textarea.textarea.form-control {
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
}

.next-question {
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.feedback-questions {
    float: left;
    margin-left: 20px;
    color: #000000;

}

.question {
    display: none;
    color: #000000;
    width: 100%;
}

.active-question {
    display: block;
}

@media screen and (max-width: 768px) {
    .feedback-wrapper {
        margin-left: 0;
    }

    .question-number-counter {
        margin-left: 0;
    }

    #progressbar {
        margin-left: 0;
    }

    label span:first-of-type {
        font-size: 1rem;
    }

    .question-wrapper {
        margin: 0 auto;
    }

    .radio-label {
        padding: 0;
        margin: 0;
        width: 2.4em;
        height: 2.5em;
        margin-left: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .question h5,
    .feedback-heading {
        font-size: 1rem;
        left: 0;
        top: 0;
    }

    .thankyou-text {
        font-size: 1.5rem;
    }
}

.btn-search a,
.btn-search button {
    height: 36px;
}

.btn-search a i,
.btn-search button {
    margin-top: 12px;
}