.theme-color-text 
{
    color: #336699;
}

.color-frame
{
	border: solid 1px #336699;
    background: #336699;
    height: 100vh;
}

.login-frame
{
	border: solid 1px #ffffff;
	background: #ffffff;
    height: 100vh;
}

.content-frame
{
    box-shadow: inset 5px 0px 10px -2px #808080;
    min-height: 100vh;
}

.sidebar-frame
{
    min-height: 100vh;
    background: #ffffff;
    border: none;
    /*box-shadow: 10px 0 10px -2px #808080;*/
}

.sidebar-logo
{
    margin: 50px 0px;
}

.sidebar-logo img 
{
    width: 100px; 
    height: 100px; 
    object-fit: contain;
}

.sidebar-nav
{
    margin: 50px 5px;
}

.nav .sidebar-item
{
    font-size: 16px;
    color: #000000;
}

.nav .sidebar-item a
{
    color: #000000;
}

.nav .sidebar-item a:hover
{
    background: #000000;
    color: #ffffff;
}

.sidebar-item i
{
    margin-right: 10px;
}

.sidebar-item .dropdown-menu 
{
    width: 100%;
    border-top: 5px solid #000000;
    border-radius: 0;
}

.sidebar-item .dropdown-menu .dropdown-item a
{
    font-size: 16px;
    color: #000000;
}

.sidebar-item .dropdown-menu .dropdown-item a:hover
{
    background: #000000;
    color: #ffffff;
}

.topbar-nav
{
    background-color: #336699;
}

.top-notification a:hover
{
    color: #ffffff;
}

.top-notification .dropdown-menu 
{
    right: 0;
    left: auto;
    padding: 0;
}

.top-notification .dropdown-item
{
    padding: 10px 0;
}

.top-notification .dropdown-menu .divider
{
    margin: 0;
}

.shadow-box
{   
    /*height: 100px;*/
    background: #ffffff;
    border: 1px solid #808080;
    box-shadow: 3px 3px 3px 0px #808080;
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 5px;
}

.counter-box
{
    border: 1px solid #808080;
    padding: 15px 15px;
    border-radius: 5px;
}

.box-overflow {
    max-height: 150px;
    overflow-y: scroll;
}

.box-overflow::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.box-overflow::-webkit-scrollbar-thumb {
    background-color: #336699;
    border-radius: 10px;
    border: 3px solid #ffffff;
}

.box-overflow::-webkit-scrollbar {
    width: 10px;
}

.content-overflow
{
    height: 80px;
    overflow-y: hidden;
}

.title-overflow
{
    max-height: 35px;
    overflow-y: hidden;
}

.info-overflow /*Edit customer page*/
{
    max-height: 220px;
    overflow-y: auto;
}
.info-overflow::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.info-overflow::-webkit-scrollbar-thumb {
    background-color: #336699;
    border-radius: 10px;
    border: 3px solid #ffffff;
}

.info-overflow::-webkit-scrollbar {
    width: 10px;
}

.remark1-overflow {
    max-height: 550px;
    overflow-y: auto;
}

.remark1-overflow::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.remark1-overflow::-webkit-scrollbar-thumb {
    background-color: #336699;
    border-radius: 10px;
    border: 3px solid #ffffff;
}

.remark1-overflow::-webkit-scrollbar {
    width: 10px;
}

.notification-overflow {
    max-height: 500px;
    overflow-y: auto;
}

.notification-overflow::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.notification-overflow::-webkit-scrollbar-thumb {
    background-color: #336699;
    border-radius: 10px;
    border: 3px solid #ffffff;
}

.notification-overflow::-webkit-scrollbar {
    width: 10px;
}

.help-box 
{
    height: 200px;
    background: #ffffff;
    border: 1px solid #808080;
    box-shadow: 3px 3px 3px 0px #808080;
    padding: 25px;
    border-radius: 5px;
}

.help-box:hover, .help-box:focus
{
    color: #000000;
    background: #F2F2F2;
    text-decoration: none;
}

/*Table CSS*/
.thead-dark
{
	background-color: #336699;
	color: #ffffff;
}

.pagination-link 
{
    color: black;
    padding: 10px 10px 5px 10px;
}

.pagination-active
{
    color: #336699;
    border-bottom: 2px solid #336699;
}

.title-background
{
    background: #F2F2F2;
}

.detail_box
{
    display: block;
    width: 100%;
    height: 35px;
    padding: 5px 5px;
    background-image: none;
    border-top-style: solid;
    border-top-width: 0px;
    border-right-style: solid;
    border-right-width: 0px;
    border-bottom-color: #333;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-style: solid;
    border-left-width: 0px;
    border-radius: 0px;
}

input.form-control.input-sm {
    width: 500px !important;
}

/*MOBILE VIEW .col-xs-*/
@media only screen 
  and (min-device-width: 300px) 
  and (max-device-width: 767px) 
{ 

    .color-frame
    {
        height: 100vh;
    }

    .login-frame
    {
        height: 100vh;
    }

    .row-reverse {
        display: flex; 
        flex-direction: column-reverse;
    }

}

/*Tablet/landscape VIEW .col-sm-/.col-md-*/
@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1199px) 
{

    .color-frame
    {
        height: 100vh;
    }

    .login-frame
    {
        height: 800px;
    }

}

@media only screen 
  and (min-device-width: 300px) 
  and (max-device-width: 900px) 
{ 
    input.form-control.input-sm {
        width: 200px !important;
    }
}