/* 
    Document   : style
    Created on : Mar 9, 2015, 5:10:42 PM
    Author     : IT-PC-02
    Description:
        Purpose of the stylesheet follows.
*/
/*
theme-color: var(--theme-color);
sub-theme-color: #263850;
sub-theme-color2: #2ac8fc;
*/

@font-face {
    font-family: raleway-light;
    src: url(../../fonts/raleway-light.ttf);
}
@font-face {
    font-family: raleway-medium;
    src: url(../../fonts/raleway-medium.ttf);
}
@font-face {
    font-family: raleway-bold;
    src: url(../../fonts/raleway-semibold.ttf);
}
@font-face {
    font-family: roboto;
    src: url(../../fonts/roboto.ttf);
}

body{
    height: 100%;
    width: 100%;
    font-size: 13px;
    color: #555;
 font-family: roboto;
    /*font-family: raleway-medium;*/
    /*font-family: "Roboto Slab","Helvetica Neue",Helvetica,Arial,sans-serif;*/
}

h1,h2,h3,h4,h5,h6{
    /*font-family: raleway-bold;*/
    font-family: roboto;
}

a{
    cursor: pointer;
}

.sm-heading{
    margin-top: 10px;
    margin-bottom: 20px;
}

/*footer*/
.footer{
    top: 95%;
    position: absolute;
    height: 5%;
    /*border-top: 1px solid #eee;*/
    box-shadow: 0px -3px 3px #eee;
    /*background-color: #f2f8f9;*/
    margin-top: 10px;
    padding-top: 12px;
    padding-bottom: 10px;
    text-align: center;
}



/*general*/
.light-grey-sec{
    background-color: #f6f6f6;
    background-color: #f7f8fa;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 1px 1px 2px #eee;
    margin: 15px 0px;
}

.white-sec{
    background-color: #fff;
    padding: 10px;
    border-radius: 2px;
    /*box-shadow: 1px 1px 2px #eee;*/
    margin: 5px 0px;
}
.black-sec{
    background-color: #000;
    background-color: #263850;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 1px 1px 2px #eee;
    margin: 5px 0px;
    color: #fff;
}

.theme-border{
    border: 1px solid var(--theme-color);
    display: block;
}
.theme-title{
    color: var(--theme-color);
    font-weight: bold;
    padding: 5px 0px;
}
.theme-txt{
    color: var(--theme-color);
}
.sub-theme-txt{
    color: #263850;
}
.theme-sec{
    background-color: var(--theme-color);
    padding: 5px;
    /*border-radius: 2px;*/
    /*box-shadow: 1px 1px 1px var(--theme-color);*/
    margin: 5px 0px;
    color: #fff;
}
.sub-theme-sec{
    background-color: #263850;
    padding: 10px;
    border-radius: 2px;
    margin: 5px 0px;
    color: #fff;
}
.theme-bdr-left{
    border-left: 2px solid var(--theme-color);
}
.theme-bdr-right{
    border-right: 2px solid var(--theme-color);
}
.theme-bdr-bottom{
    border-bottom: 2px solid var(--theme-color);
}
.theme-bdr-top{
    border-top: 2px solid var(--theme-color);
}

.sub-theme-bdr-left{
    border-left: 2px solid #263850;
}
.sub-theme-bdr-right{
    border-right: 2px solid #263850;
}
.sub-theme-bdr-bottom{
    border-bottom: 2px solid #263850;
}
.sub-theme-bdr-top{
    border-top: 2px solid #263850;
}

.rose-bdr-left{
    border-left: 2px solid var(--theme-color);
}
.rose-bdr-right{
    border-right: 2px solid var(--theme-color);
}
.rose-bdr-bottom{
    border-bottom: 2px solid var(--theme-color);
}
.rose-bdr-top{
    border-top: 2px solid var(--theme-color);
}

