@font-face {
  font-family: Roboto-Condensed-Light;
  src: url(fonts/Roboto_Condensed/RobotoCondensed-Light.ttf);
}

@font-face {
    font-family: Roboto-Condensed;
    src: url(fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf);
}

@font-face {
    font-family: Roboto-Condensed-Bold;
    src: url(fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf);
}

/*** COLORS ***/
.text-white { color: #FFF;}
.text-red { color: #de1e35;}
.text-pink { color: #FFE4DF;}
.text-green { color: #0c534c;}
.text-blue { color: #237598;}

.text-light-green { color: #7BBA6C;}

.bg-white { background: #FFF;}
.bg-red { background: #de1e35;}
.bg-pink { background: #FFE4DF;}
.bg-green { background: #0c534c;}
.bg-blue { background: #237598;}

.bg-light-gray { background: #e5e5e5;}
.bg-light-green { background: #f1f3f4;}
.bg-light-blue { background: #CAF7FF;}

.table-success {
    background: #B1F49E !important;
    -webkit-transition: background-color 0.5s ease !important;
    -ms-transition: background-color 0.5s ease !important;
    transition: background-color 0.5s ease !important;
}

.btn-success {
	background: #0c534c !important;
	border: 1px solid #0c534c;
}

.btn-success:hover {
	background: #24755D !important;
	border: 1px solid #24755D;
}

.btn-primary {
    background: #0f387c !important;
	border: 1px solid #0f387c;
}

.btn-primary:hover {
    background: #62A9CE !important;
	border: 1px solid #62A9CE;
}

.btn-danger {
    background: #c51718 !important;
	border: 1px solid #c51718;
}

.btn-danger:hover {
    background: #FF464D !important;
	border: 1px solid #FF464D;
}

.form-check-input:checked {
    background-color: #0f387c;
    border-color: #0f387c;
}

/***HEADINGS***/
h1 {
    font-family: 'Roboto-Condensed-Bold', sans-serif;
    font-size: 19px;
    border-bottom: 1px solid #CCC;
    text-transform: uppercase;
}

h3 { 
    font-family: 'Roboto-Condensed-Bold', sans-serif;
    font-size: 19px;
    border-bottom: 1px solid #CCC;
    text-transform: uppercase;
}

/*** PAGE FRONTPAGE ***/
.page-admin-frontpage {
    padding: 0px 50px 0px 50px;
}

/*** ADMIN SIDE MENU ***/
.admin-side-menu {
    min-height: 100vh;
    padding-top: 20px;
    background: #FFF;
}

.admin-sidemenu-logo {
    display: block;
    height: 60px;
}

.admin-sidemenu-logo img {
    width: 90%;
    height: auto;
    border: none;
}

.admin-sidemenu-main-cat {
    display: block;
    /*padding-top: 10px;*/
    font-size: 16px;
    font-weight: bold;;
}

.admin-sidemenu-main-cat i {
    padding-right: 5px;
}

.admin-sidemenu-main-cat a:link, .admin-sidemenu-main-cat a:visited {
    color: #000;
    text-decoration: none;
}

.admin-sidemenu-main-cat a:hover {
    color: #24755D;
    text-decoration: underline;
}

.admin-sidemenu-sub-cat {
    display: block;
    padding: 2px 0 2px 20px;
    font-size: 14px;
}

.admin-sidemenu-sub-cat i {
    padding-right: 3px;
}

.admin-sidemenu-sub-cat a:link, .admin-sidemenu-sub-cat a:visited {
    color: #666;
    text-decoration: none;
}

.admin-sidemenu-sub-cat a:hover {
    color: #24755D;
    text-decoration: underline;
}

.admin-sidemenu-active, .admin-sidemenu-active a:link, .admin-sidemenu-active a:visited, .admin-sidemenu-active a:active { color: #de1e35;}

/*** TABLE ***/
table {
    font-size: 14px;
}

th {
    color: #237598 !important;
}

/*** ADMIN PAGE CONTENT ***/
.products-filters {
    padding-top: 20px;
}

.admin-page-content {
    min-height: 101vh;
    padding-top: 30px;
}

.admin-page-content .card-body {
    padding-bottom: 0;
}

.products-outer-card {
    margin-top: 10px;
}

.products-outer-card .card-header {
    font-size: 14px;
    font-weight: bold;
}

.table-loading-row {
    height: 50px;
    line-height: 50px;
}

.related-table-loading-row {
    display: none;
    height: 50px;
    line-height: 50px;
}

.related-all-table-loading-row {
    display: none;
    height: 50px;
    line-height: 50px;
}

.no_results {
    color: #CCC;
    height: 50px;
    line-height: 50px;
}

#btn_add_new_product {
    position: absolute;
    top: 3px;
    right: 3px;
}

.admin-product-avatar {
    width: 80px;
    height: auto;
    border: 1px solid #CCC;
    cursor: pointer;
}

.product_name_print {
    font-family: 'Roboto-Condensed-Bold', sans-serif;
    cursor: pointer;
    
}

.product_name_print:hover {
    color: #237598;
    text-decoration: underline;
}

.product_code_print {
    display: block;
    padding-left: 10px;
    font-size: 14px;
    color: #666;
}

.product_cat_print {
    display: block;
    font-size: 12px;
    color: #666;
}

.product_price_old {
    display: block;
    font-size: 13px;
    color: #CCC;
    text-decoration: line-through;
}

.product_price_new {
    display: block;
    font-size: 14px;
    color: #de1e35;
}

.transl_flag {
    display: block;
    font-size: 13px;
    color: #666;
}

.transl_flag img {
    width: 16px;
    height: auto;
    border: none;
}

.btn-edit {
    padding: 2px 4px 2px 4px !important;
    font-size: 10px;
}