
/***style-latif.css***/

/***** HEADER *****/
.top-menu.notmobile .sublist {
  display: none;
  background: #fff;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 100;
  box-shadow: -1px 1px 10px #000;
}

.top-menu.notmobile li {
  position: relative;
}

.top-menu.notmobile > li a {
  padding: 10px 15px;
  display: block;
}

.top-menu.notmobile li:hover > .sublist {
  display: block;
}

.menu-toggle {
  font-size: 18px;
  font-weight: bold;
}

.top-menu.mobile {
  display: none;
}

  .top-menu.mobile .sublist {
    display: none;
  }


/***** CSS RESET *****/
* {
  margin: 0;
  outline: none;
  padding: 0;
  text-decoration: none;
}

  *, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

html {
  margin: 0;
  -webkit-text-size-adjust: none;
}

ol, ul {
  list-style: none;
}

a {
  transition: all 0.2s;
}

  a:active {
    outline: none;
  }

  a:hover {
    color: #ED008C;
    text-decoration: none;
  }

  a img {
    border: none;
  }

img {
  border: none;
  max-width: 100%;
}

input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  margin: 0;
  border: 0;
  padding: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border-radius: 0;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 1000px #fff;
}

script {
  display: none !important;
}

/***** GLOBAL STYLES *****/
body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  font: normal 16px Almarai, Helvetica, sans-serif;
  font-weight: normal;
  color: #223668;
}

h1, h2, h3, h4, h5, h6 {
  color: #223668;
}

a {
  color: inherit;
  cursor: pointer;
}

  a img {
    opacity: 0.99; /*firefox scale bug fix*/
  }

table {
  width: 100%;
  border-collapse: collapse;
}

/***** PAGES & BLOCKS *****/
.center-2, .side-2 {
  margin: 0 0 50px;
}

.side-2 {
  border: 1px solid #E0E1E6;
  border-radius: 3px;
  box-shadow: 0px 0px 5px rgba(134, 134, 134, 0.25);
}

.page-body {
  margin: 0 0 70px;
}

.page-title {
  padding: 25px 0;
}

  .page-title h1 {
    font-weight: bold;
    font-size: 24px;
  }

.center-2 .page-title {
  padding-top: 0;
}

.topic-block-title h2 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-weight: 800;
  font-size: 20px;
  border-bottom: 1px solid #BFBFBF;
}

.block {
  border-bottom: 1px solid #E5E5E5;
}

  .block .title {
    color: #ED008C;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
  }

    .block .title i {
      color: #223668;
      font-size: 12px;
    }

  .block:not(.active) .title i {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .block .list li,
  .block .listbox > li {
    font-weight: 600;
    font-size: 14px;
  }

    .block .list li:not(:last-child),
    .block .listbox > li:not(:last-child) {
      margin-bottom: 7px;
    }

    .block .list li.active.last {
      font-weight: 800;
    }

    .block .list li .sublist {
      margin: 7px 15px 0 0;
    }

  .block .view-all {
    padding-top: 10px;
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
  }

/***** GLOBAL *****/
.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.text-left {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: left;
}

.list-inline > li {
  display: inline-block;
}

  .list-inline > li:not(:last-child) {
    margin-left: 10px;
  }

.dropdown-menu {
  position: relative;
}

  .dropdown-menu .submenu {
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0.1;
    -webkit-transition: opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    transition: opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    transition: transform 0.1s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1);
    transition: transform 0.1s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.2, 0, 0.2, 1), -webkit-transform 0.1s cubic-bezier(0.2, 0, 0.2, 1);
    -webkit-transform: translateY(-10px) scaleY(0.5);
    transform: translateY(-10px) scaleY(0.5);
    -webkit-transform-origin: top;
    transform-origin: top;
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 120px;
    background: #fff;
    box-shadow: 0px 2px 10px #878D9E;
    border-radius: 5px;
    text-transform: capitalize;
    z-index: 5;
  }

  .dropdown-menu > li {
    position: relative;
    display: inline-block;
  }

    .dropdown-menu > li > a {
      padding-bottom: 10px;
    }

    .dropdown-menu > li:hover > .submenu {
      clip: auto;
      opacity: 1;
      -webkit-transform: translateY(0) scaleY(1);
      transform: translateY(0) scaleY(1);
    }

    .dropdown-menu > li > .submenu::before {
      content: "";
      position: absolute;
      top: -8px;
      left: 7px;
      font-size: 12px;
      width: 0;
      height: 0;
      border-right: 10px solid transparent;
      border-left: 10px solid transparent;
      border-bottom: 10px solid #fff;
      -webkit-filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
      filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
    }

  .dropdown-menu .submenu .togle-icon {
    width: 100%;
    height: 15px;
    position: absolute;
    top: -15px;
    left: 0;
    overflow: hidden;
  }

    .dropdown-menu .submenu .togle-icon:after {
      content: "";
      position: absolute;
      width: 30px;
      height: 30px;
      background: #fff;
      transform: rotate(-45deg);
      top: 12px;
      left: 1px;
      box-shadow: 1px -1px 10px -2px #878D9E;
    }

  .dropdown-menu .submenu > li:not(.togle-icon) > a {
    display: block;
    padding: 7px 10px;
  }

.block-gradient {
  padding: 30px 35px 0;
  color: #fff;
  background: linear-gradient(-180deg, #312ABF 0%, #24366D 100%);
  box-shadow: -1px 1px 5px rgba(134, 134, 134, 0.25);
  border-radius: 5px;
}

  .block-gradient.dark {
    background: linear-gradient(-180deg, #312AC0 0%, #233669 16.67%);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
  }

  .block-gradient .title {
    margin-bottom: 20px;
    padding: 0 0 15px;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    border-bottom: 1px solid #466DCE;
  }

    .block-gradient .title.text-center {
      padding-bottom: 0;
      border: 0;
    }

  .block-gradient h1, .block-gradient h2, .block-gradient h3, .block-gradient h4, .block-gradient h5, .block-gradient h6 {
    color: #fff;
  }

  .block-gradient .title i {
    margin-left: 5px;
    font-size: 18px;
  }

  .block-gradient .buttons,
  .block-gradient .block-footer {
    margin: 35px -35px 0;
    padding: 30px 20px;
    background: #fff;
    color: #223668;
    border-radius: 50px 50px 0px 0px;
  }

    .block-gradient .block-footer ul li {
      color: #223668;
    }

    .block-gradient .block-gradient-list > li:not(:last-child),
    .block-gradient .block-footer ul > li:not(:last-child) {
      margin-bottom: 10px;
    }

    .block-gradient .block-footer ul > li.active {
      color: #ED008C;
    }

.breadcrumb ul > li {
  display: inline-block;
  font-weight: 600;
}

  .breadcrumb ul > li .delimiter {
    display: inline-block;
    margin: 0 3px 0 5px;
  }

  .breadcrumb ul > li strong {
    color: #ED008C;
    font-weight: normal;
  }

.ocarousel.item-grid .owl-nav button.owl-prev,
.ocarousel.item-grid .owl-nav button.owl-next {
  width: 35px;
  height: 35px;
  background: #ffffff;
  color: #ED008C;
  font-size: 12px;
  border-color: #ED008C;
  border-radius: 4px;
  line-height: 35px;
}

  .ocarousel.item-grid .owl-nav button.owl-prev:hover,
  .ocarousel.item-grid .owl-nav button.owl-prev:focus,
  .ocarousel.item-grid .owl-nav button.owl-next:hover,
  .ocarousel.item-grid .owl-nav button.owl-next:focus {
    background: #ED008C;
    color: #fff;
    outline-color: #ED008C;
  }

.pager {
  clear: right;
  margin-top: 30px;
  text-align: center;
}

  .pager ul > li {
    display: inline-block;
  }

    .pager ul > li:not(:last-child) {
      margin-left: 10px;
    }

    .pager ul > li > a,
    .pager ul > li > span {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      min-width: 50px;
      height: 50px;
      background: #fff;
      border: 1px solid #C4C4C4;
      border-radius: 100px;
    }

    .pager ul > li.current-page > a,
    .pager ul > li.current-page > span {
      background: #ED008C;
      color: #fff;
      border-color: #ED008C;
    }

    .pager ul > li.previous-page > a,
    .pager ul > li.next-page > a {
      text-transform: uppercase;
      border: 0;
    }

.title-container {
  margin-bottom: 45px;
}

  .title-container .title {
    color: #ED008C;
    text-align: center;
  }

    .title-container .title h2 {
      margin: 0 12px;
      color: #ED008C;
      font-size: 36px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .title-container .title i {
      color: #ED008C;
      font-size: 27px;
    }

  .title-container .subtitle {
    padding-top: 3px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    text-transform: capitalize;
  }

    .title-container .subtitle a {
      text-decoration: underline;
    }

/***** TABLE *****/
.table-wrapper {
  margin: 0 0 10px;
  padding: 0 0 1px;
  overflow-x: auto;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: inherit;
  border-collapse: collapse;
}

  .table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
  }

  .table th {
    text-align: inherit;
  }

  .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
  }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0,0,0,.05);
}

.table-bordered {
  border: 1px solid #dee2e6;
}

  .table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6;
  }

  .table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px;
  }

/***** FORMS *****/
.inputs {
  position: relative;
  margin-bottom: 1rem;
}

  .inputs label {
    display: inline-block;
    margin-bottom: .7rem;
    font-size: 16px;
  }

.validation-summary-errors {
  padding: 0 0 10px;
  color: #E50000;
}

.inputs .required {
  position: absolute;
  top: 15px;
  left: 0;
  color: #E50000;
}

