@import url('https://fonts.googleapis.com/css2?family=Inter&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Outfit:wght@100&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* Root */

:root {
    --sideBarWidthSizing: 290px;
    --basicsideBarWidthSizing: 220px;
    --theme_Color: #008060;
    --theme_Color_light: #c8e8cf;
}

html,
body {
    height: 100vh;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #83888752 #dbdbdb;
}

input[type=checkbox] {
    accent-color: #15c69a;
}

.fw-501 {
    font-weight: 501;
}

.overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    cursor: pointer;
}

.spinner-border {
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: none;
    border-right: .15em solid currentColor;
}

.login_title {
    font-weight: bold;
}

.form_footer,
.form_label,
.form_input {
    font-weight: 600;
}

.form_input {
    border-radius: 5px !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.toast {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40%;
    font-size: 16px;
}

.cursor_pointer {
    cursor: pointer;
}

input:disabled {
    cursor: not-allowed;
}


/** Nav */

.navbar {
    z-index: 99;
    box-shadow: 0 0.15rem 0.75rem 0 rgba(58, 59, 69, 0.11) !important;
    margin: 0;
    padding: 0.8rem 1.3rem;
}

.navbar-logo {
    margin: auto;
}

.navbar-brand {
    font-size: 0.25rem;
}

.gis-input {
    border: 1px solid #0003;
    font-size: 14px;
}

.gis-input:focus {
    border-color: #01957024;
    box-shadow: none !important;
}

.gis-navlist {
    margin-bottom: 0px;
}

.gis-btn-success,
.gis-btn-dark {
    border: 0px;
    font-size: 14px;
    padding: 8px 12px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
}

.gis-btn-success {
    margin-right: 10px;
    background-color: var(--theme_Color);
}

.gis-btn-success:hover {
    background-color: #004c3f;
}

.gis-btn-success:hover,
.gis-btn-dark:hover {
    transition: all 0.3s ease 0s;
    outline: none;
}

.gis-btn-success:focus,
.gis-btn-dark:focus,
#menu-toggle:focus {
    box-shadow: none !important;
}

#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
    height: 100%;
    background-color: #F0F3F8;
}

#wrapper.gis-wrapper {
    overflow-y: scroll;
}

#wrapper.toggled {
    /* padding-left: var(--sideBarWidthSizing);*/
    overflow: hidden;
}

#sidebar-wrapper {
    z-index: 1000;
    position: absolute;
    left: var(--sideBarWidthSizing);
    width: 0;
    height: calc(100% - 64px);
    margin-left: -290px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    box-shadow: 0 12px 15px 0 #cccccc4a;
    border-right: 1px solid #cccccc4a;
    padding: 14px;
    background-color: #fff;
    scrollbar-width: thin;
    scrollbar-color: #83888752 #dbdbdb;
}

#sidebar-wrapper.gis-sidebar {
    padding: 14px 0;
}

#sidebar-wrapper .gis-input-group i {
    position: absolute;
    padding: 10px 0px;
    min-width: 35px;
    text-align: center;
    color: #000;
    z-index: 9;
}

#sidebar-wrapper .gis-input-group input {
    padding-left: 35px;
}

#sidebar-wrapper .gis-input-group {
    margin: 12px 0;
}

#wrapper.toggled #sidebar-wrapper {
    width: var(--sideBarWidthSizing);
}

#page-content-wrapper {
    position: absolute;
    padding: 15px;
    width: 100%;
    overflow-x: hidden;
    height: calc(100% - 64px);
}

#wrapper.toggled #page-content-wrapper {
    position: relative;
    margin-right: 0px;
}

.fixed-brand {
    width: auto;
    display: flex;
}

#menu-toggle {
    display: none;
    font-size: 16.5px;
}

.btn_icon {
    margin-right: 3px;
}


/* Sidebar Styles */

#wrapper.toggled #sidebar-wrapper.gis-sidebar {
    width: var(--basicsideBarWidthSizing);
}

#sidebar-wrapper.gis-sidebar .sidebar-nav {
    width: var(--basicsideBarWidthSizing);
    margin: 0;
}

.gis-sidebar {
    border-right: 0px !important;
    z-index: 999 !important;
}

