/* Import google font lato */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Font classes */
.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* Bootstrap overide */
.form-control {
    border-radius: 50px;
    border: 1px solid rgba(48, 48, 48, 0.56);
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.form-select {
    border-radius: 50px;
    border: 1px solid rgba(48, 48, 48, 0.56);
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.rad-normal {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}


.form-control:focus,.form-control:active {
    border-color: #28a781;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-select:focus,.form-select:active {
    border-color: #28a781;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.rad {
    border-radius: 50px;
    border: 1px solid rgba(48, 48, 48, 0.56);
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}

.rad:focus,.rad:active {
    border-color: #28a781;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.btn {
    border-radius: 50px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.btn-primary {
    background-color: #28a781;
    border-color : #28a781;
}
.btn-primary:hover {
    background-color: rgb(36, 150, 116);
    border-color : rgb(36, 150, 116);
}
.btn-primary:active {
    background-color: rgb(31, 131, 101) !important;
    border-color : rgb(31, 131, 101) !important;
}

.btn-dd-primary {
    background-color: #28a781 !important;
    background-color: #28a781 !important;
}

body {
    height: 100%;
    content: "";
    clear: both;
    box-sizing: border-box;
    background-color: rgb(23, 134, 101);
}

.login-wrapper {
    height: 100vh !important;
    background-color: #28a781;
}

.login-container {
    min-width: 250px;
    max-width: 350px;
    width: 100%;
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 12px;
    background-color: #fff;
}
.header {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 12px;
}
.nav-menu-icon {
    font-size: 1.5rem;
}
.wrapper {
    display: flex;
    flex-direction: row;
    height: 100vh;
}
.sidebar-container {
    position: fixed;
    height: 100%;
    margin-left: -550px;
    transition: margin 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.sidebar-container.show {

    margin-left: 0px;
    z-index: 9999;
    transition: margin 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.sidebar {
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    background-color: rgba(255,255 ,255, 1);
    color: #363636;
}

.nav-item span {
    font-size: 1.5rem;
}
.nav-link {
    color: #363636;
    text-decoration: none;
}
.nav-pills .nav-link {
    border-radius: 12px;
}
.nav-link:hover {
    background-color: #363636;
    color: #fff;

}

/* .nav-link:focus {
    color: #363636;
} */

.userinfo {
    color: #363636;
}
.main-content {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0px;
    transition: margin 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.row-content {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 12px;
}
/* .cs-container {
    padding: 25px 0;
} */
.content-section {

    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    background-color: rgba(255,255 ,255, 1);
    color: #363636;
}

.card-custom {
    border-radius: 12px;
    /* border: 1px solid rgba(48, 48, 48, 0.56); */
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
    height: 100%;
}
.rad-label {
    border: 1px solid rgba(48, 48, 48, 0.56);
    width: 100%;
    border-radius: 50px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 1.3rem;
    padding-right: 1.3rem;
}
.file-rad {
    cursor: pointer;
}
.file-rad:hover.rf-primary {
    /* background-color: rgb(36, 150, 116); */
    /* border-color : rgb(36, 150, 116); */
    border-color: #28a781;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.row-card-box {
    max-width: 100%;
    width: 100%;
    display: flex;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border-radius: 12px;
}

.row-card-box.cb-sm {
    max-height: 200px;
    height: 200px;
    min-height: 200px;
}


/* .table-responsive,
.dataTables_scrollBody {
    overflow: visible !important;
} */
@media (min-width: 576px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .sidebar-container {
        max-width: 350px;
        min-width: 350px;
        width: 350px;
        display: block;
        margin-left: 0px;
    }
    .main-content {
        width: calc(100% - 350px);
        margin-left: 350px;
    }
    .nav-toggler span {
        display: none;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {}
