@keyframes swing {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(10deg);
    }

    30% {
        transform: rotate(0deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    60% {
        transform: rotate(5deg);
    }

    70% {
        transform: rotate(0deg);
    }

    80% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes sonar {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

html {
    overflow-x: hidden;
}

body {
    margin-bottom: 80px;
    font-family: Arial;
    font-size: 10pt;
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/*----------------page-wrapper----------------*/

.page-wrapper {
   height: 100vh;
}

    .page-wrapper .theme {
        width: 40px;
        height: 40px;
        display: inline-block;
        border-radius: 4px;
        margin: 2px;
    }

        .page-wrapper .theme.chiller-theme {
            background: #1e2229;
        }

    /*----------------toggeled sidebar----------------*/

    .page-wrapper.toggled .sidebar-wrapper {
        left: 0px;
    }

@media screen and (min-width: 768px) {
    .page-wrapper.toggled .page-content {
        /* padding-left: 300px;*/
    }
}
/*----------------show sidebar button----------------*/
        #show-sidebar {
    position: absolute;
    left: 0;
    top: 70px;
    border-radius: 0 4px 4px 0px;
    width: 35px;
    transition-delay: 0.3s;
}

.page-wrapper.toggled #show-sidebar {
    left: -40px;
}
/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
    height: 100%;
    max-height: 100%;
    position: absolute;
    top: 70px;
    left: -300px;
    z-index: 999;
}

    .sidebar-wrapper ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-wrapper a {
        text-decoration: none;
    }

/*----------------sidebar-content----------------*/

.sidebar-content {
    max-height: calc(100% - 30px);
    height: calc(100% - 30px);
    overflow-y: auto;
    position: relative;
}

    .sidebar-content.desktop {
        overflow-y: hidden;
    }

/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

    .sidebar-wrapper .sidebar-brand > a {
        text-transform: uppercase;
        font-weight: bold;
        flex-grow: 1;
    }

    .sidebar-wrapper .sidebar-brand #close-sidebar {
        cursor: pointer;
        font-size: 20px;
    }
/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
    padding: 20px;
    overflow: hidden;
}

    .sidebar-wrapper .sidebar-header .user-pic {
        float: left;
        width: 60px;
        padding: 2px;
        border-radius: 12px;
        margin-right: 15px;
        overflow: hidden;
    }

        .sidebar-wrapper .sidebar-header .user-pic img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

    .sidebar-wrapper .sidebar-header .user-info {
        float: left;
    }

        .sidebar-wrapper .sidebar-header .user-info > span {
            display: block;
        }

        .sidebar-wrapper .sidebar-header .user-info .user-role {
            font-size: 12px;
        }

        .sidebar-wrapper .sidebar-header .user-info .user-status {
            font-size: 11px;
            margin-top: 4px;
        }

            .sidebar-wrapper .sidebar-header .user-info .user-status i {
                font-size: 8px;
                margin-right: 4px;
                color: #5cb85c;
            }

/*-----------------------sidebar-search------------------------*/

.sidebar-wrapper .sidebar-search > div {
    padding: 10px 20px;
}

/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
    padding-bottom: 10px;
}

    .sidebar-wrapper .sidebar-menu .header-menu span {
        font-weight: bold;
        font-size: 14px;
        padding: 15px 20px 5px 20px;
        display: inline-block;
    }

    .sidebar-wrapper .sidebar-menu ul li a {
        display: inline-block;
        width: 100%;
        text-decoration: none;
        position: relative;
        padding: 8px 30px 8px 20px;
    }

        .sidebar-wrapper .sidebar-menu ul li a i {
            margin-right: 10px;
            font-size: 12px;
            width: 30px;
            height: 30px;
            line-height: 30px;
            text-align: center;
            border-radius: 4px;
        }

        .sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
            display: inline-block;
            animation: swing ease-in-out 0.5s 1 alternate;
        }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f105";
        font-style: normal;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-align: center;
        background: 0 0;
        position: absolute;
        right: 15px;
        top: 14px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
        padding: 5px 0;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
        padding-left: 25px;
        font-size: 13px;
    }

        .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
            content: "\f111";
            font-family: "Font Awesome 5 Free";
            font-weight: 400;
            font-style: normal;
            display: inline-block;
            text-align: center;
            text-decoration: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            margin-right: 10px;
            font-size: 8px;
        }

    .sidebar-wrapper .sidebar-menu ul li a span.label,
    .sidebar-wrapper .sidebar-menu ul li a span.badge {
        float: right;
        margin-top: 8px;
        margin-left: 5px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
    .sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
        float: right;
        margin-top: 0px;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-submenu {
        display: none;
        background: #333333;
    }

    .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
        transform: rotate(90deg);
        right: 17px;
    }