.gis-sidebar .sidebar-nav {
    padding: 6px 0px;
}

.gis-sidebar .gis-logo {
    margin: 0 18px;
    padding: 7px 0;
}

.gis-sidebar .active .nav-link i {
    margin-right: 11px;
    color: #0080607a;
}

.gis-sidebar .nav-link i {
    margin-right: 11px;
    color: #000;
}

.gis-sidebar li.active .nav-link i,
.gis-sidebar li .nav-link:focus {
    color: var(--theme_Color);
}

.gis-toggle {
    z-index: 999;
}

.gis-wrapper .navbar {
    /*box-shadow: 0 4px 2px -2px #d2d2d2a3 !important; */
    box-shadow: none !important;
    background-color: #fff;
    border: 0px;
}

.sidebar-nav {
    position: absolute;
    width: var(--sideBarWidthSizing);
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 15px;
}

.sidebar-nav li {
    line-height: 29px;
    margin: 15px 0;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #333333;
    border-left: 2px solid transparent !important;
}

.sidebar-nav li.active a {
    text-decoration: none;
    color: var(--theme_Color);
    background: rgb(247, 252, 248);
    border-right: var(--theme_Color) 2px solid !important;
    border-radius: 0px;
    font-weight: 600;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: var(--theme_Color);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav>.sidebar-brand {
    height: 65px;
    font-size: 18px;
    line-height: 60px;
}

.sidebar-nav>.sidebar-brand a {
    color: #999999;
}

.sidebar-nav>.sidebar-brand a:hover {
    color: #fff;
    background: none;
}

.gis-image-settings .gis-input-title {
    font-size: 14px;
    line-height: 21px;
    color: #4d5c74;
    margin: 10px 0;
}

.gis-image-settings .gis-checkbox-group {
    margin-top: 15px;
    font-size: 15px;
}

.gis-image-settings .gis-input-range::-webkit-slider-thumb {
    background: #15c69a;
}

.gis-image-settings .gis-input-range::-moz-range-thumb {
    background: #15c69a;
}

.gis-image-settings .gis-input-range::-ms-thumb {
    background: #15c69a;
}

-webkit-slider-thumb:active {
    background-color: red;
}

-webkit-slider-thumb,
.custom-range:focus::-webkit-slider-thumb,
.custom-range:focus::-moz-range-thumb,
.custom-range:focus::-ms-thumb {
    box-shadow: red;
}

.gis-checkbox-group label {
    padding-top: 5px;
}

.gis-image-settings input[type=checkbox] {
    margin-right: 5px;
}


/* Upload Progress */

.upload_progress_box {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.upload_spinner {
    display: flex;
    justify-content: center;
    grid-gap: 5px;
}

.upload_state_msg {
    color: grey;
    margin-bottom: 20px;
}


/* Drag Drop */

.gis-drag-drop {
    padding: 2px;
    height: 100%;
    background: #fff;
    overflow: hidden;
}

.drop-zone {
    max-width: 100%;
    height: calc(100% - 35px);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 2px dashed #007e5e;
    border-radius: 10px;
    margin: 20px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone_onerror {
    border-color: #ff303d;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

.drop-zone i {
    font-size: 40px;
    position: absolute;
    margin-bottom: 70px;
}

.drop-zone h3 {
    position: absolute;
    margin-top: 46px;
}


/* Main wrapper */


/* List page */

.noproduct_welcom img {
    width: 100%;
    max-width: 670px;
}

.gis-card {
    /*-webkit-box-shadow: 0px 0px 15px -12px rgba(0,0,0,0.75);
		-moz-box-shadow: 0px 0px 15px -12px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 15px -12px rgba(0,0,0,0.75);*/
    background: transparent;
    border: 0px;
    padding: 20px;
}

#page-content-wrapper.gis-page-content-wrapper {
    padding: 9px;
    overflow-y: hidden;
}

.gis-image-card {
    padding: 15px;
    cursor: pointer;
    padding-top: 6px;
    padding-top: 15px;
    border-radius: 7px;
    background: #fff;
    margin-bottom: 15px;
    -webkit-box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    -moz-box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.gis-image-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.gis-image-card p {
    font-size: 12px;
    color: #3e3e3e;
}

.gis-image-card button {
    background-color: transparent;
    border: none;
    color: #000;
    position: absolute;
    right: -15px;
    padding: 0;
    top: -15px;
    width: 50px;
    height: 50px;
}

.gis-image-card button::after {
    display: none;
}

.gis-image-card button:hover,
.gis-image-card button:active,
.gis-image-card button:focus {
    background-color: transparent;
    color: var(--theme_Color);
    box-shadow: none !important;
}

.gis-image-card .dropdown-menu {
    font-size: 13px;
    border: 1px solid rgba(187, 187, 187, 0.15);
    box-shadow: 0 1px 4px 0px #d0d0d0;
    padding: 0;
}

.gis-image-card .dropdown-item {
    padding: 10px 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.gis-image-card .dropdown-item:focus,
.gis-image-card .dropdown-item:active,
.gis-image-card .dropdown-item:hover {
    color: #fff;
    background-color: #008060;
    border-radius: 3px;
}

.gis-image-card .gis-img-status-active,
.gis-image-card .gis-img-status-inactive {
    height: 9px;
    width: 9px;
    border-radius: 50%;
    display: inline-block;
}

.gis-image-card .gis-img-status-active {
    background-color: #09f264;
}

.gis-image-card .gis-img-status-inactive {
    background-color: red;
}

.gis-profile-card {
    -webkit-box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    -moz-box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    border-radius: 7px;
    padding: 27px 19px;
    background: #fff;
}

.gis-profile-card span {
    font-weight: 501;
    font-size: 22px;
}

.gis-profile-card span::before {
    content: "";
    border: 1px solid #f00;
    height: 14px;
    display: inline-block;
    margin-right: 6px;
}

.gis-profile-card h6 {
    color: #8c938e;
    font-weight: 501;
    font-size: 13px;
    margin-top: 21px;
}

.gis-wrapper .gis-navlist i {
    color: #198754 !important;
}

.plan_txt {
    color: #8c938e;
}


/* Dashboard chart page */

@keyframes chartjs-render-animation {
    from {
        opacity: .99
    }
    to {
        opacity: 1
    }
}

.gis-analytics .chartjs-render-monitor {
    animation: chartjs-render-animation 1ms
}

.gis-analytics .chartjs-size-monitor,
.gis-analytics .chartjs-size-monitor-expand,
.gis-analytics .chartjs-size-monitor-shrink {
    position: absolute;
    direction: ltr;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
    z-index: -1
}

.gis-analytics .chartjs-size-monitor-expand>div {
    position: absolute;
    width: 1000000px;
    height: 1000000px;
    left: 0;
    top: 0
}

.gis-analytics .chartjs-size-monitor-shrink>div {
    position: absolute;
    width: 200%;
    height: 200%;
    left: 0;
    top: 0
}

.gis-analytics,
.gis-profile-details {
    padding: 23px 0;
    background-color: #fff;
    border-radius: 13px;
}

.gis-analytics {
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.gis-analytics-progress .box {
    width: 100%;
    padding: 25px 32px 50px;
}

.gis-analytics-progress .box h2 {
    display: block;
    text-align: center;
    color: #fff;
}

.gis-analytics-progress .box .chart {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 145px;
    height: 141px;
    color: #000;
}

.gis-analytics-progress .box canvas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.gis-analytics-progress {
    background: #fff;
    margin-top: 30px;
    border-radius: 11px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.gis-analytics-progress .gis-input-group,
.gis-interation-search {
    position: relative;
}

.gis-analytics-progress .gis-input-group i,
.gis-interation-search i {
    position: absolute;
    left: 12px;
    top: 11px;
}

.gis-page-title {
    font-weight: 500;
}

.gis-analytics-progress tr {
    cursor: pointer;
}

.gis-analytics-progress tr:hover {
    background: rgba(6, 131, 99, 0.1);
}

.table-borderless td,
.table-borderless th {
    border: none;
    vertical-align: middle;
}

.gis-analytics-progress table th {
    padding: 14px 6px !important;
    font-weight: 501;
    vertical-align: baseline;
}

.dataTables_length,
.dataTables_filter,
.dataTables_info {
    display: none;
}

.gis-analytics-progress #dataTable_paginate {
    float: right;
}

.gis-analytics-progress #dataTable_wrapper .paginate_button {
    padding: 2px 7px;
    border: 0px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.gis-analytics-progress #dataTable_wrapper .current {
    color: #fff;
    background-color: var(--theme_Color);
    border-color: var(--theme_Color);
}

.gis-analytics-progress table h6,
.gis-analytics-progress table .gis-image-date {
    font-weight: 501;
}

.gis-analytics-progress table .gis-image-date {
    color: #aaa8a8;
}

.gis-analytics-progress table>tbody>tr:hover {
    --bs-table-accent-bg: none;
}

.gis-analytics-progress table img {
    object-fit: contain;
    box-shadow: 0 0 2px 1px #d7d7d775;
    background-color: #f9f9f9;
}


/* Sign up */

.gis-signup-page .card-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

.gis-signup-page .card-bg video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
    border-radius: 13px;
}

.gis-signup-page .card-bg .card-text {
    position: absolute;
    top: 17%;
}

.gis-signup-page {
    width: 100%;
    overflow: hidden;
    padding: 10px;
    height: 100%;
}

.gis-signup-page p,
.gis-signup-page label,
.gis-signup-page a {
    font-size: 13px;
    text-decoration: none;
}

.gis-signup-page a {
    color: #0054d0;
}

.gis-signup-page input[type=text],
.gis-signup-page input[type=password],
.gis-signup-page input[type=email] {
    border-radius: 10px;
    box-shadow: none;
    ;
    height: 41px;
}

.gis-signup-page input:active,
.gis-signup-page input:focus {
    border-color: 1px solid rgba(0, 0, 0, 0.1);
}

.gis-signup-page button {
    background-color: var(--theme_Color);
    border-color: transparent;
    border-radius: 6px;
    font-size: 17px;
    padding: 12px;
}

.gis-signup-page button:hover,
.gis-signup-page button:focus {
    background-color: var(--theme_Color);
    border-color: var(--theme_Color);
    border: 1px solid transparent;
    box-shadow: 0 4px 7px -2px #0080607a;
    transition: 0.3s;
}

.gis-signup-page .card-bg img {
    height: 400px;
    margin: auto;
    display: block;
}

.login-signup-left {
    position: relative;
}

.login-signup-left .login-signup-content {
    position: relative;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}


/* Integration */

.gis-integration-card {
    height: auto;
    padding: 20px;
    border-radius: 7px;
    background: #fff;
}

.gis-integration-card:hover,
.gis-image-card:hover {
    box-shadow: 4px 13px 20px -10px rgba(25, 135, 84, 0.28);
    transition: transform .3s;
    transform: scale(1.05);
}

.gis-integration-card,
.gis-image-card,
.gis-drag-drop,
.gis-profile-details {
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
    border: 1px solid rgba(221, 221, 221, 0.2);
}

.gis-integration-card img {
    width: 120px;
    height: 37px;
    object-fit: fill;
}

.gis-integration-card p {
    font-size: 13px;
    color: #9d9c99;
}

.gis-integration-card h6 {
    color: var(--theme_Color);
}


/* Detail page */

.gis-product-slide img {
    width: 70px !important;
    margin: auto;
    height: 70px;
    object-fit: contain;
}

.gis-product-slide,
.gis-product-customization {
    background-color: #fff;
}

.gis-product-slide .item {
    padding: 6px;
    border: 2px solid rgba(221, 221, 221, 0.63);
    border-radius: 6px;
}

.gis-product-slide .item:hover,
.gis-product-slide .item.active {
    color: var(--theme_Color);
    border: 2px solid var(--theme_Color);
    box-shadow: 4px 13px 20px -10px rgba(25, 135, 84, 0.28);
}

.gis-product-customization .gis-input {
    background-color: #fff;
}

.gis-product-customization .form-check-input:checked {
    background-color: var(--theme_Color);
    border-color: var(--theme_Color);
}

.gis-product-customization .form-check-input {
    background-color: var(--theme_Color_light);
    border-color: var(--theme_Color_light);
}

.gis-product-customization .form-check-input:focus {
    border-color: transparent;
    box-shadow: none;
}

.gis-product-customization .form-check-input {
    width: 40px;
    height: 19px;
}

.gis-product-customization .gis-product-cus-title {
    padding: 15px 0;
    border-bottom: 1px solid #eae8e8;
}

.gis-product-customization label,
.gis-product-customization p {
    color: #716f6f;
}

.gis-product-customization .gis-copy-box {
    background-color: #22272d;
    color: #fff;
    position: relative;
    border-radius: 7px;
    box-shadow: 0 13px 18px -6px #2f343ac9;
}

.gis-product-customization #gis-copy-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    border-radius: 50%;
    padding: 2px 6px;
}

.gis-product-customization .hljs {
    background: transparent;
}

.gis-product-customization .hljs-punctuation,
.gis-product-customization .hljs-tag {
    color: #389edb;
}

.gis-product-customization .hljs-tag .hljs-attr,
.gis-product-customization .hljs-tag .hljs-name {
    color: #389edb;
}

.gis-product-customization .hljs-deletion,
.gis-product-customization .hljs-number,
.gis-product-customization .hljs-quote,
.gis-product-customization .hljs-selector-class,
.gis-product-customization .hljs-selector-id,
.gis-product-customization .hljs-string,
.hljs-template-tag,
.gis-product-customization .hljs-type {
    color: #7ab873;
}

.gis-product-slide .owl-nav,
.gis-product-slide .owl-dots {
    display: none;
}

.gis-copy-box .gis-dot-red,
.gis-copy-box .gis-dot-yellow,
.gis-copy-box .gis-dot-green {
    background-color: #09f264;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.gis-copy-box .gis-dot-green {
    background-color: #09f264;
}

.gis-copy-box .gis-dot-yellow {
    background-color: yellow;
}

.gis-copy-box .gis-dot-red {
    background-color: red;
}

.gis-copy-box p {
    padding: 8px 15px;
    background-color: #2f343a;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.gis-copy-box #gis-copy-text {
    padding: 28px 28px 41px;
    color: #5aa5e6;
}

.gis-copy-box h5 {
    font-size: 13px;
    color: #6c737b;
}

#gis-copy-text span {
    color: #52a855;
}

.datepicker table tr td,
.datepicker table tr th {
    text-align: center;
    width: 55px;
    height: 40px;
    border-radius: 4px;
    border: none;
}

.datepicker table tr td span:hover,
.datepicker table tr td span.focused,
.datepicker table tr td span.active.active,
.datepicker .datepicker-switch:hover,
.datepicker table tr td span.active:hover.active {
    background: #00806094;
    color: #fff;
    cursor: pointer;
}

.datepicker table tr td span {
    height: 34px;
    line-height: 33px;
    font-size: 13px;
}

.datepicker-dropdown.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-radius: .25rem;
    box-shadow: 0 0 22px -7px #00000030;
}

.gis-filterchart i {
    position: absolute;
    top: 30px;
    right: 30px;
    pointer-events: none;
    cursor: pointer;
    color: var(--theme_Color);
}

.gis-filterchart .gis-input {
    width: 120px;
    height: 38px;
    background-color: #fff;
    padding: 13px;
    font-size: 13px;
}

.gis-filterchart .gis-input:focus-visible {
    outline: none;
}

.gis-profile-details .gis-save-profile,
.gis-profile-details #gis-cancel-profile {
    width: 120px;
}

