/* Add here all your css styles (customizations) */



/*Added By AM 20250605*/
video 
{
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.requiredAsterix
{
    color: red;
}







/*Added By AM 2025-03-27*/
.redXCheckbox 
{
    appearance: none; /* Removes default checkbox */
    width: 16px;
    height: 16px;
    border: 1px solid gray;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 20%;
}
.redXCheckbox:checked
{
    background-color: red;
    border: 1px solid red;
} 
/*Added By AM 2025-03-27*/
.redXCheckbox:checked::after 
{
    content: "x"; /* Red X instead of a check */
    font-size: 14px;
    color: white;
    font-weight: bold;
    
}




/*Added By AM 2025-01-24*/



/*Added By AM 2025-01-23*/
a.QuestionMark i
{
    margin: auto ;
    text-decoration: none;
    font-size: 18px;
}


/*Added By AM 2024-12-09*/
/* SUPER DISABLE Inline Styling
* Used on items that need to look disabled. Possible due to 3rd party styling using !important everywhere
*
*
* style="color: darkgray !important; pointer-events: none !important; cursor: not-allowed !important;"
*
*/

/*Added By AM 2024-10-29*/
#profileMenuInvoker:hover
{
    color: #1D2020FF;
}

/*Added By AM 2024-10-24*/
/* Error message box */
.errorBox {
    background-color: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb;
    padding: 15px;
    margin: 10px auto 0.5% 1.4%;
    border-radius: 5px; 
    font-family: Arial, sans-serif;
    width: 97%;
}

/*Added By AM 2024-10-24*/
/* Success message box */
.successBox {
    background-color: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb; 
    padding: 15px;
    margin: 10px auto 0.5% 1.4%;
    border-radius: 5px; 
    font-family: Arial, sans-serif;
    width: 97%;
}




/*
 * Added By AM 2024-10-22
 * bootstrap navbar remove space fix
*/
.navbar 
{
    /* justify-content: normal; */
}

/*Added By AM 2024-09-16*/
.ShowHideBox
{
    background: lightgray;
    border-radius: 4%;
    padding-left: 1.0rem;
    position: absolute;
    
    display: block;
    width: 3.0rem;
    height: 3.2rem;
    line-height: 3.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
    right: 0;
}

/*Added By AM 2024-09-16*/
.input-group-addon
{
    z-index: 2;
    padding-left: 0.0rem;
    padding-top: 0.3rem;
    padding-bottom: 0;
    padding-right: 0.0rem;
    margin-top: 0;
    margin-bottom: 0;

    font-size: 20px;
    justify-content: center;
    text-align: center;
}

/*Added By AM 2024-09-23*/
tfoot input 
{
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
}



/****START OF FRONT PAGE STYLE******/
/****START OF FRONT PAGE STYLE******/
/****START OF FRONT PAGE STYLE******/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, serif;
   /* font-family: Alegreya, serif;*/ /*modified CA 20241204 */
   
}

/*================ Background Style ================*/
.bg-img{
    background: url('../img/bg/scotch-bonnet-2.png') no-repeat;
    height: 100vh;
    width: 100%;
    background-size: cover;
    position: fixed;
    background-position: 47%;
    z-index: -99;

}

.bg-img::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
}

/*================ Body Style ================*/
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.box{
   /* height: 52vh;*/ /*ORIGINAL - height: 52vh;*/ 
    /*width: 80%;*/
    height: 70vh; /*modified CA 20241204 */
    width: 40%;/*modified CA 20241204 */
    min-width: 300px;  /* Ensure a minimum width on small screens */
    border-radius: 29px;
    /*background: rgba(255, 255, 255, 0.1);*/
    background: #fff; /*modified CA 20241204 */
    border:1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(18px);
    z-index: 5;
    position: relative;
    padding-bottom: 2rem;
}
.box-alt{
    
     width: 40%;
     min-width: 300px;  /* Ensure a minimum width on small screens */
     border-radius: 29px;
     background: #fff; 
     border:1px solid rgba(255, 255, 255, 0.5);
     backdrop-filter: blur(18px);
     z-index: 5;
     position: relative;
     padding-bottom: 2rem;
 }
 /*modified CA 20241204 */
/*-- ====== NEW ===== --*/
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px; 
}

/*-- ====== NEW ===== --*/
.logo img{
    width: 20rem; 
}



 /*================ Text Style ================ */