/*--------------------------side-footer------------------------------*/

.sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
}

    .sidebar-footer > a {
        flex-grow: 1;
        text-align: center;
        height: 30px;
        line-height: 30px;
        position: relative;
    }

        .sidebar-footer > a .notification {
            position: absolute;
            top: 0;
        }

.badge-sonar {
    display: inline-block;
    background: #980303;
    border-radius: 50%;
    height: 8px;
    width: 8px;
    position: absolute;
    top: 0;
}

    .badge-sonar:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        border: 2px solid #980303;
        opacity: 0;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        animation: sonar 1.5s infinite;
    }

/*--------------------------page-content-----------------------------*/

.page-wrapper .page-content {
    display: inline-block;
    width: 100%;
    padding-left: 0px;
    /*padding-top: 20px;*/
}
    .page-wrapper .page-content > div {
        padding: 20px 40px;
    }
/*------scroll bar---------------------*/

::-webkit-scrollbar {
    width: 5px;
    height: 7px;
}

::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background: #525965;
    border: 0px none #ffffff;
    border-radius: 0px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #525965;
    }

    ::-webkit-scrollbar-thumb:active {
        background: #525965;
    }

::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none #ffffff;
    border-radius: 50px;
}

    ::-webkit-scrollbar-track:hover {
        background: transparent;
    }

    ::-webkit-scrollbar-track:active {
        background: transparent;
    }

::-webkit-scrollbar-corner {
    background: transparent;
}


/*-----------------------------chiller-theme-------------------------------------------------*/

.chiller-theme .sidebar-wrapper {
    background: #27507e;
}

    .chiller-theme .sidebar-wrapper .sidebar-header,
    .chiller-theme .sidebar-wrapper .sidebar-search,
    .chiller-theme .sidebar-wrapper .sidebar-menu {
        border-top: 1px solid #fff;
    }

        .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
        .chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
            border-color: transparent;
            box-shadow: none;
        }

        .chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
        .chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
        .chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
        .chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
        .chiller-theme .sidebar-wrapper .sidebar-brand > a,
        .chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
        .chiller-theme .sidebar-footer > a {
            color: #fff;
        }

            .chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover > a,
            .chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a,
            .chiller-theme .sidebar-wrapper .sidebar-header .user-info,
            .chiller-theme .sidebar-wrapper .sidebar-brand > a:hover,
            .chiller-theme .sidebar-footer > a:hover i {
                color: #fff;
            }

.page-wrapper.chiller-theme.toggled #close-sidebar {
    color: #fff;
}

    .page-wrapper.chiller-theme.toggled #close-sidebar:hover {
        color: #ffffff;
    }

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus + span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
    color: #16c7ff;
    text-shadow: 0px 0px 10px rgba(22, 199, 255, 0.5);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
}

.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
    color: #fff;
}

.chiller-theme .sidebar-footer {
    background: #3a3f48;
    box-shadow: 0px -1px 5px #282c33;
    border-top: 1px solid #464a52;
}

    .chiller-theme .sidebar-footer > a:first-child {
        border-left: none;
    }

    .chiller-theme .sidebar-footer > a:last-child {
        border-right: none;
    }

