/*----------------------------------
table of content
------------------------------------

01. type style
02. main structure style
03. left sidebar navigation style
04. reset styles
05. header styles
06. widget styles
07. calendar styles
08. sign in
09. form style
10. form wizard style
11. switch style
12. 404 error style
13. invoice
14. profile style
15. custom chart style

----------------------------------*/
/*----------------------------------
type style
----------------------------------*/

/* .polotno-side-panel {
    width: 22rem !important;
} */

/* .bp4-navbar {
    height: 70px !important;
} */

.navbar-height{
    height: 70px !important;
}

.polotno-panel-container {
    /* border: 1px dashed red; */
    overflow-y: scroll;
    /* width: 250px !important; */
}

.collapsed{
    width: auto !important;
}


body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
}

body.app {
    background: #f3f6f9;
}

a,
a:hover {
    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    outline: 0;
}

a.default-color,
a.default-color:hover,
.default-color a,
.default-color a:hover {
    text-decoration: none;
}

a.default-color:hover,
.default-color a:hover,
a.gray-color:hover,
.gray-color a:hover {
    color: #6b5981;
}

a.gray-color,
.gray-color a {
    color: #bab8c3;
}

.btn {
    cursor: pointer;
    font-size: 14px;
}

.btn-lg {
    font-size: 18px;
}

.btn-sm {
    font-size: 12px;
}

button,
button:focus,
button:hover {
    outline: 0;
}

strong {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6,
.default-color,
.default-color a {
    color: #000000;
    font-weight: 600 !important;
}

.breadcrumb {
    background: transparent;

    font-size: 12px;
}

/*----------------------------------
main structure style
----------------------------------*/
.app {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    flex-direction: column;
    min-height: 100vh;

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
}

.app-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    overflow-x: hidden;
            flex-direction: row;

    -webkit-box-direction: normal;
    -webkit-box-flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    -ms-flex-positive: 1;
}
.app-body .left-sidebar {
            flex: 0 0 250px;
            z-index: 1001;

    -webkit-box-flex: 0;
    -webkit-box-ordinal-group: 0;
    -webkit-flex: 0 0 250px;
        -ms-flex: 0 0 250px;
    -ms-flex-order: -1;
    -webkit-order: -1;
            order: -1;
}
.app-body .main-content {
            flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
}
.app-body .right-sidebar {
            flex: 0 0 250px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 250px;
        -ms-flex: 0 0 250px;
}

.main-content,
.app-header,
.app-footer,
.left-sidebar,
.right-sidebar {
    -webkit-transition-duration: .25s, .25s;
            transition-duration: .25s, .25s;
    -webkit-transition-property: margin-left, margin-right;
            transition-property: margin-left, margin-right;
}



.header-fixed .app-header {
    position: fixed;
    z-index: 1001;
    background-color: #2c303b;
    width: 100%;
}

.header-fixed .app-body {
    margin-top: 80px;
    background: #d4d7e0;
}

body.bp4-overlay-open {
    overflow: hidden !important;
}


header.navbar {
    position: relative;
    flex-direction: row;
    height: 80px;
    padding: 0;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
}
header.navbar .navbar-nav {
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-align: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
}
header.navbar .navbar-brand {
    display: inline-block;
    width: 20%;
    height: 80px;
    margin-right: 0;
    padding: 1rem 1.5rem;
}
header.navbar .nav-item {
    position: relative;
    min-width: 60px;
    margin: 0;
    text-align: center;
}

.left-sidebar .sidebar-menu {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    width: 250px;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}


.left-sidebar-hidden .left-sidebar {
    margin-left: -250px;
}

.left-sidebar-fixed.left-sidebar-hidden .main-content,
.left-sidebar-fixed.left-sidebar-hidden .app-footer {
    margin-left: 0;
}

.left-sidebar-fixed .left-sidebar .sidebar-menu {
    height: calc(100vh - 60px);
}

.right-sidebar {
    z-index: 999;
    width: 250px;
    padding: 20px;

    color: #384042;
    border-left: 1px solid #e5e9ec;
    background: #fff;
}
.right-sidebar .widget {
    margin-bottom: 30px;
}
.right-sidebar .widget-title {
    font-size: 14px;
    font-weight: bold;
}
.container-fluid{
    padding-right: 28px;

}

.right-sidebar-fixed .main-content,
.right-sidebar-fixed .app-footer {
    margin-right: 250px;
}

.right-sidebar-overlay .main-content,
.right-sidebar-overlay .app-footer {
    margin-right: 0;
}

