@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

:root {
    --bg-primary: #f6f6f6;
    --primary: #06163a;
    --sidebar-bg: #fff;
    --text-primary: #2d5269;
    --border: #06163a;
    --tr-hover: #e5e5e5;
    --primary-color: #ffffff;
    --toggle-btn-focus: #cccccd;
    --primary-btn-hover: #253352;
    --text-dark: #06163a;
    --link-hover: #007A33;
}

@font-face {
    font-family: "Poppins-SemiBold";
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: "Poppins-Regular";
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins-SemiBold', sans-serif;
    margin: 0;
    color: var(--text-dark)
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg-primary);
}
.bg-body {
    background-color: var(--bg-primary) ;
}
.text-primary {
    color: var(--text-primary) !important;
}

    .text-primary:hover {
        color: var(--link-hover) !important;
    }

.app-container {
    padding: 0;
    background: var(--bg-primary);
}

a, .btn-link {
    color: #0366d6;
}

.link {
    color: var(--text-primary) !important;
}

    .link:hover {
        color: var(--link-hover) !important;
    }


/*.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}*/

.btn-secondary {
    color: var(--text-primary);
    background-color: var(--primary);
    border-color: var(--border);
}
app {
    position: relative;
    display: flex;
    flex-direction: column;
}

.top-row {
    height: 3.5rem;
    display: flex;
    align-items: center;
}
/*


.k-grid .k-grid-content tr.k-master-row {
    background: #e9f1f7 !important;
}

.k-grid .k-grid-content tr.k-alt {
    background: #d1e8f9 !important;
}
*/

.k-table-tbody .k-table-row.k-selected > .k-table-td, .k-table-list .k-table-row.k-selected {
    background-color: #ece0e4 !important;
}

.main {
    flex: 1;
}

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

.main .top-row a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

    .sidebar .top-row {
        background-color: rgba(0,0,0,0.4);
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

    .sidebar .nav-item {
        font-size: 0.9rem;
        padding-bottom: 0.5rem;
    }

        .sidebar .nav-item:first-of-type {
            padding-top: 1rem;
        }

        .sidebar .nav-item:last-of-type {
            padding-bottom: 1rem;
        }

        .sidebar .nav-item a {
            color: #d7d7d7;
            border-radius: 4px;
            height: 3rem;
            display: flex;
            align-items: center;
            line-height: 3rem;
        }

            .sidebar .nav-item a.active {
                background-color: rgba(255,255,255,0.25);
                color: white;
            }

            .sidebar .nav-item a:hover {
                background-color: rgba(255,255,255,0.1);
                color: white;
            }

.content {
    padding-top: 1.1rem;
}

.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}
.KBButtonGrid {
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary-color);
    border-radius: 6px !important;
}

    .KBButtonGrid:hover {
        background-color: white !important;
        border-color: #2a2a2a !important;
        color: #2a2a2a !important;
        border: 1px solid #2a2a2a !important;
        border-radius: 6px !important;
    }
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

