/*------------------------------------------------------------------

[Master Stylesheet]



Project    	: Aether

Version		: 1.0

Last change	: 2015/03/27

-------------------------------------------------------------------*/

/*------------------------------------------------------------------

[Table of contents]



1. General Structure

2. Anchor Link

3. Text Outside the Box

4. Main Form

5. Login Button

6. Form Invalid

7. Form - Main Message

8. Custom Checkbox & Radio

9. Misc

-------------------------------------------------------------------*/

/*=== 1. General Structure ===*/

@font-face {
    font-family: myGramaticaBlack;
    src: url(../fonts/Gramatika-Black.ttf);
  }

html,

body {

    /* background: #efefef;*/

    background: #FFFFFF;

    

    font-family: 'Varela Round';

}

/*=== 2. Anchor Link ===*/

a {

    color: #aaaaaa;

    transition: all ease-in-out 200ms;

}

a:hover {

    color: #333333;

    text-decoration: none;

}

/*=== 3. Text Outside the Box ===*/

.etc-login-form {

    color: #919191;

    padding: 10px 20px;

}

.etc-login-form p {

    margin-bottom: 5px;

}

/*=== 4. Main Form ===*/

.login-form-1 {

    max-width: 300px;

    border-radius: 5px;

    display: inline-block;

}

.main-login-form {

    position: relative;

}

.login-form-1 .form-control {

    border: 0;

    box-shadow: 0 0 0;

    border-radius: 0;

    background: transparent;

    color: #555555;

    padding: 7px 0;

    font-weight: bold;

    height:auto;

    text-align: center;

}

.login-form-1 .form-control::-webkit-input-placeholder {

    color: #999999;

}

.login-form-1 .form-control:-moz-placeholder,

.login-form-1 .form-control::-moz-placeholder,

.login-form-1 .form-control:-ms-input-placeholder {

    color: #999999;

}

.login-form-1 .form-group {

    margin-bottom: 0;

    border-bottom: 2px solid #efefef;

    padding-right: 20px;

    position: relative;

}

.login-form-1 .form-group:last-child {

    border-bottom: 0;

}

.login-group {

    background: #FFFFFF;

    color: #999999;

    border-radius: 8px;

    padding: 10px 20px;

    border-radius: 50px 10px 10px 50px !important;

}

.login-group-checkbox {

    padding: 5px 0;

}

/*=== 5. Login Button ===*/

.login-form-1 .login-button {

    position: absolute;

    right: -25px;

    top: 50%;

    background: #ffffff;

    color: #999999;

    padding: 11px 0;

    width: 50px;

    height: 50px;

    margin-top: -25px;

    border: 5px solid #efefef;

    border-radius: 50% !important;

    transition: all ease-in-out 500ms;

}

.login-form-1 .login-button:hover {

    color: #555555;

    transform: rotate(450deg);

}

.login-form-1 .login-button.clicked {

    color: #555555;

}

.login-form-1 .login-button.clicked:hover {

    transform: none;

}

.login-form-1 .login-button.clicked.success {

    color: #2ecc71;

}

.login-form-1 .login-button.clicked.error {

    color: #e74c3c;

}

/*=== 6. Form Invalid ===*/

label.form-invalid {

    position: absolute;

    top: 0;

    right: 0;

    z-index: 5;

    display: block;

    margin-top: -25px;

    padding: 7px 9px;

    background: #777777;

    color: #ffffff;

    border-radius: 5px;

    font-weight: bold;

    font-size: 11px;

}

label.form-invalid:after {

    top: 100%;

    right: 10px;

    border: solid transparent;

    content: " ";

    height: 0;

    width: 0;

    position: absolute;

    pointer-events: none;

    border-color: transparent;

    border-top-color: #777777;

    border-width: 6px;

}

/*=== 7. Form - Main Message ===*/

.login-form-main-message {

    background: #ffffff;

    color: #999999;

    border-left: 3px solid transparent;

    border-radius: 3px;

    margin-bottom: 8px;

    font-weight: bold;

    height: 0;

    padding: 0 20px 0 17px;

    opacity: 0;

    transition: all ease-in-out 200ms;

}

