/*! normalize.css v3.0.0 | MIT License | git.io/normalize */img,legend{border:0}legend,td,th{padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}table{border-collapse:collapse;border-spacing:0}

html {
  scroll-behavior: smooth;
}
body {
}
#app {
}
h1 {
  font-size: 1.875rem; /* 30px */
  line-height: 2.25rem;
  font-weight: 500;
}
h2 {
  font-size: 1.5rem; /* 24px */
  line-height: 2rem; /* 32px */
  font-weight: 500;
}
h3 {
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem; /* 28px */
}
h4, h5, h6 {
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
}

form ul, table ul {
  list-style-type: disc;
  list-style-position: inside;
}
form ol, table ol {
  list-style-position: inside;
}
form ul li, table ul li, form ol, table ol {
  padding-left: .75rem;
}

a {

}
img {
  display: inline-block;
  width: auto;
}
input[type=text], input[type=number], input[type=email], input[type=tel], input[type=password], select, textarea {
  border: 1px solid #dedede;
  outline: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  padding-left: 1rem;
}
::-moz-placeholder { /* Firefox 19+ */
  padding-left: 1rem;
}
:-ms-input-placeholder { /* IE 10+ */
  padding-left: 1rem;
}
:-moz-placeholder { /* Firefox 18- */
  padding-left: 1rem;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: #ececf8;
}

a {
  border: 1px solid #4169e1;
  background-color: white;
  color: #4169e1;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
}

a:hover {
  background-color: #4169e1;
  color: white;
}

button {
  border: 1px solid #4169e1;
  background-color: white;
  color: #4169e1;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  cursor: pointer;
}

button:hover {
  background-color: #4169e1;
  color: white;
}

.greyed-out {
  border: 1px solid #ececf8;
  background-color: #ececf8;
  color: white;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  cursor: not-allowed;
}

.greyed-out:hover {
  border: 1px solid #ececf8;
  background-color: #ececf8;
  color: white;
}

.image-popup-vertical-fit {
  border: none;
}

.image-popup-vertical-fit:hover {
  background: none;
  cursor: pointer;
}

