@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
img {
  max-width: 100%;
}

body {
  font-family: "Open Sans", sans-serif;
}

body.login-page {
  background-image: url(../img/login-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

body.login-page .logo {
  text-align: center;
}
body.login-page .logo img {
  max-width: 256px;
  width: 100%;
}

.dashboard-slider .item-list {
  position: relative;
}
.dashboard-slider .item-list .item {
  overflow: hidden;
  border-radius: 4px;
}
.dashboard-slider .item-list .slick-dots {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
  bottom: 20px;
  right: 20px;
  margin: 0;
}
.dashboard-slider .item-list .slick-dots li {
  list-style: none;
  padding: 3px;
}
.dashboard-slider .item-list .slick-dots li button {
  font-size: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.dashboard-slider .item-list .slick-dots li.slick-active button {
  background: var(--success);
}

.sidebar-collapse .user-panel img {
  width: auto;
  max-width: 36px;
}

.datatable-one, .datatable-base, .dataTable {
  text-align: center;
}
.datatable-one tr td:first-of-type, .datatable-one tr th:first-of-type, .datatable-base tr td:first-of-type, .datatable-base tr th:first-of-type, .dataTable tr td:first-of-type, .dataTable tr th:first-of-type {
  text-align: left;
}
.datatable-one tbody tr:nth-of-type(even), .datatable-base tbody tr:nth-of-type(even), .dataTable tbody tr:nth-of-type(even) {
  background: rgba(40, 167, 69, 0.02);
}
.datatable-one tbody tr:nth-of-type(even):hover, .datatable-base tbody tr:nth-of-type(even):hover, .dataTable tbody tr:nth-of-type(even):hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.datatable-one tbody td, .datatable-base tbody td, .dataTable tbody td {
  font-size: 14px;
  vertical-align: middle;
}
.datatable-one tbody td .badge, .datatable-base tbody td .badge, .dataTable tbody td .badge {
  font-size: 13px;
}
.datatable-one tbody td .form-control, .datatable-base tbody td .form-control, .dataTable tbody td .form-control {
  font-size: 14px;
  font-weight: 600;
}
.datatable-one tbody strong, .datatable-base tbody strong, .dataTable tbody strong {
  font-size: 18px;
}
.datatable-one .btn, .datatable-base .btn, .dataTable .btn {
  margin-top: 2px;
  margin-bottom: 2px;
}

.order-status {
  font-weight: 700;
}
.order-status.o-created {
  color: yellow !important;
}
.order-status.o-confirmed {
  color: #01ff70 !important;
}
.order-status.o-shipping {
  color: #2ecbff !important;
}
.order-status.o-cancelled {
  color: #ff2f2f !important;
}
.order-status.o-received_by_customer {
  color: lightgray !important;
}

.callout p {
  font-size: 15px;
}

.content-wrapper > .content {
  padding: 0.5rem;
}

.discounted-price span {
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-right: 4px;
  padding: 0 3px;
  opacity: 0.75;
}
.discounted-price span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(10deg);
          transform: translateY(-50%) rotate(10deg);
  border-bottom: 2px solid;
  width: 100%;
  opacity: 0.5;
}
.discounted-price strong {
  padding: 0 3px;
}

.general-product-list .item {
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 7.5px 0;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: white;
  height: calc(100% - 15px);
}
.general-product-list .item .image {
  background: white;
  position: relative;
}
.general-product-list .item .image a {
  display: block;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  overflow: hidden;
}
.general-product-list .item .image img {
  height: 180px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.general-product-list .item .content {
  padding: 10px;
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.general-product-list .item .content .product-name {
  text-align: center;
}
.general-product-list .item .content .product-name a {
  font-size: 15px;
  display: block;
}
.general-product-list .item .content .product-name a strong {
  color: #28a745;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 36px;
  line-height: 1.2;
  font-size: 15px;
}
.general-product-list .item .content .product-name a small {
  color: #757575;
  display: block;
}
.general-product-list .item .content .product-price {
  padding-top: 5px;
  margin-top: 7px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}
.general-product-list .item .content .product-price .block-discounted-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.general-product-list .item .content .product-price .block-discounted-price .base-price {
  color: rgba(0, 0, 0, 0.7);
  position: relative;
}
.general-product-list .item .content .product-price .block-discounted-price .base-price:after {
  content: "";
  width: calc(100% + 10px);
  height: 1px;
  left: -5px;
  top: 50%;
  background-color: #001f3f;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.general-product-list .item .content .product-price .discounted-price-end {
  color: #001f3f;
  font-size: 20px;
  font-weight: 700;
}
.general-product-list .item .content .product-price .standard-price {
  text-align: center;
  color: #001f3f;
  font-size: 20px;
  font-weight: 700;
}
.general-product-list .item .content .options {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: white;
  border-radius: 2px 2px 4px 4px;
  -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}
.general-product-list .item .content .options a {
  color: #001f3f;
  font-weight: 600;
  font-size: 13px;
}
.general-product-list .item .content .options a:hover {
  color: #28a745;
}
.general-product-list .item:hover {
  border-color: #28a745;
}
.general-product-list .item:hover .image a {
  -webkit-box-shadow: 0 0 4px #28a745;
          box-shadow: 0 0 4px #28a745;
}
.general-product-list .item:hover .image a img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.general-product-list .more-button {
  text-align: center;
  margin-top: 20px;
}
.general-product-list .more-button a {
  padding: 12px 20px;
  font-size: 18px;
  border: 2px solid white;
  color: #28a745;
  border-radius: 2px 2px 8px 8px;
}
.general-product-list .more-button a:hover {
  background: white;
}

.pagination-nav > div {
  float: none !important;
}

.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination > li > a {
  background-color: white;
  color: #28a745;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  color: #5a5a5a;
  background-color: #eee;
  border-color: #ddd;
}

.pagination > .active > span {
  color: white;
  background-color: #28a745 !important;
  border: solid 1px #28a745 !important;
}

.pagination > .active > span:hover {
  background-color: #28a745 !important;
  border: solid 1px #28a745;
}

.pagination .page-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.product-detail .product-medias {
  position: sticky;
  top: 100px;
}
.product-detail .product-slider .item-list .item {
  position: relative;
}
.product-detail .product-slider .item-list .item a {
  position: absolute;
  right: 20px;
  top: 20px;
  display: inline-block;
  padding: 5px;
  z-index: 20;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 20px;
  width: 40px;
  text-align: center;
}
.product-detail .product-slider .item-list .item img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.product-detail .product-slider .item-list .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 15px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0 0;
}
.product-detail .product-slider .item-list .slick-dots li {
  list-style: none;
  padding: 5px;
}
.product-detail .product-slider .item-list .slick-dots li button {
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 36px;
  height: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.1);
}
.product-detail .product-slider .item-list .slick-dots li.slick-active button {
  background: #28a745;
  color: White;
}
.product-detail .product-description {
  font-size: 14px;
}
.product-detail .order-control button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.font-weight-bolder {
  font-weight: 600 !important;
}

.radio-group-one {
  height: calc(100% - 15px);
  margin: 7.5px 0;
}
.radio-group-one label {
  display: block;
  height: 100%;
  padding: 20px 12px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  color: black;
  cursor: pointer;
}
.radio-group-one label:hover {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(40, 167, 69, 0.36) !important;
          box-shadow: 0 0.5rem 1rem rgba(40, 167, 69, 0.36) !important;
}
.radio-group-one label.checked {
  border-color: #28a745 !important;
}
.radio-group-one label strong {
  color: #28a745;
  display: block;
  font-size: 16px;
}
.radio-group-one label .form-control {
  height: calc(1.25rem + 2px);
}

.ordering-group {
  margin: 0 10px;
}
.ordering-group .complex-input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.ordering-group input {
  padding: 0 0px 0 10px;
  text-align: center;
  width: 100px;
}
.ordering-group button:first-of-type {
  position: relative;
  margin-right: -30px;
}
.ordering-group button:last-of-type {
  position: relative;
  margin-left: -30px;
}

.modal-dialog {
  max-width: 1200px;
}

@media screen and (min-width: 1366px) {
  .col-spec-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
}
.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 93px;
  height: 93px;
  text-align: right;
}

.ribbon span {
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  line-height: 32px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 125px;
  display: block;
  background: #79a70a;
  background: -webkit-gradient(linear, left top, left bottom, from(#9bc90d), to(#79a70a));
  background: linear-gradient(#9bc90d 0%, #79a70a 100%);
  -webkit-box-shadow: 0 3px 10px -5px rgb(0, 0, 0);
          box-shadow: 0 3px 10px -5px rgb(0, 0, 0);
  position: absolute;
  top: 17px;
  right: -29px;
}

.ribbon span::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: -1;
  border-left: 3px solid #79A70A;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #79A70A;
}

.ribbon span::after {
  content: "";
  position: absolute;
  right: 0%;
  top: 100%;
  z-index: -1;
  border-right: 3px solid #79A70A;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #79A70A;
}

.red span {
  background: -webkit-gradient(linear, left top, left bottom, from(#f70505), to(#8f0808));
  background: linear-gradient(#f70505 0%, #8f0808 100%);
}

.red span::before {
  border-left-color: #8f0808;
  border-top-color: #8f0808;
}

.red span::after {
  border-right-color: #8f0808;
  border-top-color: #8f0808;
}