.menu_prodImg {
    display: inline-block;
    height: 12vh;
    width: 12vh;
    border-radius: 1.5vh;
    vertical-align: top;
    float: left;
    pointer-events: none;
    -webkit-transform: translate3d(0px,0px,0px);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    object-fit: contain;
}

.menu_iconImg {
    display: inline-block;
    height: 5vh;
    width: 5vh;
    /* border-radius: 1.5vh; */
    /* vertical-align: top; */
    /* float: left; */
    pointer-events: none;
    -webkit-transform: translate3d(0px,0px,0px);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

img {
    width: 100%;
}

.navbar-inverse {
    background-color: #27507e;
    border-color: #1c395a;
    border-radius: 0;
}

    .navbar-inverse .navbar-brand {
        color: #fff;
    }

    .navbar-inverse .navbar-text {
        color: #fff;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #fff;
    }

.navbar-brand {
    padding: 0px;
}
.navbar-text {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    text-align: center;
    vertical-align: middle;
    pointer-events: none;
}

    .navbar-brand > img {
        height: 100%;
        padding: 0px;
        width: auto;
    }
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > .active > a:hover {
    background-color: #1c395a;
    color: #fff;
}
.settings_body {
    height: 100%;
    width: calc(100% - 50px);
    float: none;
}
.containerSplit {
    display: flex;
    height: 500px;
    min-height: 100px;
}
.panel-body {
    padding-top: 0;
}
.right-half {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.corners {
    position: relative;
    width: 180px;
    height: 80px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 10px;
    margin-left: 0.3em;
    margin-bottom: 0.2em;
    display: inline-block;
}
.cornersquares {
    position: relative;
    width: 100px;
    height: 80px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 10px;
    margin-left: 2em;
    margin-bottom: 0.2em;
    text-align: center;
    display: inline-flex;
    vertical-align: middle;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    padding: 1em;
}
.left-half {
    flex: 4;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.settings_account {
    overflow-x: scroll;
    padding: 15px;
    position: relative;
}
.settingsDiv {
    min-height: 75vh;
}

.settingsDiv,
.settingsWrap {
    height: 100%;
    overflow: hidden;
    position: relative;
}
.settings_body {
    height: 100%;
    float: none;
}
#login_form {
    padding: calc((100vh - 50px - 91px - 222px - 30px) / 2);
}
    #login_form > div > #form_login {
        margin-top: 10px;
        float: right;
    }
.with-nav-tabs.panel-primary .nav-tabs > li > a, .with-nav-tabs.panel-primary .nav-tabs > li > a:hover, .with-nav-tabs.panel-primary .nav-tabs > li > a:focus {
    color: #fff;
}
.box.box-solid.box-primary {
    border: 1px solid #3c8dbc;
}

.box.box-solid {
    border-top: 0;
}

.box.box-primary {
    border-top-color: #3c8dbc;
}

.box {
    position: relative;
    border-radius: 3px;
    background: #fff;
    border-top: 3px solid #d2d6de;
    margin-bottom: 20px;
    width: 100%;
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
}
box.box-solid.box-primary > .box-header {
    color: #fff;
    background: #3c8dbc;
    background-color: #3c8dbc;
}

.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
}
    .box-header > .fa, .box-header > .glyphicon, .box-header > .ion, .box-header .box-title {
        display: inline-block;
        font-size: 18px;
        margin: 0;
        line-height: 1;
    }
    .box-header > .fa, .box-header > .glyphicon, .box-header > .ion, .box-header .box-title {
        display: inline-block;
        font-size: 18px;
        margin: 0;
        line-height: 1;
    }
.box.box-solid.box-success {
    border: 1px solid #00a65a;
}

.box.box-solid {
    border-top: 0;
}

.box.box-success {
    border-top-color: #00a65a;
}
.box.box-solid.box-primary > .box-header {
    color: #fff;
    background: #3c8dbc;
    background-color: #3c8dbc
}

    .box.box-solid.box-primary > .box-header a, .box.box-solid.box-primary > .box-header .btn {
        color: #fff
    }