.gis-profile-details #gis-cancel-profile {
    border-color: var(--theme_Color);
    background: transparent;
    color: var(--theme_Color);
    font-size: 14px;
    padding: 8px 12px;
}

.gis-profile-details #gis-cancel-profile:hover {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
}

.gis-copied-text {
    float: right;
    position: absolute;
    right: 0;
    bottom: 10px;
    right: 15px;
    background-color: #fff;
    color: #000;
    padding: 3px 22px;
    border-radius: 7px;
    border-bottom-right-radius: 7px;
    font-size: 13px;
    border-bottom-right-radius: 0px;
    font-weight: 501;
}

.gis-profile-nav h6,
.gis-profile-nav p {
    font-size: 13px;
}

.thumbnail {
    background: #333;
    width: 35px;
    display: block;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 2.1;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.thumbnail:hover {
    color: #fff;
}

@media screen and (max-width: 767.98px) {
    .gis-profile-nav {
        display: none;
    }
    #menu-toggle {
        display: block;
        right: 6px;
        position: absolute;
        top: 17px;
    }
    #sidebar-wrapper {
        padding: 0;
    }
    .toggled #sidebar-wrapper {
        padding: 20px;
    }
    .toggled #sidebar-wrapper.gis-sidebar {
        padding: 20px 0;
    }
    .gis-navlist {
        margin-right: 28px;
    }
    .gis-navbar .gis-navlist {
        margin-right: 38px;
    }
    .gis-wrapper .gis-navlist {
        margin-right: 40px;
        margin-top: 9px;
    }
    .navbar-header {
        width: 185px;
    }
    .gis-btn-success,
    .gis-btn-dark,
    #menu-toggle {
        font-size: 12px;
        padding: 5px 8px;
    }
    .navbar {
        padding: 0.8rem 0.5rem;
    }
    .gis-btn-success {
        margin-right: 2px;
    }
    .drop-zone h3 {
        font-size: 17px;
    }
    .gis-wrapper .navbar {
        z-index: 9;
    }
    .gis-card {
        padding: 8px;
    }
    .navbar-logo {
        display: block !important;
    }
    .gis-signup-page .card-bg {
        display: none;
    }
    .gis-signup-page .card-body {
        padding: 0 45px !important;
    }
    .gis-analytics-progress table th {
        padding: 14px 3px !important;
        font-size: 13px;
    }
    .gis-analytics-progress table h6,
    .gis-analytics-progress table .gis-image-date {
        font-weight: 501;
        font-size: 12px;
    }
    .gis-analytics-progress table td {
        font-size: 12px;
    }
    .gis-analytics-progress table img {
        width: 30px;
        height: 30px;
    }
    .gis-page-title {
        font-size: 16px;
    }
    .gis-filterchart i {
        top: 19px;
        right: 19px !important;
    }
    #page-content-wrapper.gis-page-content-wrapper {
        overflow-y: unset;
    }
    .gis-profile-details #gis-cancel-profile {
        font-size: 12px;
        padding: 5px 8px;
    }
    .gis-profile-card {
        margin-top: 30px !important;
    }
}