.login-form-main-message strong{

    color: #000;

    font-weight: 700;

    font-size: 14px;

}

.login-form-main-message.show {

    height: auto;

    opacity: 1;

    padding: 10px 20px 10px 17px;

}

.login-form-main-message.success {

    /*border-left-color: #2ecc71;*/

}

.login-form-main-message.error {

    border-left-color: #e74c3c;

}

/*=== 8. Custom Checkbox & Radio ===*/

/* Base for label styling */



[type="checkbox"]:not(:checked) + label,

[type="checkbox"]:checked + label,

[type="radio"]:not(:checked) + label,

[type="radio"]:checked + label {

    position: relative;

    padding-left: 25px;

    padding-top: 1px;

    cursor: pointer;

}

/* checkbox aspect */

[type="checkbox"]:not(:checked) + label:before,

[type="checkbox"]:checked + label:before,

[type="radio"]:not(:checked) + label:before,

[type="radio"]:checked + label:before {

    content: '';

    position: absolute;

    left: 0;

    top: 2px;

    width: 17px;

    height: 17px;

    border: 0px solid #aaa;

    background: #f0f0f0;

    border-radius: 3px;

    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);

}

/* checked mark aspect */

[type="checkbox"]:not(:checked) + label:after,

[type="checkbox"]:checked + label:after,

[type="radio"]:not(:checked) + label:after,

[type="radio"]:checked + label:after {

    position: absolute;

    color: #555555;

    transition: all .2s;

}

/* checked mark aspect changes */

[type="checkbox"]:not(:checked) + label:after,

[type="radio"]:not(:checked) + label:after {

    opacity: 0;

    transform: scale(0);

}

[type="checkbox"]:checked + label:after,

[type="radio"]:checked + label:after {

    opacity: 1;

    transform: scale(1);

}

/* disabled checkbox */

[type="checkbox"]:disabled:not(:checked) + label:before,

[type="checkbox"]:disabled:checked + label:before,

[type="radio"]:disabled:not(:checked) + label:before,

[type="radio"]:disabled:checked + label:before {

    box-shadow: none;

    border-color: #8c8c8c;

    background-color: #878787;

}

[type="checkbox"]:disabled:checked + label:after,

[type="radio"]:disabled:checked + label:after {

    color: #555555;

}

[type="checkbox"]:disabled + label,

[type="radio"]:disabled + label {

    color: #8c8c8c;

}

/* accessibility */

[type="checkbox"]:checked:focus + label:before,

[type="checkbox"]:not(:checked):focus + label:before,

[type="checkbox"]:checked:focus + label:before,

[type="checkbox"]:not(:checked):focus + label:before {

    border: 1px dotted #f6f6f6;

}

/* hover style just for information */

label:hover:before {

    border: 1px solid #f6f6f6 !important;

}

/*=== Customization ===*/

/* radio aspect */

[type="checkbox"]:not(:checked) + label:before,

[type="checkbox"]:checked + label:before {

    border-radius: 3px;

}

[type="radio"]:not(:checked) + label:before,

[type="radio"]:checked + label:before {

    border-radius: 35px;

}

/* selected mark aspect */

[type="checkbox"]:not(:checked) + label:after,

[type="checkbox"]:checked + label:after {

    content: '✔';

    top: 0;

    left: 2px;

    font-size: 14px;

}

[type="radio"]:not(:checked) + label:after,

[type="radio"]:checked + label:after {

    content: '\2022';

    top: 0;

    left: 3px;

    font-size: 30px;

    line-height: 25px;

}

/*=== 9. Misc ===*/

.logo {

    padding: 15px 0 0 0;

    font-size: 20px;

    color: #aaaaaa;

    font-weight: bold;
    
    text-align: center;
    
    /* margin-bottom: 20px; */
}

.sales-report-table{
    position: relative;
}

.fixed_column{
position: -webkit-sticky;
  position: sticky;
  background-color: white;
  width: 150px;
  min-width: 150px;
  max-width: 150px;
  left: 0px;

}