@media (max-width: 767.98px) {
    .main .top-row:not(.auth) {
        display: none;
    }

    .main .top-row.auth {
        justify-content: space-between;
    }

    .main .top-row a, .main .top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    app {
        flex-direction: row;
    }

    .sidebar {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .main .top-row {
        position: sticky;
        top: 0;
    }

    .main > div {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    .navbar-toggler {
        display: none;
    }

    .sidebar .collapse {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    .set {
        background-color: darkblue;
        color: white;
        font-weight: bold;
    }



}



.heart-icon.k-checkbox,
.heart-icon.k-checkbox:focus,
.heart-icon.k-checkbox:checked,
.heart-icon.k-checkbox:checked:focus {
    border: none;
    background: none;
    box-shadow: none;
}

    .heart-icon.k-checkbox::before,
    .heart-icon.k-checkbox:checked::before,
    .heart-icon.k-checkbox:indeterminate::before {
        transform: none;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        font-size: 20px; /* used for dimensions, see the next section */
    }

/* set desired dimensions */
.heart-icon.k-checkbox {
    width: 20px;
    height: 20px;
}

    /* change the font icon glyph to a different one - in this case - a heart icon from the Telerik font
        we also change the colors here to denote states, you can alter this further - like using your own fonts or colors
        */
    .heart-icon.k-checkbox:checked::before {
        content: "\e305";
        color:dimgrey;
    }

    .heart-icon.k-checkbox:indeterminate::before {
        content: "\e300";
        color: #A9A9A9;
        background: none;
    }

    .heart-icon.k-checkbox::before {
        content: "\e304";
        color:dimgrey;
    }

.KBButtonVerySmall {
    background-color: #2a2a2a !important;
    border-color: #2a2a2a !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    width: 80px;
    height: 30px;
    font-size: 11px !important;
    font-weight: bold !important;
}
.KBButtonSmall {
    background-color: green !important;
    border-color: green !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    width: 100px;
    height: 40px;
    font-size: 14px !important;
    font-weight: bold !important;
}

.KBButton {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    width: 150px;
    height: 50px;
    font-size: 20px !important;
    font-weight: bold !important;
}
.KBButtonPGD {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    width: 150px;
    height: 50px;
    font-size: 20px !important;
    font-weight: bold !important;
}
    .KBButtonPGD:hover {
        background-color: var(--primary-btn-hover) !important;
        border-color: var(--primary-btn-hover) !important;
        color: white !important;
        border: none !important;
        border-radius: 12px !important;
        width: 150px;
        height: 50px;
        font-size: 20px !important;
        font-weight: bold !important;
    }

.KBButtonLargePGD {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    width: 200px;
    height: 50px;
}

    .KBButtonLargePGD:hover {
        background-color: var(--primary-btn-hover) !important;
        border-color: var(--primary-btn-hover) !important;
        color: white !important;
        border: none !important;
        border-radius: 12px !important;
        font-weight: bold !important;
        width: 200px;
        height: 50px;
    }

.KBButtonMAGAD {
    background-color: #818286 !important;
    border-color: #818286 !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    width: 150px;
    height: 50px;
    font-size: 20px !important;
    font-weight: bold !important;
}
.KBButtonLargeMAGAD {
    background-color: #818286 !important;
    border-color: #818286 !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    width: 300px;
    height: 50px;
    font-size: 12px !important;
    font-weight: bold !important;
}
.KBButtonMAHAD {
    background-color: #5C717E !important;
    border-color: #5C717E !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    width: 250px;
    height: 50px;
    font-size: 20px !important;
    font-weight: bold !important;
}
.KBButtonLargeMAHAD {
    background-color: #5C717E !important;
    border-color: #5C717E !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    width: 300px;
    height: 50px;
    font-size: 10px !important;
    font-weight: bold !important;
}

.KBButtonLarge {
    background-color: #CE9F4F !important;
    border-color: #CE9F4F !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 8px !important;
    font-weight: bold !important;
    width: 300px;
    height: 50px;
}

.KBButtonVeryLarge {
    background-color: #CE9F4F !important;
    border-color: #CE9F4F !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    font-size: 12px !important;
    width: 500px;
    height: 50px;
}
.KBButtonVeryLarge:hover {
        background-color: white !important;
        color: #CE9F4F !important;
        border: 1px solid #CE9F4F !important;
        border-radius: 12px !important;
        font-weight: bold !important;
        width: 500px;
        height: 50px;
    }


.KBButtonVeryLargeMAGAD {
    background-color: #818286 !important;
    border-color: #818286 !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: bold !important;
    width: 500px;
    height: 50px;
}

.KBButtonVeryLargeMAGAD:hover {
        background-color: white !important;
        color: #818286 !important;
        border: 1px solid #818286 !important;
        border-radius: 12px !important;
        font-weight: bold !important;
        width: 500px;
        height: 50px;
    }

.KBButtonVeryLargeMAHAD {
    background-color: #5C717E !important;
    border-color: #5C717E !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: bold !important;
    width: 500px;
    height: 50px;
}

    .KBButtonVeryLargeMAHAD:hover {
        background-color: white !important;
        color: #5C717E !important;
        border: 1px solid #5C717E !important;
        border-radius: 12px !important;
        font-weight: bold !important;
        width: 500px;
        height: 50px;
    }



.KBFieldStyle {
    font-size:16px;margin-left:26px;
}
.LoginLink {
    color: #2a2a2a;
    font-weight: bold;
    text-decoration: none;
}

    .LoginLink:hover {
        color: #434543;
        font-weight: bold;
        text-decoration: none;
    }
.footer {
    padding-top: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #C9B29E;
    color: white;
    text-align: center;
    font-size: small;
}
.footermainpage {
    padding-top: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #CE9F4F;
    color: white;
    text-align: center;
    font-size: small;
}

.footerPGD {
    padding-top: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #2a2a2a;
    color: white;
    text-align: center;
    font-size: small;
}

.footerMAGAD {
    padding-top: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #818286;
    color: white;
    text-align: center;
    font-size: small;
}

.footerMAHAD {
    padding-top: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #5C717E;
    color: white;
    text-align: center;
    font-size: small;
}

.MyPageFontColorPGD {
    color: #C9A05C;
}
.MyPageFontColorPGD:hover {
    color: #C9A05C;
}
.MyPageFontColorMAHAD {
    color: #A7968F;
}
.MyPageFontColorMAHAD:hover {
    color: #A7968F;
}
.MyPageFontColorMAGAD {
    color: #818286;
}
    .MyPageFontColorMAGAD:hover {
        color: #818286;
    }


.myheading {
    color: dimgrey;
}

/*/////////////////*/

* {
    margin: 0;
    padding: 0
}

html {
    height: 100%
}

#grad1 {
    background-color: : #9C27B0;
    background-image: linear-gradient(120deg, #FF4081, #81D4FA)
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;
    position: relative
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform fieldset .form-card {
    text-align: left;
    color: #9E9E9E
}

#msform input,
#msform textarea {
    padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 16px;
    letter-spacing: 1px
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: bold;
    border-bottom: 2px solid skyblue;
    outline-width: 0
}

#msform .action-button {
    width: 100px;
    background: skyblue;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px
}

#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px skyblue
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161
}

select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px
}

