
*{
   box-sizing: border-box;
   font-family: 'Open Sans';
   color: #333;
}

a{
   text-decoration: none !important;
   cursor: pointer !important;
}

textarea:focus, input:focus, select:focus,
textarea:active, input:active, select:active{
   outline: none !important;
}

.app-name{
   display: table;
   font-size: 12px;
   width: 100%;
   text-align: right;
}

/* Remove input type number arrows Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove input type number Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


body{
   margin: 0;
   padding: 0;
   border: 0;
   background: #f7f7f7;
   -webkit-text-size-adjust: none;
   -webkit-tap-highlight-color: transparent;
   user-select: none;
   -webkit-user-select: none;
}

.country-select{
   width: 100%;
   margin-bottom: 20px;
}

#country-name{
   -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

/* <LOGIN SCREEN> */

.login-body{
   overflow: hidden;
   position: fixed;
   width: 100%;
   height: 100%;
}

.container-login{
   margin: 1% auto;
   height: auto;
   width: 100%;
   max-width: 420px;
   background-color: #fff;
   border-radius: 8px;
   margin-bottom: 2em;
   padding: 1.5em;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.app-logo{
   display: block;
   width: 100%;
   max-width: 240px;
   padding: 30px 0px;
}

.login-label{
   display: block;
   width: 100%;
   font-size:12px;
   font-weight: bold;
}
.login-field{
   display: block;
   width: 100%;
   font-size:14px;
   line-height: 20px;
   padding: 10px;
   border-radius: 4px;
   border: 1px #d6d6d6 solid;
   margin-bottom: 20px;
}

.login-field-service-part{
   display: inline-block;
   width: 96%;
   font-size:14px;
   line-height: 20px;
   padding: 10px;
   border-radius: 4px;
   border-top-right-radius: 0px;
   border-bottom-right-radius: 0px;
   border: 1px #d6d6d6 solid;
   margin-bottom: 20px;
}

.login-btn{
   width: 100%;
   border-radius: 4px;
   display: block;
   text-decoration: none;
   background: #173f35;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em 0.75em;
   margin-bottom: 20px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.login-btn i{
   color: #fff;
}

/* </LOGIN SCREEN> */

/* <HEADER> */
.container-header{
   margin: 0 auto;
   height: auto;
   width: 100%;
   max-width: 1140px;
   background-color: #fff;
   border-radius: 8px;
   border-top-left-radius: 0px;
   border-top-right-radius: 0px;
   margin-bottom: 10px;
   padding: 0em 15px;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-left{
   display: table-cell;
   width: 50%;
}
.header-right{
   display: table-cell;
   width: 50%;
}

.app-logo-small{
   display: block;
   width: 100%;
   max-width: 140px;
   padding: 15px 0px;
}


.logout-btn{
   width: auto;
   border-radius: 4px;
   text-decoration: none;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   background-color: #173f35;
   text-align: center;
   padding: 0.7em;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   cursor: pointer;
   margin-left: 10px;
}

.logout-btn i{
   color: #fff !important;
   font-size: 14px;
}

/* </HEADER> */

/* <MENU> */

.container-menu{
   margin: 0 auto;
   height: auto;
   width: 100%;
   max-width: 1140px;
   margin-bottom: 0px;
   padding: 0px;
}

.app-menu{
   list-style: none;
   display: table;
   table-layout: fixed;
   width: 100%;
   margin: 0;
   padding: 0;
}

.app-menu .link{
   display: table-cell;
   padding: 10px 10px 0px 10px;
}

.app-menu .link a:hover{
   background: #f7f7f7;
}

.app-menu .link a{
   display: block;
   border-radius: 4px;
   border-bottom-left-radius: 0px;
   border-bottom-right-radius: 0px;
   font-size: 14px;
   font-weight: 400;
   color: #333;
   background-color: #fff;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
   padding: 20px 10px;
}

.app-menu .link i{
   font-size: 20px;
   color:#173f35;
   display: inline-block;
   margin-right: 10px;
}

.app-menu .link a > h1{
   font-size: 12px;
   font-weight: 600;
   display: inline-block;
   margin: 0;
}

.menu-selected,
.menu-selected i,
.menu-selected h1{
   background-color: #173f35 !important;
   color: #fff !important;
}

/* </MENU> */

/* <PAGES> */

.container{
   margin: 0 auto;
   height: auto;
   width: 100%;
   max-width: 1140px;
   background-color: #fff;
   border-radius: 8px;
   margin-bottom: 10px;
   padding: 1.5em;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.page-heading{
   display: table;
   width: 100%;
   padding-bottom: 15px;
   margin-bottom: 15px;
}

.page-heading-block {
   display: table-cell;
}

.page-heading.underline{
   border-bottom: 1px #173f35 solid;
}

.page-heading i{
   color: #383838;
   font-size: 28px;
   display: inline-block;
   margin-right: 5px;
}

.icon-only{
   margin-right: 0px !important;
}

.page-heading h1{
   color: #333;
   font-weight: 600;
   font-size: 16px;
   display: inline-block;
}

h2.page-name{
   display: block;
   width: 100%;
   margin-top: 25px;
   margin-bottom: 0px;
   font-size: 18px;
}

.search-form{
   display: inline-block;
}

.search-btn-small{
   width: auto;
   border-radius: 4px;
   border-top-left-radius: 0px;
   border-bottom-left-radius: 0px;
   display: inline-block;
   text-decoration: none;
   background: #383838;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 14px;
   margin-left: -4px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.search-btn-small i{
   color: #fff !important;
   font-size: 14px !important;
}

select.login-field{
   height: 40px;
}

.search-field{
   display: inline-block;
   width: 200px;
   font-size:14px;
   line-height: 25px;
   padding: 10px;
   border-radius: 4px;
   border-top-right-radius: 0px;
   border-bottom-right-radius: 0px;
   border: 1px #d6d6d6 solid;
}

.search-location{
   display: inline-block;
   width: 150px;
   height: 48px;
   font-size:14px;
   line-height: 26px;
   padding: 12px 4px 13px 4px;
   border-radius: 4px;
   border: 1px #d6d6d6 solid;
}

.search-name-field{
   display: block;
   width: 100%;
   font-size:14px;
   line-height: 26px;
   padding: 10px;
   border-radius: 4px;
   border: 1px #d6d6d6 solid;
}


.success{
    background: #72bf44 !important;
}

.activity-feed{
   display: block;
   margin: 0 auto;
   height: auto;
   width: 100%;
   min-height: 300px;
   background-color: #fff;
   border-radius: 8px;
   margin-bottom: 20px;
   padding: 1.5em;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.activity-feed h1{
   display: block;
   width: 100%;
   font-size: 14px;
   font-weight: 600;
   color: #173f35;
   padding-bottom: 10px;
   border-bottom: 1px #173f35 solid;
}

.activity-feed h1 i{
   color: #173f35;
   margin-right: 10px;
}

.activity-item{
   color: #333;
   display: block;
   width: 100%;
   margin: 8px 0px;
   text-align: left;
   font-size: 15px;
   font-weight: 200;
}

.activity-item i{
   color: #173f35;
   margin-right: 5px;
}

.activity-item a{
   color: #173f35;
   font-weight: 400;
}

.activity-time{
   display: inline;
   padding: 0;
   margin: 0;
   font-size: 12px;
   font-weight: 200;
}

.quick-links a i{
   font-size: 26px !important;
}
.quick-links a i.fa-plus{
   font-size: 12px !important;
   margin-right: 6px !important;
   top: -6px !important;
   position: relative;
}

.page-body{
   display: table;
   width: 100%;
}

.page-body-block {
   display: table-cell;
}

.w50{
   width: 50%;
}

/* </PAGES> */

/* <OFFERS> */

.offer-status{
   width: 100%;
   border-radius: 4px;
   display: block;
   text-decoration: none;
   font-size: 12px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 0.1em;
   margin-bottom: 10px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   pointer-events: none;
}

.offer-status.accepted{
   background: #2ecfa7;
}
.offer-status.declined{
   background: #bebcbc;
}
.offer-status.sent{
   background: #956e53;
}
.offer-status.production{
   background: #383838;
}

.offer-erp-id{
   margin-top: 10px;
   font-size: 16px;
   font-weight: 400;
}
.offer-price{
   font-size: 14px;
   font-weight: 400;
}

/* </OFFERS> */

/* NOTIFICATIONS */
.notification-btn{
   width: auto;
   border-radius: 4px;
   display: inline-block;
   text-decoration: none;
   background: #173f35;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 0.7em;
   margin: 0px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
   position: relative;
}
.notification-btn i{
   color: #fff;
}
.notification-count{ 
   display: inline;
   position: absolute;
   top: -5px;
   padding: 6px 10px;
   border-radius: 50%;
   font-size: 12px;
   font-weight: 600;
   color: #fff;
   background: #f51717;  
}
.user-profile{
   display: inline-block;
   margin-left: 0px;
   color: #fff;
}  
  
/*ACTIVITIES*/
table.activity-table{
   display: table;
   width: 100%;
   table-layout: fixed;
   border: 0;
   border-collapse: collapse;
}


.activity-table tr:first-of-type td{
   background: #173f35;
   color: #fff;
}

.activity-table tr{
   background: #f1f1f1;
}

.activity-table tr:hover{
   background: #b9ccb5;
}

.activity-table tr td{
   padding: 5px 10px;
}

.activity-table tr td i{
   margin-right: 5px;
   color: #fff;
}
/*ACTIVITIES*/

/*SALES-PLAN*/

table.sales-plan{
   display: table;
   width: 100%;
   table-layout: fixed;
   border: 0;
   border-collapse: collapse;
}

table.sales-plan tr:first-of-type td{
   background: #173f35;
   color: #fff;
}

table.sales-plan tr{
   background: #f1f1f1;
}

table.sales-plan tr:hover{
   background: #b9ccb5;
}

table.sales-plan tr td{
   padding: 5px 10px;
}

.sales-filters{
   display: table;
   width: 100%;
   margin-bottom: 10px;
}
.sales-filters span{
   display: table-cell;
   width: 33.33%;
   text-align: center;
}

.ct-chart-barz{
   display: table;
   width: 100%;
   margin-top: 20px;
}
.ct-chart-barz .ct-label{
   color: #333 !important;
}

/*SALES-PLAN*/

/* <BUTTONS> */

.activity-btn{
   width: 100%;
   border-radius: 4px;
   display: block;
   text-decoration: none;
   background: #367c6a;
   font-size: 12px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin-bottom: 10px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.delete-btn{
   width: 100%;
   border-radius: 4px;
   display: block;
   text-decoration: none;
   background: #de5151;
   font-size: 12px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin-bottom: 10px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.edit-btn{
   width: 100%;
   border-radius: 4px;
   display: block;
   text-decoration: none;
   background: #666666;
   font-size: 12px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin-bottom: 10px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.edit-btn-table{
   width: auto;
   border-radius: 4px;
   display: inline-block;
   text-decoration: none;
   background: #173f35;
   font-size: 12px;
   font-weight: 200;
   color: #fff;
   text-align: center;
   padding: 0.4em 0.8em;
   margin: 0px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.add-btn{
   width: auto;
   border-radius: 4px;
   display: inline-block;
   text-decoration: none;
   background: #173f35;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin: 0px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.offer-filter-btn{
   width: auto;
   border-radius: 4px;
   display: inline-block;
   text-decoration: none;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin: 0px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}
.offer-filter-btn i{
   font-size: 14px;
   color: #fff;
   margin-right: 0px;
}

.offer-filter-btn.accepted{
   background: #2ecfa7;
}
.offer-filter-btn.declined{
   background: #bebcbc;
}
.offer-filter-btn.sent{
   background: #956e53;
}
.offer-filter-btn.production{
   background: #383838;
}

.offers-summary{
   display: table;
   width: 100%;
   margin-top: 20px;
   text-align: center;
}
.offers-summary span{
   display: inline-block;
   font-size: 14px;
   font-weight: 200;
   width: auto;
   border-radius: 4px;
   display: inline-block;
   text-decoration: none;
   background: #173f35;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin: 0px 5px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
}
.offers-summary span i{
   color: #fff;
   margin-right: 5px;
}


.primary-btn{
   width: auto;
   border-radius: 4px;
   display: inline-block;
   text-decoration: none;
   background: #383838;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin-bottom: 20px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.secondary-btn{
   width: auto;
   border-radius: 4px;
   display: inline-block;
   text-decoration: none;
   background: #a4a0a0;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin-bottom: 20px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.trash-btn{
   width: auto;
   border-radius: 4px;
   display: inline-block;
   text-decoration: none;
   background: #544343;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin-bottom: 20px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.print-btn{
   width: 100%;
   border-radius: 4px;
   display: block;
   text-decoration: none;
   background: #383838;
   font-size: 12px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin-bottom: 10px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}



.cancel-btn{
   width: 100%;
   border-radius: 4px;
   display: block;
   text-decoration: none;
   background: #544343;
   font-size: 12px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 1em;
   margin-bottom: 10px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.export-btn{
   width: 100%;
   border-radius: 4px;
   display: block;
   text-decoration: none;
   background: #c02e2d;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   text-align: center;
   padding: 0.5em 1em;
   margin-bottom: 10px;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   border: none;
   cursor: pointer;
}

.disabled-btn{
   background: #dadada !important;
   cursor: not-allowed !important;
}

.half-btn{
   width: 47% !important;
   display: inline-block !important;
   margin-right: 3% !important;
}

.half-btn:last-of-type{
   margin-right: 0px !important;
}

.dummy-btn{
   width: 100%;
   display: table;
   height: 41px;
   margin-bottom: 10px;
}

.activity-btn i,
.delete-btn i,
.edit-btn i,
.add-btn i,
.primary-btn i,
.secondary-btn i,
.trash-btn i,
.print-btn i,

.cancel-btn i,
.export-btn i{
   color: #fff !important;
   font-size: 14px !important;
}

.activity-success{
   color:#72bf44;
   display: block;
   padding: 8px 0px;
   font-weight: 600;
}
.activity-success i{
   color:#72bf44;
}

.activity-error{
   color:#c02e2d;
   display: block;
   padding: 8px 0px;
   font-weight: 600;
}

.activity-error i{
   color:#c02e2d;
}

/* </BUTTONS> */

/* <ALERTS> */

.alert-container{
   position: absolute;
   visibility: hidden;
   width: 100%;
   padding: 1.6em;
}

.alert{
   margin: 0 auto;
   height: auto;
   width: 96%;
   max-width: 380px;
   border-radius: 8px;
   text-align: center;
   font-size: 13px;
   font-weight: 600;
   padding: 1em;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.alert.error{
   background: #c02e2d;
   color: #fff;
}

.alert.success{
   background: #75ce5f;
   color:#fff;
}

.fade-out {
   -moz-animation-name: fade-out;
   -webkit-animation-name: fade-out;
   -ms-animation-name: fade-out;
   animation-name: fade-out;
   -moz-animation-duration: 4s;
   -webkit-animation-duration: 4s;
   -ms-animation-duration: 4s;
   animation-duration: 4s;
 }

 @keyframes fade-out { 0% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden;  }} 
 @-moz-keyframes fade-out { 0% { opacity: 1; visibility: visible; }  100% { opacity: 0; visibility: hidden; }} 
 @-webkit-keyframes fade-out { 0% { opacity: 1; visibility: visible; }  100% { opacity: 0; visibility: hidden; }} 
 @-ms-keyframes fade-out { 0% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; }} 


/* CHARTIST JS*/
.ct-chart{
   display: block;
   position: relative;
}

.chartist-tooltip {
   background: #383838 !important;
}
.chartist-tooltip::before{
   border-top-color: #383838 !important;
}
.chartist-tooltip-value,
.chartist-tooltip-meta{
   color: #fff !important;
}
.ct-label{
   fill: #fff !important;
   color: #fff !important;
}
.ct-series-a .ct-area, 
.ct-series-a .ct-slice-donut-solid, 
.ct-series-a .ct-slice-pie{
   fill: #173f35 !important;
   fill-opacity:1 !important;
   stroke: #173f35 !important;
}

.ct-series-b .ct-area, 
.ct-series-b .ct-slice-donut-solid, 
.ct-series-b .ct-slice-pie{
   fill: #068767 !important;
   fill-opacity:1 !important;
   stroke: #068767 !important;
}

.chart-heading{
   display: block;
   width: 100%;
   font-size: 12px;
   font-weight: 200;
   text-align: center;
}

/* </ALERTS> */

.add-to-fav{
   display: table;
   width: 100%;
   text-align: right;
   margin-top: 10px;
   font-size: 22px;
   position: relative;
}
.add-to-fav i.fas{
   color: #e4e4e4;
}

.add-to-fav i.fas.fav,
.add-to-fav i.fas:hover{
   color: #f6e500;
   cursor: pointer;
}

.add-to-fav i.fas:hover + .tooltip{
   display: block !important;
}

.tooltip{
   position: absolute;
   right: 25px;
   top: 0px;
   font-size: 12px;
   padding: 10px 10px;
   box-sizing: border-box;
   display: none;
   width: auto;
   background: #fff;
   color: #8b8b8b;
   border-radius: 20px;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

#screen-overlay{
   position: fixed;
   top: 0;
   left: 0;
   display: none;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.8);
   z-index: 98;
}

.note-heading{
   color: #173f35;
   padding: 0px;
   margin: 0px;
   line-height: 47px;
   font-size: 20px;
}

.note-heading i{
   color: #173f35;
   line-height: 47px;
   font-size: 30px;
   margin-right: 10px;
}

.note-heading span{
   color: #173f35;
}

/* <LISTINGS> */

.shadow-box{
   border: 1px #d9d9d9 solid;
   border-radius: 4px;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   background-color: #fff;
   padding: 0.2em 1em;
   margin: 10px;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.shadow-box i{
   font-size: 18px;
   color:#383838;
   display: inline-block;
}

.shadow-box h1{
   font-size: 13px;
   font-weight: 700;
   margin-bottom: 10px;
   display: block;
   min-height: 60px !important;
   height: 60px;
}

.shadow-box.users h1{
   font-size: 13px;
   font-weight: 700;
   margin: 10px 0px;
}

.shadow-box.users h1 i{
   font-size: 25px;
   margin-right: 10px;
}

/* </LISTINGS> */


.big-box{
   border-radius: 4px;
   font-size: 14px;
   font-weight: 400;
   color: #fff;
   padding: 2em;
   margin: 10px;
   box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.big-box i{
   font-size: 48px;
   color: #fff !important;
}

.big-box h1{
   font-size: 1.3em;
   font-weight: 300;
   margin: 20px 0px 20px 50px;
   display: inline-block;
   color: #fff !important;
}

.big-box h3{
   color: #fff !important;
}

.white{
   background-color: #fff;
}

.red{
   background-color: #c02e2d;  
}

.gray{
   background-color: #a4a0a0;
}

p{
   font-weight: 300;
}

h1{
   line-height: 1.5em;
   padding: 0px;
   margin: 0 0 1em 0;
   font-size: 1.2em;
   font-weight: 300;
}

h2{
   padding: 0;
   font-weight: 600;
   margin: 0 0 1em 0;
   font-size: 1.2em;
   line-height: 1.8em;
}   

h3{
   font-size: 12px;
   font-weight: 300;
}

h3 i{
   font-size: inherit !important;
   font-weight: inherit !important;
   color: inherit !important;
}

h4{
   font-size: 16px;
   font-weight: 400;
}

h4 i{
   font-size: 18px !important;
   color: inherit !important;
}

ul{
   list-style: none;
}
li{
   font-weight: 300;
}

hr.separator{
   width: 100%;
   background-color: #c02e2d;
   border:0;
   height: 2px;
   margin-bottom: 20px;
}

.row{
   display: table;
   width: 100%;
}

.col-first .shadow-box{
   margin-left: 0px !important;
}
.col-last .shadow-box{
   margin-right: 0px !important;
}

.col-100{
   display: block;
   width: 100%;
}

.col-50{
   display: inline-block;
   width: 50%;
}

.col-25{
   display: inline-block;
   width: 25%;
}

.text-left{
   text-align: left;
}
.text-right{
   text-align: right;
}
.text-center{
   text-align: center;

}
.vertical-top{
   vertical-align: top;
}
.vertical-middle{
   vertical-align: middle;
}
@media screen and (max-width: 768px) {

   .app-menu{
      padding: 0 10px;
   }

   .app-menu .link {
      display: block;
      padding: 5px;
      width: 50%;
      float: left;
   }

   .header-left{
      display: inline-block;
      width: 30%;
   }

   .header-right{
      display: inline-block;
      width: 70%;
   }

   .container{
      width: 95%;
      max-width: auto;
   }

   .container-login{
      margin: 2vh auto;
      height: 96vh;
      width: 94%;
   }

   .page-heading-block{
      display: block;
      width: 100%;
   }

   .search-form{
      display: table;
      width: 100%;
   }
   .search-field{
      display: table-cell;
      width: 50%;
   }
   .search-btn-small{
      display: table-cell;
      width: 50%;
   }

   .export-btn-small{
      display: none;
   }

   .search-location{
      width: 90%;
      margin-bottom: 20px;
   }
   .primary-btn,
   .secondary-btn,
   .trash-btn{
      width: 100%;
      display: block;
   }

   .col-first .shadow-box{
      margin-left: 10px !important;
   }
   .col-last .shadow-box{
      margin-right: 10px !important;
   }

   .shadow-box.registrations i.reg{
      font-size: 35px;
      color:#c02e2d;
      display: block;
      text-align: center;
      margin-top: 15px;
   }
   
   .shadow-box.registrations h1{
      font-size: 1em;
      font-weight: 300;
      margin: 20px 0px;
      display: block;
      text-align: center;
   }

   .search-heading{
      display: block !important;
      width: 100% !important;
   }
   

   .col-50{
      display: block;
      width: 100%;
   }

   .col-25{
      display: inline-block;
      width: 50%;
   }

   .container{
      padding: 0.7em;
   }

   .big-box i{
      font-size: 32px;
   }

   .big-box h1{
      font-size: 1.2em;
      margin: 10px 0px 10px 5px;

   }

   .checkbox-btn{
      width: 48% !important;
   }
   .checkmark{
      font-size: 16px !important;
   }
   .warehouse-table{
      table-layout: fixed;
      font-size: 13px;
   }
   

}

@media screen and (max-width: 480px) {
   .container-login{
      margin: 2vh auto;
      height: 96vh;
      width: 94%;
   }
   .container{
      width: 95%;
      max-width: auto;
   }

   .col-25{
      display: inline-block;
      width: 100%;
   }

}


/* Test BTN */
.checkbox-btn {
   display: inline-block;
   width: 25%;
   height: 30px;
   position: relative;
   padding: 2.5em;
   margin: 0.5%;
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
   border-radius: 4px;
   text-decoration: none;
   background: #ccc;
   color: #fff;
   box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   text-align: center;
 }

 .checkbox-btn.check-50{
    width: 48.8%;
 }

 .full-btn{
    display: block !important;
    width:98% !important;
    margin: 0.5% 0% !important;
 }
 
 /* Hide the browser's default radio button */
 .checkbox-btn input {
   position: absolute;
   opacity: 0;
   cursor: pointer;
 }
 
 /* Create a custom radio button */
 .checkmark {
   position: absolute;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   line-height: 36px;
   font-size: 18px;
   font-weight: 600;
   padding: 1.2em;
   border-radius: 4px;
 }

 .checkmark i{
    font-size: 28px;
    margin-right: 10px;
 }
 
 /* On mouse-over, add a grey background color */
 .checkbox-btn:hover input ~ .checkmark {
   background-color: #173f35;
   color: #fff;
 }
 .checkbox-btn:hover input ~ .checkmark i {
   color: #fff;
 }
 
 /* When the radio button is checked, add a red background */
 .checkbox-btn input:checked ~ .checkmark{
   background-color: #173f35;
   color: #fff;
 }

 .checkbox-btn input:checked ~ .checkmark i{
   color: #fff;
 }
 
 /* Create the indicator (the dot/circle - hidden when not checked) */
 .checkmark:after {
   content: "";
   position: absolute;
   display: none;
 }
 
 /* Show the indicator (dot/circle) when checked */
 .checkbox-btn input:checked ~ .checkmark:after {
   display: block;
 }
 
 /* Style the indicator (dot/circle) */
 .checkbox-btn .checkmark:after {
   top: 9px;
   left: 9px;
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: white;
 }

 #signature {
   display: table;
   width: 100%;
   border: 2px dotted black;
   background-color:#f7f7f7;
   height: 80vh;
}
#sig-buttons{
   display: table;
   width: 100%;
   text-align: center;
}

#form-sig{
   display: table;
   width: 100%;
}

#sig-reset,
#sig-save,
#sig-cancel{
   display: inline-block;
   max-width: 100px;
   margin: 20px 5px;
}