.inputs .field-validation-error {
  display: block;
  padding: 3px 0 0;
  color: #E50000;
  font-size: 14px;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.inputs ::-webkit-input-placeholder {
  color: #fff;
  -webkit-transition: color 0.3s;
}

.inputs ::placeholder {
  color: #fff;
  transition: color 0.3s;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input.form-control,
textarea,
textarea.form-control {
  min-height: 40px;
  padding: 4px 6px 0px;
  background: transparent;
  font-size: 14px;
  line-height: 2.5;
  border: 0;
  border-bottom: 1px solid #466DCE;
  color: white;
  margin-bottom: 10px;
}

.forum-edit-page input[type="text"] {
  color: black;
}

.form-control.default.estimate-shipping-address-control {
  margin-bottom: 0px;
  min-height: 30px;
  border: 1px solid #BEC4D3;
}

input[type="text"].default,
input[type="email"].default,
input[type="tel"].default,
input[type="password"].default,
textarea.default {
  padding: 6px 10px;
  background: #fff;
  color: #223668;
  line-height: 1.5;
  border: 1px solid #223668;
  border-radius: 3px;
}

textarea,
textarea.form-control {
  overflow: hidden;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

  .input-group > .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
  }

    .input-group > .select:not(:last-child),
    .input-group > .form-control:not(:last-child) {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }

.input-group-append, .input-group-prepend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-append {
  margin-right: -1px;
}

input[type="text"].default::-webkit-input-placeholder,
input[type="text"].default::placeholder,
input[type="email"].default::-webkit-input-placeholder,
input[type="email"].default::placeholder,
input[type="tel"].default::-webkit-input-placeholder,
input[type="tel"].default::placeholder,
input[type="password"].default::-webkit-input-placeholder,
input[type="password"].default::placeholder,
textarea.default::-webkit-input-placeholder,
textarea.default::placeholder {
  color: #223668;
}

input[type="text"]:focus::-webkit-input-placeholder,
input[type="text"]:focus::placeholder,
input[type="email"]:focus::-webkit-input-placeholder,
input[type="email"]:focus::placeholder,
input[type="tel"]:focus::-webkit-input-placeholder,
input[type="tel"]:focus::placeholder,
input[type="password"]:focus::-webkit-input-placeholder,
input[type="password"]:focus::placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::placeholder,
input[type="text"].default:focus::-webkit-input-placeholder,
input[type="text"].default:focus::placeholder,
input[type="email"].default:focus::-webkit-input-placeholder,
input[type="email"].default:focus::placeholder,
input[type="tel"].default::-webkit-input-placeholder,
input[type="tel"].default:focus::placeholder,
input[type="password"].default:focus::-webkit-input-placeholder,
input[type="password"].default:focus::placeholder,
textarea.default:focus::-webkit-input-placeholder,
textarea.default:focus::placeholder {
  color: transparent;
}

.select,
.select-wrapper select {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding: 7px 15px 7px 30px;
  vertical-align: middle;
  background: #fff url(../images/arrow-down-light.svg) no-repeat left .75rem center/9px 9px;
  color: #223668;
  font-size: 14px;
  border: 1px solid #BEC4D3;
  border-radius: 100px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

  .select.w-auto,
  .select-wrapper.w-auto select {
    width: auto;
  }

.inputs .select,
.inputs.select-wrapper select {
  padding: 7px 15px 7px 30px;
  background: transparent url(../images/arrow-down-lighter.svg) no-repeat left .75rem center/9px 9px;
  color: #fff;
  border: 1px solid #466DCE;
  border-radius: 3px;
}

  .inputs .select option,
  .inputs.select-wrapper select option {
    color: #223668;
  }

.select.dark,
.select-wrapper.dark select {
  color: #223668;
  border: 1px solid #223668;
}

.date-picker-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

  .date-picker-wrapper select:not(:last-child) {
    margin-left: 15px;
  }

.checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

  .checkbox [type="checkbox"]:not(:checked),
  .checkbox [type="checkbox"]:checked {
    position: absolute;
    right: -9999px;
  }

  .checkbox [type="checkbox"] ~ label:before,
  .checkbox [type="checkbox"] ~ label:after {
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 23px;
    height: 23px;
  }

  .checkbox [type="checkbox"]:not(:checked) ~ label,
  .checkbox [type="checkbox"]:checked ~ label {
    position: relative;
    min-height: 23px;
    margin-left: 10px;
    margin-bottom: 0;
    padding-right: 2.3em;
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
  }

    .checkbox [type="checkbox"]:not(:checked) ~ label:before,
    .checkbox [type="checkbox"]:checked ~ label:before {
      content: '';
      top: 0;
      margin: 0;
      border: 1px solid #466DCE;
      background: transparent;
      border-radius: 3px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    }

    .checkbox [type="checkbox"]:checked ~ label:before {
      background: transparent;
    }

    .checkbox [type="checkbox"]:not(:checked) ~ label:after,
    .checkbox [type="checkbox"]:checked ~ label:after {
      content: '\2713\0020';
      top: 0;
      margin: 0;
      border: 0;
      font-size: 17px;
      font-weight: bold;
      line-height: 0.8;
      color: #4365CB;
      transition: all .2s;
    }

    .checkbox [type="checkbox"]:not(:checked) ~ label:after {
      opacity: 0;
      transform: scale(0);
    }

    .checkbox [type="checkbox"]:checked ~ label:after {
      background: transparent;
      opacity: 1;
      transform: scale(1);
    }

  .checkbox [type="checkbox"]:disabled:not(:checked) ~ label:before,
  .checkbox [type="checkbox"]:disabled:checked ~ label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #d9d9d9;
  }

  .checkbox [type="checkbox"]:disabled:checked ~ label:after {
    color: #999;
  }

  .checkbox [type="checkbox"]:disabled ~ label {
    color: #aaa;
  }

  .checkbox.dark [type="checkbox"]:not(:checked) ~ label:before,
  .checkbox.dark [type="checkbox"]:checked ~ label:before {
    border: 1px solid #223668;
  }

  .checkbox.dark [type="checkbox"]:not(:checked) ~ label:after,
  .checkbox.dark [type="checkbox"]:checked ~ label:after {
    color: #223668;
  }

  .checkbox.no-label [type="checkbox"]:not(:checked) ~ label,
  .checkbox.no-label [type="checkbox"]:checked ~ label {
    display: block;
    text-indent: -9000px;
  }

    .checkbox.no-label [type="checkbox"]:not(:checked) ~ label:after,
    .checkbox.no-label [type="checkbox"]:checked ~ label:after {
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
    }

    .checkbox.no-label [type="checkbox"]:checked ~ label:after {
      text-indent: initial;
    }

.radio input[type="radio"] {
  display: none;
}

  .radio input[type="radio"] + label {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 23px;
    margin-left: 15px;
    margin-bottom: 0;
    padding-right: 2.2em;
    font-size: 14px;
    cursor: pointer;
    line-height: 1em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

    .radio input[type="radio"] + label:before,
    .radio input[type="radio"] + label:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 23px;
      height: 23px;
      margin: 0;
      text-align: center;
      color: #fff;
      border-color: #dfe6e9;
      border-radius: 50%;
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
    }

    .radio input[type="radio"] + label:before {
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      box-shadow: inset 0 0 0 0.2em #fff, inset 0 0 0 1em #fff;
    }

    .radio input[type="radio"] + label:hover:before {
      -webkit-transition: all .3s ease;
      transition: all .3s ease;
      box-shadow: inset 0 0 0 0.3em #fff, inset 0 0 0 1em #dfe6e9;
    }

  .radio input[type="radio"]:checked + label:before {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: inset 0 0 0 0.22em #fff, inset 0 0 0 1em #4365CB;
  }

.input-group-quantity {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 200px;
  z-index: 0;
}

  .input-group-quantity .button-container {
    position: absolute;
    top: 50%;
    left: 0;
    overflow: hidden;
    background: #DADAE4;
    border: 1px solid #DADAE4;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .input-group-quantity input {
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding-right: 42px;
    color: #8F8E8E;
    font-size: 15px;
    border-color: #DADAE4;
    border-radius: 0;
  }

  .input-group-quantity .button-container button {
    display: block;
    width: 20px;
    height: 18px;
    margin-bottom: 1px;
    padding: 0;
    background: #EBEBF0 !important;
    color: #8E8E99;
    font-size: 18px;
    line-height: 18px;
    border: none;
    cursor: pointer;
    outline: 0;
  }

    .input-group-quantity .button-container button:last-child {
      margin-bottom: 0;
    }

/***** BUTTONS *****/
.button-1 {
  padding: 12px 35px;
  background: #ED008C;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  border: 0;
  border-radius: 100px;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s;
}

  .button-1:hover,
  .button-1:focus {
    color: #fff;
    opacity: 0.8;
    box-shadow: none;
    outline: 0;
  }

.button-2 {
  padding: 11px 35px;
  background: transparent;
  color: #ED008C;
  font-size: 18px;
  border: 1px solid #ED008C;
  border-radius: 100px;
  box-shadow: none;
  outline: 0;
  cursor: pointer;
  transition: all 0.3s;
}

  .button-2.btn-sm {
    padding: 6px 25px;
    font-size: 15px;
  }
/*.button-2:hover,
.button-2:focus {
  background: #ED008C;
  color: #fff;
  box-shadow: none;
  outline: 0;
}*/

/***** CUSTOM SCROLLBAR *****/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

  .scroll-wrapper.scb-xs.scb-outer {
    margin: 0 0 0 -5px;
    padding: 0 0 0 5px !important;
  }

  .scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    right: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
  }

    .scroll-wrapper > .scroll-content::-webkit-scrollbar {
      height: 0;
      width: 0;
    }

.scroll-element {
  display: none;
}

  .scroll-element, .scroll-element div {
    box-sizing: content-box;
  }

    .scroll-element.scroll-x.scroll-scrollx_visible,
    .scroll-element.scroll-y.scroll-scrolly_visible {
      display: block;
    }

    .scroll-element .scroll-bar,
    .scroll-element .scroll-arrow {
      cursor: default;
    }

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

  .scroll-textarea > .scroll-content {
    overflow: hidden !important;
  }

    .scroll-textarea > .scroll-content > textarea {
      border: none !important;
      box-sizing: border-box;
      height: 100% !important;
      margin: 0;
      max-height: none !important;
      max-width: none !important;
      overflow: scroll !important;
      outline: none;
      padding: 2px;
      position: relative !important;
      top: 0;
      width: 100% !important;
    }

      .scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
        height: 0;
        width: 0;
      }

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

  .scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    right: 0;
    top: 0;
    width: 100%;
  }

  .scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    right: 0;
    width: 100%;
  }