.light-grey-bdr-left{
    border-left: 2px solid #7f8d96;
}
.light-grey-bdr-right{
    border-right: 2px solid #7f8d96;
}
.light-grey-bdr-bottom{
    border-bottom: 2px solid #7f8d96;
}
.light-grey-bdr-top{
    border-top: 2px solid #7f8d96;
}
.sm-txt{
    font-size: 10px;
}
.md-txt{
    font-size: 12px;
}
.lg-txt{
    font-size: 14px;
}
.xl-txt{
    font-size: 18px;
}
.black-txt{
    color: #000;
}
.white-txt{
    color: #fff;
}
.rose-border{
    border: 1px solid var(--theme-color);
}
.rose-title{
    color: var(--theme-color);
    font-weight: bold;
}
.rose-txt{
    color: var(--theme-color);
}
.rose-sec{
    background-color: var(--theme-color);
    color: #fff;
    padding: 3px;
    border-radius: 3px;
}
.btn-rose{
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
}
.btn-rose:hover{
    background-color: #fff;
    color: var(--theme-color);
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
}

.blue-border{
    border: 1px solid #0083ff;
}
.blue-title{
    color: #0083ff;
    font-weight: bold;
    margin-bottom: 15px;
}
.blue-txt{
    color: #0083ff;
}
.blue-sec{
    background-color: #0083ff;
    color: #fff;
    padding: 3px;
    border-radius: 3px;
}

.center-txt{
    text-align: center;
}
.right-txt{
    text-align: right;
}
.left-txt{
    text-align: left;
}
.justify-txt{
    text-align: justify;
}
.bold-txt{
    font-weight: bold;
}
.italic-txt{
    font-style: italic;
}
.important-field{
    color: #ff007f;
    /*font-size: 17px;*/
}


.txt-success{
    color: #5dea5d;
}

.txt-danger{
    color: #c90e9e;
}
.success-txt{
    color: #5dea5d;
}

.danger-txt{
    color: #c90e9e;
}

.crossed-txt{
    text-decoration: line-through;

}
.underline-txt{
    text-decoration: underline;
}

.data-enter-sec{
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 2px;
    box-shadow: 0.5px 0.5px 10px #eee;
    /*box-shadow: 1px 1px 15px #ddd;*/
}

.field-danger{
    border: 1px solid #ff006e;
    box-shadow: 0.5px 0.5px 5px #ff006e;
    transition: 0.5s;
}

.amount-col{
    text-align: right;
}
.btn-col{
    text-align: right;
}

.qty-col{
    text-align: center;
}

.light-txt{
    color: #7f8d96;
}
.hidden-elem{
    display: none;
}
.block-elem *{
    display: block;
}
.inline-elem *{
    display: inline;
}

.inline-block-elem{
    display: inline-block;
}
.hover-sec{
    cursor: pointer;
}
.no-padding{
    padding: 0px;
}
.no-margin{
    margin: 0px;
}
.lg-margin-bot, .lg-margin-top{
    margin-bottom: 20px;
}
.md-margin-bot, .md-margin-top{
    margin-bottom: 15px;
}
.sm-margin-bot, .sm-margin-top{
    margin-bottom: 10px;
}
.lg-padding-bot, .lg-padding-top{
    padding-bottom: 20px;
}
.md-padding-bot, .md-padding-top{
    padding-bottom: 15px;
}
.sm-padding-bot, .sm-padding-top{
    padding-bottom: 10px;
}

.input-grey{
    background-color: #eee;
    border:none;
    border-radius: 1px;
    box-shadow: none;
}
/*end general*/

/*admin user*/
.single-data-table td, th{
    padding-bottom: 7px;
    top: 7px;
    padding-left: 10px;
    padding-right: 20px;
}

.login-sec{
    padding-top: 30px;
    padding-bottom: 50px;
}
.login-header{
    margin-top: 15px;
    border-bottom: 1px solid #2197c5;
}
.login-header i{
    font-size: 20px;
}

.login-full-sec{
    text-align: center;
    /*vertical-align:middle;*/
    margin-top: 100px;
    /*box-shadow: 1px 2px 0px #888888;*/
    border-radius: 5px;
    color: #2197c5;


}

.login-full-sec strong{
    font-size: 30px;
    vertical-align: bottom;
    padding-left: 12px;
     font-family: roboto;
}

.inner-checkbox{
    padding-left: 50px;
    color: #9da3a5;
}