.right-sidebar-fixed .right-sidebar {
    position: fixed;
    right: 0;

    overflow-y: scroll;

    height: 100%;
    padding-bottom: 100px;
}

.right-sidebar-hidden .right-sidebar {
    margin-right: -250px;
}

.app-footer {
    min-height: 50px;
    padding: 0 1rem;

    color: #45567c;
    background: #fff;
    box-shadow: 0 1px 10px 1px rgba(115, 108, 203, .1);

    font-size: 12px;
    line-height: 50px;
    z-index: 1002;
}
.app-footer .back-top {
    text-decoration: none;

    color: #a6b2cd;

    font-size: 24px;
}
.app-footer .back-top:hover {
    color: #45567c;
}
.nav.nav-tabs .nav-link, .nav.nav-pills .nav-link {
    color: #292b2c;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.app-header .navbar-nav .dropdown-menu {
    min-width: 300px;
    margin: 1.5rem 0 0;
    border: none;
    box-shadow: 0 10px 70px 0 rgb(108 158 195 / 25%);
}
.app-header .navbar-nav .dropdown-menu-right {
    right: -12px;
    left: auto;
}
.app-header .navbar-nav .dropdown-menu-accout {
    right: -25px;
}
.app-header .navbar-nav .dropdown-menu .dropdown-header {
    margin-bottom: 8px;
    color: #45567c;
    border-bottom: 1px solid #e5e9ec;
    font-size: 15px;
}
.app-header .navbar-nav .dropdown-menu .dropdown-item {
    /* padding: 10px 1.5rem; */
    color: #3c4b6c;
    font-size: 14px;
}
.app-header .navbar-nav .dropdown-menu .dropdown-item i {
    padding-right: 15px;
}
.dropdown-slide .dropdown-menu {
    position: absolute !important;
    display: block;
    visibility: hidden;
    -webkit-transition: visibility .2s, opacity .2s, -webkit-transform 500ms cubic-bezier(.43, .26, .11, .99);
    transition: visibility .2s, opacity .2s, -webkit-transform 500ms cubic-bezier(.43, .26, .11, .99);
    transition: visibility .2s, opacity .2s, transform 500ms cubic-bezier(.43, .26, .11, .99);
    transition: visibility .2s, opacity .2s, transform 500ms cubic-bezier(.43, .26, .11, .99), -webkit-transform 500ms cubic-bezier(.43, .26, .11, .99);
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}
.dropdown-slide.show .dropdown-menu.show {
    display: block;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
.app-header .navbar-nav .dropdown-menu:after {
    position: absolute;
    top: -12px;
    right: 30px;
    clear: both;
    width: 0;
    height: 0;
    content: "";
    border-right: 12px solid transparent;
    border-bottom: 12px solid #fff;
    border-left: 12px solid transparent;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }
}

/*----------------------------------
left sidebar navigation style
----------------------------------*/
.sidebar-menu ul li {
    position: relative;

    font-weight: 400;
}

#nav-accordion {
    margin-top: 20px;
    padding: 10px 15px;
}

.nav-collapse.collapse {
    display: inline;
}

.left-sidebar {
    color: #fff;
    background: #282a39;
}
.left-sidebar .nav-title {
    margin-top: 15px;
}
.left-sidebar .nav-title h5 {
    margin-bottom: 10px;

    letter-spacing: 1px;

    opacity: .3;
    color: #fff;

    font-size: 11px;
}

.sidebar-menu ul li a.active,
.sidebar-menu ul li a:hover,
.sidebar-menu ul li a:focus {
    display: block;

    -webkit-transition: all .3s ease;
            transition: all .3s ease;

    color: #fff;
    background: #181a23;
}

.sidebar-menu ul li a i {
    padding-right: 6px;
    font-size: 15px;
}
.sidebar-menu ul,
.sidebar-menu ul li ul.sub {
    margin: 0 0 0;
    padding: 0;

    list-style: none;
}

.sidebar-menu > ul > li > ul.sub {
    display: none;
}

.sidebar-menu > ul > li.active > ul.sub,
.sidebar-menu > ul > li > ul.sub > li > a {
    display: block;
}

.sidebar-menu ul li a {
    display: block;

    padding: 5px 0 5px 10px;

    -webkit-transition: all .3s ease;
            transition: all .3s ease;
    text-decoration: none;

    color: #9c9ea7;
    outline: none;

    font-size: 13px;
    line-height: 15px;
}

.sidebar-menu ul li.sub-menu {
    line-height: 15px;
}

