td:has(#ppit_onetimeshotiban) {
    display: none;
}

:root {
    --mainContentHeight: calc(100% - 174px);
}

html,
body {
    background: var(--portalThemeColor5) !important;
}

[data-name="section_info"] {
    display: none;
}

.pagination>li>a {
    width: fit-content;
}

.tab-title {
    display: none;
}

.btn-outline-secondary:hover {
    color: #ffffff;
    background-color: var(--portalThemeColor1);
}

.btn-danger {
    border-radius: 2px;
    font-family: Arial;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 20px;
    width: fit-content;
    border-style: solid;
}

.btn-info {
    color: #056fc7;
    border-radius: 2px;
    font-family: Arial;
    font-weight: 600;
    font-size: 14px;
    border-color: #056fc7;
    padding: 6px 20px;
    width: fit-content;
    border-style: solid;
    background-color: transparent;
}

.btn-grid-icon {
    margin-left: 10px;
}

.btn-hover-danger {
    border-radius: 2px;
}

.btn-hover-danger:hover {
    background-color: #dc3545;
}

.danger {
    color: #dc3545;
}

.footer-bottom {
    padding: 20px 0;
}

.footer {
    margin-top: 30px;
}

.search-container {
    display: flex;
    justify-content: center;
}

.form-search {
    width: -webkit-fill-available;
    width: -moz-available;
    max-width: 600px;
}

.page_section .form-search .btn {
    padding: 0.375rem 0.75rem;
}

.crmEntityFormView,
.entitylist,
.modal-content,
.popover-content {
    border: 0 !important;
}

.form-control:disabled {
    background-color: #e9ecef !important;
    opacity: 1;
}

.input-group-btn>button:not(.clearlookupfield),
.input-group>button:not(.clearlookupfield) {
    border-top-right-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
}

label.entitylist-filter-option-group-label.h4 {
    font-size: 18px !important;
}


@media (max-width: 1200px) {
    .static-top .navbar-brand {
        height: auto;
    }

    .navbar-brand {
        padding: 0;
    }
}

.day.disabled button{
    color: rgba(0,0,0,0.3);
    cursor: default;
}

td.day.disabled:hover button{
    background-color: #fff !important;
}

@media (min-width: 1400px) {
    .row.sectionBlockLayout>.container,
    .row.sectionBlockLayout>.container-lg,
    .row.sectionBlockLayout>.container-md,
    .row.sectionBlockLayout>.container-sm,
    .row.sectionBlockLayout>.container-xl,
    .row.sectionBlockLayout>.container-xxl {
        max-width: 1920px !important;
    }
}

/* LOADING *********************************************** */
.lds-container, .lds-container-onload {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    background-color: rgba(100, 100, 100, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-ring {
    width: 80px;
    height: 80px;
    position: relative; /* remove fixed */
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid var(--portalThemeColor1);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--portalThemeColor1) transparent transparent transparent;
}

.lds-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lds-text {
    margin-top: 16px;
    font-size: 1.2em;
    color: white;
}


.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* END LOADING ******************************************* */

/* LOCAL LOADING ************** */
.loader-processing {
    width: 25px;
    height: 25px;
    border: 2px solid transparent;
    border-bottom-color: #05db79;
    border-left-color: #05db79;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* END LOCAL LOADING ************** */


/* CUSTOM CHECKBOX*********************************** */

.checkbox-wrapper {
    height: 25px !important;
    width: 25px !important;
}

.checkbox-wrapper .round {
    position: relative;
}

.checkbox-wrapper .round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    width: 20px;
    display: block;
}

.checkbox-wrapper .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 4px;
    opacity: 0;
    position: absolute;
    top: 6px;
    transform: rotate(-45deg);
    width: 12px;
}

.checkbox-wrapper .round input[type="checkbox"] {
    visibility: hidden;
    display: none;
    opacity: 0;
}

.checkbox-wrapper .round input[type="checkbox"]:checked+label {
    background-color: #66bb6a;
    border-color: #66bb6a;
}

.checkbox-wrapper .round input[type="checkbox"]:checked+label:after {
    opacity: 1;
}

/* END CUSTOM CHECKBOX*********************************** */