﻿@import url('https://fonts.cdnfonts.com/css/roboto');

body {
    font-family: 'Roboto', sans-serif;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
    box-shadow: none !important;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
        color: #24984e;
    }

ul {
    list-style: none;
    padding: 0;
}

p {
    margin-bottom: 0px;
}

.container {
    max-width: 95% !important;
}

/***************************************************INPUT-CSS-START************************************************************/
.form-control {
    border-radius: 0 !important;
    Padding: 8px 12px;
    Height: 40px;
    position: relative;
    border: 1px solid #ccc;
    color: #58595A;
}

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

    .form-control:focus {
        outline: 1px solid #24984e;
        box-shadow: none;
        border: 1px solid #fff;
    }
/***************************************************INPUT-CSS-END************************************************************/


/***************************************************BUTTONS-START************************************************************/
.button-without-icon {
    font-size: 16px;
    text-transform: capitalize;
    background: #24984e;
    color: #ffffff;
    transition: 0.5s;
    padding: 10px 35px;
    border: none;
    border-radius: 0;
    margin-top: 15px;
    min-width: 120px;
    text-align: center;
    Border: 1px solid #24984e;
}

.grey-btn {
    font-size: 16px;
    text-transform: capitalize;
    background: #F7F7F7;
    color: #878787;
    transition: 0.5s;
    padding: 10px 35px;
    border: none;
    border-radius: 0;
    margin-top: 15px;
    min-width: 120px;
    text-align: center;
    Border: 1px solid #CCCCCC;
}

    .grey-btn:hover {
        background-Color: #EAEAEA;
    }

.button-without-icon:hover {
    background: #176939;
    transition: none;
}

.button-with-icon {
    font-size: 16px;
    text-transform: capitalize;
    background: #24984e;
    color: #ffffff;
    transition: 0.5s;
    padding: 8px 15px;
    border: none;
    border-radius: 0;
    min-width: 120px;
    text-align: center;
    Border: 1px solid #24984e;
}

    .button-with-icon span svg {
        margin-right: 10px;
    }

    .button-with-icon:hover {
        background: #176939;
        transition: none;
    }


/************************************toggle switch css start****************************/
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 22px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #24984e;
}

input:focus + .slider {
    box-shadow: 0 0 1px #24984e;
}