.sidebar-menu ul li a span {
    display: inline-block;
    letter-spacing: 0.1px;
}

.sidebar-menu ul li ul.sub li {
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;

    background: #181a23;
}

.sidebar-menu ul li ul.sub li a {
    height: 40px;
    padding: 6px 0;

    -webkit-transition: all .3s ease;
            transition: all .3s ease;

    color: #9c9ea7;

    font-size: 13px;
    line-height: 30px;
}

.sidebar-menu ul li ul.sub li a:hover,
.sidebar-menu ul li ul.sub li.active a {
    display: block;

    -webkit-transition: all .3s ease;
            transition: all .3s ease;

    opacity: 1;
    color: #fff;
    background: transparent;
}

.left-sidebar-light .left-sidebar {
    color: #53505f;
    background: #252830;
}

.left-sidebar-light .sidebar-menu ul li a,
.left-sidebar-light .left-sidebar .nav-title h5 {
    color: #53505f;
}

.left-sidebar-light .sidebar-menu ul li a.active,
.left-sidebar-light .sidebar-menu ul li a:hover,
.left-sidebar-light .sidebar-menu ul li a:focus,
.left-sidebar-light .sidebar-menu ul li.active a {
    color: #6b5981;
    background: transparent;
}

.left-sidebar-light .sidebar-menu ul li ul.sub li a {
    color: #85828d;
}

.left-sidebar-light .sidebar-menu ul li ul.sub li.active a,
.left-sidebar-light .sidebar-menu ul li ul.sub li a:hover,
.left-sidebar-light .sidebar-menu ul li ul.sub li.active a {
    color: #6b5981;
}

.left-sidebar-light .sidebar-menu ul li ul.sub li {
    background: #fff;
}

.left-sidebar-light .app-header.text-light .navbar-nav .nav-link {
    opacity: .6;
    color: #fff;
}
.left-sidebar-light .app-header.text-light .navbar-nav .nav-link:hover {
    opacity: 1;
}

.left-sidebar-light-alt .sidebar-menu ul li a,
.left-sidebar-light-alt .left-sidebar .nav-title h5 {
    margin: 0 15px;
    color: #adacb1;
}

.left-sidebar-light-alt .sidebar-menu ul li ul.sub li.active a,
.left-sidebar-light-alt .sidebar-menu ul li ul.sub li a:hover,
.left-sidebar-light-alt .sidebar-menu ul li ul.sub li.active a {
    color: #ff518a;
}

.left-sidebar-light-alt .left-sidebar .nav-title {
    margin-top: 10px;
    margin-bottom: 10px;
}
.left-sidebar-light-alt .left-sidebar .nav-title h5{
    color: #fff;
    opacity: 1;
    font-size: 13px;;
}

.left-sidebar-light-alt .left-sidebar .sidebar-menu {
    width: 250px;
}

.left-sidebar-light-alt.left-sidebar-fixed .app-footer {
    margin-left: 0;
    z-index: 1111;
}

.left-sidebar-light-alt.left-sidebar-fixed .left-sidebar .sidebar-menu {
    height: calc(100vh - 100px);
}

@media (max-width: 991px) {
    .left-sidebar-light-alt.left-sidebar-fixed .left-sidebar {
        left: 0;
    }
}


@media (max-width: 991px) {
    .d-md-down-none {
        display: none !important;
    }
}
.btn:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-menu {
    margin: .5rem 0 0;

    border: none;
    box-shadow: 0 10px 70px 0 rgba(108, 158, 195, .25);

    font-size: 14px;
}
/*----------------------------------
header styles
----------------------------------*/
.navbar .nav-item .nav-link.nav-pill.user-avatar {
    margin-left: 20px;
}

.navbar .nav-item .nav-link.nav-pill.user-avatar img,
.navbar .nav-item .nav-pill.user-avatar.dropdown-toggle img {
    width: 35px;
    height: 35px;
    margin: 0;

    border: 0;
    border-radius: 50%;
}

.navbar-nav .navbar-toggler {
    color: #45567c;
}

.app-header .navbar-nav .nav-link {
    color: #45567c;
}
.app-header .navbar-nav .nav-link i {
    font-size: 18px;
}
@media (max-width: 991px) {
    .app-header .navbar-brand {
        position: absolute;
        text-align: center;
    }
    .text-light .navbar-nav .navbar-toggler {
        color: #fff;
    }
}
.nav-link.search-toggle {
    position: relative;
    top: 2px;
    line-height: normal;
}