@media screen and (max-width:992.98px) {
    .gis-signup-page .card-body {
        padding: 0 10px !important;
    }
    .gis-signup-page .card-bg img {
        height: 320px;
        width: 100%;
    }
    .gis-profile-details label {
        font-size: 13px;
    }
    .gis-profile-details.gis-edit-profile {
        margin-bottom: 20px;
    }
}

@media(min-width:768px) {
    #wrapper {
        padding-left: var(--sideBarWidthSizing);
    }
    #wrapper.gis-wrapper {
        padding-left: var(--basicsideBarWidthSizing);
    }
    .fixed-brand {
        width: 250px;
    }
    .gis-navbar .fixed-brand {
        width: 179px;
    }
    #wrapper.toggled {
        padding-left: 0;
    }
    #sidebar-wrapper {
        width: var(--sideBarWidthSizing);
    }
    #wrapper.toggled #sidebar-wrapper {
        width: var(--sideBarWidthSizing);
    }
    #sidebar-wrapper.gis-sidebar {
        width: var(--basicsideBarWidthSizing);
    }
    #wrapper.gis-wrapper.toggled #sidebar-wrapper {
        width: var(--basicsideBarWidthSizing);
    }
    #page-content-wrapper {
        padding: 20px;
        position: relative;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    #wrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
        padding-left: var(--sideBarWidthSizing);
    }
    #wrapper.gis-wrapper.toggled #page-content-wrapper {
        padding-left: var(--basicsideBarWidthSizing);
    }
    #sidebar-wrapper.gis-sidebar {
        width: var(--basicsideBarWidthSizing);
    }
    #wrapper.gis-wrapper {
        height: calc(100% - 64px) !important;
    }
    #page-content-wrapper.gis-page-content-wrapper {
        height: unset;
    }
}