.pending_label{
    width: 16px;
    height: 16px;
    background-color: #eac02a;
    background-color: #f2f246;
    border-radius: 8px;
}

.processing_label{
    width: 16px;
    height: 16px;
    background-color: #228cc9;
    background-color: #16b0f7;
    border-radius: 8px;
}

.despatched_label{
    width: 16px;
    height: 16px;
    background-color: #3bdbdb;
    border-radius: 8px;
}

.canceled_label, .label-danger{
    width: 16px;
    height: 16px;
    background-color: #c90e9e;
    border-radius: 8px;
}

.finished_label, .label-success{
    width: 16px;
    height: 16px;
    background-color: #5dea5d;
    border-radius: 8px;
}

.closed_label{
    width: 16px;
    height: 16px;
    background-color: #f70707;
    border-radius: 8px;
}

.amount_col{
    text-align: right;
    /*width: 140px;*/
}
.amount-col-email{
    text-align: right;
    width: 150px;
}

.qty_col{
    text-align: center;
    /*width: 90px;*/
}
.qty-col-email{
    text-align: center;
    width: 90px;
}

.light-txt{
    color: #7f8d96;
}
.light-grey-link{
    color: #7f8d96;
}
.light-grey-link:hover{
    color: #555;
}
.input-light{
    background-color: #f7f8fa;
    border: 1px solid #e5e5e5;
    box-shadow: none;
    border-radius: 2px;
}
.bold-txt{
    font-weight: bold;
}


.title-theme{
    color: var(--theme-color);
}

.logo-txt{
    color: #2197c5;
    text-decoration: none;
}

.white-txt{
    color: #fff;
    text-decoration: none;
}
.white-link{
    color: #fff;
}
.white-link:hover{
    color: #ccc;
}

.txt-success{
    color: #5dea5d;
}

.txt-danger{
    color: #c90e9e;
}

.center-txt{
    text-align: center;
}

.md-margin-top{
    padding-top: 30px;
}

.md-margin-bottom{
    padding-bottom: 30px;
}

.copy-right-link{
    color: #fff;

}
.copy-right-link:hover{
    color: #2197c5;
    text-decoration: none;
}
.copy-right-link:active{
    color: #2197c5;
    text-decoration: none;
}

/*Dashboard*/
.chart-sec-dashboard{
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    /*background-color: #f2f2f2;*/
}