.scrollbar-inner.scb-lg > .scroll-element.scroll-x {
  height: 11px;
}

.scrollbar-inner.scb-sm > .scroll-element.scroll-x {
  height: 5px;
}

.scrollbar-inner.scb-xs > .scroll-element.scroll-x {
  height: 3px;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  left: 0;
  top: 0;
  width: 6px;
}

.scrollbar-inner.scb-lg > .scroll-element.scroll-y {
  width: 11px;
}

.scrollbar-inner.scb-sm > .scroll-element.scroll-y {
  width: 5px;
}

.scrollbar-inner.scb-xs > .scroll-element.scroll-y {
  width: 3px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  opacity: 0.8;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  width: 3px;
  right: 1.5px;
  background-color: #D6D8DE;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #223668;
  transition: background-color 0.3s;
}

.scrollbar-inner:hover > .scroll-element .scroll-bar {
  background-color: #223668;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #223668;
  opacity: 1;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  right: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  right: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

/***** HEADER *****/
.admin-header-links {
  padding: 5px;
  background-color: #eee;
  text-align: center;
}

.header-banner {
  position: relative;
  overflow: hidden;
  height: 0;
  background: linear-gradient(-90deg, #4A42EB -0.33%, #223668 100%);
  color: #fff;
}

.header-banner__text {
  width: calc(100% - 15px);
  text-align: center;
}

.header-banner__icon i {
  cursor: pointer;
}

.header-upper {
  min-height: 40px;
  background: #D2EBFE;
}

.header-upper__middle {
  text-align: center;
}

.header-upper__right {
  text-align: left;
}

.header-logo img {
  max-width: 250px;
}

.header-logo-cat .mm-navbar-nav {
  display: none;
}

.header-logo-cat .dropdown-menu-list > a {
  font-size: 0;
}

.header-logo-cat .dropdown-menu-list i {
  margin-left: 5px;
  font-size: 22px;
}

.search-box__wrapper {
  position: relative;
}

input[type="text"].search-box-text {
  width: 100%;
  height: 50px;
  padding: 0 20px 0 45px;
  background: #fff;
  color: #223668;
  font-size: 18px;
  font-weight: 300;
  outline: 0;
  transition: border-color .5s;
  border: 1.5px solid #223668;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
}

.search-box-button {
  position: absolute;
  top: 0;
  left: 15px;
  bottom: 0;
  width: 40px;
  min-height: 50px;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #ED008C;
  font-size: 25px;
  cursor: pointer;
}

.ico-wishlist .wishlist-qty {
  position: relative;
  top: -11px;
  right: -3px;
  font-size: 18px;
}

.ico-cart {
  position: relative;
  bottom: -3px;
}

  .ico-cart .cart-qty {
    position: absolute;
    top: -6px;
    left: -10px;
    min-width: 24px;
    height: 24px;
    padding: 2px;
    background: #223668;
    color: #fff;
    font-size: 10px;
    border: 2px solid #fff;
    border-radius: 100px;
  }

.header-links .list-inline > li:not(:last-child) {
  margin-left: 12px;
}

.header-links .list-inline > li:first-child {
  margin-left: 8px;
}

.header-links [class*="icon-"] {
  color: #ED008C;
  font-size: 33px;
}

.header-links [class*="icon-cart"] {
  font-size: 40px;
}

.header-menu .other-links > li {
  margin-left: 15px;
  text-transform: uppercase;
}

  .header-menu .other-links > li:last-child {
    margin-left: 0;
  }

.header-menu .other-links .dropdown-menu .submenu {
  min-width: 150px;
  color: #223668;
}

.header-lower.sticky {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  min-height: 50px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.1);
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  animation: smoothScroll .5s forwards;
  z-index: 9999;
}

  .header-lower.sticky .header-logo-cat .mm-navbar-nav {
    display: block;
  }

/***** FOOTER *****/
.footer {
  background-image: url('../images/footer-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.footer-block {
  font-size: 16px;
}

  .footer-block .title {
    padding-bottom: 5px;
    text-transform: uppercase;
  }

  .footer-block .list > li:not(:last-child) {
    margin-bottom: 5px;
  }

.social .title {
  font-size: 24px;
  text-transform: none;
}

.footer .networks {
  color: #ED008C;
  font-size: 45px;
}

.footer-logo-wrapper {
  background-image: url('../images/footer-img.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
}

.footer-logo {
  max-width: 50%;
  padding: 52% 0 0 15px;
}

  .footer-logo img {
    max-width: 100%;
  }

.footer .newsletter {
  padding: 130px 48% 17% 10%;
}

.newsletter .title {
  font-size: 18px;
}

.newsletter-email {
  position: relative;
}

input[type="email"].newsletter-subscribe-text {
  width: 100%;
  height: 43px;
  padding: 0 20px 0 45px;
  background: #fff;
  color: #223668;
  font-size: 16px;
  font-weight: 300;
  outline: 0;
  border: 0;
  border-radius: 5px;
}

.newsletter-subscribe-button {
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  width: 40px;
  min-height: 50px;
  padding: 0;
  background-color: transparent;
  border: none;
  color: #6F7DA2;
  font-size: 25px;
  cursor: pointer;
}

.footer-lower {
  background: #fff;
  font-weight: bold;
}

.footer #qv-modal {
  margin: 0;
  padding: 0;
}

/***** PRODUCT BOX *****/
.item-box {
  width: calc(25% - 20px);
  float: right;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
}

  .item-box .product-item {
    position: relative;
    text-align: center;
    background: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    box-shadow: none;
    transition: 0.3s;
  }

    .item-box .product-item:hover {
      box-shadow: 0px 0px 10px rgba(131, 140, 153, 0.2);
    }

  .item-box .buttons-hover {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
  }

  .item-box .product-item:hover .buttons-hover {
    opacity: 1;
    transition: 0.5s;
  }

  .item-box .buttons-hover button {
    min-height: initial;
    font-size: 0;
    background: transparent;
    color: #ED008C;
    border: none;
    padding: 0;
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
  }

  .item-box .buttons-hover [class*="icon-"] {
    font-size: 20px;
  }

  .item-box .picture img {
    max-width: 100%;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
  }

  .item-box .details {
    padding: 15px;
  }

  .item-box .product-title {
    margin-bottom: 10px;
    font-size: 18px;
  }

    .item-box .product-title a {
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

  .item-box .prices {
    margin-bottom: 10px;
    color: #34A3D5;
    font-weight: bold;
    font-size: 18px;
  }

    .item-box .prices .old-price {
      margin-left: 3px;
      color: #AFB7BA;
      text-decoration: line-through;
    }

  .item-box .product-rating-box {
    display: inline-block;
    margin: 0 0 10px;
  }

  .item-box .rating {
    background: url('../images/rating1.png') repeat-x;
    width: 95px;
    height: 14px;
  }

    .item-box .rating div {
      background: url('../images/rating2.png') repeat-x;
      height: 14px;
    }

  .item-box .product-box-add-to-cart-button {
    padding: 12px 5px;
    background: transparent;
    color: #ED008C;
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }

    .item-box .product-box-add-to-cart-button i {
      padding-left: 7px;
      font-size: 23px;
    }

.product-list .item-grid .item-box,
.center-2 .product-list .item-grid .item-box {
  width: 100%;
  float: none;
}

.product-list .item-box .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: right;
}

.product-list .item-box .picture {
  position: relative;
}

  .product-list .item-box .picture img {
    height: 100%;
    border-top-left-radius: 0;
    border-bottom-right-radius: 5px;
  }

/***** CATAGOREY PAGE *****/
.product-spec-filter .filter-title, .price-range-filter .filter-title, .product-manufacturer-filter .filter-title {
  color: #ED008C;
  font-weight: 800;
  font-size: 14px;
}

.filtered-wrapper {
  font-size: 14px;
  border-bottom: 1px solid #E5E5E5;
}

.filtered-items ul > li:not(:last-child) {
  margin-bottom: 7px;
}

.filtered-items .filtered-attribute {
  font-weight: 800;
}

.filtered-wrapper .remove-filter {
  font-weight: 600;
}

  .filtered-wrapper .remove-filter i {
    font-size: 12px;
  }

.product-selectors {
  border: 1px solid #D8DBE2;
  border-radius: 3px;
}

.product-page-size,
.product-sorting {
  font-size: 14px;
  text-transform: uppercase;
}

  .product-page-size.select-wrapper select,
  .product-sorting.select-wrapper select {
    height: 32px;
    border-radius: 3px;
  }

.product-viewmode {
  font-size: 22px;
}

.viewmode-icon {
  color: #C5C4C8;
}

  .viewmode-icon.selected {
    color: #ED008C;
  }

.sub-category-item, .manufacturer-item {
  position: relative;
  -webkit-box-shadow: 0 3px 7px #e9dfec;
  -moz-box-shadow: 0 3px 7px #e9dfec;
  box-shadow: 0 3px 7px #e9dfec;
}

  .sub-category-item .title, .manufacturer-item .title {
    position: absolute;
    bottom: 15px;
    right: 50%;
    width: calc(100% - 50px);
    margin: 0;
    padding: 9px 30px;
    background: #ED008C;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    -webkit-box-shadow: -1px 1px 0 0 rgba(0,0,0,.1);
    box-shadow: -1px 1px 0 0 rgba(0,0,0,.1);
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    pointer-events: none;
    border-radius: 100px;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sub-category-item .picture a, .manufacturer-item .picture a {
    display: block;
  }

  .sub-category-item .picture img, .manufacturer-item .picture img {
    border-radius: 3px;
  }

.category-banner img {
  width: 100%;
}

.category-page .item-grid,
.search-page .item-grid,
.manufacturer-page .item-grid,
.vendor-page .item-grid,
.manufacturer-grid .item-grid,
.manufacturer-list-page .item-grid,
.recently-viewed-products-page .item-grid,
.recently-added-products-page .item-grid,
.also-purchased-products-grid .item-grid,
.related-products-grid .item-grid {
  display: flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

/***** PRODUCT DETAILS PAGE *****/
.html-product-details-page .side-2 {
  margin-top: 48px;
}

.attributes .option-list li {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 5px;
}

  .attributes .option-list li:last-child {
    margin-left: 0;
    margin-bottom: 0;
  }

.attributes dl {
  margin: 0;
}

.attributes dd {
  margin-right: 0;
}

.attributes .attribute-squares input {
  position: absolute;
  opacity: 0;
}

.attributes .attribute-squares label {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

.attributes .attribute-squares .attribute-square-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.attributes .attribute-squares li .attribute-square-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-family: "icomoon";
  font-size: 18px;
  font-style: normal;
  color: #fff;
  transition: all 300ms;
}

.attributes .attribute-squares li.selected-value .attribute-square-container::after {
  content: "\e925";
}

.attributes .attribute-squares .attribute-square {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
}

.attributes .option-list-square input {
  position: absolute;
  opacity: 0;
}

.attributes .option-list-square label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 39px;
  height: 39px;
  padding: 5px;
  background: #FFFFFF;
  color: #A9A9AE;
  font-size: 16px;
  border: 1px solid #A9A9AE;
  border-radius: 5px;
  cursor: pointer;
  transition: all 300ms;
}

.attributes .option-list-square input[type="radio"]:checked ~ label,
.attributes .option-list-square input[type="checkbox"]:checked ~ label {
  color: #ED008C;
  border-color: #ED008C;
}

.product-essential .gallery, .product-essential .picture {
  position: relative;
}

.product-essential .picture-thumbs {
  margin-top: 10px;
}

  .product-essential .picture-thumbs .thumb-item:not(:last-child) {
    margin-left: 10px;
  }

  .product-essential .picture-thumbs .thumb-item {
    cursor: pointer;
  }

    .product-essential .picture-thumbs .thumb-item img {
      border-radius: 3px;
    }

.product-essential .short-description,
.product-essential .product-reviews-overview,
.product-essential .manufacturers,
.product-essential .product-vendor,
.product-essential .sku,
.product-essential .prices,
.product-essential .add-to-cart,
.product-essential .product-estimate-shipping,
.product-essential .availability,
.product-essential .attributes dd,
.product-essential .attribute-item .attribute-data {
  margin-bottom: 20px;
  font-size: 14px;
}

.product-essential .attributes dd,
.product-essential .attribute-item .attribute-data {
  margin-top: 10px;
}

.product-essential .manufacturers .label,
.product-essential .product-vendor .label,
.product-essential .sku .label,
.product-essential .availability .label,
.product-essential .attributes dt,
.product-essential .attribute-item .attribute-label,
.variant-overview .sku .label,
.variant-overview .availability .label {
  color: #000000;
  font-weight: 800;
  font-size: 14px;
}

.product-essential .required {
  color: #E50000;
}

.product-essential .short-description {
  font-weight: 600;
}

.product-essential .product-review-links {
  color: #2883EC;
}

.product-essential .old-product-price {
  color: #B8BECE;
  font-weight: bold;
  font-size: 20px;
  text-decoration: line-through;
}

.product-essential .product-price {
  font-size: 24px;
  font-weight: 800;
}

.product-essential .product-estimate-shipping {
  padding: 10px;
  border: 1px solid #ED008C;
  border-radius: 5px;
}

.product-essential .free-shipping {
  color: #4BCD2A;
  font-weight: 600;
  text-transform: uppercase;
}

.product-essential .attributes input[type="text"] {
  padding: 5px 10px;
  color: #223668;
  line-height: 1.5;
  border: 1px solid #466DCE;
  border-radius: 3px;
}

.add-to-cart-panel .button-1.add-to-cart-button {
  padding: 7px 30px;
  font-weight: 800;
  font-size: 14px;
  text-transform: capitalize;
  text-overflow: ellipsis;
  white-space: nowrap;
}

  .add-to-cart-panel .button-1.add-to-cart-button i {
    font-size: 22px;
  }

.add-to-cart-panel .qty-wrapper {
  min-height: 36px;
  padding: 0 20PX;
  border: 1px solid #D2D2DC;
  border-radius: 100px;
}

.add-to-cart-panel .qty-label {
  color: #B3BBC6;
  font-size: 15px;
}

.add-to-cart-panel .qty-wrapper input[type="number"] {
  width: auto;
  max-width: 50px;
  min-height: 34px;
  padding: 0 5px;
  color: #223668;
  text-align: center;
  line-height: 1.5;
  border: 0;
  border-radius: 0;
}

.add-to-cart-panel .qty-wrapper input::-webkit-outer-spin-button,
.add-to-cart-panel .qty-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-panel .qty-wrapper input[type="number"] {
  -moz-appearance: textfield;
}

.overview-buttons .button-2,
.variant-overview .button-2 {
  padding: 7px 20px;
  font-size: 13px;
  text-transform: capitalize;
}

  .overview-buttons .button-2 i,
  .variant-overview .button-2 i {
    font-size: 18px;
  }

.variant-picture,
.variant-overview {
  text-align: center;
}

  .variant-overview .add-to-cart-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .variant-overview .qty-wrapper {
    margin-top: 10px;
  }

.product__tab.ui-widget {
  color: #666B77;
  font-size: 15px;
  line-height: 25px;
}

  .product__tab.ui-widget.ui-widget-content {
    margin: 60px 0 25px;
    background: #FFFFFF;
    border-color: #E4E4EF;
    border-radius: 3px;
    box-shadow: 0px 0px 10px rgba(193, 193, 193, 0.25);
  }

.product__tab.ui-tabs .ui-tabs-nav {
  padding-top: 23px;
  background: none;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
}

  .product__tab.ui-tabs .ui-tabs-nav li {
    float: none;
    display: inline-block;
    background: none;
    border: 0;
    border-radius: 0;
  }

    .product__tab.ui-tabs .ui-tabs-nav li.ui-tabs-active {
      background: #ED008C;
      border-radius: 100px;
    }

.product__tab .ui-state-default a,
.product__tab .ui-state-default a:link,
.product__tab .ui-state-default a:visited {
  padding: 8px 25px;
  color: #666B77;
}

.product__tab .ui-state-active a,
.product__tab .ui-state-active a:link,
.product__tab .ui-state-active a:visited {
  color: #FFFFFF;
}

.product__tab .product-tags-box .title,
.product__tab .product-specs-box .title {
  padding-bottom: 15px;
}

.product__tab .product-tags-list li {
  display: inline-block;
}

  .product__tab .product-tags-list li.separator {
    margin-left: 5px;
  }

.product-details-page .also-purchased-products-grid,
.product-details-page .related-products-grid {
  margin-top: 30px;
}

  .product-details-page .also-purchased-products-grid .title,
  .product-details-page .related-products-grid .title {
    width: calc(100% - 60px);
    padding-bottom: 15px;
    font-size: 24px;
    text-align: right;
    text-transform: uppercase;
  }

  .product-details-page .also-purchased-products-grid.ocarousel .owl-nav,
  .product-details-page .related-products-grid.ocarousel .owl-nav {
    top: -43px;
    left: 0;
    width: auto;
  }

    .product-details-page .also-purchased-products-grid.ocarousel .owl-nav button.owl-prev,
    .product-details-page .related-products-grid.ocarousel .owl-nav button.owl-prev {
      margin-left: 5px;
    }

/***** ESTIMATE SHIPPING POPUP *****/
.estimate-shipping-popup {
  position: relative;
  background: #FFF;
  padding: 25px;
  width: auto;
  max-width: 800px;
  margin: 0 auto;
}

.estimate-shipping-popup-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.estimate-shipping-popup-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.estimate-shipping-popup-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.estimate-shipping-popup-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.estimate-shipping-popup-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.estimate-shipping-popup-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.shipping-options-loading {
  background: url(../images/ajax-loader-small.gif) no-repeat;
  width: 16px;
  height: 16px;
  position: relative;
  left: 8px;
  margin: 4% 50%;
}

.shipping-address .required {
  position: absolute;
  top: 3px;
  left: 5px;
  margin-right: 0px;
  color: #FF0707;
}

.estimate-shipping-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.estimate-shipping-row-item.address-item .estimate-shipping-row {
  position: relative;
}

.estimate-shipping-row .select {
  border-radius: 3px;
}

.estimate-shipping-row.shipping-option {
  cursor: pointer;
}

  .estimate-shipping-row.shipping-option.active {
    font-weight: 700;
  }

.estimate-shipping-row-item {
  -ms-flex: 0 1 100%;
  flex: 0 1 100%;
}

  .estimate-shipping-row-item.shipping-item {
    padding: 8px 0;
    overflow: hidden;
    overflow-wrap: break-word;
  }

  .estimate-shipping-row-item.shipping-header-item {
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .estimate-shipping-row-item.address-item + .estimate-shipping-row-item.address-item {
    padding-right: 15px;
  }

  .estimate-shipping-row-item + .estimate-shipping-row-item {
    padding-right: 10px;
  }

.estimate-shipping-row-item-radio {
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
}

.ship-to-title {
  margin-bottom: 10px;
}

.choose-shipping-title {
  margin-top: 20px;
}

.estimate-shipping-address-control {
  width: 100%;
  height: 36px;
  border-radius: 0;
}

.estimate-shipping-radio {
  display: none;
}

  .estimate-shipping-radio + label {
    -webkit-appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    padding: 9px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
  }

  .estimate-shipping-radio:checked + label:after {
    content: ' ';
    width: 6px;
    height: 6px;
    border-radius: 50px;
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ffffff;
  }

  .estimate-shipping-radio:checked + label {
    background-color: #ED008C;
    color: #99a1a7;
    border: 1px solid #adb8c0;
    border-color: #ED008C;
  }

.apply-shipping-button {
  padding: 10px 25px;
}

.apply-shipping-button-container {
  margin-top: 15px;
  text-align: center;
}

.shipping-options-header {
  top: 0;
  z-index: 1;
  position: sticky;
  background-color: #fff;
}

.shipping-options {
  position: relative;
  z-index: 1;
  overflow: hidden;
  overflow-y: auto;
  max-height: 200px;
  background: #FFF no-repeat;
  background-image: -webkit-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -webkit-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image: -moz-radial-gradient(50% 0, farthest-side, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), -moz-radial-gradient(50% 100%, farthest-side, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-image: radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 50% 100%, rgba(242, 242, 242, 1), rgba(0, 0, 0, 0));
  background-position: 100% 0, 100% 100%;
  background-size: 100% 7px;
}

  .shipping-options:before,
  .shipping-options:after {
    content: "";
    position: relative;
    z-index: -1;
    display: block;
    height: 30px;
    margin: 0 0 -30px;
    background: -webkit-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: -moz-linear-gradient(top, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
    background: linear-gradient(to bottom, #FFF, #FFF 30%, rgba(255, 255, 255, 0));
  }

  .shipping-options:after {
    margin: -30px 0 0;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #FFF 70%, #FFF);
  }

.no-shipping-options {
  text-align: center;
  margin: 4% 0;
}

.estimate-shipping-popup .message-failure {
  margin: 5px 0 -5px;
  font-size: 12px;
  color: #e4434b;
}

/***** CART/WISHLIST PAGES *****/
.order-progress {
  margin: 20px 0;
  padding: 15px 0;
  text-align: center;
}

  .order-progress ul {
    font-size: 0;
  }

  .order-progress li {
    display: inline-block;
    margin: 0 10px 25px;
  }

  .order-progress a {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    font-size: 14px; /*reset zeroing*/
    color: #333;
  }

  .order-progress .step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    background-color: #F0F2F5;
    color: #828286;
    font-size: 18px;
    border-radius: 50%;
  }

  .order-progress li.active-step .step-icon {
    background-color: #ED008C;
    color: #fff;
  }

  .order-progress li.active-step a {
    cursor: pointer;
  }

  .order-progress li.inactive-step a {
    opacity: 0.3;
    cursor: default;
  }

.order-summary-content {
  padding: 15px 0 40px;
}

  .order-summary-content > form > .row {
    width: 100%;
  }

.cart {
  width: 100%;
  color: #616065;
  font-size: 14px;
  border-spacing: 0 10px;
}

  .cart td,
  .cart th {
    padding: 15px;
    border: 1px solid #dee2e6;
  }

    .cart td:first-child,
    .cart th:first-child {
      border-top-right-radius: 5px;
      border-bottom-right-radius: 5px;
    }

    .cart td:last-child,
    .cart th:last-child {
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
    }

    .cart th.add-to-cart,
    .cart td.add-to-cart {
      min-width: 121px;
    }

      .cart td.add-to-cart .checkbox {
        display: inline-block;
      }

  .cart th {
    background: #223668;
    color: #fff;
    font-weight: 600;
    text-align: right;
    text-transform: uppercase;
    border-color: transparent;
  }

  .cart tbody tr {
    box-shadow: 0px 0px 10px rgba(193, 193, 193, 0.25);
  }

    .cart tbody tr td {
      border-width: 1px 0 1px 0;
    }

      .cart tbody tr td:first-child {
        border-right-width: 1px;
      }

      .cart tbody tr td:last-child {
        border-left-width: 1px;
      }

  .cart .remove-from-cart .td-title,
  .cart .remove-from-cart input[type="checkbox"],
  .cart .sku .td-title,
  .cart .unit-price .td-title,
  .cart .quantity .td-title,
  .cart .subtotal .td-title {
    display: none;
  }

  .cart .remove-from-cart .remove-button {
    padding: 0;
    background-color: transparent;
    color: #C8C8D0;
    border: 0;
    cursor: pointer;
  }

    .cart .remove-from-cart .remove-button:hover {
      color: #E50000;
    }

  .cart .add-to-cart .checkbox [type="checkbox"]:not(:checked) ~ label,
  .cart .add-to-cart .checkbox [type="checkbox"]:checked ~ label {
    padding-right: 11px;
  }

  .cart .add-to-cart .checkbox [type="checkbox"] ~ label:before,
  .cart .add-to-cart .checkbox [type="checkbox"] ~ label:after {
    width: 20px;
    height: 20px;
  }

  .cart .add-to-cart .checkbox [type="checkbox"]:not(:checked) ~ label:after,
  .cart .add-to-cart .checkbox [type="checkbox"]:checked ~ label:after {
    font-size: 15px;
  }

  .cart .product-picture a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .cart .product a {
    color: #616065;
    font-weight: 600;
  }

  .cart .product .edit-item a {
    font-weight: 300;
  }

  .cart a:hover {
    color: #ED008C;
  }

  .cart .product .attributes {
    padding: 5px 0;
    line-height: 25px;
  }

    .cart .product .attributes br {
      padding-bottom: 5px;
    }

  .cart .quantity-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #FFFFFF;
    border: 0.5px solid #CECFD5;
    box-shadow: 0px 0px 10px rgba(155, 158, 164, 0.15);
    border-radius: 3px;
  }

  .cart .input-group-quantity .button-container {
    position: relative;
    top: auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 7px;
    background: transparent;
    border: 0;
    transform: none;
    overflow: visible;
  }

    .cart .input-group-quantity .button-container button {
      width: auto;
      height: auto;
      background: transparent !important;
      color: #777777;
      font-size: 12px;
      line-height: normal;
    }

  .cart .input-group-quantity input {
    min-width: 30px;
    padding: 0;
    color: #676A74;
    text-align: center;
    border: 0;
    box-shadow: none;
  }

.cart-options .common-buttons,
.wishlist-page .buttons {
  margin-top: 30px;
}

  .cart-options .common-buttons .button-2,
  .wishlist-page .buttons .button-2 {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 20px;
    color: #223668;
    font-size: 15px;
    line-height: 100%;
    border-color: #223668;
    border-radius: 3px;
  }

    .cart-options .common-buttons .button-2:hover,
    .cart-options .common-buttons .button-2:focus,
    .wishlist-page .buttons .button-2:hover,
    .wishlist-page .buttons .button-2:focus {
      background: #223668;
      color: #fff;
    }

.block-gradient.block-gradient-checkout {
  background: linear-gradient(-180deg, #312AC0 0%, #233669 57.29%);
}

  .block-gradient.block-gradient-checkout .selected-checkout-attributes,
  .block-gradient.block-gradient-checkout .title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 1px solid #466DCE;
  }

  .block-gradient.block-gradient-checkout .input-group input[type="text"].default {
    background: transparent;
    color: #fff;
    border: 1px solid #466DCE;
    border-radius: 3px;
  }

  .block-gradient.block-gradient-checkout .input-group .button-1 {
    padding: 9px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
  }

  .block-gradient.block-gradient-checkout .buttons {
    display: block;
    margin: 55px -35px 0;
    padding: 40px 35px;
    color: #2C2D36;
    text-align: right;
  }

.cart-total tr td {
  padding-bottom: 20px;
}

.cart-total .cart-total-right {
  text-align: left;
}

.terms-of-service.checkbox [type="checkbox"]:not(:checked) ~ label,
.terms-of-service.checkbox [type="checkbox"]:checked ~ label {
  text-transform: capitalize;
}

.checkout-buttons .button-1 {
  width: 100%;
  padding: 10px 35px;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 3px;
}

.no-data i {
  font-size: 50px;
}

/***** CHECKOUT PAGE *****/
.checkout-page .page-title h1 {
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  border-bottom: solid 2px #EBEBF0;
  margin: 16px 0;
  padding: 20px 0;
}

.checkout-page .section {
  margin: 0 0 30px;
}

.checkout-data .opc {
  margin: 20px auto 40px;
  padding: 0;
}

.checkout-page .section.order-summary {
  margin: 100px 0 30px;
}

.checkout-page .cart-options {
  min-height: 10px;
  overflow: hidden;
}

.checkout-page .cart-footer {
  border-top: none;
}

.checkout-page .total-info {
  margin: 0;
  border-bottom: none;
  padding: 5px 20px 10px;
}

.checkout-page .button-1 {
  display: inline-block;
  min-width: 140px;
  border: none;
  padding: 10px 30px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100px;
  transition: opacity 0.3s;
}

  .checkout-page .button-1:hover {
    opacity: 0.8;
  }

.checkout-page .address-item {
  width: 350px;
  max-width: 100%;
  margin: 0 auto 40px;
}

  .checkout-page .address-item ul {
    margin: 0 0 15px;
    background-color: #f9f9f9;
    padding: 20px;
    color: #333;
  }

  .checkout-page .address-item li {
    padding: 5px 0;
  }

    .checkout-page .address-item li.name {
      font-size: 16px;
      font-weight: bold;
    }

.enter-address .message-error {
  margin: 20px 0;
}

.enter-address .edit-address {
  margin: 0 auto 30px;
  padding: 25px 25px 30px;
  background: linear-gradient(-180deg, #312ABF 0%, #24366D 100%);
  font-size: 14px;
  text-align: right;
  border-radius: 5px;
  box-shadow: -1px 1px 5px rgba(134, 134, 134, 0.25);
}

.edit-address .inputs {
  margin-bottom: 1.5rem;
}

  .edit-address .inputs .required {
    top: 10px;
    left: 7px;
  }

.edit-address label {
  display: inline-block;
  padding-bottom: 5px;
  text-align: right;
}

.edit-address input, .edit-address #Address_CountryId, .edit-address #Address_StateProvinceId {
  color: black;
}

.inputs #states-loading-progress {
  display: none;
}

.checkout-page .ship-to-same-address {
  padding: 30px 0;
  text-align: center;
}

  .checkout-page .ship-to-same-address .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #333;
  }

.checkout-page .pickup-in-store {
  text-align: center;
}

  .checkout-page .pickup-in-store .selector {
    margin: 0 0 5px;
    font-weight: bold;
    color: #333;
  }

.select-pickup-point {
  text-align: center;
}

.checkout-page .pickup-points-map {
  min-width: 400px;
  min-height: 350px;
  vertical-align: middle;
  margin-top: 5px;
  margin-bottom: 5px;
}

.shipping-method .method-list,
.payment-method .method-list {
  font-size: 0;
}

  .shipping-method .method-list li,
  .payment-method .method-list li {
    margin: 15px 0;
    vertical-align: top;
    font-size: 14px;
  }

    .shipping-method .method-list li label,
    .payment-method .method-list li label {
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      margin-left: 0;
      padding: 20px 50px 20px 20px;
      background: linear-gradient(-180deg, #312AC0 0%, #233669 57.29%);
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }

.shipping-method .radio input[type="radio"] + label:before,
.shipping-method .radio input[type="radio"] + label:after,
.payment-method .radio input[type="radio"] + label:before,
.payment-method .radio input[type="radio"] + label:after {
  top: 17px;
  right: 15px;
}

.shipping-method .method-description,
.payment-method .method-description {
  margin: 15px 0 0;
  text-align: right;
}

.payment-method .use-reward-points {
  margin: 0 0 30px;
  text-align: center;
  color: #333;
}

.payment-method .payment-logo {
  display: block;
  padding: 0 0 15px;
}

  .payment-method .payment-logo label {
    display: block;
    font-size: 0 !important;
  }

.payment-method .checkbox-container {
  display: inline-block;
}

.payment-info .info {
  padding: 30px 15px;
  color: #333;
}

  .payment-info .info tr {
    display: block;
    margin: 0 0 15px;
    font-size: 0;
  }

  .payment-info .info td {
    display: inline-block;
    width: 100% !important;
    max-width: 400px !important;
    font-size: 14px;
  }

    .payment-info .info td:only-child {
      width: 100% !important;
      max-width: 100% !important;
    }

    .payment-info .info td input[type="text"] {
      width: 100% !important;
      color: black;
    }

    .payment-info .info td input[name="CardCode"] {
      width: 65px !important;
    }

    .payment-info .info td select {
      min-width: 70px;
      padding: .6em .8em .5em 1.4em;
    }

    .payment-info .info td:first-child {
      margin: 0 0 10px;
    }

  .payment-info .info p {
    text-align: right;
  }

.confirm-order .buttons {
  padding: 10px 0;
}

.confirm-order .button-1 {
  font-size: 16px;
}

.order-review-data > div,
.order-details-area > div,
.shipment-details-area > div {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 40px;
  background-color: #f9f9f9;
  padding: 20px;
  color: #333;
}

.order-review-data li,
.order-details-area li,
.shipment-details-area li {
  padding: 3px 0;
}

.order-review-data .title,
.order-details-area .title,
.shipment-details-area .title {
  margin: 0 0 5px;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}

  .order-review-data .title strong,
  .order-details-area .title strong,
  .shipment-details-area .title strong {
    font-weight: 700;
  }

.order-review-data .payment-method-info,
.order-review-data .shipping-method-info,
.order-details-area .payment-method-info,
.order-details-area .shipping-method-info {
  margin-top: 20px;
}

.order-completed .details {
  margin: 0 0 30px;
  padding: 30px 15px;
  text-align: center;
  color: #333;
}

  .order-completed .details div {
    margin: 5px 0;
  }

  .order-completed .details strong {
    font-weight: normal;
    text-transform: uppercase;
  }

  .order-completed .details a {
    color: #4ab2f1;
  }

    .order-completed .details a:hover {
      text-decoration: underline;
    }

.opc .step-title {
  margin: 0 0 1px;
  overflow: hidden;
  background-color: #f6f6f6;
}

.opc .allow .step-title {
  background-color: #223668;
  cursor: pointer;
}

.opc .step-title .number,
.opc .step-title .title {
  float: right;
  margin: 0;
  padding: 10px 15px;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
}

.opc .allow .step-title .number,
.opc .allow .step-title .title {
  color: #fff;
  cursor: pointer;
}

.opc .step-title .number {
  width: 42px;
  background-color: #eeeeee;
  border-left: 1px solid #fff;
  text-align: center;
}

.opc .allow .step-title .number {
  background-color: #ED008C;
}

.opc .step {
  margin: 10px 0;
  padding: 30px 15px;
  text-align: center;
}

.opc .section {
  margin: 0 auto 30px;
}

  .opc .section > label {
    display: block;
    margin: 0 0 10px;
  }

.opc input[type="text"],
.opc select {
  max-width: 100%;
}

.opc .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  text-align: left;
}

.opc .back-link {
  margin: 0;
}

  .opc .back-link small {
    display: none;
  }

  .opc .back-link a {
    display: inline-block;
  }

  .opc .back-link i {
    padding-left: 5px;
  }

.opc .buttons .please-wait {
  display: block;
  margin: 0 10px 0;
  background: none;
}

.opc .section.ship-to-same-address {
  margin: 0 0 30px;
  padding: 0;
}

.opc .section.pickup-in-store {
  margin: 0 0 30px;
  padding: 0;
}

.opc .payment-info .info tr {
  text-align: right;
}

.opc .section.order-summary {
  margin: 0;
}

.shipping-method .method-name {
  text-align: right;
}

.checkout-page.order-completed-page {
  text-align: center;
}

.billing-address-page .select-billing-address .title,
.shipping-address-page .select-shipping-address .title {
  padding: 0 15px 15px;
  text-align: center;
}

.billing-address-page .address-grid,
.shipping-address-page .address-grid {
  margin: 0 auto;
  text-align: center;
}

.billing-address-page .new-billing-address .title,
.shipping-address-page .new-shipping-address .title {
  padding: 0 0 15px;
}

.shipping-address-page .buttons,
.shipping-method-page .buttons,
.payment-method-page .buttons,
.payment-info-page .buttons,
.order-confirm-page .buttons {
  text-align: center;
}

/***** FLYOUT CART *****/
.flyout-cart {
  display: none;
}

#topcartlink:hover .flyout-cart {
  display: block;
}

.flyout-cart {
  position: absolute;
  top: 100%;
  left: 2px;
  width: 340px;
  margin-top: -1px;
  padding-top: 10px;
  z-index: 100;
}

  .flyout-cart.active {
    display: block;
  }

.mini-shopping-cart {
  background-color: #fff;
  text-align: right;
  font-size: 14px;
  box-shadow: 0px 5px 10px #878D9E;
}

  .mini-shopping-cart::before {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    font-size: 12px;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #fff;
    -webkit-filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
    filter: drop-shadow(1px -1px 1px rgba(0,0,0,.25));
  }

  .mini-shopping-cart .cart-title,
  .mini-shopping-cart .cart-summary {
    padding: 7px 15px;
    font-size: 16px;
    border-bottom: 1px solid #223668;
  }

    .mini-shopping-cart .cart-title .icon-cart,
    .mini-shopping-cart .cart-summary .icon-cart {
      padding-left: 10px;
      font-size: 30px;
    }

    .mini-shopping-cart .cart-title .cart-close {
      cursor: pointer;
    }

  .mini-shopping-cart .cart-banner,
  .mini-shopping-cart .cart-summary {
    padding: 10px 15px;
    background-color: #F1F1F9;
    color: #36373D;
  }

    .mini-shopping-cart .cart-banner strong {
      padding-right: 5px;
    }

  .mini-shopping-cart .count a {
    display: inline-block;
    padding: 0;
    text-transform: none;
  }

  .mini-shopping-cart .items {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-y: auto;
  }

  .mini-shopping-cart .item {
    overflow: hidden;
    padding: 10px 15px;
    border-bottom: 1px solid #E1E1EB;
  }

  .mini-shopping-cart .picture {
    float: right;
    width: 90px;
    text-align: center;
  }

    .mini-shopping-cart .picture a {
      display: block;
      height: 100%;
      position: relative;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .mini-shopping-cart .picture img {
      display: none;
    }

  .mini-shopping-cart .product {
    width: 100%;
    height: 100%;
    margin-right: 10px;
  }

  .mini-shopping-cart .overview {
    width: calc(100% - 75px);
  }

  .mini-shopping-cart .name {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
  }

    .mini-shopping-cart .name a {
      padding: 0 0 5px;
      font-size: 13px;
      text-transform: capitalize;
    }

  .mini-shopping-cart .attributes {
    margin: 5px 0;
    color: #444;
  }

  .mini-shopping-cart .quantity-wrapper {
    width: 35px;
    border: 0.5px solid #CECFD5;
  }

    .mini-shopping-cart .quantity-wrapper button {
      width: 100%;
      padding: 7px 5px;
      background-color: transparent;
      color: #777777;
      font-size: 9px;
      border: 0;
    }

      .mini-shopping-cart .quantity-wrapper button.cart-qty-minus {
        padding-top: 7px;
      }

      .mini-shopping-cart .quantity-wrapper button.cart-qty-plus {
        padding-bottom: 7px;
      }

    .mini-shopping-cart .quantity-wrapper input[type=text] {
      height: auto;
      padding: 4px 3px;
      color: #656567;
      font-size: 10px;
      font-weight: 600;
      text-align: center;
      border: 0;
    }

  .mini-shopping-cart .remove {
    padding: 5px 15px 5px 0;
    font-size: 20px;
  }

    .mini-shopping-cart .remove:hover {
      color: #E50000;
    }

    .mini-shopping-cart .remove i {
      cursor: pointer;
    }

  .mini-shopping-cart .price-quantity {
    font-size: 13px;
  }

    .mini-shopping-cart .price-quantity span:last-child {
      font-weight: bold;
    }

  .mini-shopping-cart .button-1 {
    display: inline-block;
    width: calc(100% - 30px);
    margin: 3px auto 15px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .mini-shopping-cart input[type="button"]:hover,
  .mini-shopping-cart input[type="button"]:focus {
    background-color: #E76E11;
    opacity: 0.8;
    outline: 0;
  }

  .mini-shopping-cart .cart-summary {
    background-color: transparent;
    color: #36373D;
    font-size: 14px;
    font-weight: bold;
    border: 0;
  }

  .mini-shopping-cart .cart-empty {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 30px 15px;
    color: #C8CACD;
  }

    .mini-shopping-cart .cart-empty i {
      margin-bottom: 10px;
      font-size: 90px;
    }

    .mini-shopping-cart .cart-empty span {
      text-align: center;
    }

.cart-scroll {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
}

.cart-scroll-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
  overflow-x: hidden;
  opacity: 1;
}

/*** NOTIFICATIONS ***/
.bar-notification-container {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 1000;
  width: calc(100% - 30px);
  line-height: 16px;
  color: #fff;
  opacity: 0.95;
}

.bar-notification.success {
  background-color: #4bb07a;
}

.bar-notification.error {
  background-color: #e4444c;
}

.bar-notification.warning {
  background-color: #f39c12;
}

.bar-notification {
  position: relative;
  display: none;
  padding: 15px 10px 15px 25px;
  border-radius: 3px;
}

  .bar-notification .content {
    margin: 0 0 0 10px;
  }

    .bar-notification .content a {
      color: #fff;
      text-decoration: underline;
    }

  .bar-notification .close {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    margin: 7px;
    background: #fff url('../images/close.png') center no-repeat;
    cursor: pointer;
  }

/***** LOGIN/REGISTRATION *****/
.page.login-page,
.page.registration-page,
.page.apply-vendor-page,
.page.contact-page {
  max-width: 1200px;
  margin: 0 auto;
}

  .page.login-page .page-body,
  .page.registration-page .page-body {
    margin-bottom: 100px;
  }

.customer-blocks .block-gradient {
  min-height: 400px;
}

.registration-page .block-gradient .buttons {
  margin-top: 70px;
}

.customer-blocks .forgot-password {
  font-size: 14px;
}

/***** HOMEPAGE - SHIPPING TYPES *****/
.shipping-types-wrapper {
  margin-bottom: 70px;
}

.shipping-types {
  text-align: center;
}

.shipping-type {
  padding: 30px;
  text-align: right;
  border: 1px solid #BABFCC;
  border-radius: 10px;
}

.shipping-type--icon {
  margin-left: 30px;
  text-align: center;
}

.shipping-type img {
  max-width: 75px;
}

.shipping-type--title,
.shipping-type--desc {
  margin: 0;
}

.shipping-type--title {
  font-size: 24px;
  color: #ED008C;
  font-weight: 600;
  line-height: 100%;
}

.shipping-type--desc {
  padding-top: 5px;
  font-size: 16px;
}

/***** HOMEPAGE - BLOG/NEWS *****/
.latest-blog-container,
.latest-news-container {
  margin-bottom: 70px;
}

  .latest-blog-container .date-time {
    padding: 5px 0 3px;
    color: #ED008C;
    font-size: 15px;
    font-weight: 600;
  }

  .latest-news-container .picture {
    margin: 10px 0 0 10px;
    background: linear-gradient(0deg, #EBEFF7, #EBEFF7);
    box-shadow: 0px 0px 10px rgba(214, 215, 228, 0.25);
    border-radius: 5px;
  }

    .latest-news-container .picture img {
      margin: -10px 10px 10px 0px;
      border-radius: 5px;
    }

  .latest-news-container .post-title,
  .news-list-homepage .news-title {
    font-size: 18px;
    font-weight: bold;
  }

  .latest-news-container .date-time,
  .news-list-homepage .news-date {
    color: #A7AEBF;
    font-size: 13px;
    font-weight: 600;
  }

  .latest-news-container .blog-link,
  .news-list-homepage .read-more {
    color: #ED008C;
    font-size: 15px;
    text-decoration: underline;
    text-transform: capitalize;
  }

/***** BLOG & NEWS PAGES *****/
.link-rss {
  display: none;
  width: 24px;
  height: 24px;
  background: url('../images/rss.png') center no-repeat;
  font-size: 0 !important;
}

.latest-blog-container .title-container,
.latest-news-container .title-container {
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 50px;
}

.blog-item-wrapper:after,
.news-item-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.blog-item-wrapper .blog-item,
.news-item-wrapper .news-item {
  width: calc(33.33% - 30px);
  float: right;
  margin-right: 15px;
  margin-left: 15px;
}

.news-item-wrapper .news-item {
  width: calc(50% - 30px);
}

  .blog-item-wrapper .single-blog img,
  .news-item-wrapper .news-item img {
    width: 100%;
  }

.blog-item-wrapper h4,
.news-item-wrapper h4 {
  margin: 15px 0 10px;
}

.blog-item-wrapper .post-title,
.news-item-wrapper .post-title {
  font-size: 18px;
  color: #3C434D;
  padding: 0;
  text-decoration: underline;
}

.blog-item-wrapper .date-time,
.news-item-wrapper .date-time {
  font-size: 15px;
  padding-top: 15px;
}

.blog-item-wrapper .blog-link,
.news-item-wrapper .blog-link {
  font-size: 14px;
  color: #3C434D;
}

.blog-item-wrapper .post-body,
.news-item-wrapper .post-body {
  padding: 0;
}

.blog-page .post:not(:last-child),
.news-list-page .news-item:not(:last-child) {
  margin-bottom: 30px;
}

.blog-page .post-title,
.news-list-page .news-title {
  display: inline-block;
  padding: 0;
  line-height: 20px;
  font-size: 18px;
  font-weight: 600;
}

.blog-page .post-date,
.news-list-page .news-date,
.blogpost-page .post-date,
.news-item-page .news-date {
  display: block;
  margin: 0;
  padding: 0 0 5px;
  background: transparent;
  color: #ED008C;
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
}

.blog-page .post-body,
.news-list-page .news-body,
.blog-page .blog-posts .buttons,
.news-list-page .news-items .buttons,
.blogpost-page .post-body,
.news-item-page .news-body {
  padding: 0;
}

.blog-page .post-body,
.news-list-page .news-body {
  padding-top: 10px;
}

.blog-posts .blog-details,
.blogpost-page .blog-details {
  display: inline-block;
  width: 100%;
  margin-top: 15px;
  padding: 15px 0;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

.blog-page .blog-posts .buttons .button-1,
.news-list-page .news-items .buttons .button-1 {
  font-size: 14px;
}

.blog-posts .tags,
.blog-posts .blog-comments {
  text-align: center;
}

.blog-page .tags, .blogpost-page .tags {
  margin: 0 0 15px;
  overflow: hidden;
  padding: 0 10px;
}

.blogpost-page .tags {
  padding: 0;
}

  .blog-page .tags ul, .blogpost-page .tags ul {
    display: inline-block;
    margin: 0 3px 3px 0;
  }

  .blog-page .tags li, .blogpost-page .tags li {
    display: inline-block;
  }

    .blog-page .tags li.separator, .blogpost-page .tags li.separator {
      margin-left: 5px;
    }

.new-comment {
  padding-bottom: 30px;
  text-align: center;
}

  .new-comment label {
    display: inline-block;
    padding-bottom: 5px;
  }

  .new-comment textarea {
    min-height: 120px;
  }

.comment-list {
  margin: 0 0 30px;
}

  .comment-list .title {
    margin: 0 0 15px;
    padding: 0 10px;
    font-size: 20px;
    color: #333333;
    text-align: center;
  }

    .comment-list .title strong {
      font-weight: 400;
    }

  .comment-list .comment {
    margin: 0 0 40px;
    border-top: 0 solid #ddd;
  }

.comment-info {
  width: 150px;
  margin: 20px auto;
}

  .comment-info .username {
    display: block;
    margin: 0 0 -1px;
    border: 1px solid #ddd;
    background-color: #f6f6f6;
    padding: 11px 0;
    font-weight: 700;
    color: #333333;
    text-align: center;
  }

.comment-content {
  text-align: center;
}

.comment-time {
  margin: 0 0 15px;
  font-size: 13px;
  font-weight: 700;
}

.comment-body {
  line-height: 22px;
}

.latest-blog-container .post-body {
  display: none;
}

/***** MY ACCOUNT *****/
.block-gradient.block-account-navigation {
  padding: 25px 35px 0;
}

  .block-gradient.block-account-navigation .title {
    margin-bottom: 0;
    padding-bottom: 0;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    border-bottom: 0;
    cursor: text;
    pointer-events: none;
  }

  .block-gradient.block-account-navigation .block-footer {
    margin: 20px -35px 0;
  }

/***** ORDER DETAILS PAGE *****/
.order-details-page .page-title,
.order-details-page .order-overview {
  text-align: center;
}

  .order-details-page .page-title [class*="button-"] {
    min-width: 120px;
  }

.order-details-page .order-overview {
  padding: 30px 0;
  line-height: 27px;
}

.order-details-page .selected-checkout-attributes {
  margin: 30px 0;
  font-weight: 600;
  text-align: center;
}

.order-details-page .totals.section {
  width: 370px;
  max-width: 100%;
  padding: 0 10px;
  max-width: 100%;
  margin: 0 auto 50px;
}

.order-details-page .total-info {
  padding: 15px 20px;
  color: #fff;
}

.order-details-page .section.products .title {
  padding: 0 0 15px;
  text-align: center;
}

.order-details-page .table td, .order-details-page .table th {
  font-size: 14px;
}

.order-details-page .data-table .product {
  color: #ED008C;
}

  .order-details-page .data-table .product .attributes {
    padding-top: 7px;
    line-height: 22px;
  }

.totals .table.cart-total {
  margin: 0;
}

.table.cart-total td {
  width: 50%;
  padding: 5px 0;
  text-align: left;
  border: 0;
}

  .table.cart-total td:first-child {
    text-align: right;
  }

/***** COMPARE PRODUCT PAGE *****/
.compare-products-page {
  position: relative;
  overflow: hidden;
}

  .compare-products-page .clear-items {
    padding: 10px 0 20px;
    text-align: center;
  }

  .compare-products-page .clear-list {
    display: inline-block;
    text-transform: uppercase;
  }

    .compare-products-page .clear-list:hover {
      opacity: 0.9;
    }

.compare-products-table td {
  min-width: 150px;
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 20px;
  text-align: right;
  vertical-align: top;
}

  .compare-products-table td:first-child {
    min-width: 0;
  }

  .compare-products-table td a {
    color: #ED008C;
  }

  .compare-products-table td label {
    font-weight: normal;
    font-weight: 600;
  }

.compare-products-table .remove-button {
  display: inline-block;
  border: none;
  background: url('../images/remove.png') right center no-repeat;
  padding: 0 18px 0 0;
  color: #E50000;
  font-size: 12px;
}

  .compare-products-table .remove-button:hover {
    color: #E76E11;
  }

.compare-products-table .picture {
  display: block;
  position: relative;
  max-width: 95%;
  height: 200px;
  margin: auto;
  text-align: center;
  overflow: hidden;
}

  .compare-products-table .picture img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
  }

.compare-products-table .product-name td {
  font-weight: bold;
}

.compare-products-table .short-description td {
  line-height: 22px;
}

.compare-products-table .full-description td {
  display: none;
}

.compare-products-page .no-data {
  margin: 25px 0 0;
}

/***** PRODUCT REVIEWS *****/
.write-review {
  max-width: 600px;
  margin: 20px auto 40px;
}

.review-rating .name-description {
  display: inline-block;
  padding-left: 10px;
}

  .product-reviews-page .inputs label,
  .review-rating .name-description label {
    display: inline-block;
    margin-bottom: 5px;
  }

.review-rating .rating-wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rating-wrapper .label.last {
  padding-right: 5px;
}

.write-review .buttons {
  padding-top: 20px;
}

.product-reviews-page .product-review-list {
  padding-bottom: 40px;
}

  .product-reviews-page .product-review-list .title {
    padding-bottom: 15px;
  }

.product-review-item {
  background-color: rgba(246, 246, 248, 0.3);
  border-top: 1px solid #f6f6f8;
}

  .product-review-item:nth-child(odd) {
    background-color: #f6f6f8;
  }

  .product-review-item .review-item-head {
    border-top: 1px solid #ddd;
    overflow: hidden;
    background-color: transparent;
    padding: 15px;
  }

  .product-review-item .review-title {
    line-height: 20px;
    font-size: 15px;
  }

  .product-review-item .product-review-box {
    margin: 3px 0 0;
  }

  .product-review-item .review-content {
    padding: 20px 15px;
  }

  .product-review-item .review-text {
    margin: 0 0 15px;
    line-height: 22px;
  }

  .product-review-item .product-review-helpfulness {
    padding-top: 10px;
  }

  .product-review-item .reply {
    margin: 15px 0;
    border-top: 1px solid #ddd;
  }

  .product-review-item .reply-header {
    margin: 15px 0;
    font-weight: bold;
  }

  .product-review-item .reply-text {
    line-height: 22px;
  }

  .product-review-item .review-info {
    margin: 0 0 5px;
  }

    .product-review-item .review-info label {
      font-weight: normal;
    }

    .product-review-item .review-info a,
    .product-review-helpfulness .vote {
      display: inline-block;
      padding: 0 5px;
      color: #ED008C;
      cursor: pointer;
    }

.product-review-helpfulness .question {
  margin: 0 0 0 5px;
  font-style: italic;
}

.product-review-helpfulness .result {
  margin: 0 10px 0 0;
}

/***** PRIVATE MESSAGE & FORUM *****/
.page.private-messages {
  padding: 40px 15px;
}

.private-messages .tabs-header {
  background: #fff;
  border: none;
}

.header-links ul li.private-messege-item {
  margin-right: 10px;
  background-color: #FFFFFF;
}

  .header-links ul li.private-messege-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 10px;
    font-size: 13px;
  }

table.forum-table,
.private-messages table {
  width: 100%;
}

  table.forum-table th, table.forum-table td,
  .private-messages th, .private-messages td {
    border: 1px solid #ddd;
    padding: 15px;
  }

.forum-search-box .basic {
  position: relative;
}

.forum-search-box .search-box-text {
  padding: 6px 15px 6px 15px;
}

.forum-search-box .search-box-button {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 50px;
  margin-bottom: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  min-height: 38px;
}

.filter-title {
  color: #ED008C;
}

/* design added in 4.40 version */

.customer-entered-price .price-range {
  margin: 15px;
}

.topic-actions a {
  margin-right: 15px;
  margin-bottom: 15px;
  display: inline-block;
  border: 1px solid #ED008C;
  padding: 10px;
  border-radius: 10px;
}

  .topic-actions a:hover {
    color: white;
    background: #ED008C;
  }

.product-filter .filter-title {
  padding: 10px;
  font-size: 17px;
}

.product-filter .filter-content {
  padding: 10px;
}

.forum-search-page {
  margin-right: 120px;
}

.basic-search input {
  padding: 10px;
  color: black;
}

.advanced-search select {
  padding: 10px;
  border-radius: 8px;
}

.buttons .button-1 {
  margin-top: 10px;
}

.private-message-send-page .fieldset, .forum-edit-page .fieldset {
  margin: 20px;
}

.forum-edit-page .fieldset {
  margin-right: 0px;
}

.private-message-send-page .inputs {
  padding: 5px;
}

  .private-message-send-page .inputs span {
    font-weight: bold;
  }

input.pm-title-text {
  color: black
}

.private-message-send-page textarea, .forum-edit-page textarea {
  width: 70%;
  color: black;
}

.private-message-send-page .buttons, .forum-edit-page .buttons {
  margin-right: 25%;
}

.forum-edit-page .inputs select {
  padding: 5px;
  border-radius: 8px;
  margin-right: 10px;
}

.forum-edit-page .inputs {
  margin-right: 10px;
}

.move-topic-page .page-title {
  margin-right: 30px;
  margin-bottom: 30px;
}

.move-topic-page .page-body {
  margin-right: 25%;
}

.move-topic-page select {
  padding: 5px;
  border-radius: 8px;
  margin-right: 10px;
}

.forum-actions .actions {
  margin-right: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

  .forum-actions .actions a {
    border: 1px solid #ED008C;
    padding: 8px;
    border-radius: 10px;
  }

    .forum-actions .actions a:hover {
      color: white;
      background: #ED008C;
    }

.apply-vendor-page input {
  color: white;
}

  .apply-vendor-page input[type="text"], .apply-vendor-page input[type="email"], .apply-vendor-page textarea, .contact-page input[type="text"], .contact-page input[type="email"], .contact-page textarea {
    color: white;
  }

.contact-page input[type="text"] {
  padding-left: 10px;
}

.form-control.enquiry {
  max-width: 100%;
  min-width: 100%;
}

.download-sample {
  margin-bottom: 20px;
}

.filter-content .to {
  float: left;
}

.master-wrapper-content {
  min-height: 40vh;
}

.account-signature-text,
.return-request-page textarea {
  max-width: 320px;
  min-width: 180px;
  max-height: 300px;
  min-height: 90px;
}

.return-request-page textarea {
  color: black;
}
/**Return Request Page**/
.return-request-page {
  max-width: 1200px;
  margin: auto;
}

  .return-request-page .page-title {
    font-size: 22px;
    text-align: center;
  }

  .return-request-page .title {
    margin: 0 0 15px;
    font-size: 18px;
    color: #444;
  }

.data-table {
  margin-bottom: 30px;
}

  .data-table .product {
    min-width: 225px;
    text-align: right;
  }

  .data-table th {
    border-width: 1px 1px 0;
    border-style: solid;
    border-color: #ddd;
    background-color: #f6f6f6;
    padding: 10px;
    white-space: nowrap;
    font-weight: normal;
  }

  .data-table .product a, .data-table .info a {
    font-weight: bold;
    color: #444;
  }

  .data-table td.unit-price {
    white-space: nowrap;
  }

  .data-table td {
    min-width: 50px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent #ddd #ddd;
    background-color: #fff;
    padding: 20px;
    color: #444;
  }

.return-request-page select {
  min-width: 50px;
  height: 32px;
  padding: 6px;
}

.return-request-page .inputs {
  text-align: right;
}

  .return-request-page .inputs select {
    min-height: 40px;
    width: 400px;
    max-width: 100%;
    background-color: #fff;
  }

  .return-request-page .inputs label {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    font-size: 14px;
    color: #444;
  }
/******/
.html-checkout-page .checkbox label {
  color: black;
}

.html-forum-edit-page form,
.forums-main-page,
.forum-group-page,
.forum-page,
.shipment-details-page {
  max-width: 1200px;
  margin: auto;
}

.blog-items,
.news-items {
  justify-content: center;
}

.vendor-item .title,
.store-closed-page .page-title,
.store-closed-page .page-body,
.shopping-cart-page .page-title,
.email-a-friend-page .result {
  text-align: center;
}

.email-a-friend-page .result {
  margin-top: 20px;
}

.form-fields .friend-email,
.form-fields .your-email,
.html-product-reviews-page .review-text {
  color: black;
}

.form-fields textarea {
  max-width: 100%;
  min-width: 70%;
  max-height: 150px;
}

.write-review .title {
  margin-bottom: 15px;
}

.review-title, .review-text {
  width: 100%;
}

.rating-wrapper .label.first,
.rating-wrapper .label.last {
  margin: 0px 10px;
}

.html-customer-info-page .checkbox [type="checkbox"]:checked ~ label:after,
.html-apply-vendor-page .checkbox [type="checkbox"]:checked ~ label:after {
  color: white;
}

.html-customer-info-page .checkbox [type="checkbox"] ~ label:before,
.html-apply-vendor-page .checkbox [type="checkbox"] ~ label:before {
  border: 1px solid white;
}

.forum-post-text {
  min-height: 250px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 20px;
}

.ui-dialog {
  max-width: 90%;
}

.cart-title .icon-close-light.cart-close {
  font-size: 20px !important;
}

.header-links #topcartlink:hover .flyout-cart {
  display: block;
}

.header-links .flyout-cart [class*="icon-"] {
  color: #ED008C;
  font-size: 20px;
}

input.remove-discount-button {
  padding: 0px 5px;
  margin-right: 10px;
  border: 1px solid white;
  border-radius: 3px;
  color: #312AC0;
}

span.giftcard-remaining {
  display: block;
}

button.remove-gift-card-button {
  margin-right: 10px;
}

  button.remove-gift-card-button::before {
    content: "X";
    color: black;
    background: white;
    border: none;
    border-radius: 3px;
    display: inline-block;
    padding: 0px 5px;
    color: #312AC0;
  }