@media (min-width: 1200px){
    #table-box.viewData #left-button {
        position: fixed;
        z-index: 2;
        top:65%;
        left: 50%;
        margin-left: 585PX;
        width: 30px;
        display: block;
        text-align: center;
      }
      
    #table-box.viewData #right-button {
        position: fixed;
        z-index: 3;
        top:65%;
        margin-top: 36px;
        left: 50%;
        margin-left: 585PX;
        width: 30px;
        display: block;
        text-align: center;
      }
      
}

.sales-report-table #outer {
    float: left;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
  }
  
  #table-box #left-button, #table-box #right-button{
    display: none;
  }
#table-box.viewData #left-button {
    position: fixed;
    z-index: 2;
    top:65%;
    right: 28px;
    width: 30px;
    display: block;
    text-align: center;
  }
  
#table-box.viewData #right-button {
    position: fixed;
    z-index: 3;
    top:65%;
    margin-top: 36px;
    right: 28px;
    width: 30px;
    display: block;
    text-align: center;
  }
  
  .sales-report-table a {
    text-decoration: none;
    font-weight: bolder;
    color: red;
  }
  .sales-report-table #inner:first-child {
    margin-left: 0;
  }
  
  .sales-report-table label {
    margin-left: 10px;
  }
  
  .sales-report-table .hide {
    display: none;
  }

  .bottom-pos-action .action_bt{
    display: block;
    margin-bottom: 10px;
}
.bottom-pos-action .action_bt a{
    font-size: 14px;
    color: #fff;
    padding: 7px 20px 7px 7px;
    width: 70%;
}

.bottom-pos-action .action_bt button{
    font-size: 14px;
    color: #fff;
    padding: 7px 20px 7px 7px;
    width: 70%;
}

#tb-customer-sales-data td{
    padding: 5px 2px;
}

.newloader{
    width: 192px;
    height: 192px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -96px;
    margin-top: -96px;
    z-index: 10001;
}
.loaderinnerimg{
    width: 50%;
    position: absolute;
    top: 25%;
    left: 25%;
    z-index: 0;
}
.loaderinner{
    width: 192px;
    height: 192px;
    animation: goCircel 2s linear infinite;
    z-index: 1;
}