.button-row {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.strong-button {
  background-color: #4169e1;
  color: white;
}

input[type=text], input[type=password], input[type=number], input[type=date] {
  padding: 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* .card input { */
input {
  width: 100%;
}

select, input[type=search] {
  background-color: white !important;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  resize: none;
}

header {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1272px) {
  header {
    padding-left: 10%;
    padding-right: 10%;
  }
}

header .header-logo {
  max-width: 275px;
  cursor: pointer;
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
  header .header-logo {
    width: 177px;
  }
}

@media screen and (max-width: 1440px) {
  header .header-logo {
    margin: 0 auto;
  }
}

header a {
  border: none;
  color: black;
  padding: 14px 10px;
  text-decoration: none;
  font-size: 15px;
}

header a:hover {
  background-color: #ececf8;
  color: black;
}

.container {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .container {
    width: 80%;
    margin: 0 auto;
  }
}

.card {
  margin: 1rem;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .card {
    margin: 10px auto;
    width: 50%;
    background-color: #fff;
    border-radius: 5px;
    padding: 25px;
  }
}

@media screen and (min-width: 1440px) {
  .card {
    margin: 25px auto;
    width: 30%;
    background-color: #fff;
    border-radius: 5px;
    padding: 50px;
  }
}

.row {
  margin-bottom: 1rem;
}

.text-centered {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .proof-details-container {
    width: 80%;
    margin: 0 auto;
    padding-top: 2rem;
  }
} 

.checkout-container {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
}
.checkout-container h2 {
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .checkout-container {
    width: 80%;
    margin: 0 auto;
    padding-top: 2rem;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .checkout-container h2 {
    text-align: left;
  }
}

@media screen and (min-width: 1024px) {
  .checkout-cart-content {
    width: 35%;
  }
}

.checkout-form {
  width: 100%;
  padding-top: 2rem;
}
td.actions {
  text-align: right;
}
td.actions a {
  padding: 3px 8px;
  border-radius: 6px;
}
@media screen and (min-width: 1024px) {
  .checkout-form {
    width: 65%;
    display: block;
    padding-right: 4rem;
    padding-top: 0;
  }
}

.checkout-row {
  display: flex;
  justify-content:space-between;
}

.prepend-row {
  margin-bottom: 1rem;
  display:flex;
  flex-wrap:wrap;
}

.prepend-row label {
  display: flex;
  align-items: center;
  text-align: center;
  padding-right: 0.75rem;
}

.prepend-row input {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
}

.table-bordered {
  font-family: arial;
  width: 100%;
  font-size: 12px;
  text-align: left;
  background-color: #fff;
  border-radius: 5px;
  border-collapse: collapse;
}

.table-bordered th {
  font-weight: bold;
  border-bottom: 2px solid #ececf8;
}

.table-bordered tr {
  border-bottom: 2px solid #ececf8
}

.table-bordered th:not(:last-child),
.table-bordered td:not(:last-child) {
  padding: 8px 12px 8px 5px;
}

.table-bordered th:last-child,
.table-bordered td:last-child {
  padding: 8px 5px;
}

@media screen and (min-width: 1024px) {
  .table-bordered {
    font-size: 15px;
    margin-bottom: 0.5rem;
  }

  .table-bordered th,
  .table-bordered td {
    padding: 1.3rem !important;
  }
}

@media screen and (max-width: 800px) {
  .table-bordered a {
    color: #4169e1;
    border: none;
    background: none;
    padding: 0px;
    font-size: 12px;
    text-decoration: underline;
  }
}

.show-on-mobile {
  display: inline;
}

.show-on-desktop {
  display: none;
}

.show-table-cell-on-desktop {
  display: none;
}

@media screen and (min-width:1024px) {
  .show-on-mobile {
    display: none;
  }
  .show-on-desktop {
    display: inline;
  }
  .show-table-cell-on-desktop {
    display: table-cell;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.login-logo {
  width: 100%;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .login-logo {
    display: block;
    width: 350px;
    margin: 25px auto;
  }
}
div.welcome-message{
  display: flex;
  flex-direction: column-reverse;
  padding-top: 1rem;
  line-height: 1.5rem;
}
@media screen and (min-width: 1280px) {
  div.welcome-message{
    flex-direction: row-reverse;
    margin-top: 2rem;
  }
}

.home-image {
  width: 100%;
  padding-top: 1.5rem;
  display: block;
  margin: 0 auto 2rem;
  border-radius: 5px;
}
@media screen and (min-width: 1280px) {
  .home-image {
    padding-left: 4rem;
    width: 40%;
  }
}

.action_buttons {
  padding: 16px 0px 12px 0px;
  clear: both;
}

#feedback_history {
  width: 100%;
  height: 150px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
}

.approved {
  color: forestgreen;
}
.rejected {
  color: red;
}
.approved_with_changes {
  color: blue;
}
.error {
  font-weight: bold;
  color: red;
}

/* Inventory */

#willcall_wrapper {
  display:none;
}

/* Proofs */

.bound_warning {
  background: rgb(255, 255, 112);
  padding: 1em .66em;
  border: solid 1px silver;
  border-radius: 4px;
  line-height: 2em !important;
  margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
  .bound_warning {
    width: 35%;
  }
}

.bound_warning_title {
  font-weight: bold;
  color: #fff;
  background: rgb(199, 43, 41);
  text-align: center;
  margin-bottom: 1em;
}

/* slicknav */

.slicknav_btn {
  background: none !important;
  border: none !important;
}

.slicknav_btn:hover {
  background: none !important;
  color: #5886c4 !important;
}

.slicknav_menutxt {
  display: none !important;
}

.slicknav_icon-bar {
  background-color: #5886c4 !important;
  box-shadow: none !important;
}

.slicknav_menu {
  display: block;
  background: white;
}

@media screen and (min-width: 1024px) {
  .slicknav_menu {
    display: none;
  }
}

.slicknav_nav a {
  background-color: #ececf8;
  border: none;
  color: black;
  margin: 5px;
  padding: 10px;
}

@media screen and (max-width: 1023px) {
  .main_menu {
    display: none;
  }
}

/* datatables */

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center right;
}
table.dataTable thead .sorting {
  background-image: url("../img/sort_both.png");
}
table.dataTable thead .sorting_asc {
  background-image: url("../img/sort_asc.png") !important;
}
table.dataTable thead .sorting_desc {
  background-image: url("../img/sort_desc.png") !important;
}
table.dataTable thead .sorting_asc_disabled {
  background-image: url("../img/sort_asc_disabled.png");
}
table.dataTable thead .sorting_desc_disabled {
  background-image: url("../img/sort_desc_disabled.png");
}

.dataTables_paginate {
  text-align: left;
  padding-top: 0.25em;
  margin-bottom: 2rem;
}

.dataTables_filter {
  text-align: left;
}

.dataTables_info {
  padding-top: 0.755em;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .dataTables_paginate {
    float: right;
    text-align: right;
  }
  .dataTables_filter {
    float: right;
    text-align: right;
  }
  .dataTables_length {
    float: left;
    min-width: 14rem;
  }
  .dataTables_info {
    clear: both;
    float: left;
  }
}

.paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
}

.paginate_button:hover {
  cursor: pointer;
}

.dataTables_filter input[type=search] {
  margin-left: 3px;
}

/* jQuery ui */

@media screen and (max-width: 768px) {
  .ui-dialog {
    width: 100% !important;
    height: 95% !important;
    box-sizing: border-box !important;
  }
}

.ui-button-icon-only:hover span {
  filter: brightness(0) invert(1);
}

.ui-dialog {
  position: fixed !important;
  top:50% !important;
  left:50% !important;
  transform: translate(-50%, -50%) !important;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: default !important;
}

/* Scroll to top arrow */
#scrolled-arrow {
  position: fixed;
  z-index: 10;
  bottom: 12px;
  right: 12px;
  background: #5886c4;
  width: 50px;
  height: 50px;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;

}
#scrolled-arrow img {
  color: #fff;
  margin: 0;
  position: relative;
  left: 15px;
  top: 15px;
  font-size: 19px;
}

#scrolled-arrow:hover {
  cursor: pointer;
}
#scrolled-arrow:hover img {
  position: relative;
  top: 13px;
}