.content .text{
    text-align: center;
   /* padding-top: 5rem;
    color: rgb(229, 248, 248);
    */ /*modified CA 20241204 */
    padding-top: 1.2rem; /*-- Modified --*/
    color: #333; /*-- new --*/
}
 /*modified CA 20241204 */
/*
.content .text h1{
    font-size: 77px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    color: rgb(229, 248, 248);
    text-shadow: rgb(0, 0, 0) 2px 2px 6px;
    font-weight: bold;
}

*/
.content .text h1{
    font-size: 77px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    color: #333; /*-- new --*/
}


.content .text p{
    margin-top: 1.5rem;
    font-size: 24px;
  /*  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);*/  /*modified CA 20241204 */
}

.content .text span{
    color: #1D2020FF;
    font-weight: 550;
}

/* ================ Link Style ================ */
.content .btn-grp{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.0rem; /*ORIGINAL - margin-top: 3.2rem;*/
}

.content .btn-grp a{
    text-decoration: none;
}

.content .btn-grp .register-btn{
    border: 1px solid #216f44;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
   /* background: #216f44;*/
    padding: 17px 50px;
   /* color: #fff;*/
   color: #333;  /*modified CA 20241204 */
    border-radius: 12px;
    font-size: 25px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
}

.content .btn-grp .register-btn:hover{
    border: 1px solid #2F8C58FF;
    background: #2f8c58;
    transition: 0.2s;
}

.content .btn-grp .register-btn i{
    margin-left: 4px;
}
/*modified CA 20241204 */
/*
.content .btn-grp .login-btn{
    margin-left: 25px;
    border: 2px solid #216f44;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 17px 50px;
    color: #E5F8F8FF;
    border-radius: 12px;
    font-size: 25px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);

}
*/

.content .btn-grp .login-btn{
    margin-left: 25px;
    border: 1px solid #216f44;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 17px 50px;
    /*color: #333;*/  /*modified CA 20241204 */
    border-radius: 12px;
    font-size: 25px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.25);
    background: #216f44;
    color: #fff; /*modified CA 20241204 */
}

.content .btn-grp .login-btn:hover{
    border: 1px solid #f8f3f3;
    background: #f8f3f3;
    transition: 0.5s;
    color: #1D2020FF;
}

/*================ Media Queries ================*/

/** ADDED 2024-10-22 by AM **/
/* For laptop screens than 1024px (laptop devices) */
@media (max-width: 1024px) 
{
    .box {
        width: 90%;  /* Take more width on smaller screens */
        height: 90dvh;
    }

    /** ADDED 2024-10-22 by AM **/
    .content .text
    {
        padding-top: 3.5rem;
    }


    .content .text h1 {
        font-size: 6vw; /* ORIGINAL -  font-size: 6vw;   */
    }

    .content .text p {
        font-size: 3.5vw;
    }

    .content .btn-grp
    {
        margin-top: 3.0rem; /*ORIGINAL - margin-top: 3.2rem;*/
    }

    .content .btn-grp .register-btn, .content .btn-grp .login-btn {
        padding: 1rem 2.5rem;
        font-size: 4vw;
    }
}

/** ADDED 2024-10-22 by AM **/
/* For screens smaller than 860px (tablets, smaller devices) */
@media (max-width: 860px) {

    .box 
    {
        height: 42vh;
    }
    
    /** ADDED 2024-10-22 by AM **/
    .content .text
    {
        padding-top: 2rem;
    }
}


/** ADDED 2024-10-22 by AM **/
/* For screens smaller than 820px (tablets, smaller devices) */
@media (max-width: 820px) {
    .box {
        width: 90%;  /* Take more width on smaller screens */
        height: 42vh;
    }

    /** ADDED 2024-10-22 by AM **/
    .content .text
    {
        padding-top: 4rem;
    }


    .content .text h1 {
        font-size: 6vw; /* ORIGINAL -  font-size: 6vw;   */
    }

    .content .text p {
        font-size: 3.5vw;
    }

    .content .btn-grp
    {
        margin-top: 3.0rem; /*ORIGINAL - margin-top: 3.2rem;*/
    }

    .content .btn-grp .register-btn, .content .btn-grp .login-btn {
        padding: 1rem 2.5rem;
        font-size: 4vw;
    }
}

/* For screens smaller than 768px (tablets, smaller devices) */
@media (max-width: 768px) {
    .box {
        width: 90%;  /* Take more width on smaller screens */
        height: 50%;
    }

    /** ADDED 2024-10-22 by AM **/
    .content .text
    {
        padding-top: 4rem;
    }

    .content .text h1 {
        font-size: 6vw;
    }

    .content .text p {
        font-size: 3.5vw;
    }

    .content .btn-grp .register-btn, .content .btn-grp .login-btn {
        padding: 1rem 2.5rem;
        font-size: 4vw;
    }
}