@keyframes goCircel{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tv-screen-saver{
    width: 100%;
    position: relative;
    min-width: 1280px;
}
.tv-screen-saver-bg{
    width: 100%;
}
.tv-screen-saver-inner{
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 150px;
    width: 100%;
    height: calc(100% - 105px);
}

.tv-screen-saver-logo{
    max-width: 78%;
    margin-left: 11%;
}

.tv-screen-saver-inner .six-row{
    width: 88%;
    margin-top: 63px;
}
.tv-screen-saver-inner .six-row .col-md-2{
    padding:0 5px 0 5px;
}
.tv-screen-saver-inner .six-row .col-md-2 p{
    font-family: 'myGramaticaBlack';
    text-align: left;
    font-size: 30px;
    line-height: 33px;
    color: #403f3d;
    padding-left: 14px;
    margin: 0;
    position: absolute;
    left: 0;
    letter-spacing: .05em;
    top: 53%;
    transform: translateY(-50%);
    text-transform: uppercase;
}
.tv-screen-saver-inner .six-row .col-md-2 .img-text{
    width: 100%;
}
.tv-screen-saver-inner .six-row .col-md-2 .img-text p{
    font-family: 'myGramaticaBlack';
    text-align: center;
    font-size: 42px;
    position: relative;
    left: auto;
    line-height: 42px;
    top: auto;
    transform: none;
    color: #403f3d;
    padding: 25px 0;
    margin: 0;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.tv-screen-saver-inner .six-row .col-md-2 .images{
    text-align: center;
    margin-top: 50%;
    transform: translateY(-50%);
}
.tv-screen-saver-inner .six-row .col-md-2 .images img{
    max-width: 80%;
}
.tv-screen-saver-lines{
    width: 100%;
}

.bg-yellow{
    background:#f6dc8f;
}

.bg-blue{
    background:#88d2d5;
}
.bg-red{
    background:#f88a79;
}
.bg-green{
    background:#92c671;
}
.bg-lightgreen{
    background:#dfdea6;
}
@media only screen and (max-width: 1600px) {
    .tv-screen-saver-inner .six-row .col-md-2 .images{
        margin-top: 50%;
        margin-bottom: 40px;
    }
    .tv-screen-saver-inner .six-row .col-md-2 .images img{
        max-width: 60%;
    }
    .tv-screen-saver-inner{
        padding-top: 90px;
    }
    .tv-screen-saver-inner .six-row .col-md-2 p{
        font-size:22px;
        line-height:28px;
    }
    .tv-screen-saver-inner .six-row .col-md-2 .img-text p{
        font-size:32px;
        line-height:32px;
    }
    .tv-screen-saver-inner .six-row .col-md-2{
        width: 20% !important;;
    }
    
}
.tv-screen-saver-inner .six-row .col-md-2{
    width: 20% !important;;
}

.td-green-column{
    background-color: #a3e5b7!important;
    color: #000;
    font-size: 14px;
    letter-spacing: 0.03em;
    width:58%;
}

.bordered-td{
    border-bottom: 1px solid #000;
}
.merchandiser-table th{
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
    font-weight: bold;
    border-bottom: 1px solid #000!important;
}
.merchandiser-table .td-qty{
    width: 13%;
    color: #000;
    vertical-align: middle;
    text-align: center;
}
.merchandiser-table .td-type {
    width: 19%;
    position:relative;

}
.merchandiser-table .td-type input{
    background: transparent;
    width: 100% !important;
    height: 98%;
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    text-align: center;
    color: red;
}

.merchandiser-table .td-qty, .merchandiser-table .td-type{
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
font-weight: bold;
}

.merchandiser-table td{
    background-color: #fff;
}
.action-icon-td{
    text-align: center!important;
    vertical-align: middle!important;
}
.merchandiser-h2{
    color:#000;
    margin-top:26px;
}

.merchandiser-table .td-amt{
    width: auto;
    color: #000;
    vertical-align: middle;
    text-align: center;
    border-left: 1px solid #ccc;
    font-weight: bold;
}

.Poultry {
	background: #ffd452 !important;
}

.Fish {
	background: #1da0b4 !important;
}

.Meat {
	background: #f9341d !important;
}

.Vegetarian {
	background: #55bd4b !important;
}

.Vegan {
	background: #aed65c !important;
}

@media only screen and (max-width: 1024px) {
    .planner-menu-responsive{
        overflow-x: auto;
    }
    #navbar {
        height: 100%;
    }
    .input-group-addon #week_date{
        min-width: 180px;
    }
    .well {
        padding-top: 80px!important;
    }
    #left-main-menu {
        display: none!important;
        position: relative;
    }
    #left-main-menu .nav {
        width: 100%;
        display: block!important;
    }

    #left-main-menu .nav-stacked>li {
        float: left!important;
    }
  #left-main-menu .dropdown-submenu>.dropdown-menu {
	top: 35px;
    right: 0;
    left: auto;
    margin-top: -6px;
    margin-left: 0;
  }
  
  .order-partner-responsive .order_fliter{
    position: relative!important;
  }
  .order-partner-responsive .order_fliter .input-group{
    margin-top: 0!important;
  }
  .partner-responsive-page{
    padding-top: 20px!important;
  }
  .partner-responsive-code{
    overflow-x: auto;
  }
  .partner-responsive-code #jar_filling_rows{
    width: 1800px;
    margin: 0;
  }
  .partner-responsive-code #jar_filling_rows li .form-group{
    display: flex;
  }
  .partner-responsive-code #jar_filling_rows li .form-group .col-md-1{
    width: auto!important;
  }
  .weekly-responsive-page{
    overflow-x: auto;
  }
  .weekly-responsive-page .table{
    min-width: 1500px;
  }
  #tablate_menu{
    display: block!important;
  }
  .purchase-responsive-page{
    overflow-x: auto;
  }
  .purchase-responsive-page table{
    min-width: 1000px;
  }
}

@media only screen and (max-width: 600px) {
    .order-partner-responsive .order_fliter .input-group{
        max-width: 30%!important;
        margin-bottom: 10px!important;
      }

}