.box.box-solid.box-success > .box-header {
    color: #fff;
    background: #00a65a;
    background-color: #00a65a
}

    .box.box-solid.box-success > .box-header a, .box.box-solid.box-success > .box-header .btn {
        color: #fff
    }
.webreport {
    padding: 0px;
    margin: 0px;
    outline: none;
    /*font: 16px "Calibri";
    font-weight: lighter;*/
    list-style-type: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul {
    list-style-type: none;
   /* display: contents;*/
}

    ul , li {
     /*   padding: 0;*/
        margin: 0;
        text-align: left;
    }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus {
    border: none;
    box-shadow: inset 0 -2px 0 #fff;
    color: #1c395a;
}
.nav-tabs > li > a, .nav-tabs > li > a:focus {
    margin-right: 0;
    background-color: transparent;
    border: none;
    color: #666666;
    /* box-shadow: inset 0 -1px 0 #ddd; */
    transition: all 0.2s;
}
.body-overlay {
    display: none;
    background: rgba(0,0,0,0.5);
    opacity 0.5;
    filter: alpha(opacity = 50); /* IE7 & 8 */
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

button {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
}

button {
    line-height: normal;
    *overflow: visible;
}

button {
    cursor: pointer;
    -webkit-appearance: button;
}

button {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1px 1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #333333;
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    padding: 5px 10px;
    margin-left:2px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}

    .button:hover, button:hover {
        text-decoration: none;
        background-position: 0 -15px;
    }

    .button:focus, button:focus {
        -webkit-box-shadow: 0 0px 2px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0 0px 2px rgba(0, 0, 0, 0.4);
        box-shadow: 0 0px 2px rgba(0, 0, 0, 0.4);
        outline: none;
    }

.input-group.first {
    z-index: 1000;
}
.greencircle {
    background: green;
    clip-path: circle(50%);
    height: 2em;
    width: 2em;
    box-shadow: 0.375em 0.375em 0 0 rgba(15, 28, 63, 0.125);
}

.redcircle {
    background: red;
    clip-path: circle(50%);
    height: 2em;
    width: 2em;
    box-shadow: 0.375em 0.375em 0 0 rgba(15, 28, 63, 0.125);
}

.yellowcircle {
    background: yellow;
    clip-path: circle(50%);
    height: 2em;
    width: 2em;
    box-shadow: 0.375em 0.375em 0 0 rgba(15, 28, 63, 0.125);
}
input.datetimepicker {
    position: relative;
    color: white;
}

    input.datetimepicker:before {
        position: absolute;
        top: 3px;
        left: 3px;
        content: attr(data-date);
        display: inline-block;
        color: black;
    }

    input.datetimepicker::-webkit-datetime-edit, input::-webkit-inner-spin-button, input::-webkit-clear-button {
        display: none;
    }

    input.datetimepicker::-webkit-calendar-picker-indicator {
        position: absolute;
        top: 3px;
        right: 0;
        color: black;
        opacity: 1;
    }
.warning-message {
    padding: 10px;
    border: 1px solid #ffcc00;
    background-color: #fffbe6;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
}

    .warning-message .fas {
        color: #ff9900;
        margin-right: 5px;
    }
.popup {
    position: absolute;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 400px; /* Set a fixed width or use max-width for flexibility */
    max-width: 100%; /* Ensures the popup doesn't exceed the window width */
    max-height: 300px; /* Set a maximum height */
    overflow: auto; /* Enables scrolling if content overflows */
    box-sizing: border-box; /* Makes sure padding is included in width/height */
}

.popup::-webkit-scrollbar {
    width: 8px; /* Custom scroll bar width */
}

.popup::-webkit-scrollbar-thumb {
    background-color: #888; /* Scroll bar color */
    border-radius: 4px;
}

    .popup::-webkit-scrollbar-thumb:hover {
        background-color: #555; /* Darker on hover */
    }

/* Scrollable list container */
.priority-container {
    display: flex;
    margin-bottom: 20px;
    padding-top:10px;
}

    .priority-container input {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px 0 0 5px;
        outline: none;
        font: 16px "Calibri";
    }


/* Scrollable list container */
#sortable {
    width: 450px;
    max-height: 250px; /* Height for scrolling */
    list-style-type: none;
    padding: 10px;
    margin: 0;
    overflow-y: auto; /* Enable vertical scroll */
    border: 1px solid #b8c4d1; /* Light gray-blue border */
    border-radius: 8px;
    background-color: #f4f7fa; /* Very light blue-gray background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    /* List items */
    #sortable li {
        padding: 12px 20px;
        margin: 6px 0;
        background-color: #dbe3eb; /* Soft light blue for list items */
        border: 1px solid #b8c4d1; /* Light blue-gray for item borders */
        border-radius: 5px;
        cursor: move;
        font-weight: 500;
        color: #1c395a; /* Dark navy-blue text for readability */
        transition: background-color 0.2s, transform 0.2s;
        z-index: 1050;
    }

        /* Hover and drag styles */
        #sortable li:hover {
            background-color: #b8c4d1; /* Slightly darker shade for hover effect */
        }

        #sortable li:active {
            transform: scale(1.03); /* Slight scale-up on drag */
            background-color: #a1b2c3; /* Darker blue-gray for active state */
        }

    /* Scrollbar styling */
    #sortable::-webkit-scrollbar {
        width: 8px;
    }

    #sortable::-webkit-scrollbar-thumb {
        background-color: #b8c4d1; /* Light blue-gray scrollbar thumb */
        border-radius: 8px;
    }

    #sortable::-webkit-scrollbar-track {
        background-color: #f4f7fa; /* Match background color for scrollbar track */
    }