/** ADDED 2024-10-22 by AM **/
/* For screens smaller than 540px (Surface duo) */
@media (max-width: 540px) {

    .box {
        height: 52vh;
    }
   
    .content .btn-grp
    {
        margin-top: 2.0rem; /*ORIGINAL - margin-top: 3.2rem;*/
    }
}


/* For small screens like phones */
@media (max-width: 480px) {
    .box {
        width: 95%;         /* ORIGINAL -  width: 95%;   */
        padding: 1.5rem;
        height: 85%;
    }
	
    /* added CA2025 */
    .g-mt-100 {
        margin-top: 0.14286rem !important;
    }
    /* end added CA2025 */
	
    /** ADDED 2024-10-22 by AM **/
    .content .text
    {
        padding-top: 0rem;
    }

    .content .text h1 {
        font-size: 7vw;
    }

    .content .text p 
    {
        font-size: 4vw;
        margin-top: 1.0rem; /** ADDED 2024-10-22 by AM **/
    }
    .content .btn-grp {
        flex-direction: column; /* Stack buttons on smaller screens */
    }

    .content .btn-grp .register-btn, .content .btn-grp .login-btn {
        margin: 0.5rem 0;
        width: 80%;
        font-size: 4.5vw; /* ORIGINAL -  font-size: 4.5vw; */
    }

    /** ADDED 2024-10-22 by AM **/
    #loginTitle
    {
        font-size: 11vw;
    }
}

/** ADDED 2024-10-22 by AM **/
/* For small screens Galaxy S8+ iPhone SE*/
@media (max-width: 375px) {

    .box {
        width: 90%;  /* Take more width on smaller screens */
        height: 55%;
    }

    /** ADDED 2024-10-22 by AM **/
    .content .text
    {
        padding-top: 1rem;
    }


    .content .text h1 {
        font-size: 6vw; /* ORIGINAL -  font-size: 6vw;   */
    }

    .content .text p {
        font-size: 3.5vw;
    }

    .content .btn-grp
    {
        margin-top: 1.0rem; /*ORIGINAL - margin-top: 3.2rem;*/
    }

    .content .btn-grp .register-btn, .content .btn-grp .login-btn {
        padding: 1rem 2.5rem;
        font-size: 4vw;
    }

    /** ADDED 2024-10-22 by AM **/
    #loginTitle
    {
        font-size: 6vw;
    }
}

/** ADDED 2024-10-23 by AM **/
/* For small screens Galaxy Z fold 5*/
@media (max-width: 350px) {

    .box {
        width: 90%;  /* Take more width on smaller screens */
        height: 40%;
    }

    /** ADDED 2024-10-22 by AM **/
    .content .text
    {
        padding-top: 1rem;
    }


    .content .text h1 {
        font-size: 6vw; /* ORIGINAL -  font-size: 6vw;   */
    }

    .content .text p {
        font-size: 3.5vw;
    }

    .content .btn-grp
    {
        margin-top: 1.0rem; /*ORIGINAL - margin-top: 3.2rem;*/
    }

    .content .btn-grp .register-btn, .content .btn-grp .login-btn {
        padding: 1rem 2.5rem;
        font-size: 4vw;
    }

    /** ADDED 2024-10-22 by AM **/
    #loginTitle
    {
        font-size: 6vw;
    }
}



/****END OF FRONT PAGE and Login STYLE******/
/****END OF FRONT PAGE and Login STYLE******/
/****END OF FRONT PAGE and Login STYLE******/















/* ==== ---------- LOGO ---------- ====*/
.seeds-logo{
    height: 52px;
    width: 52px;
}

.tile div.dataTables_wrapper {
    padding: 0;
}

.tile {
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    padding: 20px;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgb(225, 234, 234);
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media print {
    .tile {
        border: 1px solid #ddd;
    }
}


.tile.small {
    padding: 0;
}

.tile .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    color: #555;
    border-radius: 3px;
}

.tile .overlay .l-text {
    font-size: 24px;
    margin-top: 15px;
}

.tile .tile-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.tile .tile-title-w-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.tile .tile-title-w-btn p {
    margin: 0;
}

.tile .tile-title-w-btn .title {
    margin: 0;
}

.tile .tile-title-w-btn .side {
    margin-bottom: 0;
    padding-left: 0;
}

