:root {
    --bs-primary: #DC199B;
    --bs-primary-rgb: 220, 25, 155;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.tag {
    font-size: 16px;
    line-height: 24px;
    padding: 4px 12px;
    border-radius: 6px;
}

.bg-pink {
    background-color: #FBE7E9;
}

.bg-purple{
    background-color: #EDE7FB;
}


.bg-yellow {
    background-color: #FFF0BB;
}

.btn-outline-primary {
    --bs-btn-color: #DC199B;
    --bs-btn-border-color: #DC199B;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #DC199B;
    --bs-btn-hover-border-color: #DC199B;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #DC199B;
    --bs-btn-active-border-color: #DC199B;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #DC199B;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #DC199B;
    --bs-gradient: none;
}


.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #DC199B;
    --bs-btn-border-color: #DC199B;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #c00782;
    --bs-btn-hover-border-color: #DC199B;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #c00782;
    --bs-btn-active-border-color: #DC199B;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #DC199B;
    --bs-btn-disabled-border-color: #DC199B;
}

.btn-white {
    background-color: #fff;
    border: 1px solid #fff;
    color: #DC199B;
}

.btn-white:hover {
    background-color: transparent;
    border:1px solid #fff;
    color: #fff;
}
/* Firefox */

input[type='number'] {
    -moz-appearance: textfield;
}

.default-theme header nav {
    background-color: #4b0050;
    height: 84px;
}

.default-theme header i {
    color: #fff;
    font-size: 1.5rem;
}

.default-theme header p {
    color: #fff;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 0;
}

.custom-table {
    border: 1px solid #d9d9d9;
}

.custom-table thead {
    background: #f6f2f6 !important;
}

.custom-table thead th,
.custom-table tbody td {
    padding: 20px 40px;
    border: none;
    white-space: nowrap;
    border-right: 1px solid #d9d9d9;
}

.table tbody tr:nth-of-type(even) {
    background: #f8f8f8;
}

.custom-stripe-table tbody tr:nth-of-type(even) td {
    background: #f8f8f8;
}

.custom-table tbody td a.view {
    color: #7f7b83;
}

.custom-table tbody td a.view:hover {
    color: #dc199b;
}

.custom-stripe-table {
    font-size: 16px;
    line-height: 1.2;
    --bs-table-striped-bg: #fff;
}

.custom-stripe-table thead {
    border: 1px solid #0000001a;
    border-bottom: 4px solid #e6dce7;
}

.custom-stripe-table th {
    background-color: #f6f2f6;
    padding: 20px 40px;
}

.custom-stripe-table tbody tr:nth-of-type(odd),
.custom-stripe-table tbody tr:nth-of-type(odd) td {
    background: #fff;
    box-shadow: none;
}

.table tbody tr:nth-of-type(even) {
    background: #f8f8f8;
}

/* Custom scrollbar in Table*/

/* width */
.table-responsive::-webkit-scrollbar {
    height: 15px;
    margin: 5px 0;
}

/* Track */
.table-responsive::-webkit-scrollbar-track {
    border: 1px solid #E2E2E2;
    background-color: #F0F0F0;
    box-shadow: 0px 4px 4px 0px #0000000D;
}
 
/* Handle */
.table-responsive::-webkit-scrollbar-thumb {
    background: #E89ACE;
    border-radius: 10px;
    padding: 10px 0;
    border: 4px solid #f0f0f0;
}

/* Handle on hover */
.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #E89ACE;
}


/*Pagination Styling*/

.theme-pagination .page-link {
    color: #7b809a;
    border-radius: 50% !important;
    margin-left: 0.4rem;
    margin-right: 0.4rem;
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    text-align: center;
    outline: none;
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
}

.theme-pagination .page-link i{
    line-height: 35px;
}

.theme-pagination .page-item:first-child .page-link {
    margin-right: 0.4rem;
}

.theme-pagination .page-item:last-child .page-link {
    margin-right: 0;
}

.theme-pagination .active>.page-link,
.page-link.active {
    background-color: #dc199b !important;
    border: 1px solid #dc199b;
    color: #fff;
}

.theme-pagination .page-link:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 25, 155, 0.25);
}

.theme-pagination .page-link:hover {
    color: #fff;
    background-color: #dc199b !important;
    border-color: #dc199b;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover{
    background-color: #dc199b !important;
}

.theme-pagination .page-item.active:hover a {
    background-color: #dc199b;
    border-color: #dc199b;
}


/*Banner Styling*/

.banner-img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.banner-content {
    position: relative;
    z-index: 9;
    padding: 50px 0;
}

.banner-content h1 {
    margin-bottom: 14px;
}

.banner-content .text-link {
	display: block;
	font-size: 14px;
	margin-bottom: 58px;
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 7px;
    opacity: 0.8;
}

@media only screen and (max-width: 767px){
    .banner-img {
        position: static;
    }

    .banner-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding-bottom: 30px;
    }

    .banner-img img{
        object-position: center;
    }
}


@media only screen and (max-width: 576px){
    .banner-content h1{
        font-size: 24px;
        line-height: 1.2;
    }

    .banner-content p{
        font-size: 16px;
        line-height: 24px;
    }
}


/*Form Style */

.form-control:focus,
.form-select:focus {
    color: #212529;
    background-color: #fff;
    border-color: #dc199b;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(220, 25, 155, 25%);
}

.form-control,
.form-select {
    border: 1px solid #D8D8D8 !important;
    border-radius: 4px;
    height: 42px;
    font-size: 12px;
}

textarea.form-control {
    height: auto;
}

.form-control:disabled {
    background-color: #e9ecef !important;
}

.form-control:focus {
    border: 1px solid #dc199b !important;
}

.form-text {
    font-style: italic;
    font-size: 12px;
    line-height: 14px;
    color: #7E7E7E;
    margin-bottom: 10px;
}

.form-label {
    font-size: 16px;
    line-height: 18px;
    color: #373737;
}

.input-info {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #000;
    margin-bottom: 0;
    margin-top: 10px; 
}

.form-details .form-label {
    font-weight: 300;
}

.submitted_alert .btn-close {
    width: 10px;
    height: 10px;
    border: none;
    box-shadow: none;
    outline: none;
    background-size: 12px;
    transform: translateY(-5px);
}

.incident-form .select2-container--default .select2-selection--multiple {
    border: 1px solid #D8D8D8 !important;
}

.incident-form .select2-container {
    width: 100% !important;
}