input:checked + .slider:before {
    -webkit-transform: translateX(21px);
    -ms-transform: translateX(21px);
    transform: translateX(21px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/***************************toggle switch css End********************************/

/***************************************custom-radio-css-start****************************/
.radio-custom-label {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

.checkbox-custom, .radio-custom {
    opacity: 0;
    position: absolute;
}

.checkbox-custom, .checkbox-custom-label, .radio-custom {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

.checkbox-custom-label, .radio-custom-label {
    position: relative;
}

.checkbox-custom + .checkbox-custom-label:before, .radio-custom + .radio-custom-label:before {
    content: '';
    background: #fff;
    border: 1px solid #ccc;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    background: rebeccapurple;
    color: #fff;
}

.radio-custom + .radio-custom-label:before {
    border-radius: 0;
}

.radio-custom:checked + .radio-custom-label:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #FFF;
    background-color: #24984e;
    cursor: pointer;
}

.radio-div {
    margin-right: 25px;
}

.radio-custom-label span {
    color: #333;
    font-weight: 500;
}
/*******************************custom-radio-css-end*******************************/

/***************************************************BUTTONS-END************************************************************/


/***************************************************CUSTOM-SELECT-CSS-START************************************************************/
.custom-select {
    display: none;
}

.dropdown-select {
    background-color: #fff;
    border: 1px solid #E6E6E6;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 30px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
    padding-top: 4px;
}

    .dropdown-select:focus {
        background-color: #fff;
    }

    .dropdown-select:hover {
        background-color: #fff;
    }

    .dropdown-select:active,
    .dropdown-select.open {
        border: 1px solid #ced4da;
    }

    .dropdown-select::before {
        content: '';
        position: absolute;
        right: 32px;
        font-size: 13px;
        transition: 0.5s;
        top: 8px;
        height: 25px;
        width: 1px;
        background-color: #aaaaaa;
    }

    .dropdown-select:after {
        font-family: FontAwesome;
        content: "\f107";
        color: rgb(204, 204, 204);
        position: absolute;
        right: 12px;
        font-size: 13px;
        transition: all 0.5s ease 0s;
        top: 6px;
    }

    .dropdown-select.open:after {
        top: 3px;
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .dropdown-select.open .list {
        -webkit-transform: scale(1);
        /* transform: scale(1); */
        opacity: 1;
        pointer-events: auto;
    }

    .dropdown-select.open .option {
        cursor: pointer;
    }

    .dropdown-select.wide {
        width: 100%;
    }

        .dropdown-select.wide .list {
            left: 0 !important;
            right: 0 !important;
        }

    .dropdown-select .list {
        box-sizing: border-box;
        /* transition: all 0.15s cubic-bezier(0.25, 0, 0.25, 1.75), opacity 0.1s linear; */
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
        -webkit-transform-origin: 50% 0;
        /* transform-origin: 50% 0; */
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.09);
        background-color: #fff;
        margin-top: 0px;
        padding: 3px 0;
        opacity: 0;
        /* overflow: hidden; */
        pointer-events: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        /* max-height: 250px; */
        /* overflow: auto; */
        border: 1px solid #ddd;
    }

    .dropdown-select .dd-search {
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0.5rem;
        position: absolute;
        top: -59px;
        width: Calc(100% - 15px);
    }

    .dropdown-select .dd-searchbox {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #ccc;
        /* border-color: #999; */
        border-radius: 4px;
        outline: none;
        height: 40px;
        display: -webkit-inline-box;
    }

        .dropdown-select .dd-searchbox:focus {
            border-color: #24984e;
        }

    .dropdown-select .list ul {
        padding: 0;
        max-height: 220px;
        overflow-y: auto;
        margin-bottom: 0px;
    }

    .dropdown-select .option {
        cursor: default;
        font-weight: 400;
        line-height: 40px;
        outline: none;
        padding-left: 18px;
        padding-right: 29px;
        text-align: left;
        transition: all 0.2s;
        list-style: none;
        word-wrap: unset;
        white-space: normal;
    }

        .dropdown-select .option:hover,
        .dropdown-select .option:focus {
            background-color: #24984e;
            color: #FFF;
            font-weight: 600;
        }

        .dropdown-select .option.selected {
            font-weight: 600;
            background-color: #24984e;
            color: #FFF;
        }

    /* .dropdown-select .option.selected:focus {
    background: #f6f6f6;
} */

    .dropdown-select a {
        color: #aaa;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }

        .dropdown-select a:hover {
            color: #666;
        }

    .dropdown-select .list ul::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: #F5F5F5;
    }

    .dropdown-select .list ul::-webkit-scrollbar {
        width: 6px;
        background-color: #24984e;
    }

    .dropdown-select .list ul::-webkit-scrollbar-thumb {
        background-color: #24984e;
    }

    .dropdown-select span.current {
        font-size: 14px;
        display: block;
        overflow: hidden;
        color: #6b6767;
    }


    .dropdown-select .list::-webkit-scrollbar {
        background-color: #24984e;
    }

    .dropdown-select .list::-webkit-scrollbar-thumb {
        background-color: #24984e;
    }

    .dropdown-select .dd-searchbox:focus {
        border-color: #24984e;
    }

    .dropdown-select .option.selected {
        background-color: #24984e;
    }
/***************************************************CUSTOM-SELECT-CSS-END************************************************************/

/***************************************************CUSTOM-ROLE-SELECT-CSS-START************************************************************/
.role-select-div {
    position: relative;
}

.role-select-content {
    position: relative;
    z-index: 99;
    
    box-shadow: 2px 3px 3px rgb(0 0 0 / 11%);
}

    .role-select-content td {
        color: #58595A;
    }

table.role-select-content thead {
    background-color: #f4f4f4 !important;
}

table.role-select-content tr {
    cursor: pointer;
}

table.role-select-content tbody tr:hover td {
    background-color: #24984e;
    color: #FFF;
}

table.role-select-content tbody tr:hover .radio-custom:checked + .radio-custom-label:before {
    color: #24984e;
    background-color: #FFF;
}

.role-select-div .span2::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 20px;
    transform: translateY(-50%);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(../images/lineimg.png);
    background-position: right 20% top 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 33px;
    height: 40px;
    pointer-events: none;
}

.mydiv {
    margin-top: 5px;
}

    .mydiv ul {
        display: flex;
        margin-bottom: 0;
    }

        .mydiv ul li {
            padding: 5px 10px;
            background: #f3f3f3;
            border: 1px solid #dedede;
            margin-right: 10px;
            font-size: 13px;
            border-radius: 4px;
        }

            .mydiv ul li span {
                margin-left: 8px;
            }

                .mydiv ul li span:hover {
                    cursor: pointer;
                }

                .mydiv ul li span svg {
                    font-size: 15px;
                    color: #a1a1a1;
                }

#fid_table, #access_table {
    display: none;
}

.table-radio-div {
    display: flex;
    align-items: center;
}

/***************************************************CUSTOM-ROLE-SELECT-CSS-END************************************************************/

/***************************************************HEADER-START************************************************************/
.top-menu-bar {
    background: #000;
}

.top-menu svg {
    color: #FFF;
    display: inline-block;
    width: auto;
    border: 2px solid #fff;
    border-radius: 20px;
    font-size: 18px;
    padding: 5px;
    margin-right: 10px;
}

.top-menu {
    display: flex;
    justify-content: end;
    align-items: center;
}

.top-social-icons {
    border-right: 1px solid #FFF;
}

.dropdown {
    position: relative;
}

    .dropdown span {
        display: block;
        padding: 0.75em;
        z-index: 2;
        background: transparent;
        position: relative;
    }

        .dropdown span .down, .dropdown span .up {
            position: absolute;
            right: -20px;
            border: none;
            top: 12px;
        }

        .dropdown span .up {
            display: none;
        }

    .dropdown ul {
        max-height: 0px;
        overflow: hidden;
        background: #000;
        box-sizing: border-box;
        list-style: none;
        margin: 0;
        padding: 0;
        position: absolute;
        z-index: 9999;
    }

        .dropdown ul li {
            max-width: 100%;
            width: 110px;
            border-bottom: 1px solid #4b4a5e;
            padding: 12px;
        }

            .dropdown ul li a {
                color: inherit;
                display: block;
                text-decoration: none;
                color: white;
            }

                .dropdown ul li a:hover {
                    font-weight: bold;
                }

    .dropdown:hover ul {
        display: block;
        max-height: 215px;
        transition: max-height 0.2s ease-in;
        border-bottom: 1px solid #dddad6;
    }

    .dropdown:hover .down {
        display: none;
    }

    .dropdown:hover .up {
        display: inline-block;
    }

.navbar {
    background-color: #f8f9fb;
    border-bottom: 1px solid #ededed;
    padding: 30px 0;
}

.navbar-brand {
    max-width: 100%;
}

    .navbar-brand img {
        max-width: 250px;
        width: 100%;
    }

.navbar .nav-link {
    color: #000000 !important;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    margin: 0px 8px;
}

    .navbar .nav-link:last-of-type {
        margin: 0px;
    }

    .navbar .nav-link:hover {
        color: #24984e !important;
    }

.navbar-toggler svg {
    color: #9c9c9c;
}

.btn-close svg {
    color: #9c9c9c;
}

.logo-section {
    background: #000;
    padding: 10px 0;
    text-align: center;
}

    .logo-section img {
        max-width: 150px;
    }

.logo-section {
    display: none;
}

.top-menu-bar {
    display: block;
}

.toggler-title {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.navbar-toggler-icon {
    vertical-align: unset;
}

.side-menu-icon, .sign-out-link {
    display: none;
}

.navbar .nav-link img {
    width: 25px;
    margin-right: 20px;
}

.blockchain-img-sec {
    filter: drop-shadow(0px 7px 8px #C4C4C4);
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
}
/***************************************************HEADER-END************************************************************/

/**************************************FOOTER-SECTION-CSS-START**********************************/
.common-footer {
    background: linear-gradient(90deg, rgba(0,0,0,1) 8%, rgba(9,35,54,1) 51%);
    padding: 45px 0;
    margin-top: 40px;
}

.footer-left-logo {
    max-width: 250px;
}

.footer-follow-progress {
    border-right: 2px solid white;
}

    .footer-follow-progress img {
        width: 100%;
        height: auto;
        max-width: 100px;
        margin-right: 16px;
    }

.social-icons a {
    padding: 0 5px;
    font-size: 22px;
    color: #fff;
}

.footer-bottom {
    width: 100%;
    display: block;
    background-color: #000;
    padding: 10px 0;
}

    .footer-bottom .copyright {
        display: flex;
        height: 100%;
        align-items: center;
    }

.copyright p {
    color: #fff;
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
}

.footer-mail {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
    font-size: 16px;
    height: 100%;
    align-items: center;
}

    .footer-mail a {
        color: #fff;
    }

.footer-slogan-div {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: center;
    /* padding-top: 16px; */
}

    .footer-slogan-div img {
        max-width: 350px;
        height: auto;
    }

.w-md-auto {
    width: auto !important;
}

.footer-mail a svg {
    margin: 0 8px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/**************************************FOOTER-SECTION-CSS-END**********************************/

/********************************TABLE-SECTION-CSS-START****************************/

.table {
    border: 1px solid #dee2e6;
}

    .table thead {
        border-bottom: 2px solid #dee2e6 !important;
        background-color: #FFF !important;
    }

        .table thead tr th {
            padding: 15px 10px;
        }

    .table tbody tr {
        background-color: #FFF;
    }

        .table tbody tr td {
            padding: 20px 10px;
        }

.table-striped {
    background-color: #F9F9F9;
    margin-top: 40px;
}

.table tbody tr td a svg {
    color: #24984e;
    font-size: 20px;
}

.date-icon div {
    position: relative;
    width: fit-content;
}

.date-icon span a img {
    width: 20px;
}

.date-icon div:before {
    margin-right: -8px;
    transform: rotate(180deg);
    content: '';
    opacity: 0.5;
    background: url(../images/Caret-Symbol-PNG-Clipart.png);
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -2px;
    right: -12px;
}

.date-icon div:after {
    margin-right: -9px;
    content: '';
    opacity: 0.5;
    background: url(../images/Caret-Symbol-PNG-Clipart.png);
    position: absolute;
    width: 20px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 6px;
}
/********************************TABLE-SECTION-CSS-END****************************/
/*******************RESPONSIVE-CSS-START***********************/
@media only screen and (max-width: 991px) {
    /**********HEADER-RESPONSIVE-CSS-START*******/
    .logo-section {
        display: block;
    }

    .top-menu-bar {
        display: none;
    }

    .navbar-brand {
        display: none;
    }

    .side-menu-icon {
        display: block;
    }

    .sign-out-link {
        display: block;
        border-top: 1px solid #ccc;
        padding-top: 35px;
    }

    .navbar .nav-link {
        display: flex;
        font-size: 16px;
    }

    .navbar-nav .nav-item {
        margin-bottom: 20px;
    }

        .navbar-nav .nav-item span {
            color: #777777;
            font-weight: 500;
        }

    .offcanvas {
        padding: 10px 25px;
    }

    .offcanvas-header {
        border-bottom: 1px solid #ccc;
    }

    .navbar-nav {
        padding: 25px 0px;
    }

    .offcanvas-top-heading span {
        color: #ccc;
        font-size: 16px;
    }
    /**********HEADER-RESPONSIVE-CSS-END*******/

    /**********FOOTER-RESPONSIVE-CSS-START*******/
    .copyright {
        justify-content: center;
    }

    .footer-mail {
        display: flex;
        justify-content: center;
    }

    .footer-slogan-div {
        display: flex;
        justify-content: center;
        margin: -0.5rem 3%;
        padding-bottom: 15px;
    }

    .copyright p {
        color: #fff;
        margin-bottom: 10px;
    }

    .footer-mail a {
        margin-bottom: 15px;
        display: flex;
    }

    .footer-content, .footer-social-icons {
        flex-direction: column;
    }

    .footer-follow-progress img {
        margin-bottom: 20px;
    }

    .footer-follow-progress {
        border-right: none;
    }

    .w-md-auto {
        width: 100% !important;
    }

    .footer-mail span {
        margin-bottom: 15px;
    }

    label {
        margin-bottom: 5px;
    }
}
/**********FOOTER-RESPONSIVE-CSS-END*******/
/********************************RESPONSIVE-CSS-END***************************************/

.search-box .ui-datepicker .ui-datepicker-calendar tr {
    display: flex;
    justify-content: space-between;
}

    .search-box .ui-datepicker .ui-datepicker-calendar tr th {
        display: table-cell;
        width: 30px;
        text-align: center;
    }

    .search-box .ui-datepicker .ui-datepicker-calendar tr td {
        display: table-cell;
        width: 30px;
        text-align: center;
    }

#ui-datepicker-div {
    left: 0 !important;
    right: 0 !important;
    margin: auto;
    transform: scale(0.8);
    top: 227px !important;
    z-index: 99 !important;
}

.datepicker table tr td.today {
    color: #fff !important;
    background-color: #24984e !important;
    border-color: #24984e !important;
}

.datepicker table tr td span.focused, .datepicker table tr td span:hover,
.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
    background: #8ff1b02e !important;
    color: #000 !important;
}

.datepicker table tr td, .datepicker table tr th {
    width: 40px !important;
    height: 35px !important;
}

.datepicker {
    min-width: 280px;
}

.datepicker table {
        width: 100%;
    }

.current-access-table-div {
    max-height: 320px;
    overflow-y: scroll;
    overflow-x: clip;
    /* border-bottom: 1px solid #ccc; */
    position: absolute;
    width: 100%;
    top: 45px;
}
.current-access-table-div .t_head th{
    position:sticky;
    top:-1px;
    background:#f4f4f4;
    z-index:999;
}
.change-customer-radio .radio-custom:checked + .radio-custom-label:before {
    position: absolute;
    right: -40px;
    top: 3px;
}
.change-customer-radio .radio-custom + .radio-custom-label:before {
    position: absolute;
    right: -40px;
    top: 3px;
}
.radio-div.change-customer-radio {
    display: flex;
    align-items: center;
}
.edit-form-section .form-control[readonly] {
    background-color: #e9ecef !important;
    opacity: 1;
}
.swal2-popup.swal2-modal.swal2-show {
    max-width: 420px;
    padding: 35px 25px;
    border-radius: 0;
}
.swal2-styled.swal2-confirm {
    color: rgb(255, 255, 255) !important;
    background: #24984e !important;
    border: none !important;
    background-size: auto auto;
    position: relative;
    font-size: 16px !important;
    height: unset !important;
    padding: 10px 35px !important;
    text-transform: capitalize;
    transition: 0.5s;
    background-size: 200% auto;
    border-radius: 0;
    min-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 0 !important;
}
.swal2-styled.swal2-cancel {
    font-size: 16px !important;
    border-radius: 0;
    min-width: 100px;
}
#swal2-html-container {
    margin-top: 10px;
}
#swal2-title {
    font-size: 30px;
    font-weight: 700;
}
#pending_organization tbody tr td svg.fa-trash{
    margin-right: 10px;
}

#AddOnBalanceModal .modal-dialog {
    max-width: 720px;
}
#AddOnBalanceModal .container {
    max-width: 100% !important;
    padding: 0;
}
#AddOnBalanceModal .modal-footer-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#AddOnBalanceModal .modal-body {
    padding: 50px 30px 40px;
}

select {
    width: 100% !important;
}
.small-select option, .large-select option {
    width: 100%;
}
.default-select::before {
    content: '';
    position: absolute;
    right: 28px;
    font-size: 13px;
    transition: 0.5s;
    top: 8px;
    height: 25px;
    width: 1px;
    background-color: #aaaaaa;
    z-index: 99;
}
.default-select::after {
    font-family: FontAwesome;
    content: "\f107";
    color: rgb(204, 204, 204);
    position: absolute;
    right: 8px;
    font-size: 13px;
    transition: all 0.5s ease 0s;
    top: 50%;
    transform: translateY(-50%);
}
.default-select{
    position: relative;
}
.option{
    font-size: 10px !important;
}