.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.otp-input {
    width: 40px;
    height: 40px;
    font-size: 18px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.new-copied-row {
    background-color: #fff3cd; /* light yellow */
    font-weight: bold;
    transition: background-color 2s ease;
}
.d-block {
    display: block;
}
.membertype-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* on small screen it goes under */
}

/* Remove default triangle marker */
.membertype-info summary::-webkit-details-marker {
    display: none;
}

.membertype-info summary {
    list-style: none;
}

/* Big nice icon button */
.membertype-info-btn {
    cursor: pointer;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid #ced4da;
    background: #f8f9fa;
    color: #6c757d;
}

/* When opened, highlight */
.membertype-info[open] .membertype-info-btn {
    border-color: #17a2b8;
    background: #e6f7fb;
    color: #117a8b;
}

/* Info panel */
.membertype-info-panel {
    margin-top: 8px;
    max-width: 420px;
    background: #f8f9fa;
    border-left: 3px solid #17a2b8;
    padding: .6rem .8rem;
    border-radius: .25rem;
    color: #495057;
    font-size: 1rem;
    line-height: 1.45;
}
.info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    color: #1c395a;
    font-size: 22px; /* icon size */
    line-height: 1;
}

    /* hidden by default */
    .info-tooltip .tooltip-box {
        position: absolute;
        left: 28px; /* place tooltip to the right of icon */
        top: 50%;
        transform: translateY(-50%);
        min-width: 280px;
        max-width: 600px;
        background: #ffffff;
        color: #1c395a;
        border: 1px solid rgba(28,57,90,0.25);
        border-left: 4px solid #1c395a;
        border-radius: 6px;
        padding: 10px 12px;
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 9999;
        font-size: 12px;
        line-height: 1.4;
    }

    /* show on hover OR focus */
    .info-tooltip:hover .tooltip-box,
    .info-tooltip:focus .tooltip-box,
    .info-tooltip:focus-within .tooltip-box {
        opacity: 1;
        visibility: visible;
    }

    /* little arrow */
    .info-tooltip .tooltip-box::before {
        content: "";
        position: absolute;
        left: -6px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background: #ffffff;
        border-left: 1px solid rgba(28,57,90,0.25);
        border-bottom: 1px solid rgba(28,57,90,0.25);
        transform: translateY(-50%) rotate(45deg);
    }
.tree ul {
    display: none;
}

.tree li.open > ul {
    display: block;
}