/*report*/
.report-sec{
    font-size: 12px;
}
.btn-bounce{
    background-color: #000;
    opacity: 0.6;
    color: #fff;
    width: 40px;
    position: absolute;
    left: 0;
    top: 500;
    z-index: 1;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.print-icon-menu a{
    padding: 5px;
    /*vertical-align: central;*/
    margin-top: 20px;
    font-size: 18px;
}
.print-icon-menu {
    margin-top: 8px;
}


.invoice-bill-print{
    width: 100%;
    font-size: 14px;
    margin-left: 0px;
    margin-right: 0px;
}

.invoice-bill-print .table{
    font-size: 14px;
}
.invoice-bill-print .table{
    font-size: 14px;
}
.invoice-bill-print table tr{
    page-break-before: always;
}

.invoice-bill-print .print-footer{
    font-size: 12px;
}

/*print*/

.txt-right{
    text-align: right;
}

.table-n-border td, .table-n-border th{
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 12px;
    padding-right: 12px;
}

.borderless td, .borderless th{
    border-top: none !important;

}

.order-td{
    /*background-color: #eee;*/
}

.bookorder-td, .report_option_11, .report_option_12, .report_option_13{
    background-color: #f7fdff;
    font-size: 10px;
    color: #888;
}
.invoiceorder-td, .report_option_14, .report_option_15{
    background-color: #fcf4fa;
    font-size: 10px;
    color: #888;
}
.shipment-td, .report_option_16, .report_option_17{
    background-color: #f4fcf6;
    font-size: 10px;
    color: #888;
}
.memo-td, .report_option_18, .report_option_19{
    background-color: #fefff7;
    font-size: 10px;
    color: #888;
}

/*category*/
.row-icon{
    font-size: 17px;
    color: #428bca;
    cursor: pointer;
}

.category-table a{
    color: #428bca;
}

.special-order, .special-order-o{
    color: #c90e9e;
    border-radius: 3px;
    width: 100px;
    padding: 2px 5px;
}
.special-order-o{
    border: 1px solid #c90e9e;
}
.normal-order, .normal-order-o{
    color: #38bdfa;
    border-radius: 3px;
    width: 100px;
    padding: 2px 5px;
}
.normal-order-o{
    border: 1px solid #38bdfa;
}

.btn-special-order{
    background-color: #FF4747;
    color: #fff;
}
.btn-special-order:hover{
    background-color: #fff;
    border: 1px solid #FF4747;
    color: #FF4747;
    transition: 1s;
    -o-transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
}

/*special order printing*/
.special-order-print {
    font-size: 12px;
    margin-left: -20px;
    margin-right: -20px;
}
.special-order-print .table{
    font-size: 12px;
}
.special-order-print .print-footer{
    font-size: 11px;
}
/*end special order printing*/

.discount-txt{
    color: #FF4747;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    /*background-color: #FF4747;*/

}

/*bootstrap cutom*/
.btn{
    border-radius: 1px;
}
.btn-primary{
    border: 1px solid var(--theme-color);
    /*background-color: var(--theme-color);*/
    /*background-image: linear-gradient(to right, var(--theme-color), #3ee6ea, #4bbeff, #55b3ea);*/
     background-image: linear-gradient(to right, var(--theme-color), var(--theme-color2));
    color: #fff;
    /*padding: 10px;*/
    /*border-radius: 1px;*/
}
.btn-primary:hover{
    border: 1px solid var(--theme-color);
    /*color: var(--theme-color);*/
    /*background-color: #fff;*/
        /*background-image: linear-gradient(to right, #55b3ea, #4bbeff, #3ee6ea, var(--theme-color));*/
         background-image: linear-gradient(to right, var(--theme-color), var(--theme-color2));
    text-decoration: none;

    transition: 1s;

}
.btn-primary-o{
    border: 1px solid var(--theme-color);
    background-color: #fff;
    color: var(--theme-color);
    /*padding: 10px;*/
    /*border-radius: 1px;*/
}
.btn-primary-o:hover{

    color: #fff;
    background-color: var(--theme-color);
    text-decoration: none;

    transition: 1s;

}


.btn-sub-primary{
    /*color: #f66548;*/
    color: #fff;
    /*font-weight:bold;*/
    background-color: #f66548;
    border: 1px solid #f66548;
    /*border-bottom: 2px solid #f66548;*/

    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;

}
a.btn-sub-primary{
    color: #fff;
}
.btn-sub-primary:hover{
    color: #f66548;
    /*background-color: #f66548;*/
    background-color: #fff;

    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;

}

.alert.alert-success{
    background-color: #263850;
    border: none;
    border-radius: 2px;
    color: #fff;
}
.alert.alert-danger{
    background-color: #c90e9e;
    background: rgba(242, 9, 118, 0.8);
    border: none;
    border-radius: 2px;
    color: #fff;
}
/*.alert.alert-success{
    background-color: #1AC8C6;
    background-color: #fff;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    font-size: 14px;
    text-align: center;
    padding: 10px;
}
.alert.alert-danger{
    background-color: #c90661;
    background-color: #fff;
    border: 2px solid #263850;
    color: #263850;
    font-size: 14px;
    text-align: center;
    padding: 10px;
}*/
/*end bootstrap cutom*/

/*miscellaneous stylings - diyan*/
.mini-header{
    margin-top: 5px;
}

.cart-total{
 font-family: roboto;
}

.price-font{
    font-size: 16px;
}

.small-popup-text{
    font-size: 14px;
    color: #f66948;
    font-style:italic;
}

/*chat button*/

.chat-button {
  position: fixed;
  /*bottom: 155px;*/
  /*right: 20px;*/
  right: 48%;
  bottom: 72px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999;
  text-decoration: none;
}

@media (max-width: 768px) {
  .chat-button {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

.chat-button img {
  width: 100%;
  height: 100%;
  border-radius: 99px;
}

.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3b30;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 5px 7px;
  line-height: 10px;
}