.tile .tile-title-w-btn .btn-group {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.tile .tile-footer {
    border-top: 1px solid #ddd;
    padding: 20px 0 0 0;
    margin-top: 10px;
}


.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-21by9::before {
    padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
    padding-top: 56.25%;
}

.embed-responsive-4by3::before {
    padding-top: 75%;
}

.embed-responsive-1by1::before {
    padding-top: 100%;
}

.app-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: #FFF;
    margin: -30px -30px 30px;
    padding: 20px 30px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.param-select{
    /*display: -webkit-box;
    display: -ms-flexbox;*/
    background-color: #FFF;
    margin: -30px -30px 30px;
    padding: 20px 30px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media print {
    .app-title {
        display: none;
    }
}

@media (max-width: 480px) {
    .app-title {
        margin: -15px -15px 15px;
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.app-title h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
}

.app-title p {
    margin-bottom: 0;
    font-style: italic;
}

@media (max-width: 480px) {
    .app-title p {
        display: none;
    }
}

.app-content {
    min-height: calc(100vh - 50px);
    /*margin-top: 50px;*/
    padding: 30px;
    background-color: #E5E5E5;
    -webkit-transition: margin-left 0.3s ease;
    -o-transition: margin-left 0.3s ease;
    transition: margin-left 0.3s ease;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #495057;
    background-color: #FFF;
    background-clip: padding-box;
    border: 2px solid #ced4da;
    border-radius: 4px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:focus {
    color: #495057;
    background-color: #FFF;
    border-color: #009688;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.btn-primary {
    color: #FFF;
    background-color: #009688;
    border-color: #009688;
}

.btn-primary:hover {
    color: #FFF;
    background-color: #007065;
    border-color: #00635a;
}

.btn-primary:focus, .btn-primary.focus {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 150, 136, 0.5);
    box-shadow: 0 0 0 0 rgba(0, 150, 136, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #FFF;
    background-color: #009688;
    border-color: #009688;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #FFF;
    background-color: #00635a;
    border-color: #00564e;
}

.btn-primary, .btn-secondary{

}

/*DATA TABLE STYLING*/

table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
table.dataTable thead > tr > td.sorting_asc,
table.dataTable thead > tr > td.sorting_desc,
table.dataTable thead > tr > td.sorting {
    padding-right: 30px;
}

table.dataTable thead > tr > th:active,
table.dataTable thead > tr > td:active {
    outline: none;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    position: relative;
}

table.dataTable thead .sorting:before, table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    position: absolute;
    bottom: 0.9em;
    display: block;
    opacity: 0.3;
}

table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:before {
    right: 1em;
    content: "\2191";
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    right: 0.5em;
    content: "\2193";
}

table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_desc:after {
    opacity: 1;
}

table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc_disabled:after {
    opacity: 0;
}

.dataTables_filter{
    display: flex;
    justify-content: flex-end;
}


.dataTables_length label, .dataTables_filter label{
    display: flex;

}
.dataTables_length label select{
    width: 75px;
    margin: 0 3px 0 3px;
}

.dataTables_filter label input{
    margin-left: 6px;
}


.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #216f44;
    background-color: #FFF;
    border: 1px solid #dee2e6;
}

.page-link:hover {
    z-index: 2;
    color: #004a43;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
    z-index: 1;
    color: #FFF;
    background-color: #216f44;
    border-color: #216f44;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #FFF;
    border-color: #dee2e6;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.09375rem;
    line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.765625rem;
    line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}

.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover {
    border-color: #2b8a56;
    background-color: #2b8a56;
}

.page-link:focus, .page-link:hover {
    color: #216f44;
}

.dataTables_info, .dataTables_paginate{
    margin-top: 22px;
}

.dash-back{
    background: #f4f7fa;
}

/* Utilities */
.grid-margin {
    margin-bottom: 1rem;
}

.stretch-card {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: stretch;
    justify-content: stretch;
}

.stretch-card > .card {
    width: 100%;
    min-width: 100%;
}

/* Cards */
.card {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid #e4e6f6;
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid #e4e6f6;
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
    flex-shrink: 0;
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
    margin-bottom: 15px;
}

.card .card-body {
    padding: 1.875rem 1.875rem;
}

.card .card-body + .card-body {
    padding-top: 1rem;
}

.card .card-title {
    color: #001737;
    margin-bottom: .5rem;
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: bold;
}

.card .card-description {
    margin-bottom: .875rem;
    font-weight: 400;
    color: #76838f;
}