select.list-dt:focus {
    border-bottom: 2px solid skyblue
}

.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative
}

.fs-title {
    font-size: 25px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #000000
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 25%;
    float: left;
    position: relative
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f023"
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007"
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f09d"
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#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: skyblue
}

.radio-group {
    position: relative;
    margin-bottom: 25px
}

.radio {
    display: inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
    margin: 8px 2px
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3)
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1)
}

.fit-image {
    width: 100%;
    object-fit: cover
}


.stock-info-message {
    font-size: 16px;
    font-weight: bold;
    padding-left: 6px;
    padding-top: 5px;
    margin: 0;
}

.messageimg{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border: solid 1px;
    border-color: lightgray;
    background-color: #fff;
}

.k-table-tbody .k-table-row.k-selected > .k-table-td, .k-table-list .k-table-row.k-selected {
    background-color: var(--tr-hover) !important;
}

.app-brand {
    min-height: 65px;
    overflow: hidden;
    background: var(--sidebar-bg);
    margin: 0 0 1rem 0
}

.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family:;
    --bs-btn-font-size: 0.9rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(24, 24, 25, 0.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}


.btn-outline-danger {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: 47, 62, 70;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgb(47, 62, 70 / 61%);
    --bs-btn-disabled-color: #6C757D;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #6C757D;
    --bs-gradient: none
}

    .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
        box-shadow: 0 0 0 .25rem var( --toggle-btn-focus);
    }
    .btn-check:active + .btn-outline-danger:focus, .btn-check:checked + .btn-outline-danger:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus, .btn-outline-danger:active:focus {
        box-shadow: 0 0 0 .25rem var( --toggle-btn-focus);
    }

.btn-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--primary-btn-hover);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: 110, 49, 73;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgb(110 49 73 / 61%);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: var(--toggle-btn-focus);
    --bs-btn-disabled-border-color: var(--toggle-btn-focus)
}
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color)
}

.btn-primary:focus {
    color: #fff;
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
    box-shadow: 0 0 0 .25rem rgb(var(--bs-btn-focus-shadow-rgb) / 61%);
}

.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color);
}

.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
    color: var(--bs-btn-active-color);
    background-color: var(--bs-btn-active-bg);
    border-color: var(--bs-btn-active-border-color)
}


.sidebar-menu > li.active > a [class^=icon-] {
    color: #fff;
    background: var(--text-dark)
}

.sidebar-menu > li.treeview.active:after {
    transform: rotate(-90deg);
    color: var(--text-dark)
}

.sidebar-wrapper {
    background-color: var(--sidebar-bg)
}

.sidebar-menu > li {
    position: relative;
    margin: 0 0 1px 0;
    font-weight: bold;
    border-bottom: 1px solid var(--bg-primary);
}
    .sidebar-menu > li:hover > a {
        color: #262a2d;
        background: var(--bg-primary)
    }

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary)
}

.form-check-input:focus {
    border-color: #f78080;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(var(--bs-btn-focus-shadow-rgb))
}

.profile-btn {
    border: 1px solid var(--border);
    background-color: var(--primary-color);
    color: var(--primary);
    padding: 8px;
    border-radius: 8px;
}
    .profile-btn:hover {
        background-color: var(--primary);
        color: var(--primary-color);
    }

.form-control:focus {
    color: var(--text-dark);
    background-color: var(--bg-primary);
    border-color: var(--border);
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(var(--bs-btn-focus-shadow-rgb))
}

.form-control {
    border: 1px solid var(--primary);
}


#footer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5rem;
    overflow: hidden;
    
}

@keyframes ticker {
    0% {
        transform: translateX(100vw);
    }

    40%, 60% {
        transform: translateX(calc(58vw - 42%));
    }

    100% {
        transform: translateX(-100vw);
    }
}

#footer-bar .ticker-text {
    position: relative;
    white-space: nowrap;
    display: inline-block;
    animation: ticker 10s linear infinite;
}

.app-footer {
    position: fixed;
    /*font-size: .7rem;*/
    padding: .4rem 2.5rem
}



.app-brand .logo {
    max-width: 180px;
    max-height: 100px;
    transition: width 1s ease;
}

.text-warning {
    color: #D4B074;
}
.text-success {
    color: #007A3A;
}
.text-danger {
    color: #C8102E;
}

.smalllabel {
    font-size: 12px;
    font-family: 'Poppins-Regular', sans-serif;
}

.accordion-button:not(.collapsed) {
    color: var(--text-primary);
    background-color: #fff;
    box-shadow: inset 0 calc(-1*1px) 0 var(--text-primary)
}
.accordion-button:focus {
    z-index: 3;
    border-color: var(--text-dark);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(83 134 159 / 19%);
}

.tc-1{
    width: 20%;
}
.tc-2{
    width: 40%;
}
.tc-3{
    width: 40%;
}

div > h2 > button.accordianbtn-bg-color {
    background: #e6e6e6;
}

    div > h2 > button.accordianbtn-bg-color:not(.collapsed) {
        background: #e6e6e6;
    }
