/*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%;
}*/

:checked + span {
    font-weight: bold;
}

@media print {
    @page {
        margin: 0;
    }

    body {
        margin: 1cm; /* Optional: adds spacing around content */
    }

    /* Optional: hide non-printable elements */
    .no-print {
        display: none !important;
    }
}


.form-control-check {        

    font-size: 15px;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

._logo img {
    max-height: 156px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.invoiceQrCode svg {
    /*transform: scale(0.5);*/ /* Shrinks to 50% */
    /*transform-origin: top left;
    padding: 0;*/
}

.ecomUnitPrice {
    padding-top: 7px;
}

.icon-hover:hover {
    border-color: #3b71ca !important;
    background-color: white !important;
    color: #3b71ca !important;
}

.icon-hover:hover i {
    color: #3b71ca !important;
}

div.sticky {
    position: sticky;
    top: 100px;
}

.disabled {
    pointer-events: none;
    opacity: 0.4;
}
.loadermodal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Disable scrolling */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.loadermodal-modal-content {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: 0 auto 20px auto; /* Center the loader */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.impersonationMode {
    background-color: #d63e37;
    padding: 2px;
    color: white;
}

.thumbs-button-container {
    text-align: left;
    margin-top: 5px;
}

.thumb-button {
    font-size: 1.2rem;
    color: gray;
    margin: 0 0px 0 0px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;

}

    /* Hover Effects */
.thumb-button:hover {
    color: #28a745; /* Green for thumbs up */
    transform: scale(1.2);
}

.thumb-button.thumb-down:hover {
    color: #dc3545; /*Red for thumbs down */
}

/* Selected State */
.thumb-button.selected {
    color: #28a745; /* Green for selected thumbs up */
}

.thumb-button.thumb-down.selected {
    color: #dc3545; /* Red for selected thumbs down */
}

.share-icons {
    font-size: 3rem;
    cursor: pointer;
    margin: 0 20px 0 0px;
}

.rounded-circle {
    border-radius: 50% !important;
    width: 40px; /* Sets the width to 200 pixels */
    height: auto; /* Keeps the image's aspect ratio */
}

.rating-container {
    display: flex;
}

.star {
    font-size: 23px;
    color: gray;
    cursor: pointer;
}

/*.star:hover,
.star.hovered {
    color: gold;
}*/

.star.selected {
    color: gold;
}


.form-title {
    font-size: 18px;
    font-weight: bold;
}

.disabled {
    pointer-events: none; /* Disables interaction */
    opacity: 0.7; /* Visually indicate disabled state */
    cursor: not-allowed; /* Changes cursor to show it's disabled */
}

.number-display {
    margin-top: 7px;
    font-size: 15px;
    margin-left: 10px;
}

.shareContent {
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.commentItem {
    position: relative;
    top: -4px;
}

.commentReplyBtn {
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    border: none;
    background: none;
    font-size: 13px;
}

.replyTo {
    color: red;
    cursor: pointer;
}

.inline-group {
    display: inline-flex; /* Keeps items inline and allows flexible alignment */
    gap: 12px; /* Add spacing between items */
}

.showMoreBtn {
    font-size: 11px;
    cursor: pointer;
    font-weight:bold;
}

.collapse-icon {
    transition: transform 0.3s ease;
}

h4[aria-expanded="true"] .collapse-icon {
    transform: rotate(180deg); /* flips the arrow to point up */
}



