@charset "UTF-8";
ul{padding-left: 0;}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}
.flex-wrap {-ms-flex-wrap: wrap;flex-wrap: wrap
}

.d-inline-flex {
  display: inline-flex !important;
}
button:focus{outline: none;}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
body {
  font-size: 16px;
  color: black;
  font-weight: 400;
  height: auto !important;
}
body iframe[name=google_conversion_frame],
body iframe[name=google_cookie_match_frame] {
  display: none;
}

a {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a:hover {
  text-decoration: none;
}
a[disabled] {
  pointer-events: none;
  cursor: default;
}

.btn-theme {
  color: white;
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}
.btn-theme.focus, .btn-theme:focus, .btn-theme:hover, .btn-theme.active, .btn-theme:active {
  color: #5c5c5c;
  background-color: whitesmoke;
  border-color: #8f8f8f;
}
.btn-yellow {
  color: white;
  background-color: #FBC600;
  border-color: #FBC600;
}
.btn-yellow.focus, .btn-yellow:focus, .btn-yellow:hover, .btn-yellow.active, .btn-yellow:active {
  color: white;
  background-color: #e2b200;
  border-color: #e2b200;
}
.btn-gold {
  color: white;
  background-color: #a07936;
  border-color: #a07936;
}
.btn-gold.focus, .btn-gold:focus, .btn-gold:hover, .btn-gold.active, .btn-gold:active {
  color: white;
  background-color: #8d6b30;
  border-color: #8d6b30;
}

.bg-light {
  background-color: #f9f9f9;
}

.innerPageWrapper {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;

}

.customSelect {
  overflow: hidden;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.customSelect::after {
  content: "";
  font-family: "FontAwesome";
  width: 30px;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  background-color: white;
  pointer-events: none;
  text-align: center;
  line-height: 34px;
  font-size: 18px;
}
.customSelect .form-control {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

[class*=section-] {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}

.sectionTitle {
  width: 100%;
  float: left;
  margin: 0 0 20px;
  padding: 0;
  overflow: hidden;
}
.sectionTitle .title {
  font-family: "Cinzel", serif;
  font-size: 38px;
  text-align: center;
  letter-spacing: 1px;
  margin: 0;
}
.sectionTitle .title span {
  position: relative;
  display: inline-block;
  padding: 0 12px;
}
.sectionTitle .title span::before, .sectionTitle .title span::after {
  content: "";
  position: absolute;
  background: #2c2d31;
  top: 50%;
  width: 50px;
  height: 3px;
  margin-top: -1px;
}
.sectionTitle .title span:before {
  left: 100%;
}
.sectionTitle .title span:after {
  right: 100%;
}
@media (max-width: 767px) {
  .sectionTitle .title {
    font-size: 22px;
  }
  .sectionTitle .title span {
    max-width: -moz-calc(100% - 60px);
    max-width: -webkit-calc(100% - 60px);
    max-width: calc(100% - 60px);
  }
  .sectionTitle .title span::before, .sectionTitle .title span::after {
    width: 30px;
    height: 2px;
  }
}

.section-breadcrumb {
  font-family: "Lato", sans-serif;
  background: #f2e4cc;
  padding: 13px 0;
}
.section-breadcrumb .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0;
}
.section-breadcrumb .breadcrumb > li.active {
  color: #a07936;
}
.section-breadcrumb .breadcrumb a {
  color: #808080;
}
@media (max-width: 767px) {
  .section-breadcrumb {
    display: none;
  }
}
.section-pageHeading #page-title {
  color: #202020;
  text-transform: uppercase;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}


header#top .line {
  border-top: 1px solid #f6f3e9;
  width: 100%;
  height: 1px;
}

.top {
  color: #202020;
  padding: 2px 0;
}
.top .text-right {
  width: 100%;
  float: right;
  margin: 0;
  position: relative;
}
.top .phone-shopping li {  list-style: none;}
.top .phone-shopping li + li {  margin-left: 20px;}

.top-navigation {
  color: #202020;
  font-size: 14px;
  text-transform: uppercase;
  width: 100%;
}

.top-navigation .top-logo{padding: 15px 0 5px;}

.top-navigation > ul {
  display: table;
  table-layout: fixed;
  width: 100%;
  list-style: none;
}

.top-navigation ul li.top-logo,
.top-navigation ul li.top-search,
.top-navigation ul li.umbrella .cart-link {
  position: relative;
}

.top-navigation ul li.top-logo {
  width: 20%;
  padding: 10px 45px 10px 0;
}

.top-navigation ul li.navigation {
  width: 100%;
  padding: 0;
}

.top-navigation ul li.top-search .header-search i.fa {
  color: #202020;
  font-size: 18px;
  font-weight: 300;
}

.top-navigation ul li.umbrella {
  text-align: right;
  position: relative;
  padding-right: 0;
  padding-left: 15px;
}

.top-navigation .navbar ul.navbar-nav {
  float: right;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .top-navigation ul li.top-logo {
    width: 100%;
    padding: 10px 0 0;
  }

  .top-navigation ul li.top-logo img {
    text-align: center;
    margin: 0;
    max-width: 200px;
  }

  .top-navigation ul li.top-search {
    text-align: right;
    padding-right: 0;
    width: auto;
    float: right;
    position: absolute;
    right: 10px;
    top: 0;
    margin-right: 0;
    margin-top: 50px;
    z-index: 9;
  }

  .top-navigation ul li.top-search .header-search i.fa {
    vertical-align: 3px;
  }

  .navbar-nav > li {
    padding: 7px;
  }
}
#top .top a,
#loginButton {
  font-style: normal;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  vertical-align: top;
}
#top .top a{padding: 5px 0;}

#loginButton:hover {
  color: #a07936;
}

#top a {
  text-shadow: none;
  font-style: normal;
}

#top a:hover,
#top a:focus {
  text-shadow: none;
  box-shadow: none;
}

#top #search-submit {
  color: #202020;
}

#top a#site-title {
  color: #ffffff;
  font-style: normal;
  font-weight: normal;
  font-family: "Belleza", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 40px;
}
#top a#site-title img{max-width: 270px;}

#top #site-title:hover {
  text-decoration: none;
}

.navbar {
  margin-bottom: 0;
  border: none;
  min-height: auto;
}

#top nav.navbar a {
  font-family: "Lato", sans-serif;
}

#top nav.navbar .nav > li > a {
  color: #202020;
  background: transparent;
  font-weight: 400;
  font-size: 16px;
  padding: 10px 12px;
}


#top nav.navbar .nav > li:hover > a span {
  color: #a07936;
}

#top nav.navbar .dropdown-menu {
  background-color: #ffffff;
  width: 200px;
  padding: 20px 10px;
  border-radius: 0px;
  border: 0;
}

#top nav.navbar .dropdown-menu li.last {
  border-bottom: 0;
}

#top nav.navbar .dropdown .sub-dropdown {
  padding-bottom: 0;
  z-index: 9999;
  cursor: pointer;
}

#top nav.navbar .dropdown:hover .sub-dropdown {
  padding-bottom: 28px !important;
}

.navbar-nav > li {
  margin: 0;
  display: inline-block;
}

.navbar-nav > li:hover a {
  background-color: #ffffff;
}

.nav > li > a {
  padding: 0;
  text-transform: uppercase;
}

#top nav.navbar .dropdown-menu li {
  float: none;
  padding:3px 5px;
  text-align: left;
  list-style: none;
}

.top-navigation .navbar ul.navbar-nav {
  background-color: rgba(0, 0, 0, 0);
}

#top nav.navbar .dropdown-menu a:hover {
  color: #a07936;
}

#top nav.navbar .dropdown-menu a {
  color: #505050;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  padding: 0;
  white-space: normal;
  text-transform: uppercase;
  background: transparent;
  position: relative;
}
.sub-sub-mega-menu li a{text-transform: capitalize;}

.dropdown-menu:after {
  border-top: 0 !important;
  border-bottom: 0 !important;
}


#header-search {
  right: 0;
  left: auto;
  display: block;
  opacity: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transform: translateY(50px);
  transition: visibility 0s ease-in-out 0.4s, transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
  top: 100%;
  visibility: hidden;
  margin-top: 0;
  padding: 6px;
}

#header-search.dropdown-menu {
  width: 240px !important;
}

#header-search .search-submit {
  background: transparent;
  border: none;
  color: #202020;
  font-size: 12px;
  vertical-align: -webkit-baseline-middle;
}

#header-search .input-group * {
  border-radius: 0;
  box-shadow: none;
}

#header-search .search-submit:focus,
.search-page form.search-form button.search-submit:focus,
.page-404 .search-submit:focus {
  outline: 0;
}

.top-navigation ul li.top-search:hover #header-search,
.header-search .open + #header-search {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;
  margin-right: 0 !important;
}

#header-search i.fa {
  font-size: 12px;
  vertical-align: -10px;
  line-height: 9px;
}

#header-search i.fa:focus {
  outline: none;
}

ul.list-inline {
  margin-left: 0;
  margin-bottom: 0;
}

header {
  z-index: 999;
  width: 100%;
  background-color: #fff;
  position: sticky;
  top:0;
}


header#top.affix .navbar {
  min-height: 40px;
}

header#top.affix #umbrella .cart-link:after {
  margin-top: 17px;
}

.notouch .animated {
  opacity: 1;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.navbar-nav > li.mega-menu {
  position: static;
}

#top nav.navbar .dropdown-menu {
  padding: 10px 25px;
}

#top nav.navbar .dropdown-menu.megamenu-container {
  padding: 0;
  box-shadow: none;
}

.top-navigation nav.navbar {
  position: static;
}

#top nav.navbar li .dropdown-menu.megamenu-container-1 {
  position: absolute;
  right: 0;
  left: auto;
  width: 100%;
  margin: 0;
  top:97%;
}

#top nav.navbar li .dropdown-menu.megamenu-container-2 {
  position: absolute;
  right: 0;
  left: auto;
  min-width: 480px;
}

#top nav.navbar li .dropdown-menu.megamenu-container-3 {
  display: inline-block;
}



#top nav.navbar .megamenu-label {
  color: #fff;
  text-transform: uppercase;
  font-size: 9px;
  width: 29px;
  height: 29px;
  padding: 8px;
  vertical-align: 10px;
}

#top nav.navbar .megamenu-label.new-label {
  background: url(../images/bkg_new.png) no-repeat center 5px;
  background-color: transparent;
  width: 32px;
  height: 29px;
  padding: 1px 6px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -20px;
  margin-right: -27px;
}

#top nav.navbar .megamenu-label.hot-label {
  background: url(../images/bkg_hot.png) no-repeat center 5px;
  background-color: transparent;
  width: 29px;
  height: 29px;
  padding: 1px 6px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -20px;
  margin-right: -26px;
}

#top nav.navbar .megamenu-label.sale-label {
  background: url(../images/bkg_sale.png) no-repeat center 5px;
  background-color: transparent;
  width: 32px;
  height: 29px;
  padding: 1px 6px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -20px;
  margin-right: -28px;
}

#top nav.navbar .megamenu-label.feature-label {
  background: url(../images/bkg_featured.png) no-repeat center 5px;
  background-color: transparent;
  width: 63px;
  height: 29px;
  padding: 1px 9px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -20px;
  margin-right: -58px;
}

.sub-mega-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex; 
  padding: 10px;

}

.megamenu-container-1 .sub-mega-menu {
  background: #ffffff;
}

.megamenu-container-2 .sub-mega-menu {
  background: #ffffff url() no-repeat right 0;
}

.megamenu-container.dropdown-menu,
#top nav.navbar .megamenu-container.dropdown-menu {
  margin-left: 0;
  margin-right: 0;
}

#top.affix .megamenu-container.dropdown-menu {
  padding-left: 0;
}

.top-navigation .row {
  margin-left: 0;
  margin-right: 0;
}

.megamenu-container ul.sub-mega-menu li {
  padding-bottom: 4px;
}

.dropdown-menu {
  margin-bottom: 20px;
}

.megamenu-container {
  width: 230px;
  background: none !important;
  padding-bottom: 20px !important;
}

.megamenu-container.mega-col-1 .sub-mega-menu > li {
  flex-basis: 100%;
  max-width: 100%;
  margin: 0;
}

.megamenu-container.mega-col-2 .sub-mega-menu > li {
  flex: 1 1 30;
  max-width: 30%;
  margin: 0;
}

.megamenu-container.mega-col-3 .sub-mega-menu > li {
  flex: 1 1 30%;
  max-width: 30%;
  margin: 0;
}

.megamenu-container.mega-col-4 .sub-mega-menu > li {
  flex: 1 1 16.677%;
  max-width: 16.677%;
  margin: 0;
}

.megamenu-container.dropdown-menu:before {
  top: 0 !important;
  left: 0;
}

.sub-mega-menu li > ul {
  padding: 0 20px;
}

.navigation-left,
.navigation-right {
  padding-left: 0;
  padding-right: 0;
}

.navigation-right .navbar {
  float: right;
}

#top nav.navbar .nav > li > a:hover span,
#top nav.navbar .nav > li > a:hover i.fa {
  color: #a07936;
}

.navbar-nav > li:last-child,
#top nav.navbar .nav > li > a:last-child,
#top nav.navbar .nav > li > a span:last-child {
  padding-right: 0;
}

#top nav.navbar .dropdown-menu li.list-title {
  margin-top: 0;
}

#cart-info {
  padding: 20px;
}

#cart-content .cart-close {
  border: 1px solid #cecece;
  border-radius: 50%;
  width: 27px;
  line-height: 25px;
  text-align: center;
  bottom: 0;
  right: 0;
  position: absolute;
  margin-bottom: 27px;
  z-index: 2;
}

#cart-content .cart-close .fa-times,
.cart-items .fa-times {
  font-size: 14px;
  color: #cecece;
  vertical-align: 1px;
  padding-left: 1px;
}

#cart-content .cart-close:hover .fa-times {
  color: #a07936;
}

#cart-content .cart-close:hover {
  border-color: #a07936;
}

#cart-content .cart-right .cart-title {
  line-height: 15px;
  margin-bottom: 15px;
}

#cart-content .cart-right .cart-title a {
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  color: #202020;
  text-transform: uppercase;
}

#cart-content .cart-right .cart-title a:hover {
  color: #a07936;
}

#cart-content .cart-right .cart-price {
  font-family: "Lato", sans-serif;
  color: #202020;
}

#cart-content .cart-right .cart-price span.money {
  color: #202020;
  font-weight: 400;
  font-size: 24px;
}

#cart-content .cart-left {
  margin-bottom: 30px;
  padding-left: 0;
}

#cart-content .cart-image:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

#cart-content .subtotal {
  border-top: 1px solid #eaeaea;
  padding-top: 20px;
  margin-bottom: 15px;
}

#cart-content .subtotal span {
  font-family: "Lato", sans-serif;
  color: #202020;
  font-weight: 700;
}

#cart-content .action span {
  color: #000;
}

#cart-content .subtotal span.cart-total-right span {
  font-size: 24px;
  font-family: "Lato", sans-serif;
  color: #202020;
  margin-left: 22%;
  font-weight: 500;
}

#cart-content .action {
  text-align: right;
}

#cart-content .action button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

#cart-content .action a:hover {
  color: #a07936;
}

#cart-content div.items-wrapper {
  position: relative;
}

#cart-content .cart-right {
  padding-left: 0;
  padding-right: 0;
}

.dropdown-menu {
  width: 315px;
  right: 0;
}

#umbrella .empty {
  font-size: 13px;
  font-family: "Lato", sans-serif;
  text-transform: initial;
}

#cart-info {
  position: absolute;
  opacity: 1;
  z-index: 1000;
  border-radius: 0px;
  border: 0;
  right: 0;
  left: auto !important;
}

/* #umbrella{float:right;} */
#umbrella i.sub-dropdown {
  display: table-cell;
}

#umbrella .cart-link {
  position: relative;
}

#umbrella .cart-link a {
  display:inline-block;
}

#umbrella .cart-link .empty a {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-top: 10px;
}

.customer-links {
  text-align: right;
}

#accounts {
  margin: 0;
  padding: 0;
  list-style: none;
}
#accounts > li {
  margin-left: 20px;
}
#accounts > li:first-child {
  margin-left: 0;
}
#accounts > li.login {
  position: relative;
}

.top .text-right #widget-social {
  float: right;
}

#loginBox {
  position: absolute;
  right: 0;
  left: auto;
}

#loginBox:before {
  top: -10px;
  left: 33%;
}

#loginBox ul.customer-accounts {
  padding: 10px 30px;
}

#loginBox ul.customer-accounts label.control-label {
  text-transform: capitalize;
}

#loginBox ul.customer-accounts > li {
  margin-bottom: 5px;
}

#loginBox ul.customer-accounts > li button {
  width: 100%;
  display: block;
}

#loginBox ul.customer-accounts > li a.action {
  width: 100%;
  display: block;
  font-size: 15px;
  font-family: "Lato", sans-serif;
  color: #8f8f8f;
}

.dropdown-menu:before {
  border: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.nav-item .dropdown-menu,
.mega-menu .dropdown-menu,
#umbrella .dropdown-menu,
.login .dropdown-menu {
  left: -5px;
  display: none !important;
  /*opacity: 0;
  filter: alpha(opacity=0);
  transform: translateY(20px);
  -moz-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transition: visibility 0s ease-in-out 0.4s, transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
  -moz-transition: visibility 0s ease-in-out 0.4s, transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
  -o-transition: visibility 0s ease-in-out 0.4s, transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
  -webkit-transition: visibility 0s ease-in-out 0.4s, transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
  -ms-transition: visibility 0s ease-in-out 0.4s, transform 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s;
  visibility: hidden;*/
}

.login .dropdown-menu {
  left: auto;
  right: 0;
}

.nav-item:hover .dropdown-menu,
.mega-menu:hover .dropdown-menu,
#umbrella:hover .dropdown-menu,
.login:hover .dropdown-menu {
  margin-top: 0;
  visibility: visible;
 /* -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -ms-transition-delay: 0s;
  transition-delay: 0s;*/
  display: block !important;
}

.mega-menu .dropdown-menu.dropdown-open {
  visibility: visible;
  display: block !important;
}

#umbrella:hover .num-items-in-cart span {
  color: #a07936;
}

.dropdown-toggle:hover {
  outline: none;
}

@media (min-width: 768px) and (max-width: 1040px) {
  .mega-menu.open .dropdown-menu {
    margin-top: 0;
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    -ms-transition-delay: 0s;
    transition-delay: 0s;
  }
}
.top-other {
  background: #fde4f1;
  color: #c85f94;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.top-other .newsfeed-item {
  font-size: 11px;
  font-family: Belleza, sans-serif;
  color: #c85f94;
  font-weight: 500;
  font-style: italic;
}

.top-other-inner .newsfeed-item a.link {
  color: #c85f94;
  padding: 5px;
  font-size: 11px;
  font-weight: 700;
}

#content .background, #content.container {
  background-color: #fff;
}

.macos h6 {
  font-weight: 300;
}

.title-1, .title-2, .title-3, .title-4 {
  font-family: Lato, sans-serif;
}

.title-2 {
  font-style: normal;
  font-weight: 700;
}

.title-4 {
  color: #a07936;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-top: 0;
  text-transform: uppercase;
  line-height: 28px;
}

.wrapper-title .title-3 {
  background-color: #fff;
}

.bold {
  font-weight: 700;
}

.action_delete, .action_edit {
  position: relative;
  display: inline-block;
  *display: inline;
  zoom: 1;
  vertical-align: top;
  position: relative;
  padding-left: 25px;
}

.action_edit {
  margin-right: 6px;
}

.action_delete a, .action_edit a {
  vertical-align: top;
}

.action_edit .fa-edit {
  margin-right: 5px;
  position: absolute;
  top: 3px;
  left: 0;
  margin-top: -5px;
}

.action_edit .fa-edit {
  color: #01a8d5;
  padding: 2px 0;
}

#customer_orders table td {
  font-family: Lato, sans-serif;
  font-weight: 500;
  border-bottom: 1px dotted #ebebeb;
  color: #000;
  font-size: 13px;
}

#customer_orders table td a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

#customer_orders table td .total {
  font-size: 14px;
  color: #828282;
}

#customer_orders table tbody td {
  padding: 34px 17px;
}

.status_authorized {
  text-transform: capitalize;
  color: #1e1e1e;
}

.status_unauthorized {
  text-transform: capitalize;
  color: #000;
}

.status_fulfilled {
  text-transform: capitalize;
  color: #666;
}

.status_unfulfilled {
  text-transform: capitalize;
  color: #f22;
}

.dropdown-menu.focus {
  display: block !important;
}

.wrap-table {
  overflow-y: hidden;
  overflow-x: auto;
  clear: both;
  margin-bottom: 110px;
  margin-top: 30px;
}

.cart-items .action button {
  background: 0 0;
  border: 0;
  color: #000;
  font-size: 12px;
  font-family: Lato, sans-serif;
  text-transform: uppercase;
  font-weight: 300;
}

.cart-items .action button i.fa {
  line-height: 10px;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 7px;
  text-align: center;
  font-size: 15px;
  color: #000;
  margin-right: 10px;
}

.btn-1 {
  border: 1px solid #dedede;
  background: rgba(0, 0, 0, 0);
  color: #8f8f8f;
}

.btn-1:hover {
  background: #a07936;
  color: #fff !important;
  border: 1px solid #a07936;
}

.btn-2 {
  background: #ebebeb;
  color: #8f8f8f;
  border-color: #dedede;
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-2:hover {
  background: #fff;
  color: #202020;
}

.touch .add-to-cart:active, .touch .add-to-cart:focus, .touch .add-to-cart:hover {
  background: #fff;
  color: #8f8f8f;
  border-color: #dedede;
  outline: 0;
}

#footer a {
  font-style: normal;
  font-weight: 400;
}

#footer a:focus, #footer a:hover {
  color: #a07936;
  font-style: normal;
  font-weight: 400;
}

#footer .title {
  color: #2d2e30;
  font: bold 12px Belleza, sans-serif;
  text-transform: uppercase;
}

#footer #email-submit {
  color: #000;
}

@media (max-width: 767px) {
    
  .footerLogo {
    width: 100%;
    padding: 0 12px;
  }
  .footerLogo > a {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -moz-box-flex: 1;
    -moz-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}
.sidebar .group_sidebar {
  background-color: #f7f7f7;
  color: grey;
}

.sidebar .group_sidebar .sb-image {
  margin-bottom: 20px;
}

.sidebar .sb-title:hover {
  cursor: default;
}

.sidebar .sb-content.sb-tags li > a {
  color: grey;
  font-weight: 300;
}

.sidebar .sb-tags li.active a {
  color: #a07936;
}

.sidebar .sb-content p {
  margin-bottom: 0;
}

.sidebar .sb-wrapper:last-child {
  border-bottom: 0;
}

.sidebar a {
  color: grey;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
}

.sidebar a:focus, .sidebar a:hover {
  color: #a07936;
  font-style: normal;
}

.group_sidebar ul.sb-content p {
  color: grey;
  font-weight: 400;
}

.price, .price_compare, .price_sale, .sold_out, .unavailable {
  display: inline-block;
  *display: inline;
  zoom: 1;
  font-size: 15px;
}

.price {
  font-size: 50px;
  color: #202020;
  display: block;
  line-height: 50px;
  font-weight: 500;
}

.price_sale {
  font-size: 50px;
  line-height: 50px;
}

.sold_out, .unavailable {
  color: #969696;
  font-style: italic;
  font-weight: 700;
}

.price_compare {
  color: #ccc;
  text-decoration: line-through;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
}

.detail-price {
  margin-bottom: 30px;
}

.detail-price .price_compare, .detail-price .price_sale, .detail-price span.price {
  font-family: Lato, sans-serif;
}

.detail-price .price_compare {
  margin-left: 0;
  margin-right: 10px;
  font-size: 15px;
}

.sale_banner {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  display: table;
}
.sale_banner .sale_text, .sale_banner .new_text {
  color: #fff;
  display: table-cell;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  vertical-align: middle;
  text-transform: capitalize;
  padding: 5px 15px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  font-size: 14px;


}
.sale_banner .sale_text {
  background-color: #a07936;
}
.sale_banner .new_text {
  background-color: #a07936;
}

.about-us div {
  font-size: 12px;
  margin-bottom: 20px;
  line-height: 22px;
  color: #000;
}

.about-us li > i {
  padding-right: 10px;
}

.typography p {
  font-family: Lato, sans-serif;
  font-size: 13px;
  line-height: 17px;
  color: grey;
  font-weight: 300;
}

.typography ol li a, .typography ul li a {
  font-size: 13px;
  color: #000;
}

.typography .mini-line {
  margin-bottom: 25px;
}

div.jGrowl div.jGrowl-notification .jGrowl-message > .col-md-8 {
  text-align: center;
}

div.jGrowl div.jGrowl-notification div.jGrowl-close {
  background: 0 0;
  color: #b9b9b9;
  font-size: 1.2em;
  height: 30px;
  line-height: 26;
  width: 30px;
  text-align: center;
  top: 0;
  right: 0;
  left: auto;
}

div.jGrowl div.jGrowl-notification div.jGrowl-close:hover {
  color: #b1181b;
}

div.jGrowl div.jGrowl-notification div.jGrowl-close i.fa {
  color: #b9b9b9;
  vertical-align: top;
  line-height: 26px;
}

div.jGrowl div.jGrowl-notification div.jGrowl-close:hover i.fa {
  color: #b1181b;
}

div.jGrowl div.jGrowl-notification .jGrowl-title {
  text-transform: none;
  font-size: 13px;
  font-family: Lato, sans-serif;
  font-style: none;
  color: grey;
}

div.jGrowl div.jGrowl-notification .jGrowl-title:hover {
  color: #a07936;
}

div.jGrowl div.jGrowl-notification .jGrowl-note {
  font-size: 1.5em;
  margin-bottom: 10px;
}

div.jGrowl div.jGrowl-notification .jGrowl-note, div.jGrowl div.jGrowl-notification .jGrowl-note a {
  color: #000;
}

div.jGrowl div.jGrowl-closer, div.jGrowl div.jGrowl-notification {
  width: 417px;
  padding: 20px;
}

div.jGrowl div.jGrowl-closer {
  font-size: 1.2em;
  font-weight: 500;
  padding: 10px 20px;
  text-transform: capitalize;
}

.page-404 .list-inline > li:first-child {
  font-size: 1.5em;
}

.page-404 .search-submit {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 1px solid transparent;
  background: 0 0;
  vertical-align: middle;
}

.page-404 .search-submit .fa-search {
  padding: 8px 5px !important;
}

.page-404 .search-form {
  border: 1px solid #ebebeb;
}

.page-404 .search-form input {
  padding: 5px;
  font-size: 13px;
  border: none;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.float-none {
  float: none;
}

.bold {
  font-weight: 700;
}

.unbold {
  font-weight: 400;
}

.caroufredsel_wrapper {
  margin: 0 !important;
}

.caroufredsel_wrapper li.items {
  float: left;
  height: auto !important;
}

.unmargin {
  margin: 0 !important;
}

.unmargin-top {
  margin-top: 0 !important;
}

.unmargin-bottom {
  margin-bottom: 0 !important;
}

.unmargin-left {
  margin-left: 0 !important;
}

.unmargin-right {
  margin-right: 0 !important;
}

.unpadding {
  padding: 0 !important;
}

.unpadding-bottom {
  padding-bottom: 0;
  padding-top: 20px;
}

.unpadding-left {
  padding-left: 0 !important;
}

.unpadding-right {
  padding-right: 0 !important;
}

.unborder {
  border: 0 !important;
}

.img-responsive {
  height: auto;
  max-width: 100%;
}

.margin-right-10 {
  margin-right: 10px;
}

.margin-left-10 {
  margin-left: 10px;
}

.mright-1 {
  margin-right: 1px;
}

.mleft-1 {
  margin-left: 1px;
}

.mright-3 {
  margin-right: 3px;
  *margin-right: 3px;
}

.mleft-3 {
  margin-left: 3px;
  *margin-left: 3px;
}

.mright-7 {
  margin-right: 7px;
}

.table-cell {
  display: table;
}

.table-cell li {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}

.alert-error,
.alert-success {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 4px;
  padding: 5px 10px;
  text-shadow: none;
  font-weight: 600;
  font-size: 14px;
}

.alert-success {
  background-color: #689d4a;
  border-color: #689d4a;
}

.alert .close {
  top: 4px;
}

.opacity_85 {
  opacity: 0.85;
  filter: alpha(opacity=85);
}

.opacity_93 {
  opacity: 0.93;
  filter: alpha(opacity=93);
}

.header_style {
  font-family: Belleza, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.overlay-content {
  position: fixed;
  /*background: #fff url(../../../../cdn.shopify.com/s/files/1/0908/7252/t/2/assets/loader04b7.gif?664435031589137957) no-repeat center;*/
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0.9;
}

.uppercase {
  text-transform: uppercase;
  vertical-align: top;
}

.req {
  color: red !important;
}

.sortBy .dropdown-menu:after, .sortBy .dropdown-menu:before {
  border: none !important;
}

@media only screen and (max-device-width: 1024px) {
  .hoverbackgroundwrapper .details > .bg, .hoverbackgroundwrapper .hover .thehover, .hoverborder .hoverborderwrapper .thehoverborder, .hoverborder .hoverborderwrapper .thehovermore, .hoverhomebackgroundwrapper .details > .bg, .hoverhomebackgroundwrapper .hover .thehover, .image-boxes .hoverborder .hoverborderwrapper .thehoverborder, .navbar .hovermenuwrapper > li > a > .bg-down {
    display: none;
  }

  .hoverbackgroundwrapper a:hover .details h4, .hoverhomebackgroundwrapper a:hover .details h4 {
    color: #a07936;
  }
}
@media only screen and (max-device-width: 1199px) {
  .hoverBorder:hover img {
    -webkit-filter: none !important;
    filter: none !important;
  }

  .bg-above-footer.parallax {
    background-attachment: scroll !important;
  }

  .fancybox-nav span {
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  .product-ajax-qs, .quick_shop {
    display: none;
  }
}
@media (max-width: 1199px) {

  .top-logo {
    text-align: center;
  }

  .top-navigation ul li.top-logo {
    width: 20%;
  }

  .top-navigation ul li.navigation {
    width: 100%;
  }
  #top nav.navbar .nav > li > a{font-size: 13px; padding: 10px 12px;}

  .top-navigation ul li.umbrella {
    padding-left: 0;
  }

  #home_blog .home-blog-item .date {
    width: 70px;
    height: 70px;
  }

  @-moz-document url-prefix() {
    .header-search input {
      padding-left: 5px;
      padding-right: 5px;
      width: 45%;
    }
  }
  .price, .price_sale {
    font-size: 50px;
  }

  #home_blog .home-blog-content {
    padding-left: 60px;
  }

  .element form .row-right .effect-ajax-cart button {
    font-size: 11px;
  }

  .collection-page .element.full_width .row-right .effect-ajax-cart {
    margin-left: 0;
  }

  .element.full_width .row-right {
    width: 69%;
  }

  .allcollections-page .container-item:hover .collection-action::after {
    border: 75px solid rgba(255, 255, 255, 0.9);
  }

  .featured-products button.btn {
    font-size: 9px;
  }

  .variants-wrapper .selector-wrapper:nth-child(1) {
    margin-bottom: 15px;
  }

  .product-page.no_full_width #gallery_main .owl-wrapper-outer .owl-item img {
    padding-right: 20px;
  }

  .element ul li.row-right .hover-appear .wish-list {
    border-left: 1px solid #dcdcdc;
  }

  #sandBox .element.full_width ul:hover li.row-right .hover-appear {
    margin-top: 0;
  }

  .element.full_width ul li.row-right .hover-appear .wish-list {
    border-left: 0;
  }
}
@media (max-width: 1140px) {
  header#top.affix {
    display: none;
  }

  .navigation ul.navbar-nav > li > a:after {
    margin-right: -18px;
  }

  .top-navigation ul li.navigation, .top-navigation ul li.top-logo {
    width: 100%;
    text-align: center;
    display: block;
  }
  #top nav.navbar .nav > li > a{font-size: 13px; padding: 10px 7px;}

  .top-navigation ul li.top-logo {
    float: left;
    width: auto;
  }

  .top-navigation ul li.navigation {
    clear: both;
    position: relative;
  }

  .top-navigation ul li.navigation .navbar .navbar-collapse.collapse {
    text-align: center;
    margin: 0 auto;
    display: inline-block !important;
    *display: block !important;
    zoom: 1 !important;
  }

  .top-navigation ul li.umbrella {
    text-align: left;
    width: auto;
    float: right;
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 20px;
  }

  #umbrella {
    float: left;
  }

  .top-navigation ul li.top-search .header-search {
    display: inherit;
  }

  #umbrella .cart-link:after {
    margin-top: 5px;
  }

  #umbrella .cart-link a {
    padding-left: 10px;
  }

  .navbar-nav > li.mega-menu {
    position: relative;
  }

  #top nav.navbar li .dropdown-menu.megamenu-container-1 {
    left: 0;
    right: auto;
  }

  #header-search.dropdown-menu:before {
    right: 7%;
  }

  #umbrella .dropdown-menu {
    left: auto;
    right: 0;
  }

  #cart-info:before {
    right: 10%;
  }

  .navbar-nav > li.mega-menu {
    position: static;
  }

  #top nav.navbar li .dropdown-menu.megamenu-container-1,
#top nav.navbar li .dropdown-menu.megamenu-container-2 {
    margin-top: -15px;
  }

  .element > ul .row-right .effect-ajax-cart {
    position: static;
    margin-left: 0;
  }

  .element > ul:hover .row-right .effect-ajax-cart {
    margin-top: 0;
  }

  .element .row-left .wish-list, .element .row-left button.wish-list {
    text-align: center;
    margin-right: 0;
    left: 0;
    right: 0;
    text-align: center;
    width: 100%;
  }

  .element .row-left a img, .element ul:hover .row-left a img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }

  .element .row-left .hoverBorderWrapper {
    -moz-transition: 0;
    -webkit-transition: 0;
    -o-transition: 0;
    -ms-transition: 0;
    transition: 0;
  }

  .element .row-right .effect-ajax-cart button {
    -moz-transition: 0;
    -webkit-transition: 0;
    -o-transition: 0;
    -ms-transition: 0;
    transition: 0;
  }

  .element .row-left .wish-list, .element .row-right .effect-ajax-cart {
    opacity: 1;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-transition: 0;
    -webkit-transition: 0;
    -o-transition: 0;
    -ms-transition: 0;
    transition: 0;
  }

  .element .row-left .wish-list, .element .row-left button.wish-list {
    bottom: 0;
  }

  #home_fp .element .row-left .wish-list {
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
  }

  .element.full_width .row-left .wish-list {
    left: 0;
    right: 0;
    text-align: center;
    margin-right: 0;
  }

  .element.full_width .row-right .effect-ajax-cart {
    text-align: left;
    position: static;
  }

  .home_products .element .row-left .product-price {
    opacity: 1;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .home_products .element ul:hover .row-right:after {
    border: none;
  }

  .home_products .hoverBorder {
    top: 110% !important;
    left: auto !important;
    right: auto;
    text-align: center;
    width: 100%;
  }

  .price, .price_sale {
    font-size: 40px;
    line-height: 40px;
  }

  .allcollections-page .container-item .collection-action, .home_collections_item .collection-details .collection-action {
    background: #fff;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
  }

  .allcollections-page .container-item .collection-action:after {
    border: 0;
    transition: 0;
    -webkit-transition: 0;
    -moz-transition: 0;
    -o-transition: 0;
    -ms-transition: 0;
  }

  .allcollections-page .container-item:hover .collection-action:after {
    border: 0;
  }

  .allcollections-page .container-item .collection-action a {
    opacity: 1;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: 0;
    -moz-transition: 0;
    -o-transition: 0;
    -ms-transition: 0;
    transition: 0;
  }

  .allcollections-page .collection-item .collection-title {
    line-height: 20px;
  }

  .element .row-right span.price, .element .row-right span.price_sale {
    display: inline-block;
    *display: inline;
    zoom: 1;
  }

  .collection .element.full_width .row-left .hoverBorder a.wish-list {
    top: 82%;
    left: 117%;
  }

  .collection .row-left .hoverBorder form.contact-form button {
    opacity: 1;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }

  .collection .row-left:hover .hoverBorder form.contact-form {
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -moz-transition-delay: 0;
    -webkit-transition-delay: 0;
    -o-transition-delay: 0;
    -ms-transition-delay: 0;
    transition-delay: 0;
  }

  .collection .row-left .hoverBorder form.contact-form button {
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: 0;
    -moz-transition: 0;
    -o-transition: 0;
    -ms-transition: 0;
    transition: 0;
  }

  .collection .element .row-left .hoverBorder form.contact-form {
    top: 158%;
  }

  .collection .element.full_width .row-left .hoverBorder form.contact-form {
    top: 80%;
    left: 86%;
  }

  .collection .element .row-left:hover .hoverBorder .overlay_mask {
    border: 0;
  }

  .element .row-left .hoverBorder .overlay_mask {
    border: 0;
    -webkit-transition: 0;
    -moz-transition: 0;
    -o-transition: 0;
    -ms-transition: 0;
    transition: 0;
  }

  .element .row-left .wish-list, .element .row-left form.contact-form button {
    opacity: 1;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition: 0;
    -moz-transition: 0;
    -o-transition: 0;
    -ms-transition: 0;
    transition: 0;
  }

  .collection .element .row-left .hoverBorder a.wish-list, .collection .element .row-left .hoverBorder form.contact-form button {
    top: 159%;
  }

  .collection .element.full_width .row-left:hover .hoverBorder .overlay_mask {
    border: 0;
  }

  .element.full_width .row-left .hoverBorder .overlay_mask {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
  }

  .element.full_width .row-right .effect-ajax-cart {
    position: static;
    margin-top: 0;
  }

  .element.full_width ul:hover .row-right .effect-ajax-cart {
    margin-top: 0;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 160%;
  }

  .owl-theme .owl-controls {
    right: 8.5%;
  }

  #prod-related-wrapper .row-left .hoverBorder:hover .overlay_mask {
    border: 0;
  }

  table.haft-border tr {
    border: 0;
    border-bottom: 1px solid #ccc;
    width: 100%;
    margin-bottom: 0;
  }

  table.haft-border tr.bottom-summary {
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 0;
  }

  .cart-items .action button {
    padding-left: 0;
  }

  #cartform td:nth-of-type(1):before {
    content: "Item";
  }

  #cartform td:nth-of-type(2):before {
    content: "Price";
  }

  #cartform td:nth-of-type(3):before {
    content: "Quantity";
  }

  #cartform td:nth-of-type(4):before {
    content: "Total";
  }

  #cartform td:nth-of-type(5):before {
    content: "Remove";
  }

  .cart-items .form-control {
    margin: 0;
    text-align: left;
  }

  .bottom-summary td:nth-of-type(1), .bottom-summary td:nth-of-type(2), .bottom-summary td:nth-of-type(5) {
    display: none;
  }

  .cart-items tr td ul {
    padding-bottom: 0;
  }

  #customer_orders td {
    padding-left: 40% !important;
  }

  #customer_orders td:nth-of-type(1):before {
    content: "Order";
  }

  #customer_orders td:nth-of-type(2):before {
    content: "Date";
  }

  #customer_orders td:nth-of-type(3):before {
    content: "Payment status";
  }

  #customer_orders td:nth-of-type(4):before {
    content: "Fullfillment status";
  }

  #customer_orders td:nth-of-type(5):before {
    content: "Toal";
  }

  .page-wishlist td:nth-of-type(1):before {
    content: "Item";
  }

  .page-wishlist td:nth-of-type(2):before {
    content: "Price";
  }

  .page-wishlist td:nth-of-type(3):before {
    content: "Remove";
  }

  .page-wishlist td:nth-of-type(4):before {
    content: "Add to cart";
  }

  .element ul li.row-right .product-content-right .price_compare {
    padding-top: 0;
  }

  .collection-full #sandBox .element.full_width ul li.row-right .hover-appear, .collection-full #sandBox .element.full_width ul:hover li.row-right .hover-appear {
    margin-top: 0;
  }
}
@media (max-width: 997px) {
  @-moz-document url-prefix() {
    .navbar-collapse {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }

    .top-navigation .navbar ul.navbar-nav {
      float: none;
    }
  }
  
  #top nav.navbar .nav > li > a{font-size: 13px; padding: 10px 1px;}
  .collection-details{margin-bottom: 15px;}

  
}
@media (max-width: 991px) {
  .templateIndex header#top {
    position: static;
  }

.nav > li > a {
  text-transform: capitalize;
}
  #accounts li.my-account {
    padding-left: 0;
  }


  .dropdown-menu:before {
    left: 13%;
  }

  #loginBox:before {
    left: 34%;
  }

  .login #loginBox, .login:hover #loginBox {
    left: 0;
    right: auto;
  }


  .top-other-inner.owl-theme .owl-controls .owl-buttons > div.owl-next, .top-other-inner.owl-theme .owl-controls .owl-buttons > div.owl-prev {
    margin-top: 9px !important;
  }

  #top nav.navbar li .dropdown-menu.megamenu-container-1 {
    min-width: 720px;
  }

  .top-other {
    height: 65px;
  }

  #cart-content .cart-left {
    float: left;
    width: 33%;
  }

  #cart-content .cart-right {
    display: block;
    float: right;
    width: 67%;
  }

  .element ul li.row-right .hover-appear,
.element ul:hover li.row-right .hover-appear {
    margin-top: -55px;
  }

  .element.no_full_width ul li.row-right .hover-appear,
.element.no_full_width ul:hover li.row-right .hover-appear {
    margin: 0;
  }

  .element > ul .row-left .hoverBorderWrapper, .element > ul:hover .row-left .hoverBorderWrapper {
    opacity: 1;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
  }

  #home_promotion .owl-wrapper .owl-item {
    text-align: center;
  }

  .allcollections-page .container-item .collection-action, .home_collections_item .collection-details .collection-action {
    background: #fff;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    opacity: 0.8;
  }

  .home_collections_item .collection-details .collection-action a {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
  }

  .element > ul, .element > ul:hover {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }

  .group_sidebar ul.featured-products .sb-info {
    padding-left: 0;
  }

  .element.full_width .row-left {
    width: 30%;
    float: left;
  }

  .element.full_width .row-right {
    float: right;
    width: 66%;
    padding: 0;
  }

  .collection-full .element.full_width .row-right {
    width: 77%;
    padding-left: 20px;
  }

  .group_sidebar ul.featured-products .sb-info {
    padding-left: 15px;
  }

  .collection .element .row-left .hoverBorder form.contact-form {
    top: 174%;
  }

  .collection .element.full_width .row-left .hoverBorder form.contact-form {
    top: 116%;
    left: 99%;
  }

  .element.full_width ul li.row-right .hover-appear .wish-list {
    margin: 0 0 0 10px;
  }

  .element.full_width ul li.row-right .product-content-left,
.element.full_width ul li.row-right .product-content-right {
    padding: 10px;
  }

  .element.full_width .row-right .effect-ajax-cart button.select-option {
    padding-left: 2px;
    padding-right: 2px;
  }

  .element form .row-right .effect-ajax-cart button {
    font-size: 8px;
  }

  .filter-tag-group .tag-group#coll-filter-1 ul > li {
    margin-bottom: 5px;
  }

  .blogs-item .blogs-image ul li.date {
    margin-top: 30px;
    margin-left: 15px;
  }

  .blogs-item .blogs-image ul > li {
    display: block;
  }

  .search-page form.search-form input.input-block-level {
    width: 50%;
  }

  .search-page form.search-form button.search-submit {
    left: 45%;
  }

  .owl-theme .owl-controls {
    margin-right: 15px;
  }

  #home_products {
    padding: 5px 0;
  }

  .home_products .hoverBorder {
    top: 115% !important;
  }

  #home_blog .home-blog-item .date {
    width: 90px;
    height: 90px;
    float: left;
  }

  #home_blog .home-blog-item .date p {
    font-size: 44px;
    line-height: 57px;
  }

  .home-blog-wrapper {
    padding-left: 15px;
    margin-top: 20px;
  }

  #home_blog .home-blog-content {
    padding-left: 0;
    float: right;
  }

  #home_blog .home-blog-content a {
    font-size: 22px;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 190%;
  }

  .collection .element.full_width .row-left .hoverBorder a.wish-list {
    left: 123%;
    top: 120%;
  }

  .element.full_width .row-right .list-mode-description {
    margin-bottom: 0;
  }

  .element.no_full_width .row-right .price_compare span.money {
    font-size: 13px;
    line-height: 13px;
  }

  .element.no_full_width .row-right span.price, .element.no_full_width .row-right span.price_sale {
    font-size: 18px;
    line-height: 18px;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    left: 0;
    right: 0;
    text-align: center;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 160%;
  }

  .product-image .product-image-thumb li img, .product-page.no_full_width #gallery_main .owl-wrapper-outer .owl-item img {
    max-width: 75px;
  }

  .element.no_full_width ul li.row-right .hover-appear {
    opacity: 1;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
  }

  .element ul li.row-right .product-price span.price, .element.full_width .row-right .price, .element.full_width .row-right .price_sale, .element.no_full_width .row-right span.price, .element.no_full_width .row-right span.price_sale {
    font-size: 15px;
  }

  .element.no_full_width .row-right .price_compare span.money {
    font-size: 11px;
  }

  #widget-newsletter .contact, #widget-newsletter .newsletter,
#widget-newsletter .store-information {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    border-right: 0;
  }

  #widget-newsletter .contact, #widget-newsletter .store-information {
    margin-bottom: 20px;
  }

  ul#contact-form li.contact-email,
ul#contact-form li.contact-name {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .top-navigation {
    text-align: center;
  }

  .navbar-collapse.collapse,
.top-navigation ul li.top-search .header-search:after {
    margin-top: 19px;
  }

  .top ul.text-right {
    text-align: center;
  }

  @-moz-document url-prefix() {
    .top-navigation ul li.top-search .header-search:after {
      top: -6px;
      margin-right: -4px;
    }
  }
}
@media (max-width: 785px) {
  #collections {
    margin-left: -15px;
    margin-right: -15px;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 137%;
  }
}
@media (max-width: 768px) {
  @-moz-document url-prefix() {
    .top-navigation .navbar ul.navbar-nav {
      float: right;
    }
  }
  .navbar-nav > li.mega-menu {
    position: static;
  }

  .top-navigation ul li.navigation {
    position: relative;
  }

  #top nav.navbar li .dropdown-menu.megamenu-container-1 {
    left: 0;
    right: auto;
    margin-left: 0;
    min-width: 718px;
  }

  #partners-container {
    margin-left: 0;
    margin-right: 0;
  }

  .owl-theme .owl-controls {
    margin-right: 35px;
  }

  .element.full_width > ul {
    margin-bottom: 50px;
  }

  #collections.main-has-slidebar .item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .element .row-right span.price, .element .row-right span.price_sale {
    display: inline-block;
    *display: inline;
    zoom: 1;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 176%;
  }

  #home_deal_fp .element.full_width {
    margin: 20px 0;
  }

  #sandBox .element.full_width {
    padding-left: 0;
    padding-right: 25px;
  }

  .element.full_width {
    margin: 0 15px 10px;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 135%;
  }

  #prod-related-wrapper .element.no_full_width {
    padding: 0;
  }

  #product-information.no_full_width {
    margin-left: 0;
    margin-right: 0;
  }

  .product-page.no_full_width #shopify-product-reviews {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .detail-right-slidebar i.fa {
    float: none;
  }

  #customer-login {
    width: 60%;
  }

  #customer-login ul.login-wrapper button {
    width: 30%;
  }

  #register-form li.action-last button {
    width: 40%;
  }

  .cart-items tr td ul li.link {
    padding-left: 0;
  }

  .blogs-item .blogs-image ul.list-inline > li {
    display: block;
  }

  #price-table .pt-item .pt-item-top .pt-item-price {
    font-size: 60px;
    padding: 30px 0 20px;
  }

  .collection-full #sandBox .element.full_width ul li.row-right .hover-appear, .collection-full #sandBox .element.full_width ul:hover li.row-right .hover-appear {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .top-navigation ul li.navigation .navbar .navbar-collapse.collapse {
    display: none !important;
    padding-left: 0;
    padding-right: 0;
  }
     .nav > li > a {
    text-transform: uppercase;
  }
  .top-logo {
  margin-bottom: 0;
}

  .top-navigation ul li.navigation .navbar .navbar-collapse.collapse.in {
    display: block !important;
    overflow: hidden !important;
  }

  .mega-menu:hover .dropdown-menu,
.nav-item:hover .dropdown-menu {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition-delay: none;
    -moz-transition-delay: none;
    -o-transition-delay: none;
    -ms-transition-delay: none;
    transition-delay: none;
  }

  .navbar-nav .open .dropdown-menu {
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.175);
  }

  .mega-menu .dropdown-menu,
.nav-item .dropdown-menu {
    opacity: 1;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    transform: none;
    transition: none;
    visibility: visible;
  }

  #top nav.navbar li.dropdown .dropdown-menu,
#top nav.navbar li.dropdown .dropdown-menu.megamenu-container {
    display: none !important;
    margin-left: 0;
    min-width: 100%;
    width: auto;
    min-height: 100%;
    height: auto;
    position: static;
    margin-top: 0;
  }

  #top nav.navbar li.dropdown.open .dropdown-menu,
#top nav.navbar li.dropdown.open .dropdown-menu.megamenu-container {
    display: block !important;
    border: none;
  }

  #top nav.navbar .dropdown-menu ul.sub-mega-menu > li {
    width: 50%;
  }

  .top .phone-shopping {
    float: left;
  }

  .top .text-right {
    width: auto;
  }

  .top-navigation {
    text-align: center;
  }

  .top-navigation ul li.navigation {
    width: 100%;
    text-align: center;
  }

  .top-navigation ul li.navigation .navbar .navbar-collapse.collapse {
    padding-left: 15px;
    padding-right: 15px;
  }

  .top-navigation i.fa-user {
    vertical-align: 5px;
  }

  .top-navigation .mobile-search {
    margin: 10px 0 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .top-navigation .mobile-search input {
    width: 95%;
    color: #1e1e1e;
    padding: 5px;
    border: none;
  }

  .nav-item .dropdown-menu {
    visibility: visible;
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    -webkit-transition-delay: 0;
    -moz-transition-delay: 0;
    -o-transition-delay: 0;
    -ms-transition-delay: 0;
    transition-delay: 0;
  }

  .top-navigation ul li.top-logo {
    width: auto;
    display: inline-block;
    *display: inline;
    zoom: 1;
    padding: 20px 0 10px 0;
    float: none;
  }

  .top-navigation i.fa-heart, .top-navigation i.fa-shopping-cart, .top-navigation i.fa-user {
    font-size: 25px;
    padding-left: 15px;
    padding-right: 15px;
    color: #202020;
  }

  .top-navigation .is-mobile, .top-navigation .navbar-header {
    display: inline-block !important;
    *display: inline !important;
    zoom: 1 !important;
  }

  #mobile-search {
    border: 1px solid #202020;
    background: #fff;
  }

  #mobile-search button.search-submit {
    background: 0 0;
    border: transparent;
  }

  .navbar-collapse {
    background: #fff;
  }

  .navbar-collapse ul > li {
    border-bottom: 1px solid #000;
  }

  .nav-item .dropdown-menu > li {
    border-bottom: none;
  }

  .navbar-collapse ul > li:last-child {
    border-bottom: none;
  }

  .navbar-collapse ul.sub-mega-menu li {
    border-bottom: 0;
  }

  #top nav.navbar .dropdown-menu li.list-title {
    margin-top: 0;
  }

  #top nav.navbar .dropdown-menu {
    padding: 15px 30px;
  }

  .partners-logo .owl-theme .owl-controls .owl-buttons > div.owl-next {
    margin-right: -15px;
  }

  .blogs-item .blogs-image ul li.date {
    margin-top: 5px;
    margin-left: 0;
  }

  .allcollections-page .container-item .collection-action a {
    top: 283px;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 160%;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 155%;
  }

  .collection .element .row-left .hoverBorder form.contact-form {
    top: 150%;
  }

  .element.full_width .row-right .effect-ajax-cart button.select-option {
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #product-image, #product-image .image.featured {
    display: block;
  }

  .product-image .product-image-thumb li.image {
    padding: 10px 15px;
  }

  .addthis_sharing_toolbox #atstbx a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-top: 10px;
    padding-bottom: 0;
  }

  #detail-right-column .sharing .unpadding {
    width: auto;
    display: inline-block;
    *display: block;
    zoom: 1;
    margin-right: 10px;
    padding-bottom: 0 !important;
  }

  #detail-right-column .sharing .unpadding:first-child {
    vertical-align: 5px;
  }

  #detail-right-column .sharing {
    margin-top: 20px;
  }

  #gallery_main, #gallery_main.mobile_full_width {
    padding: 15px;
  }

  #gallery_main.fix-width .owl-item, #gallery_main.mobile_full_width .owl-item {
    width: 90px !important;
  }

  #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-next, #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-prev {
    top: 0;
    right: 0;
    left: auto;
    margin-top: -61px !important;
    margin-right: 1px;
  }

  #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-next {
    margin-top: -107px !important;
  }

  #product-info-left, #product-info-right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  #product-info-right {
    border-left: 0;
  }

  .product-page.no_full_width #gallery_main.no_full_width {
    display: none;
  }

  #product-header {
    margin: 10px 15px;
  }

  #product-information div.relative {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #shopify-product-reviews {
    padding: 10px 0 !important;
  }

  .product-page.no_full_width #gallery_main_xs {
    display: none;
  }

  .detail-right-slidebar.right-slidebar {
    float: none;
  }

  #product-information.no_full_width {
    padding-left: 0;
    padding-top: 20px;
  }

  .product-page.no_full_width #prod-related-wrapper {
    margin-right: 0;
  }

  #product-image.no_full_width {
    padding-left: 0;
    padding-right: 0;
  }

  #gallery_main {
    margin: 0;
    padding: 0;
  }

  #gallery_main.fix-width {
    padding: 15px;
  }

  #col-main.product-page.no_full_width.have-left-slidebar {
    float: none;
  }

  .product-page.no_full_width #gallery_main {
    margin: 0;
    padding: 15px 0;
  }

  .product-page.no_full_width #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-prev {
    top: 5px;
  }

  .product-page.no_full_width #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-next {
    top: 10px;
  }

  #testimonials .ttm-item {
    width: 100%;
  }

  #price-table .pt-item {
    width: 50%;
  }

  #price-table .pt-item:nth-child(2) {
    border-right: 1px solid #ebebeb;
  }
}
@media (max-width: 667px) {
  .home_products .element form .row-right a.title-5 {
    line-height: 15px;
  }

  .blogs-item .blogs-image ul li.date {
    margin-top: 30px;
    margin-left: 15px;
  }

  .cart-items tr td.title-1 {
    font-size: 18px;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 163%;
  }

  .collection .element .row-left .hoverBorder form.contact-form {
    top: 162%;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 140%;
  }
}
@media (min-width: 640px) and (max-width: 767px) {
  .collection .element .row-left .hoverBorder a.wish-list {
    top: 153%;
  }
}
@media (max-width: 640px) {
  .allcollections-page .container-item .collection-action a {
    top: 160%;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 170%;
  }

  .collection .element .row-left .hoverBorder form.contact-form {
    top: 165%;
  }

  #product-actions .selector-wrapper div.wrapper i.fa {
    left: 71%;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-down {
    left: 35%;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 140%;
  }
}
@media (max-width: 600px) {
  .element form .row-left .wish-list, .element form .row-left button.wish-list {
    margin-right: 20px;
  }

  #widget-newsletter .store-information {
    margin-top: 20px;
  }

  .cart-items tbody td ul li.image {
    display: block;
  }

  table.cart-items tbody td {
    padding: 38px 0;
  }

  .cart-items tbody td.title {
    padding-top: 10px;
  }

  .cart-items tr td ul {
    padding-top: 0;
  }

  .allcollections-page .container-item .collection-action a {
    top: 168%;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 143%;
  }

  .collection .element .row-left .hoverBorder form.contact-form {
    top: 142%;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-down {
    left: 34%;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 150%;
  }
}
@media (min-width: 480px) and (max-width: 600px) {
  .allcollections-page .container-item .collection-action a {
    top: 272px;
  }
}
@media (max-width: 480px) {
  .newsletter-popup h4 {
    font-size: 60px;
    margin-top: 30px;
  }

  .newsletter-popup form p {
    font-size: 12px;
    margin-top: 45px;
  }

  .newsletter-popup .group_input, .newsletter-popup .group_input input.form-control {
    width: 358px;
  }

  #popup-hide {
    margin-top: 30px;
  }

  .top-navigation ul li.top-logo {
    padding: 0;
  }

  .top-navigation .mobile-search {
    padding: 20px 0;
  }

  .top .phone-shopping {
    float: left;
    padding-right: 0;
    text-align: center;
  }

  .top div ul.text-right {
    float: right;
    width: auto;
  }

  .top-navigation .mobile-search input {
    width: 93%;
  }

  #top nav.navbar .dropdown-menu ul.sub-mega-menu > li {
    width: 100%;
  }

  .allcollections-page .container-item .collection-action a {
    top: 150%;
  }

  #collections {
    margin-left: -15px;
    margin-right: -15px;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 159%;
  }

  .collection .element .row-left .hoverBorder form.contact-form {
    top: 158%;
  }

  .owl-theme .owl-controls {
    margin-right: 20px;
  }

  .blog {
    padding-right: 15px;
  }

  #widget-payment ul#payments {
    text-align: left;
  }

  #customer-login {
    width: 100%;
  }

  #register-form .form-control {
    width: 100%;
  }

  #customer_orders table thead th {
    padding: 10px;
  }

  #order_details_wrapper table tbody td {
    padding: 15px 10px;
  }

  #order_details_wrapper table thead th {
    padding: 14px 10px;
  }

  #order_details_wrapper table tbody td img {
    display: none;
  }

  .cart-items tr td:nth-child(2), table.cart-items thead th:nth-child(2) {
    display: none;
  }

  #product-actions .selector-wrapper div.wrapper i.fa {
    left: 90%;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-down {
    left: 0;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 162%;
  }

  #product-header .description {
    margin: 0;
    width: 100%;
    text-align: left;
  }

  #product-information div.relative {
    text-align: left;
  }

  #product-information ul li.tags span {
    display: inline-block;
    *display: block;
    zoom: 1;
  }

  #product-information ul li.tags:after {
    position: static;
    left: none;
    width: 100%;
  }

  #product-actions {
    text-align: left;
  }

  #product-information .options {
    margin: 0;
  }

  .custom-style-select-box-inner {
    width: 100% !important;
  }

  .custom-style-select-box {
    width: 100%;
  }

  .custom-style-select-box {
    padding-right: 0;
  }

  #product-information .options .quantity-wrapper input#quantity {
    width: 100%;
  }

  #product-information .detail-price {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  #product-information button#add-to-cart {
    width: calc(100% - 15px);
  }

  #product-information #product-header .options .line {
    width: 100%;
  }

  #product-information {
    padding-left: 15px;
    padding-right: 15px;
  }

  .swatch {
    justify-content: flex-start !important;
    -moz-justify-content: flex-start !important;
    -ms-justify-content: flex-start !important;
    -webkit-justify-content: flex-start !important;
  }

  #product-header {
    margin: 10px 0;
  }

  .cart-items tr td ul li.link {
    padding-left: 5px;
  }

  .cart-items tr td form a.btn {
    padding-right: 5px;
  }

  #widget-payment, #widget-payment ul > li:first-child {
    padding-left: 0;
  }
}
@media (max-width: 480px) and (min-width: 420px) {
  .allcollections-page .container-item p.description {
    margin: 0 0 20px;
  }
}
@media (max-width: 420px) {
  .newsletter-popup h4 {
    font-size: 50px;
  }

  .newsletter-popup form p {
    font-size: 10px;
  }

  .newsletter-popup .group_input, .newsletter-popup .group_input input.form-control {
    width: 298px;
  }

  .top-navigation .is-mobile ul > li {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .top-navigation .mobile-search input {
    width: 85%;
  }

  .top-navigation {
    display: block;
  }

  .top-other {
    height: 85px;
  }

  .top-other-inner.owl-theme .owl-controls .owl-buttons > div.owl-next, .top-other-inner.owl-theme .owl-controls .owl-buttons > div.owl-prev {
    margin-top: 22px !important;
  }

  #collections.main-has-slidebar .item,
#widget-payment ul#payments li.btooltip:first-child {
    padding-left: 0;
  }

  #widget-newsletter .content .left, #widget-newsletter .content .right {
    width: 100%;
    display: block;
  }

  #widget-newsletter .unpadding-top button {
    width: auto;
  }

  #customer_orders table tbody td {
    padding: 34px 5px;
  }

  .unpadding-top button {
    width: 60%;
  }

  .cart-items tr td.title-1 {
    font-size: 10px;
  }

  .cart-items tr td ul li a span.title-5 {
    font-size: 10px;
  }

  .cart-items tr td ul li.link > span {
    font-size: 10px;
    line-height: 10px;
  }

  .cart-items .action button {
    font-size: 9px;
  }

  .cart-items .action button i.fa {
    margin-right: 0;
  }

  table.cart-items thead th {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cart-items tbody td.title {
    padding-left: 5px;
  }

  .cart-items tbody td form a.btn {
    font-size: 11px;
    line-height: 11px;
    margin-right: 5px;
  }

  .search-page form.search-form input.input-block-level {
    width: 100%;
  }

  .search-page form.search-form button.search-submit {
    left: 88%;
  }

  .collection .element .row-left .hoverBorder a.wish-list {
    top: 133%;
  }

  .collection .element .row-left .hoverBorder form.contact-form {
    top: 133%;
  }

  .allcollections-page .container-item .collection-action a {
    top: 270px;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-down {
    left: 0;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 137%;
  }

  #prod-related-wrapper .prod-related .owl-controls .owl-prev {
    left: -10px;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 175%;
  }

  #price-table .pt-item {
    width: 100%;
  }

  #price-table .pt-item {
    border-right: 1px solid #ebebeb;
  }
}
@media (max-width: 320px) {
  .newsletter-popup h4 {
    font-size: 40px;
  }

  .newsletter-popup .group_input, .newsletter-popup .group_input input.form-control {
    width: 208px;
  }

  .navbar-toggle .icon-bar {
    width: 21px;
  }

  .navbar-toggle {
    padding-left: 0;
    padding-right: 0;
  }

  .top-navigation {
    padding-left: 0;
    padding-right: 0;
  }

  .top-navigation .mobile-search {
    padding: 0;
  }

  #home_products .element.no_full_width {
    width: 100%;
  }

  #collections.main-has-slidebar .item p.description {
    margin: 0 0 20px;
  }

  .collection .element .row-left .hoverBorder a.wish-list, .collection .element .row-left .hoverBorder form.contact-form {
    top: 147%;
  }

  #collections .collection-details img.img-responsive {
    margin: 0 auto;
  }

  #customer_orders table thead th {
    padding: 10px 5px;
    font-size: 10px;
  }

  #customer_orders table tbody td {
    padding: 34px 0;
  }

  #customer_orders table td a, #customer_orders table td span {
    font-size: 12px;
  }

  #order_details_wrapper table tbody td ul > li.link a span {
    font-size: 12px;
    line-height: 15px;
  }

  #order_details_wrapper table tbody td {
    padding-left: 2px;
    padding-right: 2px;
  }

  #order_details_wrapper table thead th {
    padding-left: 2px;
    padding-right: 2px;
  }

  #order_details_wrapper table tbody td.sku, #order_details_wrapper table thead th:nth-child(2) {
    display: none;
  }

  #customer-login ul.login-wrapper button, #register-form li.action-last button {
    width: 60%;
  }

  table.cart-items thead th {
    padding-left: 0;
    padding-right: 0;
    font-size: 9px;
  }

  .cart-items tbody tr {
    padding-left: 0;
    padding-right: 0;
  }

  .cart-items .form-control {
    width: 45px;
  }

  .cart-items tr.bottom-summary td #update-cart {
    font-size: 8px;
    background: 0 0;
    border: none;
    padding-left: 0;
    padding-right: 0;
  }

  table.cart-items tfoot td {
    padding: 10px 15px;
  }

  .cart-items tbody td.title {
    padding-left: 5px;
  }

  .cart-items tbody td.title li > a {
    font-size: 12px;
    line-height: 15px;
  }

  table.cart-items thead th.text-left {
    padding-left: 5px;
  }

  .cart-items tbody td form a.btn {
    font-size: 9px;
    line-height: 9px;
    margin-right: 5px;
    padding: 10px 9px;
  }

  .search-page form.search-form button.search-submit {
    left: 80%;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-down {
    left: 0;
  }

  #prod-related-wrapper .row-left .hoverBorder a.wish-list {
    top: 145%;
  }

  #product-information .options .variants-wrapper select.single-option-selector {
    width: 100%;
  }

  #shopify-product-reviews .spr-summary-actions a {
    margin-top: 10px;
  }

  #prod-related-wrapper .prod-related .owl-controls .owl-prev {
    left: 5px;
  }

  #prod-related-wrapper .prod-related .owl-controls .owl-next {
    right: 5px;
  }

  #shopify-product-reviews .spr-summary-actions a {
    margin-top: 30px;
  }

  div.jGrowl div.jGrowl-closer, div.jGrowl div.jGrowl-notification {
    width: 290px;
  }

  div.jGrowl div.jGrowl-closer, div.jGrowl div.jGrowl-notification {
    margin: 20px 15px;
  }

  .article-content .date {
    width: 22%;
    float: left;
  }

  .article-content h4 {
    width: calc(100% - 22% - 10px);
    float: left;
  }
}
#top .is-mobile li .currency i, .btn-group, .btn-navbar {
  cursor: pointer;
}

.btn-group.open .dropdown-toggle {
  box-shadow: none;
}

#top .top a:hover {
  color: #a07936;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover, .dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
  background: 0;
}

.dropdown-menu {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.175);
}

.dropdown-toggle:focus, input:focus {
  outline: 0;
  box-shadow: none;
}

.customer-links {
  padding-right: 0;
}

#widget-social ul.list-inline li:last-child {
  padding-right: 0;
}

#widget-social i.fa {
  font-size: 14px;
  margin-left: 10px;
  color: #202020;
}

.wls i.fa {
  margin-right: 5px;
}

.general-title {
  text-align: center;
  position: relative;
  color: #000;
  font-size: 28px;
  font-weight: 400;
}



.home_products i.fa-star {
  font-size: 13px;
  padding-right: 3px;
}

.home_products .general-title {
  color: #232323;
}

.popular-collections-wrapper {
  margin-bottom: 30px;
}

.home_collections{width: 100%; padding-bottom: 60px;}
.home_collections img{max-width: 100%;}
.home_collections_wrapper,
.home_products_wrapper {
  width: 100%;
  float: left;
}

.home-blog {
  padding-bottom: 15px;
}

.home-newproduct { padding-bottom: 60px;}


.home-feature .home_fp {
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}

.group_home_products {
  overflow: hidden;
}

.group_home_products .wrapper-title {
  text-align: center;
}

#home_products {
  margin-left: -10px;
  margin-right: -10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -webkit-justify-content: left;
}

.home_products .element {
  width: 33.3%;
  vertical-align: top;
  padding: 0 10px 30px !important;
}

.home-banner-wrapper {
  background: url(https://www.bendavidjewelers.com/images/Ben-David-Jewelers-Storefront.jpg) no-repeat center/cover;
  width: 100%;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 70px;
}

.home-banner-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.home-banner-wrapper .container {
  position: relative;
}

#home-banner img.img-banner-caption {
  margin: 50px 0;
}

#home-banner .home-banner-action a, #home-banner .home-banner-caption p {
  color: #fff;
  line-height: 24px;
  font-size: 16px;
}
.diamondSearchHome{padding: 60px 0;}
.diamondShapesList  {margin: 0 -15px; padding-left: 0;}
.borderBottom{border-bottom: 1px solid #e3e7eb;}
.diamondShapesList > li {padding: 0 15px;  width: 10%;  text-align: center; list-style: none;}
.diamondShapesList > li > a {display: block; position: relative;  padding: 0 0 30px;  font-size: 16px; letter-spacing: .5px;  }
.diamondShapesList > li > a > img { width: 100%;}
.diamondShapesList > li > a:before { content: attr(title);  position: absolute;  left: 0;  right: 0;  bottom: 0;  text-align: center;  color: #000;}
.home_collectionsBottom{margin-top: 60px;}

#home-banner .home-banner-action a {
  text-transform: capitalize;
  font-weight: 300;
  color: #eec989;
  position: relative;
  letter-spacing: 0.05em;
  text-decoration: underline;

}

#home-banner .home-banner-action a:after {
  content: "";
  position: absolute;
  width: 30px;
  border-bottom: 1px solid;
  top: -5px;
  left: 20px;
    display: none;
}

.partners-logo {
  padding-bottom: 60px;
}

#partners-container .owl-item {
  padding-left: 10px;
  padding-right: 10px;
}

#partners-container .owl-item .logo:hover a img {
  opacity: 0.3;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
}

#home_fp .owl-next, #home_fp .owl-prev {
  margin-top: -70px !important;
  background: 0 0;
}

.element ul li.row-right a.title-5 {
  color: #000;
  overflow: hidden;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
}

.element ul li.row-right a.title-5:hover {
  color: #a07936;
}

.element ul li.row-right .product-price span.price {
  font-size: 18px;
  line-height: 18px;
  color: #202020;
}

.home_deal_fp .element ul li.row-right .product-price span.price {
  font-size: 15px;
}

.element form .row-right .effect-ajax-cart button {
  background: 0 0;
  border: 1px solid #dedede;
  border-radius: 4px;
  -moz-transition: background 0.3s ease-in-out;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  height: 36px !important;
  padding: 0 8px;
}

.element form .row-right .effect-ajax-cart button:hover {
  background: #a07936;
  color: #fff;
  border-color: #a07936;
}

.element form .row-left i.fa-angle-right {
  font-size: 15px;
  color: #202020;
}

.element ul li.row-right .product-content-left {
  text-align: center;
  display: block;
  overflow: hidden;
  height: 47px;
}

.element ul li.row-right .product-content-right {
  display: block;
  text-align: center;
  margin-top: 14px;
}

.element.full_width ul li.row-right .product-content-right .price_compare {
  padding-top: 0;
}

.element > ul {
  margin: 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.element .row-right .spr-badge {
  display: block;
}

.home_products .element form {
  position: relative;
  display: block;
  max-width: 100%;
  text-align: center;
}

.home_products .hoverBorder {
  position: absolute;
  z-index: 2;
}

.home-main-content {
  padding-right: 0;
  float: right;
}

.templateIndex .left-slidebar {
  padding-left: 0;
}

.home-bottom_banner a {
  display: block;
}

.home-bottom_banner a img {
  max-width: 100%;
}

.home-bottom_banner a:hover img {
  opacity: 0.5;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
}

.home-blog-wrapper {
  padding-left: 20px;
}

#home_blog .home-blog-item {
  margin: 1px 0 25px;
}

#home_blog .home-blog-item:last-child {
  margin-bottom: 0;
}

#home_blog .home-blog-item:after {
  content: "";
  border-bottom: 1px solid #e5e5e5;
  display: block;
  width: 100%;
  height: 1px;
  padding: 13px 0;
}

#home_blog .home-blog-item:last-child:after {
  border-bottom: none;
}

#home_blog .home-blog-content {
  padding-left: 30px;
  padding-right: 0;
}

#home_blog .home-blog-item .date {
  padding-left: 0;
  padding-right: 0;
}

#home_blog .home-blog-item .date_inner {
  text-align: center;
  font-size: 18px;
  font-family: Lato, sans-serif;
  color: #a07936;
  font-weight: 600;
  text-transform: uppercase;
  width: 100px;
  height: 100px;
  padding: 0;
  position: relative;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
}

#home_blog .home-blog-item .date p {
  font-size: 50px;
  line-height: 57px;
  text-align: center;
  color: #202020;
  font-family: Quicksand, sans-serif;
  font-weight: 300;
  margin: 0;
}

#home_blog .home-blog-item .date small {
  background: #a07936;
  font-family: Belleza, sans-serif;
  font-size: 20px;
  line-height: 20px;
  font-weight: 300;
  color: #fff;
  text-transform: uppercase;
  padding: 8px 0;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.blog .pagination p {
  display: none;
}

.fa-comment:before, .fa-magic:before {
  margin-right: 5px;
}

#home_blog .home-blog-content i.fa {
  padding-right: 5px;
  color: grey;
}

#home_blog .home-blog-content a {
  font-size: 24px;
  font-family: Belleza, sans-serif;
  color: #a07936;
  font-weight: 500;
  text-transform: capitalize;
}

#home_blog .home-blog-content h4 {
  margin-top: 0;
  margin-bottom: 0;
}

#home_blog .home-blog-content ul > li.author, #home_blog .home-blog-content ul > li.comment a {
  padding-left: 0;
  font-size: 15px;
  font-family: Lato, sans-serif;
  color: grey;
  font-weight: 400;
  text-transform: capitalize;
}

#home_blog .home-blog-content ul > li.comment a:hover {
  color: #a07936;
}

#home_blog .home-blog-content ul > li {
  font-size: 12px;
  font-weight: 400;
}

#home_blog .home-blog-content ul > li.author {
  padding-right: 0;
}

#home_blog .home-blog-content ul > li.comment {
  padding-left: 0;
}

#home_blog .home-blog-content ul {
  padding: 0 0 12px;
}

#home_blog .home-blog-content .intro {
  font-family: Lato, sans-serif;
  font-weight: 400;
}


#widget-newsletter .content h5 {
  margin: 0 0 10px;
  padding-left: 0;
  border-color: #dedede;
  color: #a07936;
}

#widget-newsletter .content h5.email {
  position: relative;
}

#widget-newsletter .content h5.email:before {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  top: -22px;
  border-top: 1px solid #e5e5e5;
}

#widget-newsletter .content h5 i.fa {
  padding-right: 10px;
}

#widget-newsletter .general-title i.fa {
  position: static;
}

#widget-newsletter .newsletter {
  text-align: center;
}

#widget-newsletter .newsletter .group_input {
  width: 90%;
  margin: 0 auto;
  position: relative;
  margin-top: 20px;
}

#widget-newsletter .newsletter form input {
  width: 100%;
  height: 36px;
  display: inline-block;
  *display: inline;
  zoom: 1;
  color: rgba(0, 0, 0, 0.5);
  border-radius: 0;
  box-shadow: none;
}

#widget-newsletter .newsletter .unpadding-top {
  display: inline-block;
  *display: inline;
  zoom: 1;
  position: absolute;
  top: 0;
  right: 0;
}

#widget-newsletter .newsletter .unpadding-top button {
  height: 36px;
  line-height: 36px;
  margin: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background-color: #444444;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
}
.home-partners{padding-bottom: 60px;}
.home-partners #testimonial button, .home-partners #testimonial button:hover{background: none !important; color: #000 !important; font-size: 29px !important;}

#widget-newsletter .newsletter .unpadding-top button i.fa {
  color: #fff;
}
.home-partners .item p{margin-bottom: 0;}
.googleReview{padding: 0px 0 60px; border-bottom: 1px solid #e3e7eb; margin-bottom: 60px;}
.googleReview li{list-style: none; padding: 25px;}
.googleReview li img{max-width: 150px;}
.googleReview li:first-child{padding: 0; text-align: center;}
.testimonialHome{background: #f8f8f8; padding-top: 60px; margin-bottom: 60px;}
.home-partners .item p, .home-partners .item small{font-size: 16px;}
.home-partners .item .starRating {color: #efef2f; font-size: 20px;}
.home-partners .item .starRating .fa + .fa {margin-left: 8px;}
.icons {
  background-image: url(../images/icon_payment.png);
  background-repeat: no-repeat;
  text-indent: -9999px;
  display: inline-block;
  height: 16px;
}

#widget-payment {
  padding-right: 0;
}

#widget-payment ul#payments {
  text-align: right;
}

#payments li a {
  height: 13px;
  vertical-align: center;
}

#payments li a.visa {
  background-position: 0 0;
  width: 30px;
}

#payments li a.mastercard {
  background-position: -43px 0;
  width: 25px;
}

#payments li a.amex {
  background-position: -79px 0;
  width: 15px;
}

#payments li a.paypal {
  background-position: -103px 0;
  width: 50px;
}

#payments li a.moneybookers {
  background-position: -164px 0;
  width: 40px;
}

.group-contact .contact-content {
  margin-bottom: 20px;
}

.control-label {
  font-size: 15px;
  font-family: Lato, sans-serif;
  color: #202020;
  font-weight: 400;
}

.control-label span {
  font-weight: 700;
}

.unpadding-top button {
  margin-top: 15px;
  padding: 0 25px;
}

#contact_map_wrapper {
  max-width: 100%;
}

#contact_map {
  height: 600px;
  margin-left: -10px;
  margin-top: 5px;
}

#contact-form h3 {
  margin-top: 0;
}

.contact-form .alert-danger {
  margin: 10px 0;
}

.contact-page .left-block, .contact-page .right-block {
  margin-bottom: 50px;
}

.contact-page .right-block ul.right-content {
  margin-bottom: 50px;
}

#contact-form li:first-child {
  padding-top: 0;
}

.contact-page .right-block .title h6 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.contact-page i.fa {
  margin-right: 10px;
}

.contact-page ul.right-content > li {
  display: inline-block;
  *display: block;
  zoom: 1;
  width: auto;
}

.contact-page ul.right-content > li.title {
  display: block;
  width: 100%;
}

.contact-page ul.right-content li.facebook i.fa-circle {
  color: #385eab;
}

.contact-page ul.right-content li.twitter i.fa-circle {
  color: #3dacd1;
}

.contact-page ul.right-content li.google-plus i.fa-circle {
  color: #de5131;
}

.contact-page ul.right-content li.pinterest i.fa-circle {
  color: #e01738;
}

.group-faq {
  padding-left: 15px;
  padding-right: 15px;
}

#register-form {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 110px;
}

#register-form .form-control {
  height: 40px;
  width: 45%;
}

#customer-login ul li, #register-form li, .customer_address_table li {
  padding-left: 0;
  padding-right: 0;
}

#customer-login .login-alert {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

#register-form li:ntd-child(2) {
  padding: 0;
}

.login-wrapper {
  padding-bottom: 30px;
}

.login-wrapper button {
  margin-bottom: 15px;
  margin-top: 18px;
}

#customer_detail .fa, .address_info .fa {
  font-size: 40px;
  color: #969696;
  font-weight: 200;
  padding-right: 25px;
}

#customer_orders .sb-title {
  margin-top: 5px;
  margin-bottom: 17px;
}

.customer_address_table .set_default input {
  vertical-align: -1px;
}

.customer_address span.update button {
  margin-left: -15px;
}

div.customer_address {
  margin-bottom: 45px;
}

.address .address1, .address_info .address1 {
  font-size: 13px;
  color: #000;
  font-family: Lato, sans-serif;
  font-weight: 400;
  line-height: 7px;
}

.address_actions .fa-edit {
  color: #054b8a;
  font-size: 20px;
  margin-right: 5px;
  margin-top: 5px;
}

.address_actions .fa-times {
  color: #fff;
  font-size: 15px;
  margin-right: 5px;
  margin-top: 8px;
  border: 1px solid #960000;
  background: #960000;
  border-radius: 50%;
  padding: 3px;
  text-align: center;
  line-height: 10px;
}

.customer_address .address_actions {
  text-align: right;
}

.edit_address li {
  padding-left: 15px;
  padding-right: 15px;
}

.edit_address span.update button {
  margin-left: 15px;
  margin-right: 15px;
}

#address_form_new button {
  margin-left: 0;
}

#create_customer ul#register-form li:first-child {
  display: none;
}

.manage-address .new-address {
  margin-bottom: 110px;
}

.login-page {
  margin-bottom: 200px;
}

.login-page div.checkout-form {
  margin-left: -15px;
  margin-right: -15px;
}

.login-page .checkout-title {
  padding-bottom: 3px;
}

#login-form {
  margin-top: 15px;
}

#login-form > li > input.form-control {
  width: 100%;
}

#login-form ul.login-wrapper > li {
  color: #969696;
}

#login-form ul.login-wrapper > li > a.action {
  color: #141414;
}

#login-form ul.login-wrapper > li > a.return {
  text-decoration: underline;
}

.alert-danger,
.alert-success {
  border: none;
  color: #000;
  border-radius: 0;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}

.alert,
.errors {
  padding: 5px 20px;
}

button.close {
  color: #fff;
  text-shadow: none;
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  padding-top: 4px;
}

.errors a {
  color: #e2e2e2;
}

.errors a:hover {
  color: #fff;
}

.errors ul > li {
  list-style-type: circle;
  margin-left: 10px;
}

.allcollections-page .collection-details {
  background-color: #fff;
}

.allcollections-page .mini-line {
  margin-bottom: 35px;
}

#collections {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -webkit-justify-content: left;
  margin-left: -20px;
  margin-right: -20px;
}

#collections.main-has-slidebar .item {
  padding-bottom: 20px;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
  vertical-align: top;
  width: 33.25%;
}

.allcollections-page .container-item .collection-action, .home_collections_item .collection-details .collection-action {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
}

.allcollections-page .container-item .collection-action a, .home_collections_item .collection-details .collection-action a {
  opacity: 0;
  -moz-transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
  -moz-transition: -moz-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
  -o-transition: -o-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
  -ms-transition: -ms-transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
  transition: transform 0.2s 0.1s ease-in, opacity 0.1s ease-in-out;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  left: auto;
  right: auto;
  text-align: center;
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
  font-size: 13px;
  font-family: Lato, sans-serif;
  color: #505050;
  text-transform: uppercase;
  font-weight: 700;
}

.allcollections-page .container-item:hover .collection-action a, .home_collections_item:hover .collection-details .collection-action a {
  opacity: 1;
  -moz-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -moz-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.home_collections_item .collection-details .collection-action a {
  margin-top: -15px;
}

.home_collections_item .collection-details .collection-action i.fa:before {
  font-size: 30px;
}

.allcollections-page .collection-item .collection-title {
  text-align: center;
  font-size: 16px;
  font-family: Lato, sans-serif;
  color: #202020;
  text-transform: uppercase;
  line-height: 16px;
  font-weight: 400;
  margin-top: 27px;
  margin-bottom: 8px;
  cursor: text;
}

.allcollections-page .collection-item .description {
  text-align: center;
  color: #000;
  font-weight: 300;
}

.collection-details {
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.collection-details span{position: absolute; bottom: 10px; color: #fff; width: 100%;  transition:all .5s linear; left:15px; font-size: 18px;}
.collection-details{overflow: hidden;}
.collection-details img{transition:all .8s linear; }
.collection-details:hover img{transform: scale(1.1); }



.left-slidebar {
  float: left;
}

.collection-page.no_full_width.have-left-slidebar {
  float: right;
}

.allcollections-page h6.general-title {
  margin-top: 0;
  margin-bottom: 30px;
}

#content #product.content {
  padding-bottom: 0;
  background-color: #f7f7f7;
}

#shopify-product-reviews {
  padding: 50px 0 0 !important;
}

#shopify-product-reviews h2 {
  text-align: left;
}

#shopify-product-reviews .spr-summary-actions {
  float: right;
  margin-top: -22px;
}

#shopify-product-reviews .spr-summary-actions a {
  float: right;
  border: 1px solid #dedede;
  border-radius: 5px;
  background: #fff;
  color: #8f8f8f;
  padding: 6px 16px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: Belleza, sans-serif;
}

#shopify-product-reviews .spr-summary-actions a:hover {
  border-color: #a07936;
  background: #a07936;
  color: #fff;
}

#shopify-product-reviews .spr-summary-caption {
  color: grey;
}

#shopify-product-reviews .spr-form input, #shopify-product-reviews .spr-form textarea {
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #dedede;
}

#shopify-product-reviews .spr-form input:focus, #shopify-product-reviews .spr-form textarea:focus {
  border-color: #818080;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#shopify-product-reviews .spr-form input.button {
  padding: 0 24px;
}

#shopify-product-reviews .spr-review-reportreview {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: Belleza, sans-serif;
}

#shopify-product-reviews .spr-icon.spr-icon-star, #shopify-product-reviews .spr-icon.spr-icon-star-empty {
  color: #a07936;
  width: 15px;
  height: 18px;
  text-align: center;
}

#shopify-product-reviews .spr-content {
  text-align: center;
}

#shopify-product-reviews .spr-review {
  padding: 20px 0;
}

#shopify-product-reviews .spr-review-header-byline {
  margin: 18px 0 25px 0;
  font-size: 15px;
  font-weight: 400;
}

#shopify-product-reviews .spr-review-header-byline strong {
  font-weight: 400;
}

#shopify-product-reviews .spr-review-content {
  margin: 0 0 31px 0;
}

.spr-review-content-body {
  font-size: 15px !important;
  font-weight: 400;
}

.featured-products .fprod-title {
  line-height: 12px;
}

.featured-products .fprod-title a {
  font-family: Belleza, sans-serif;
  font-weight: 400;
  color: #202020;
  line-height: 12px;
  vertical-align: 5px;
}

.featured-products .product-wrapper .product-price .price_sale {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  margin-top: 5px;
}

.featured-products .product-wrapper form {
  padding-left: 0;
  padding-right: 0;
}

.group_sidebar ul.featured-products .sb-info {
  padding-left: 5px;
}

.featured-products .product-price {
  margin-bottom: 20px;
}

.group_sidebar ul.featured-products li {
  margin: 20px 0;
  border-bottom: 1px dotted #eaeaea;
}

.group_sidebar ul.featured-products li:last-child {
  border-bottom: none;
}

.group_sidebar h6 {
  padding-bottom: 0;
  margin-top: 0;
}

.filter-tag-group .tag-group {
  padding-bottom: 10px;
  padding-top: 10px;
  border-bottom: 1px solid #eaeaea;
}

.filter-tag-group .tag-group#coll-filter-1 {
  padding-top: 0;
}

.filter-tag-group .tag-group#coll-filter-3 {
  border-bottom: 0;
  padding-bottom: 0;
}

.featured-products .product-price span.price {
  font-size: 18px;
  font-family: Lato, sans-serif;
  line-height: 18px;
  font-weight: 700;
  padding-top: 10px;
}

.featured-products button.btn {
  width: 58%;
  font-weight: 700;
  font-size: 10px;
  padding: 3px 10px;
  height: 30px;
}

.sidebar .sb-wrapper {
  margin: 0 0 35px;
}

.sidebar .sb-wrapper.left-sample-block > ul {
  margin-bottom: 0;
}

.sidebar .sb-wrapper.left-sample-block ul > li {
  border-bottom: 1px dotted #eaeaea;
  padding: 10px 0;
}

.sidebar .sb-wrapper.left-sample-block ul > li:first-child {
  padding-top: 0;
}

.sidebar .sb-wrapper.left-sample-block ul > li:last-child {
  border: none;
  padding-bottom: 0;
}

.featured-products .fprod-title a:hover {
  color: grey;
}

.featured-products span.mini-line {
  border-bottom: 1px solid #1e1e1e;
  display: block;
  width: 30%;
  margin-top: 20px;
}

.featured-products .fprod-descrip {
  font-size: 14px;
  font-family: Lato, sans-serif;
  font-style: italic;
  color: grey;
  line-height: 20px;
}

.group_sidebar ul.featured-products li:last-child {
  margin-bottom: 0;
}

.group_sidebar ul.featured-products .sb-image {
  margin-right: 0;
}

.featured-products .sb-image a:hover img {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.home-collection-wrapper.sb-wrapper ul > li a > span {
  position: relative;
}

.home-collection-wrapper.sb-wrapper ul > li a > span {
  padding-left: 0;
}

.group_sidebar ul > li i.fa {
  font-size: 4px;
  vertical-align: 4px;
  padding-right: 10px;
  color: grey;
}

.group_sidebar ul > li:hover i.fa {
  color: #a07936;
}

.slidebar-banner > div:hover img {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
  transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
}

#widget-newsletter .content h6.email:after {
  background: 0 0;
}

.home-collection-wrapper.sb-wrapper ul > li a > span.collection-count {
  padding-left: 0;
}

.sb-wrapper ul.sb-content a {
  color: grey;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
}

.sb-wrapper ul.sb-content a:focus, .sb-wrapper ul.sb-content a:hover {
  color: #a07936;
  font-style: normal;
}

.home-collection-wrapper.sb-wrapper ul > li {
  border-bottom: 1px solid #eaeaea;
  padding: 12px 0;
}

.home-collection-wrapper.sb-wrapper ul > li:last-child {
  border: none;
  padding-bottom: 0;
}

.home-collection-wrapper.sb-wrapper ul > li:first-child {
  padding-top: 0;
}

.sb-wrapper {
  margin-bottom: 30px;
}

.group_deal_products .element {
  margin-bottom: 20px;
}

.group_deal_products .element ul.row-container {
  margin: 0;
  background-color: #fff;
}

.group_deal_products .element:first-child {
  padding-top: 0;
}

.group_deal_products .element:last-child {
  padding-bottom: 0;
}

.group_deal_products .element > ul {
  margin-bottom: 0;
}

.group_deal_products .element.full_width .row-right .effect-ajax-cart button.add-to-cart, .group_deal_products .element.full_width .row-right .effect-ajax-cart button.select-option {
  margin-left: 15px;
}

.featured-product-wrapper .element.no_full_width .row-right .product-price {
  margin-bottom: 0;
}

.featured-product-wrapper .element.no_full_width .row-right .list-mode-description {
  display: none;
}

.featured-product-wrapper .element .row-right .spr-badge {
  margin-top: 5px;
  margin-bottom: 0;
}

.deal-product-wrapper .element.full_width .row-left {
  width: 37%;
  float: left;
}

.deal-product-wrapper .element.full_width .row-left a:hover img {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0.7)";
  filter: alpha(opacity=0.7);
  opacity: 70;
}

.deal-product-wrapper .element.full_width .row-right {
  float: right;
  width: 62%;
  padding: 10px 0;
  margin: 0;
  border-left: 1px solid #eaeaea;
}

.deal-product-wrapper .element.full_width .row-right .price, .deal-product-wrapper .element.full_width .row-right .price_sale {
  padding-bottom: 5px;
  line-height: 15px;
}

.deal-product-wrapper .element.full_width .row-right a.title-5 {
  font-weight: 500;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: top;
}

.deal-product-wrapper .element.full_width .row-right a.title-5:hover {
  color: #a07936;
}

.deal-product-wrapper .element.full_width .row-right .product-price, .deal-product-wrapper .element.full_width .row-right .spr-badge, .deal-product-wrapper .element.full_width .row-right a.title-5 {
  padding-left: 15px;
  padding-right: 15px;
}

.deal-product-wrapper .element.full_width .row-right .product-price {
  margin-bottom: 5px;
}

.sb-wrapper ul > li {
  padding-top: 0;
  padding-bottom: 0;
}

.sb-wrapper.left-sample-block > ul {
  margin-bottom: 0;
}

.sb-wrapper.left-sample-block ul > li {
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0;
}

.sb-wrapper.left-sample-block ul > li:first-child {
  padding-top: 0;
}

.sb-wrapper.left-sample-block ul > li:last-child {
  border: none;
  padding-bottom: 0;
}

#product-info-right span.dash, #quick-shop-price-container.detail-price span.dash, .element .row-right span.dash {
  color: #ccc;
}

#content .content {
  padding: 60px 0 0;
}

.templateIndex #content .content {
  background-color: transparent;
  padding-bottom: 0;
}

.collection-banner {
  margin-top: 43px;
}

#options {
  margin-top: 50px;
  margin-bottom: 30px;
}

#options select.sort-by {
  font-size: 11px;
  font-family: Lato, sans-serif;
  color: #000;
  font-weight: 300;
  min-width: 150px;
  text-transform: uppercase;
  line-height: 20px;
}

#options label {
  font-size: 13px;
  font-family: Lato, sans-serif;
  color: #323232;
  font-weight: 500;
}

#options ul > li.grid_list {
  float: left;
  padding-left: 0;
  padding-right: 0;
}

#options .option-set li.goAction {
  padding: 8px 13px;
  color: #c8c8c8;
  background: #fff;
}

#options .option-set li.btooltip:hover {
  cursor: pointer;
}

#options .option-set li.btooltip.active, #options .option-set li.btooltip:hover {
  background-color: #a07936;
}

#options ul.option-set {
  display: block;
  float: left;
}

#options #goGrid, #options #goList {
  padding: 13px;
  border: 1px solid #eaeaea;
  float: left;
  background-color: #fff;
}

#options #goGrid.active, #options #goGrid:hover, #options #goList.active, #options #goList:hover {
  background-color: #a07936;
}

#options #goGrid {
  border-right: none;
}

#options #goGrid span, #options #goList span {
  width: 11px;
  height: 11px;
  text-indent: -999em;
  display: block;
  background: url(../images/icons.png) 0 0 no-repeat;
  line-height: 11px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  letter-spacing: 0.05em;
}

#options .option-set li.btooltip.active {
  cursor: text;
}

#options #goGrid span {
  background-position: 0 0;
}

#options #goGrid.active span, #options #goGrid:hover span {
  background-position: 0 -27px;
}

#options #goList span {
  background-position: 0 -56px;
}

#options #goList.active span, #options #goList:hover span {
  background-position: 0 -89px;
}

#options .list-inline > li.sortBy {
  padding-right: 0;
  position: relative;
}

#sortBox.dropdown-menu {
  left: auto;
  top: 50px;
}

.sortBy #sortButton {
  min-width: 220px;
  height: 40px;
  background: #fff;
  border: 1px solid #eaeaea;
  box-shadow: none;
  text-align: left;
  padding: 0 0 0 15px;
  vertical-align: middle;
}

.sortBy #sortButton i.fa {
  color: #000;
  float: right;
  margin: 5px 0;
  margin: 0;
  padding: 0 17px;
  line-height: 40px;
}

.sortBy #sortButton span {
  margin-right: 10px;
  line-height: 38px;
  font-size: 15px;
  color: #000;
}

#sortButtonWarper .title-6 {
  font-weight: 500;
  color: #323232;
  margin-right: 5px;
  vertical-align: -1px;
}

.sortBy #sortBox {
  position: absolute;
  top: 100%;
  left: auto;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ececec;
  width: 78%;
  padding: 5px 15px;
  box-shadow: none;
  margin-top: 10px;
}

#sortBox ul > li, .sortBy #sortForm li:hover {
  cursor: pointer;
}

.sortBy #sortForm li.selected, .sortBy #sortForm li:hover {
  color: #a07936;
}

#sandBox-wrapper {
  margin-left: 0;
  margin-right: 0;
}

#sandBox {
  list-style: none;
  padding: 0;
  /*margin: 0; */
}
#sandBox [class*=col-] {
  margin-bottom: 30px;
}

.element .row-right .spr-badge {
  display: block;
}

.element .row-right .list-mode, .element.full_width .row-left .grid-mode, .element.full_width .row-left .hbw {
  display: none;
}

.element.full_width .row-right .list-mode-description {
  margin-bottom: 20px;
  display: block;
  float: left;
  width: 100%;
}

.element.full_width .row-right .effect-ajax-cart {
  margin-left: 0;
  position: static;
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
  float: left;
}

.element.full_width > ul:hover .row-right .effect-ajax-cart button.select-option {
  position: static;
}

.element.full_width .row-right .effect-ajax-cart button.select-option {
  width: auto;
  height: auto;
  margin-left: 0;
  margin-top: 0;
  position: static;
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  transition: none;
  display: inline-block;
  zoom: 1;
}

.home_deal_fp .element.full_width .row-right .effect-ajax-cart button.select-option {
  color: rgba(1, 1, 1, 0.6);
}

.home_deal_fp .element.full_width .row-right .effect-ajax-cart button.select-option:hover {
  color: #fff;
}

.element.full_width .row-right .effect-ajax-cart button.select-option i.fa {
  position: static;
  display: inline-block;
  *display: block;
  zoom: 1;
  padding-right: 5px;
}

.element.full_width .row-right .list-mode {
  display: inline-block;
  *display: block;
  zoom: 1;
}

.element .row-left .grid-mode, .element .row-left .hbw {
  display: block;
}

.element.full_width .row-right .list-mode {
  display: inline-block;
  *display: block;
  zoom: 1;
}

.element .row-right .list-mode .product-ajax-qs, .element .row-right .list-mode .wish-list {
  display: inline-block;
  *display: block;
  zoom: 1;
  font-size: 13px;
  color: #8f8f8f;
  font-family: Lato, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  margin: 15px auto auto 20px;
}

.element .row-right .list-mode .product-ajax-qs .quick_shop:hover, .element .row-right .list-mode .wish-list:hover {
  cursor: pointer;
  color: #8f8f8f;
}

.element.full_width ul:hover .row-right .effect-ajax-cart, .element.full_width > ul:hover .row-right .effect-ajax-cart {
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

#sandBox .element.full_width {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 40px;
}

.templateCollection #prodcoll {
  margin-top: 50px;
}

.group_featured_products .element.no_full_width {
  vertical-align: top;
  padding: 0 10px 30px;
}

.home_fp_wrapper {
  margin-left: -9px;
  margin-right: -9px;
}

.element.no_full_width .row-right p, .spr-badge-caption {
  display: none;
}

.element .row-left {
  text-align: center;
  padding: 0;
}

.element .row-left a {
  display: block;
}

.collection .element .row-left .hoverBorder .product-ajax-qs, .collection .element .row-left .hoverBorder a.wish-list {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.wls i.fa {
  margin-right: 5px;
}

.wls .contact-form {
  display: inline-block;
}

.wls button.wish-list {
  background: 0 0;
  border: none;
  box-shadow: none;
}

.wls button.wish-list:hover i.fa {
  color: #d42042;
}

.element .row-left a.wl-added i.fa:hover {
  cursor: text;
  color: #202020;
}

.wls a.wl-added i.fa:hover {
  cursor: text;
}

.collection .element .row-left .hoverBorder .product-ajax-qs {
  top: 50%;
}

.collection .element .row-left .hoverBorder a.wish-list {
  top: 45%;
}

.collection .row-left .hoverBorder form.contact-form {
  position: absolute;
  left: auto;
  right: auto;
  width: 100%;
  text-align: center;
  top: 45%;
}

.collection .row-left .hoverBorder form.contact-form button {
  background: 0 0;
  border: none;
}

.element .row-left .hoverBorder .overlay_mask {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  opacity: 0;
  border: 0 solid rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.collection .element .row-left:hover .hoverBorder .overlay_mask {
  opacity: 1;
  border: 135px solid rgba(255, 255, 255, 0.9);
}

.collection .element.full_width .row-left:hover .hoverBorder .overlay_mask {
  border: 136px solid rgba(255, 255, 255, 0.9);
}

.collection .row-left .hoverBorder form.contact-form button, .element .row-left .wish-list {
  color: #505050;
}

.element .row-left .quick_shop {
  color: #054b8a;
}

.element .row-left button.wish-list:hover i.fa, .element .row-left i.fa:hover {
  color: #8f8f8f;
}

.element .row-left {
  overflow: hidden;
  height: 260px;
}
.home-newproduct .element .row-left{ height: auto;}

.element .row-left .hbw {
  margin-left: 10px;
  margin-right: 10px;
  display: block;
  width: 100%;
}

.element .row-left .hoverBorderWrapper {
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-top: 1px solid #eaeaea;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
}

.element .row-left .product-ajax-qs .quick_shop, .element .row-left .wish-list, .element .row-left button.wish-list {
  color: #1e1e1e;
  color: #202020;
  display: block;
  display: inline-block;
  position: absolute;
  bottom: 50%;
  margin-bottom: -40px;
  cursor: pointer;
  background: 0 0;
  border: none;
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
  font-size: 13px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  color: #202020;
  cursor: pointer;
  font-weight: 700;
  background: 0 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.element .row-left .product-ajax-qs .quick_shop {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -7px;
  margin-left: -20px;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}

.element .row-left .product-ajax-qs .quick_shop i.fa {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.element .row-right .effect-ajax-cart button {
  background: 0 0;
  border: transparent;
  border-radius: 0;
  text-transform: uppercase;
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.element.full_width .row-left .product-ajax-qs .quick_shop {
  left: 0;
  right: auto;
  margin-left: 30px;
}

.element .row-left .product-ajax-qs .quick_shop i.fa {
  font-size: 16px;
}

.element .row-left .product-ajax-qs .quick_shop:hover {
  background: white;
  color: #8f8f8f;
}

.element > ul:hover .row-left .product-ajax-qs .quick_shop, .element > ul:hover .row-left .wish-list, .element > ul:hover .row-left button.wish-list {
  margin-top: -23px;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -moz-transition: all 0.45s ease;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -ms-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.element .row-left .wish-list, .element .row-left button.wish-list {
  display: block;
  position: absolute;
  width: 48px;
  height: 48px;
  left: 50%;
  margin-left: calc(-10px + 40px);
  top: 50%;
  margin-top: -7px;
}

.element .row-left .wish-list:hover, .element .row-left button.wish-list:hover {
  background: white;
  color: #8f8f8f;
}

.element .row-left .wish-list i.fa, .element .row-left button.wish-list i.fa {
  position: absolute;
  top: 50%;
  margin-top: -6px;
  left: 50%;
  margin-left: -6px;
}

.element > ul:hover .row-left .hoverBorderWrapper {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 100;
  margin-top: -56px;
}

.element .row-left a img {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.element > ul:hover .row-left a img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.element > ul {
  -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.element > ul:hover {
  -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  transform: translateY(-4px);
}

.element.no_full_width .row-right .list-mode-description {
  display: none;
}

.element.no_full_width .row-right .price-with-review {
  height: 44px;
}

.spr-icon.spr-icon-star, .spr-icon.spr-icon-star-empty {
  color: #a07936;
}

.element .row-right span.price, .element .row-right span.price_sale {
  font-size: 16px;
  line-height: 16px;
}

.element .row-right .price_compare span.money {
  font-size: 12px;
  color: #ccc;
  font-weight: 600;
}

.pagination {
  width: 100%;
  text-align: left;
  margin: 0;
  border-radius: 0;
}

.pagination ul {
  display: inline-block;
  border: 1px solid #eaeaea;
  -webkit-margin-before: 0 !important;
  -webkit-margin-after: 0 !important;
  background: #fff;
  height: 40px;
  line-height: 38px;
}

.pagination ul > li {
  padding: 0 15px;
  height: 38px;
  line-height: 38px;
  border-right: 1px solid #eaeaea;
  margin-left: -3px;
}

.pagination ul > li:last-child {
  border-right: 0;
}

.pagination ul > li.active, .pagination ul > li:hover {
  background: #a07936;
}

.pagination ul > li.active a, .pagination ul > li:hover a {
  color: #fff;
}

.pagination p {
  float: right;
  color: #000;
  font-weight: 400;
  line-height: 40px;
}

.pagination ul > li i.fa-angle-double-left {
  margin-right: 5px;
}

.pagination ul > li i.fa-angle-double-right {
  margin-left: 5px;
}

.pagination ul > li.active a {
  cursor: text;
}

.pagination ul > li a {
  font-weight: 500;
  color: #b2b2b2;
  text-transform: uppercase;
}

.pagination ul > li.next a, .pagination ul > li.prev a {
  color: rgba(32, 32, 32, 0.7);
}

.pagination ul > li:hover a.disabled {
  cursor: text;
}

.element.full_width .row-right .spr-badge {
  margin-top: 0;
}

.element.full_width .row-left {
  padding: 0;
  width: 31%;
}

.collection-full .element.full_width .row-left {
  width: 23%;
}

.collection-page.no_full_width .collection-full .element.full_width .row-left {
  width: 31%;
}

.collection-page.no_full_width .collection-full .element.full_width .row-right {
  width: 69%;
}

.element.full_width .row-right {
  width: 69%;
  text-align: left;
  padding: 20px;
}

.collection-full .element.full_width .row-right {
  width: 77%;
}

.collection .element.full_width .row-right .spr-badge {
  margin-top: 0;
}

.element.full_width .row-right .price, .element.full_width .row-right .price_sale {
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 6px;
}

.element .row-right .product-content-right span.price, .element .row-right .product-content-right span.price_sale {
  font-size: 18px;
  display: block;
}

.element.full_width ul li.row-right .product-content-right {
  padding: 5px;
}

.cart-page .wrap-table {
  margin-top: 0;
  margin-bottom: 20px;
}

.cart-page .table-cart {
  margin-left: 0;
  margin-right: 0;
}

table {
  border: 1px solid #ebebeb;
}

.cart-items tr td ul {
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cart-items tr td ul li a span.title-5 {
  font-size: 15px;
  font-family: Lato, sans-serif;
  color: #202020;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0;
}

.cart-items tr td ul li a span.title-5:hover {
  color: #a07936;
}

.cart-items tr td ul li.link {
  vertical-align: top;
  padding-left: 15px;
  padding-top: 15px;
}

.cart-items tr td ul li.link > span {
  font-style: italic;
}

.cart-items tr td ul li span.mini-line {
  border-bottom: 1px solid #202020;
  display: block;
  width: 15%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.cart-items tr td.title-1 {
  font-size: 24px;
  font-family: Lato, sans-serif;
  color: #202020;
  font-weight: 300;
  vertical-align: top;
  padding-top: 38px;
}

.cart-items .form-control {
  width: 60px;
  height: 35px;
  margin: auto;
  text-align: center;
}

.cart-items tr.bottom-summary td {
  padding-top: 22px;
  padding-bottom: 22px;
  vertical-align: -20px;
  font-weight: 500;
}

.cart-items .image a:hover img {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.cart-items tbody td.title {
  vertical-align: top;
  padding-top: 15px;
}

.cart-items tbody td {
  vertical-align: top;
  padding-top: 38px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  color: #000;
}

#checkout-proceed button#update-cart {
  padding: 0 15px;
  font-size: 15px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
  height: 40px;
  line-height: 40px;
}

#checkout-addnote {
  margin-top: 55px;
  margin-bottom: 50px;
}

#checkout-addnote .wrapper-title .title-5 {
  text-transform: none;
  color: #323232;
  letter-spacing: 0;
  font-weight: 500;
  padding-bottom: 8px;
}

#checkout-addnote textarea.form-control {
  width: 100%;
}

#shipping-calculator {
  margin-bottom: 40px;
}

#recover-password .wrapper-title {
  margin: 15px 0;
}

#recover-password .wrapper-title span.title-2 {
  font-size: 14px;
  font-weight: 500;
}

#recover-password .note {
  font-size: 14px;
}

#recover-password {
  padding-bottom: 30px;
}

.checkout-form span.group_btn {
  margin-bottom: 30px;
}

#recover-password form {
  float: left;
}

#recover-password ul#recover-form {
  float: left;
}

#recover-password ul#recover-form > li {
  margin-left: -10px;
  margin-right: -10px;
}

.wrap-table {
  margin-left: 0;
  margin-right: 0;
}

#commit-button input {
  background: none repeat scroll 0 0 #fff;
  border: 2px solid #1e1e1e;
  color: #1e1e1e;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 15px;
  text-transform: uppercase;
}

#commit-button:hover input {
  background: none repeat scroll 0 0 #000;
  border: 2px solid #1e1e1e;
  color: #000;
}

#customer_orders table td a:hover {
  color: #1e1e1e;
}

.typography .container.typo {
  margin-top: 60px;
}

.typography .container.typo:first-child {
  margin-top: 0;
}

.typography h2 {
  margin-top: 12px;
}

.typography h1 {
  margin-top: 23px;
}

.typography h3 {
  margin-top: 16px;
}

.typography h4 {
  margin-top: 17px;
}

.typography h5 {
  margin-top: 18px;
}

.typography .heading h6 {
  border-bottom: none;
  margin-top: 20px;
}

.typo .group_Paragraph span strong {
  font-size: 16px;
  color: #202020;
  font-family: Lato, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

.typo h2.demo {
  margin-top: 0;
  margin-bottom: 23px;
}

.typo ol {
  list-style-type: decimal;
  margin-lefT: 15px;
}

.typo ol li > a, .typo ul li > a {
  color: grey;
  font-size: 13px;
  font-family: Lato, sans-serif;
  font-weight: 300;
}

.typo ol li > a:hover, .typo ul li > a:hover {
  color: #202020;
}

.typo .quote {
  background: #ebebeb;
  padding: 20px;
}

.typo ul {
  list-style-type: disc;
  color: #1e1e1e;
  font-size: 16px;
  margin-lefT: 15px;
}

.typo ul li > ul {
  list-style-type: circle;
}

.typo ul li > ul li > ul {
  list-style-type: disc;
  font-size: 12px;
}

.typography table thead th {
  background: #ebebeb;
  color: #202020;
  font-size: 12px;
  font-family: Lato, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
}

.typography .wrap-table {
  margin-top: 10px;
  margin-bottom: 0;
}

.typography .wrap-table table thead th {
  padding: 9px 20px;
}

.typography table tbody td, .typography table tfoot td, .typography table thead td {
  text-align: left;
  background: #fff;
  color: grey;
  font-size: 13px;
  font-weight: 300;
  font-family: Lato, sans-serif;
  padding: 35px 35px 35px 20px;
}

.typography table td, .typography table th {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.typo address {
  margin-left: -10px;
}

.typo .address i.fa-home, .typo .info i.fa-user {
  color: #000;
  font-size: 18px;
}

.typo .address .phone-number {
  font-size: 14px;
  font-weight: Lato, sans-serif;
  color: #000;
  font-weight: 600;
}

.typography .typo.last {
  margin-bottom: 110px;
}

.templateArticle .left-slidebar, .templateBlog .left-slidebar {
  margin-top: 0;
}

.blog .blog-content-wrapper {
  margin-left: 0;
  margin-right: 0;
}

.blog.blog-2-col .blog-content-wrapper, .blog.blog-3-col .blog-content-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -webkit-justify-content: left;
  float: left;
  margin-left: -15px;
  margin-right: -15px;
}

.blog #page-header {
  margin: 0;
}

.article-page .article-content ul > li.author {
  padding-left: 0;
  font-size: 11px;
  font-family: Lato, sans-serif;
  color: #202020;
  font-weight: 500;
  text-transform: uppercase;
}

.article-page .article-content ul > li.comment a {
  font-size: 11px;
  font-family: Lato, sans-serif;
  color: #202020;
  font-weight: 500;
  text-transform: uppercase;
}

.article-page.have-left-slidebar {
  float: right;
}

.blogs h2 > a {
  font-size: 20px;
  font-family: Belleza, sans-serif;
  color: #202020;
  font-weight: 500;
}

.blogs h2 > a:hover {
  color: #a07936;
}

.blogs-item h2 {
  margin-top: 21px;
  margin-bottom: 17px;
}

.blogs-item .blogs-image {
  margin: 20px 0;
}

.blogs-item .blogs-image div {
  text-align: center !important;
}

.blogs-item .blogs-image ul > li {
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.blogs-item .blogs-image ul > li img {
  width: 100%;
}

.article-content .post {
  margin: 30px 0 47px;
}

.article-content .post span {
  font-size: 11px;
  font-family: Lato, sans-serif;
  color: #000;
  font-weight: 400;
}

.article-content .post li.author span {
  color: #202020;
  font-weight: 600;
}

.article-content .post li.comment a {
  font-size: 11px;
  font-family: Lato, sans-serif;
  color: #202020;
  font-weight: 400;
}

.article-content .post li.post-action {
  float: right;
  padding-right: 0;
  padding-top: 0;
}

.article-content .post li.post-action i.fa {
  font-size: 14px;
  font-weight: 200;
}

.article-content .post li.post-action .btn-prev {
  margin-right: 15px;
}

.blogs .post li {
  padding-right: 5px;
  padding-left: 0;
  font-size: 11px;
  text-transform: uppercase;
}

.blogs .blogs-item ul li.comment a, .blogs .post li.author {
  padding-left: 0;
  font-size: 11px;
  font-family: Lato, sans-serif;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
}

.blogs .post li.author {
  padding-right: 0;
  font-weight: 700;
}

.blogs .article-content {
  margin-bottom: 44px;
}

.blogs.last .article-content .article-content-inner {
  border-bottom: 0;
}

.blogs .article-content .article-content-inner a {
  font-size: 26px;
  font-family: Belleza, sans-serif;
  color: #a07936;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 30px;
  display: block;
}

.blogs .article-content .article-content-inner a img {
  width: 100%;
}

.blogs .article-content .article-content-inner a:hover img {
  opacity: 0.5;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}

.blogs .article-content .post-action a {
  font-size: 12px;
  font-family: Lato, sans-serif;
  color: #8f8f8f;
  font-weight: 700;
  text-transform: uppercase;
}

.article-content div {
  display: table;
  width: 100%;
}

.article-content div#comment-form {
  width: 80%;
  text-align: center;
  margin: 0 auto;
}

.article-content .date {
  text-align: center;
  font-size: 18px;
  font-family: Lato, sans-serif;
  color: #a07936;
  font-weight: 600;
  text-transform: uppercase;
  width: 65px;
  height: 65px;
  padding: 0;
  position: relative;
  display: table-cell;
  float: left;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}

.blog-page .pagination {
  width: 100%;
}

.blog-page .pagination ul {
  border: none;
}

.blog.blog-page .article-content .post li.post-action a {
  padding: 1px 15px;
}

.blog-page.have-left-slidebar {
  float: right;
}

.blog-page .pagination .active a {
  cursor: text;
  color: #1e1e1e;
}

.blog-page .pagination li a {
  color: #969696;
}

.blog-page .pagination li a:hover {
  color: #fff;
}

.blog-page .pagination ul > li {
  height: 40px;
  line-height: 40px;
}

.blog-page .sidebar {
  margin-top: 0;
}

.sidebar {
  margin-bottom: 10px;
}

.blogs .blogs-item {
  padding: 15px 0;
  border-bottom: 1px dotted #d2d2d2;
}

.blogs .blogs-item:first-child {
  padding-top: 0;
}

.blogs .blogs-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.article-content h4 {
  display: table-cell;
  vertical-align: middle;
  padding-left: 20px;
  float: left;
}

.article-content h4, .article-content h4 a {
  font-size: 26px;
  color: #a07936;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 30px;
}

.blogs .blogs-item a {
  font-size: 16px;
  color: #a07936;
  font-weight: 400;
}

.blogs .blogs-item a:hover, .blogs .blogs-item ul li.comment a:hover {
  color: #a07936;
}

.blogs .blogs-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blogs .blogs-item .title-6 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.blogs .blogs-item .title-6 a {
  font-size: 12px;
  font-family: Belleza, sans-serif;
  color: #202020;
  font-weight: 600;
  text-transform: uppercase;
}

.blogs .blogs-item .title-6 a:hover {
  color: #a07936;
}

.blogs .blogs-item ul li.comment {
  padding-right: 0;
  display: inline-block;
  *display: inline;
  zoom: 1;
}

.sidebar .blogs-item h4 {
  margin-bottom: 0;
  margin-top: 0;
  text-transform: capitalize;
}

.sidebar .blogs-item ul.post {
  padding-top: 10px;
  padding-bottom: 10px;
}

form.comment-form {
  margin-top: 20px;
}

#comment-form h2 {
  margin-top: 40px;
}

#comments {
  margin-top: 53px;
}

#comments .mini-line {
  margin-bottom: 25px;
}

#comments .comment-content, #comments .comment-head, #comments .post-reply {
  margin-left: 15px;
  margin-right: 15px;
}

#comments .comment-content {
  margin-bottom: 25px;
}

#comments .post-reply {
  margin-bottom: 35px;
  float: right;
}

#comment-form .alert {
  margin-left: 0;
  margin-right: 0;
}

#comment-form .contact-form {
  margin-bottom: 0;
}

#comments .post {
  margin-bottom: 10px;
  font-size: 11px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  color: #202020;
  text-transform: uppercase;
}

.article-content .date p {
  font-size: 34px;
  line-height: 36px;
  text-align: center;
  color: #202020;
  font-family: Quicksand, sans-serif;
  font-weight: 500;
  margin: 0;
}

.article-content .date small {
  background: #a07936;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 8px 0;
  display: block;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: Belleza, sans-serif;
}

#comment-form .general-title {
  padding-left: 0;
}

.search-page h6.empty {
  border-bottom: none;
  margin-top: 40px;
}

.search-page form.search-form {
  width: 100%;
  position: relative;
}

.search-page .element.no_full_width {
  width: 24.9%;
}

.search-page .element.full_width .row-left {
  width: 22%;
}

.search-page .element.full_width .row-right .spr-badge {
  margin-top: 0;
}

.search-page .element.full_width .row-right {
  width: 76.2%;
}

.search-page form.search-form input.input-block-level {
  width: 30%;
  height: 35px;
  padding: 0 25px 0 5px;
  border-radius: 0;
  border: 1px solid #dedede;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.search-page form.search-form input.input-block-level:focus {
  border-color: #818080;
  box-shadow: none;
  outline: 0 none;
}

.search-page form.search-form button.search-submit {
  font-size: 15px;
  background: 0 0;
  border: none;
  position: absolute;
  top: 6px;
  left: 28%;
}

.search.search-page #options {
  margin-left: 15px;
  margin-right: 15px;
}

.search.search-page #options label {
  display: none;
}

#col-main.product-page {
  margin-top: 0;
}

#detail-left-column, #detail-right-column {
  vertical-align: top;
}

#detail-right-column .sharing .unpadding {
  padding-bottom: 15px !important;
}

#detail-right-column .sharing .unpadding:last-child {
  padding-bottom: 0 !important;
  margin-bottom: -6px;
}

#gallery_main .image {
  max-width: 100px;
  padding: 7px 0;
  line-height: 24px;
}

#gallery_main .image:first-child {
  padding-top: 0;
}

#product-header {
  margin: 93px 15px 40px;
}

#product-info-left .description span, #product-info-right span, #product-information ul li.tags span {
  text-transform: capitalize;
  font-weight: 500;
}

#product-information ul li.tags span {
  display: block;
}

#product-info-right .price, #product-info-right .price_sale {
  font-size: 50px;
  font-weight: 500;
  color: #202020;
}

#product-info-left .description span {
  margin-bottom: 10px;
}

#product-info-left .description p {
  font-weight: 400;
}

#product-information ul li.tags a, #product-information ul li.tags a span {
  display: inline-block;
  *display: inline;
  zoom: 1;
  text-transform: capitalize;
  font-family: Lato, sans-serif;
  color: grey;
  font-weight: 300;
  padding: 2px;
}

#product-information .options .others-bottom {
  width: 100%;
}

#product-actions .selector-wrapper div.wrapper i.fa {
  position: absolute;
  top: 0;
  right: 0;
  color: #141414;
}

.quantity-wrapper label, .selector-wrapper label {
  font-family: Lato, sans-serif;
  color: #323232;
  font-weight: 600;
  margin-bottom: 5px;
}

#product-information div.relative {
  padding-top: 5px;
  padding-bottom: 10px;
}

#product-information .options .variants-wrapper select.single-option-selector {
  width: 235px;
  font-size: 14px !important;
  text-transform: capitalize;
}

.custom-style-select-box-inner {
  border: none;
  font-family: Lato, sans-serif;
  font-size: 14px;
  color: #000;
  text-transform: capitalize;
  line-height: 35px;
  width: 288px !important;
  text-align: left;
  padding-left: 10px;
}

.product-information .quantity-wrapper {
  margin-top: 20px;
  border-top: 1px solid #eaeaea;
  padding-top: 10px;
}

#product-information .quantity-wrapper span.qty-group span.qty-down {
  left: 0;
  padding: 0 2px;
}

#product-information .quantity-wrapper span.qty-group span.qty-up {
  right: 0;
  background: #eaeaea;
}

#product-information .quantity-wrapper span.qty-group span.qty-down {
  background: #eaeaea;
}

#product-information h2#page-title {
  margin-top: 0;
  margin-bottom: 0;
}

.product-image .product-image-thumb li img {
  max-width: 100px;
  height: auto;
}

.swatch input:checked + label, .swatch label:hover {
  background: #404e53;
  border-color: #404e53;
  color: #fff;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  box-shadow: none;
  background-position: -1px -1px;
}

.swatch input:checked + label {
  cursor: text;
}

.swatch label {
  float: left;
  font-size: 13px;
  font-weight: 400;
  height: 36px !important;
  line-height: 34px;
  margin: 0;
  min-width: 36px !important;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  background: 0 0;
  border-radius: 0;
  border: 1px solid #dedede;
  background-position: -1px -1px;
}

.variants-wrapper .selector-wrapper {
  display: none;
}

.zoomImg {
  display: none;
}

.product-image .product-image-thumb li.image a img {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  border: none;
}

.product-image .product-image-thumb li.image a.active img, .product-image .product-image-thumb li.image a:hover img {
  border: none;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

.product-image .product-image-thumb li.image a {
  display: block;
}

.product-image .product-image-thumb li.image a.active, .product-image .product-image-thumb li.image a:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

.product-image .product-image-thumb li.image a.active img {
  cursor: text;
}

.product-image .product-image-thumb li.image {
  float: left;
}

.bx-wrapper {
  width: 100px;
}

.bx-wrapper .bx-controls-direction a {
  font-size: 14px;
  font-weight: 700;
  left: 50%;
  margin-left: -15px;
  margin-top: -3px;
  opacity: 0;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

.bx-wrapper:hover .bx-controls-direction a {
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  transition: ease all 0.5s;
  -webkit-transition: ease all 0.5s;
  -moz-transition: ease all 0.5s;
  -o-transition: ease all 0.5s;
}

.bx-wrapper .bx-controls-direction a.bx-next {
  bottom: 0;
  top: auto;
  margin-bottom: -3px;
}

.bx-wrapper .bx-controls-direction a i.fa {
  padding: 0 10px 10px 10px;
  background-color: #fff;
}

.bx-wrapper .bx-controls-direction a.bx-next i.fa {
  padding: 10px 10px 0 10px;
}

.bx-wrapper .bx-viewport ul.slide-product-image {
  vertical-align: top;
}

.addthis_sharing_toolbox #atstbx a {
  display: block;
}

#product-header .description {
  text-align: left;
}

#product-header h6 {
  margin-bottom: 14px;
  border-bottom: none;
  padding-bottom: 0;
}

#product-information div.relative {
  padding-top: 35px;
  padding-bottom: 10px;
}

#product-information div.relative li.tags {
  text-align: left;
}

#product-information ul li.tags a, #product-information ul li.tags a span {
  display: inline-block;
  *display: inline;
  zoom: 1;
  text-transform: capitalize;
  color: grey;
  font-weight: 400;
  padding: 2px;
}

#product-information ul li.tags a:hover, #product-information ul li.tags a:hover span {
  color: #a07936;
}

#product-information .detail-price {
  display: block;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
}

#product-information .options .others-bottom {
  width: 100%;
}

#product-actions .selector-wrapper div.wrapper i.fa {
  position: absolute;
  top: 0;
  right: 0;
  color: #141414;
}

.qty-wrapper .qty-down i.fa, .qty-wrapper .qty-up i.fa {
  color: #141414;
}

.quantity-wrapper label, .selector-wrapper label {
  font-family: Lato, sans-serif;
  color: #323232;
  font-weight: 500;
  margin-bottom: 5px;
}

#product-information div.relative {
  padding-top: 35px;
  padding-bottom: 10px;
}

#product-information div.relative li.tags {
  text-align: left;
}

#product-information .options .variants-wrapper select.single-option-selector {
  width: 235px;
  font-size: 14px !important;
  text-transform: capitalize;
}

.product-page.no_full_width .custom-style-select-box, .product-page.no_full_width .custom-style-select-box-inner {
  background-color: #fff;
  width: 200px;
}

.custom-style-select-box {
  border: 1px solid #dedede;
  display: inline-block !important;
  *display: inline;
  zoom: 1;
  padding-left: 0;
  width: 235px;
  background-color: #fff;
}

#product-actions div.wrapper {
  position: relative;
  width: 235px;
}

#product-information #product-header .options .line {
  border-bottom: 1px solid #eaeaea;
  width: 50%;
  margin: 30px auto 30px auto;
}

#prod-related-wrapper .owl-wrapper .owl-item .element.no_full_width {
  width: auto;
  padding-bottom: 30px;
}

.content-title h2 {
  font-weight: 700;
  margin-top: 56px;
  margin-bottom: 35px;
}

#product-information {
  margin-left: -15px;
  margin-right: -15px;
}

#prod-related-wrapper .owl-wrapper .owl-item {
  padding-left: 15px;
  padding-right: 15px;
}

#prod-related-wrapper .element .row-right .spr-badge {
  margin-bottom: 15px;
}

.product-page {
  margin-top: 5px;
}

.product-page .general-title {
  padding-left: 0;
}

#prod-related-wrapper {
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
}

.templateProduct #content .content {
  padding-bottom: 20px;
}

#prod-related-wrapper .row-left .hoverBorder .product-ajax-qs, #prod-related-wrapper .row-left .hoverBorder a.wish-list {
  position: absolute;
}

#prod-related-wrapper .row-left .hoverBorder .product-ajax-qs {
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
}

#prod-related-wrapper .row-left .hoverBorder a.wish-list {
  top: 45%;
  left: 0;
  right: 0;
  text-align: center;
}

#prod-related-wrapper .owl-theme .owl-controls .owl-next, #prod-related-wrapper .owl-theme .owl-controls .owl-prev {
  margin-top: -55px !important;
}

.product-page div.content-title {
  margin-left: -20px;
  margin-right: -20px;
}

#product-information .options {
  width: 100%;
}

#product-information .options .variants-wrapper {
  width: 100%;
}

#product-information .options .quantity-wrapper input#quantity {
  border: 1px solid #dedede;
  font-family: Tinos;
  font-size: 14px;
  color: #828282;
  text-transform: capitalize;
  line-height: 32px;
  width: 147px;
  height: 40px;
  text-align: center;
  border-radius: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

#product-information .spr-summary {
  text-align: left;
}

.spr-form-title {
  color: #1e1e1e;
}

.spr-form-contact-email, .spr-form-contact-name, .spr-form-review {
  text-align: left;
}

.spr-form-label {
  color: #1e1e1e;
}

#product-information #product-header .line {
  border-bottom: 1px dotted #c8c8c8;
  width: 34%;
  margin: 0 auto;
}

#product-information .quantity-wrapper div.wrapper {
  position: relative;
  width: 147px;
}

#product-information .quantity-wrapper span.qty-group span.qty-down, #product-information .quantity-wrapper span.qty-group span.qty-up {
  position: absolute;
  top: 0;
}

#product-information .quantity-wrapper span.qty-group span.qty-down:hover, #product-information .quantity-wrapper span.qty-group span.qty-up:hover {
  cursor: pointer;
}

.swatch {
  margin: 15px auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -webkit-justify-content: left;
}

.swatch .swatch-element:last-child {
  margin-right: 0;
}

.swatch .header {
  margin: 5px 0 0 0;
  color: #323232;
  font-weight: 600;
  display: inline-block;
  *display: block;
  zoom: 1;
  width: 100px;
}

.swatch input {
  display: none;
}

.swatch .swatch-element {
  margin: 0 10px 0 0;
}

#product-information div.detail-price span.price {
  font-size: 50px;
  line-height: 50px;
  font-family: Lato, sans-serif;
  color: #202020;
}

#product-information button#add-to-cart {
  font-size: 15px;
  height: 50px;
  width: 100%;
  border-color: #a07936;
  color: #a07936;
}

#product-information .wls a {
  color: grey;
  font-family: Lato, sans-serif;
  padding: 10px;
}

#product-information .wls a:hover {
  color: #8f8f8f;
}

#product-information .wls a:first-child {
  padding-left: 0;
}

#product-information .wls a.wl-added:hover {
  color: grey;
}

#product-information .wls {
  margin-top: 30px;
}

#product-information .control-navigation > a {
  border: 2px solid #828282;
  padding: 5px 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: Lato, sans-serif;
  color: #1e1e1e;
  font-weight: 700;
  font-style: italic;
}

#product-information .control-navigation > a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

#product-information .control-navigation {
  display: block;
  float: left;
  margin-top: 22px;
  width: 100%;
  padding-right: 0;
}

#product-information .control-navigation a.btn-next {
  float: right;
}

#product-information .control-navigation a.btn-prev {
  float: left;
}

.product-page span.line {
  display: block;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 40px;
  margin-top: 7px;
}

.product-page #product-image .product-image-wrapper .owl-wrapper-outer .owl-wrapper .owl-item {
  max-width: 41px;
  margin-right: 11px;
}

.bx-wrapper .bx-controls-direction a.disabled {
  color: #efefef;
  display: none;
}

.bx-wrapper .bx-viewport ul.slide-product-image {
  vertical-align: top;
}

#product-image .image.featured img {
  min-height: 0;
  visibility: visible;
  zoom: 1;
  opacity: 1;
  background: 0 0;
  cursor: pointer;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

#product-image .image.featured a {
  display: block;
}

.spr-header-title, .spr-review-header-title {
  font-size: 24px !important;
  font-family: Belleza, sans-serif;
  color: #202020;
  font-weight: 500;
  text-transform: capitalize;
}

.spr-icon {
  font-size: 9px !important;
  top: 0 !important;
  margin-right: 2px;
  color: #1e1e1e;
  font-weight: 700;
}

.spr-review {
  border-top: 1px solid #c8c8c8 !important;
}

#shopify-product-reviews .spr-review-reportreview {
  font-size: 15px;
  font-family: Lato, sans-serif;
  font-weight: 400;
  color: #1e1e1e;
}

#shopify-product-reviews .spr-review-reportreview:hover {
  color: #828282;
}

#product-info-right #tabs_detail {
  display: block;
  float: left;
  width: 100%;
  margin-top: 20px;
}

#product-info-right #tabs_detail > li {
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
}

#product-info-right #tabs_detail h5 {
  font-family: Lato, sans-serif;
  margin-bottom: 0;
  margin-top: 0;
}

#product-info-right #tabs_detail > li:last-child {
  border-bottom: 1px solid #eaeaea;
}

#tabs_detail h6 {
  margin-bottom: 0;
  margin-top: 0;
}

#tabs_detail h6 i.fa {
  margin-right: 10px;
}

#product-header h6:after, #tabs_detail h6:after {
  display: none;
}

.product-page h6.general-title {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 33px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 25px;
}

.product-page h6.general-title:before {
  display: none;
}

#product h1 {
  margin: 25px 0;
}

#product h1 span {
  font-size: 24px;
  text-transform: capitalize;
}

#product-info-left {
  width: 50%;
  float: left;
  padding-left: 40px;
  padding-right: 40px;
}

#product-info-right {
  width: 50%;
  float: left;
  text-align: left;
  border-left: 1px solid #eaeaea;
  padding-left: 40px;
  padding-right: 40px;
}

#product-info-right .group-variants {
  padding-left: 0;
  padding-right: 0;
}

#col-main.product-page.no_full_width.have-left-slidebar {
  float: right;
}

.detail-left-slidebar i.fa {
  margin-right: 5px;
}

.left-slidebar, .right-slidebar {
  margin-top: 30px;
}

#col-main.product-page.no_full_width {
  margin-top: 35px;
}

#product-information.no_full_width {
  padding-left: 10px;
  padding-right: 0;
  margin-left: 0;
  background-color: #f7f7f7;
}

.product-page.no_full_width #product h1 {
  margin-top: -5px;
  text-align: left;
}

.product-page.no_full_width #product-header {
  margin: 0;
}

.detail-slidebar {
  margin-top: 35px;
}

.detail-right-slidebar.right-slidebar {
  float: right;
  text-align: right;
  padding-left: 10px;
}

#col-main.product-page.no_full_width {
  margin-top: 35px;
}

.detail-right-slidebar i.fa {
  float: right;
  margin-left: 10px;
}

.detail-right-slidebar .home-collection-wrapper .sb-content i.fa {
  margin-top: 5px;
}

.detail-right-slidebar .deal-product-wrapper .element.full_width .row-left {
  float: right;
}

.detail-right-slidebar .featured-product-wrapper .element .row-right {
  text-align: right;
}

#product-information.no_full_width {
  padding-left: 10px;
  padding-right: 0;
  margin-left: 0;
}

.product-page.no_full_width #product-info-left {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-top: 30px;
}

#product-image.no_full_width {
  margin: 0;
  padding-left: 0;
  background-color: #f7f7f7;
}

.product-page.no_full_width #product-header {
  margin: 0;
}

.product-page.no_full_width #product-info-right {
  width: 100%;
  border-left: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 12px;
}

.product-page.no_full_width .addthis_sharing_toolbox #atstbx a {
  display: inline-block;
  *display: block;
  zoom: 1;
}

.product-page.no_full_width #product-information h2.page-title {
  margin: 0;
}

.product-page.no_full_width #product h1 {
  margin-top: -5px;
  text-align: left;
}

.product-page.no_full_width #product-header h6 {
  margin-top: 0;
  margin-bottom: 10px;
}

.product-page.no_full_width #product-header .description h6 {
  margin-bottom: 15px;
}

.product-page.no_full_width #product-header .description {
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

.product-page.no_full_width #product-information div.relative {
  padding-top: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid #eaeaea;
}

.no_full_width #product-information div.relative ul {
  margin-bottom: 0;
}

.product-page.no_full_width #product-information div.relative ul > li {
  padding: 0;
}

.product-page.no_full_width #product-actions .selector-wrapper div.wrapper, .product-page.no_full_width #product-information .options .variants-wrapper select.single-option-selector, .product-page.no_full_width .variants-wrapper .selector-wrapper {
  width: 200px;
}

.product-page.no_full_width .custom-style-select-box-inner {
  width: 200px !important;
}

.product-page.no_full_width .variants-wrapper .selector-wrapper:nth-child(1) {
  margin-right: 25px;
}

.product-page.no_full_width #gallery_main {
  margin-top: 20px;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  height: 100%;
}

.product-page.no_full_width #gallery_main.fix-width .owl-item {
  width: 130px !important;
}

#gallery_main.fix-width .image, .product-page.no_full_width #gallery_main.fix-width .owl-wrapper-outer .owl-item img {
  max-width: 130px;
}

.product-page.no_full_width #gallery_main ul {
  margin-bottom: 0;
}

.product-page.no_full_width #gallery_main ul .owl-wrapper-outer {
  margin-left: -5px;
  margin-right: -5px;
}

.product-page.no_full_width #gallery_main .owl-wrapper-outer .owl-item img {
  padding-right: 5px;
  padding-left: 5px;
  max-width: 100px;
  height: auto;
}

.product-page.no_full_width #gallery_main .owl-theme .owl-controls .owl-buttons > div {
  padding: 12px 20px;
  left: auto;
  right: 0;
  top: 0;
  width: 32px;
  height: 40px;
  margin-right: 1px;
}

.product-page.no_full_width #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-prev {
  top: -26px;
}

.product-page.no_full_width #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-next {
  top: -67px;
}

.product-page.no_full_width #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-next, .product-page.no_full_width #gallery_main .owl-theme .owl-controls .owl-buttons > div.owl-prev {
  background-color: #eaeaea;
}

.detail-right-slidebar .element.full_width .row-right .price_compare {
  margin-top: 0;
}

.product-page.no_full_width #shopify-product-reviews .spr-container {
  border: none;
  background-color: #fff;
}

#product-info-right #tabs_detail > li:last-child {
  border-bottom: 1px solid #eaeaea;
}

#product-info-right #tabs_detail > li a {
  font-size: 15px;
  text-transform: uppercase;
  font-family: Lato, sans-serif;
}

#tabs_detail h6 {
  margin-bottom: 0;
  margin-top: 0;
}

#tabs_detail h6 i.fa {
  margin-right: 10px;
}

.modal-body {
  padding: 0 30px 30px;
}

#quick-shop-modal .modal-header .close {
  margin-top: 0;
  top: 0;
  right: 0;
  position: absolute;
  font-size: 12px;
  padding: 10px 11px;
  background: #000;
  color: #fff;
  font-weight: 100;
  opacity: 1;
}

.modal-dialog {
  width: 800px;
}

.modal-header {
  border-bottom: none !important;
}

@media (max-width: 990px) {
  .modal-dialog {
    width: auto;
  }
}
h3#quick-shop-title {
  margin-top: 0;
}

#quick-shop-title {
  padding-bottom: 20px;
}

.product-information #quick-shop-container .quantity-wrapper {
  position: relative;
  width: 280px;
}

.product-information #quick-shop-container .quantity-wrapper .wrapper input#qs-quantity {
  border: 1px solid #dedede;
  width: 280px;
  height: 40px;
  text-align: center;
}

.product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up {
  position: absolute;
  top: 37px;
}

.product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up {
  right: 0;
  border-left: 1px solid #dedede;
}

#quick-shop-add {
  width: 280px;
  position: relative;
}

.product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down {
  left: 0;
  border-right: 1px solid #dedede;
}

.product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down:hover, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up:hover {
  cursor: pointer;
}

.product-information #quick-shop-container .qty-wrapper .qty-up i.fa {
  padding: 13px 16px;
}

#quick-shop-container {
  margin-bottom: 20px;
}

#quick-shop-container .others-bottom {
  float: left;
  width: 100%;
  margin-top: 20px;
}

#quick-shop-modal #gallery_main_qs .owl-wrapper-outer {
  margin-top: 25px;
}

#quick-shop-modal #gallery_main_qs.owl-carousel .owl-item {
  padding-right: 5px;
  padding-left: 5px;
}

#quick-shop-modal #gallery_main_qs.small-thumbs .owl-item {
  width: 89px !important;
}

#quick-shop-modal #gallery_main_qs.owl-carousel .owl-item .image-thumb img {
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  border: 1px solid transparent;
}

#quick-shop-modal #gallery_main_qs.owl-carousel .owl-item .image-thumb.active img, #quick-shop-modal #gallery_main_qs.owl-carousel .owl-item .image-thumb:hover img {
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

#quick-shop-modal #gallery_main_qs.owl-carousel .owl-item .image-thumb.active img {
  cursor: text;
}

#quick-shop-modal .quantity-wrapper label, #quick-shop-modal .selector-wrapper label {
  margin-bottom: 5px;
}

#gallery_main_qs .owl-item .image-thumb {
  opacity: 0.5;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}

#gallery_main_qs .owl-item .image-thumb.active, #gallery_main_qs .owl-item .image-thumb:hover {
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

#gallery_main_qs .owl-controls .owl-next, #gallery_main_qs .owl-controls .owl-prev {
  margin-top: -20px !important;
}

#quick-shop-price-container.detail-price {
  margin-bottom: 30px;
  margin-top: 25px;
}

#quick-shop-relative {
  display: none;
}

#quick-shop-variants-container .selector-wrapper {
  display: block;
  margin-top: 10px;
}

#quick-shop-variants-container .selector-wrapper button, #quick-shop-variants-container .selector-wrapper select {
  width: 280px;
}

#quick-shop-image .owl-controls {
  top: -30px;
  right: -3px;
}

.owl-theme .owl-controls .owl-buttons > div {
  background: #fff;
  opacity: 0.5;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  width: 32px;
  height: 42px;
}

#quick-shop-variants-container .wrapper {
  position: relative;
  width: 280px;
}

#quick-shop-container .custom-style-select-box-inner {
  width: 280px !important;
}

#quick-shop-variants-container i.fa {
  position: absolute;
  right: 0;
  top: 0;
}

#quick-shop-variants-container .selector-wrapper label {
  display: block;
}

#quick-shop-description h5, #quick-shop-description ol, #quick-shop-description ul {
  display: none;
}

.top-other-inner.owl-theme .owl-controls .owl-buttons > div {
  padding: 11px 19px;
  margin: 0;
  top: 0;
  margin-top: 0 !important;
}

.top-other .top-other-inner.owl-theme .owl-controls .owl-buttons > div {
  display: none;
}

.top-other:hover .top-other-inner.owl-theme .owl-controls .owl-buttons > div {
  display: block;
}

.top-other ul.top-other-inner {
  margin-bottom: 0;
  position: relative;
}

.top-other-inner.owl-theme .owl-controls .owl-buttons > div.owl-next {
  left: 0;
  right: auto;
  margin-left: 46px;
}

.top-other ul.top-other-inner .newsfeed-item {
  height: 30px;
  vertical-align: middle;
  line-height: 30px;
}

.top-other ul.top-other-inner .close {
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 100;
  float: none;
  display: inline-block;
  zoom: 1;
  font-size: 11px;
}

.top-other ul.top-other-inner .close span.fa-stack {
  width: 1em;
  height: 2em;
}

.top-other ul.top-other-inner .close i.fa {
  color: #fff;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  margin-top: -3px;
}

.top-other ul.top-other-inner .close i.fa.fa-times {
  color: #c85f94;
  font-size: 8px;
}

.fancybox-wrap {
  border-radius: 0;
}

.fancybox-skin {
  background-color: #1e1e1e;
  background-image: url(../images/bg_newsletter.png);
  background-position: 100% auto;
  background-repeat: no-repeat;
  border-radius: 0;
}

.newsletter-popup {
  text-align: left;
  margin-left: 20px;
}

.newsletter-popup h4 {
  font-size: 80px;
  font-family: Lato, sans-serif;
  color: #a07936;
  font-weight: 700;
  margin-top: 105px;
}

.newsletter-popup form p {
  font-size: 15px;
  font-family: Belleza, sans-serif;
  color: #010101;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  margin-top: 83px;
}

.newsletter-popup .group_input {
  width: 450px;
  position: relative;
}

.newsletter-popup .group_input input.form-control {
  width: 450px;
  height: 40px;
  line-height: 40px;
  color: grey !important;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(1, 1, 1, 0.2);
  text-transform: lowercase;
  font-size: 15px;
  font-weight: 500;
}

.newsletter-popup .btn {
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  color: #fff;
  height: 40px;
  line-height: 40px;
  background: #a07936;
  border-radius: 0;
}

#popup-hide {
  text-align: left;
  margin-top: 65px;
}

#popup-hide label {
  font-size: 12px;
  font-family: Lato, sans-serif;
  color: #505050;
  font-weight: 500;
}

#popup-hide input#mc-popup-hide {
  vertical-align: -2px;
}

.macos #popup-hide input#mc-popup-hide {
  vertical-align: 0;
}

.fancybox-close {
  background-image: url(../images/button_close.png);
  top: 0;
  right: 0;
}

div.jGrowl div.jGrowl-notification div.jGrowl-message {
  display: table;
  table-layout: fixed;
  width: 100%;
}

div.jGrowl div.jGrowl-notification div.jGrowl-message .col-md-8 {
  display: table-cell;
  float: left;
  width: 24%;
}

div.jGrowl div.jGrowl-notification div.jGrowl-message .col-md-16 {
  display: table-cell;
  vertical-align: text-top;
}

div.jGrowl div.jGrowl-notification .jGrowl-note {
  margin-top: 0;
  font-size: 13px;
}

ul#price-table {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 40px;
}

#price-table .pt-item {
  width: 25%;
  float: left;
  text-align: center;
  border: 1px solid #eaeaea;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

#price-table .pt-item {
  border-right: 1px solid transparent;
}

#price-table .pt-item:last-child {
  border-right: 1px solid #eaeaea;
}

#price-table .pt-item .pt-item-top {
  background-color: #fafafa;
  padding: 40px 0;
  border-bottom: 1px solid #eaeaea;
}

#price-table .pt-item .pt-item-top h2 {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}

#price-table .pt-item .pt-item-top .pt-item-price {
  font-size: 90px;
  color: #232323;
  display: block;
  font-family: Raleway, sans-serif;
  line-height: 60px;
  padding: 40px 0 30px;
}

#price-table .pt-item .pt-item-top .pt-item-price .pt-item-small {
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  font-weight: 500;
  padding-top: 5px;
}

#price-table .pt-item .pt-item-buy a {
  border: 1px solid #dedede;
  background: rgba(0, 0, 0, 0);
  color: #8f8f8f;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  font-family: Raleway, sans-serif;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  padding: 12px 15px;
}

#price-table .pt-item .pt-item-buy a:hover {
  border: 1px solid #a07936;
  background: #a07936;
  color: #fff;
}

#price-table .pt-item-bottom ul.pt-item-description {
  padding: 35px 0;
}

#price-table .pt-item-bottom ul.pt-item-description > li {
  color: #202020;
  padding-top: 0;
  padding-bottom: 13px;
}

#price-table .pt-item-bottom ul.pt-item-description > li:last-child {
  padding-bottom: 0;
}

#price-table .pt-item-bottom ul.pt-item-description > li del {
  color: #b2b2b2;
}

#price-table .pt-item.best-choice .pt-item-label {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
  background-color: #a07936;
  border: 1px solid #a07936;
  padding: 20px 0;
  position: absolute;
  top: 0;
  width: calc(100% + 2px);
  margin-left: -1px;
  margin-top: -40px;
}

#price-table .pt-item.best-choice {
  border: 1px solid #a07936;
}

#testimonials .rating-box {
  width: 100px;
  height: 13px;
  background: url(../images/bkg_rating.html) 0 0 repeat-x;
  text-indent: -999em;
  overflow: hidden;
}

#testimonials .rating-box .rating {
  float: left;
  height: 13px;
  background: url(../images/bkg_rating.html) 0 100% repeat-x;
}

#testimonials .ttm-item {
  width: 50%;
  float: left;
  padding-bottom: 50px;
}

#testimonials .ttm-item-preview-text {
  font-size: 16px;
  color: #202020;
  font-weight: 700;
  padding-top: 5px;
}

#testimonials .ttm-item-top {
  display: table;
}

#testimonials .ttm-item-top li.ttm-item-image {
  display: table-cell;
  padding-right: 20px;
}

#testimonials .ttm-item-preview-desc {
  display: block;
  clear: both;
}

#testimonials .ttm-item-preview-name {
  font-size: 12px;
  text-transform: uppercase;
  color: #054b8a;
  font-weight: 700;
}

@media all and (-ms-high-contrast: none) {
  .element.col-md-6 {
    width: 24.75%;
  }

  .search-form {
    padding-bottom: 5px;
  }

  #collections {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  #collections.main-has-slidebar .item {
    width: 33.3%;
  }

  #collections .no-fw-col {
    width: 48% !important;
  }

  #product-information .options .quantity-wrapper input#quantity {
    height: 38px;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-down, #product-information .quantity-wrapper span.qty-group span.qty-up, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up {
    line-height: 38px;
    border: none;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-up {
    left: 22%;
  }

  .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up {
    left: 58% !important;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-down, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down {
    left: 10px;
  }

  #quick-shop-variants-container i.fa {
    top: 10px;
    right: 25% !important;
  }

  #product-actions .selector-wrapper div.wrapper i.fa {
    top: 30% !important;
  }

  .spr-form-label + .spr-form-input {
    line-height: 15px;
  }

  .header-search input {
    line-height: 6px;
  }

  #umbrella .empty {
    font-size: 12px;
  }

  #umbrella .empty a {
    font-size: 12px;
  }
}
.element.col-md-6 {
  width: 24.75%;
}

.search-form {
  padding-bottom: 5px;
}

#collections .item {
  display: inline-block !important;
  width: 33% !important;
}

#collections .no-fw-col {
  width: 48% !important;
}

#product-information .options .quantity-wrapper input#quantity {
  height: 38px !important;
}

#product-information .quantity-wrapper span.qty-group span.qty-down, #product-information .quantity-wrapper span.qty-group span.qty-up, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up {
  line-height: 38px !important;
  border: none !important;
}

#product-information .quantity-wrapper span.qty-group span.qty-up {
  left: 56% !important;
}

#product-information .quantity-wrapper span.qty-group span.qty-down {
  left: 40%;
}

.product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up {
  left: 60%;
}

.product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down {
  left: 10px;
}

.qty-wrapper .qty-down i.fa, .qty-wrapper .qty-up i.fa {
  padding: 13px 16px;
}

#quick-shop-variants-container i.fa {
  top: 10px;
  right: 22%;
}

.spr-form-label + .spr-form-input {
  line-height: 15px;
}

#umbrella .empty {
  font-size: 12px;
}

#umbrella .empty a {
  font-size: 12px;
}

#loginButton:hover {
  cursor: pointer;
  outline: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .qty-wrapper .qty-down i.fa {
    padding: 13px 16px;
    background: #eaeaea;
  }

  .qty-wrapper .qty-up i.fa {
    padding: 13px 16px;
    background: #eaeaea;
  }

  .wrapper i.fa-caret-down {
    padding: 13px 15px;
  }
}
@-moz-document url-prefix() {
  .num-items-in-cart span.icon span {
    padding: 0 5px;
    vertical-align: 0;
  }

  #product-actions .selector-wrapper div.wrapper i.fa {
    right: 0;
    margin-right: 20px;
    top: 28%;
  }

  .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up {
    top: 38px;
    line-height: 40px;
  }

  #quick-shop-variants-container i.fa {
    position: absolute;
    right: 0;
    margin-right: 20px;
    top: 30%;
  }

  .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-down i.fa, .product-information #quick-shop-container .quantity-wrapper .wrapper span.qty-up i.fa {
    padding: 12px 15px;
    background: #eaeaea;
  }

  #product-information .quantity-wrapper span.qty-group span.qty-down, #product-information .quantity-wrapper span.qty-group span.qty-up {
    position: absolute;
    top: 1px;
    padding: 8px 17px;
  }

  #cart-content .cart-close .fa-times, .cart-items .fa-times {
    padding-left: 0;
  }
}
.element.no_full_width ul li.row-right {
  min-height: 80px;
  position: relative;
}

.element.no_full_width ul li.row-right .hover-appear {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 100%;
  opacity: 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  -webkit-transition: all 0.45s ease;
  -moz-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.element ul:hover li.row-right .hover-appear {
  margin-top: -55px;
  opacity: 1;
}

@media (max-width: 767px) {
  .element.no_full_width ul li.row-right .hover-appear {
    opacity: 1;
  }
}
.element ul li.row-right .hover-appear .effect-ajax-cart:hover i.fa, .element ul li.row-right .hover-appear .quick_shop:hover i.fa, .element ul li.row-right .hover-appear .wish-list:hover i.fa {
  color: #fff;
}

.element.full_width ul li.row-right .hover-appear .effect-ajax-cart:hover i.fa, .element.full_width ul li.row-right .hover-appear .quick_shop:hover i.fa, .element.full_width ul li.row-right .hover-appear .wish-list:hover i.fa {
  color: #a07936;
}

.element ul li.row-right .hover-appear .product-ajax-qs, .element ul li.row-right .hover-appear .wish-list, .element ul li.row-right .hover-appear form {
  width: 50px;
  height: 50px;
  background: 0 0;
  cursor: pointer;
  color: #464646;
  border: none;
}

.element ul li.row-right .hover-appear .quick_shop {
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}

.element ul li.row-right .hover-appear .view-detail{ border-right: 1px solid #eaeaea;}

.element ul li.row-right .hover-appear .product-ajax-qs i.fa, .element ul li.row-right .hover-appear .wish-list i.fa, .element ul li.row-right .hover-appear form button.add-to-cart i.fa, .element ul li.row-right .hover-appear form button.select-option i.fa {
  line-height: 50px;
  color: #000;
}

.element ul li.row-right .hover-appear .product-ajax-qs:hover i.fa, .element ul li.row-right .hover-appear .wish-list:hover i.fa, .element ul li.row-right .hover-appear form button.add-to-cart:hover i.fa, .element ul li.row-right .hover-appear form button.select-option:hover i.fa {
  color: #fff;
}

.element ul li.row-right .hover-appear .product-ajax-qs:hover, .element ul li.row-right .hover-appear .wish-list:hover, .element ul li.row-right .hover-appear form:hover {
  background-color: #a07936;
}

.element ul li.row-right .hover-appear .wish-list.wl-added:hover {
  cursor: text;
}

.collection-page.no_full_width #sandBox .element.full_width ul:hover li.row-right .hover-appear {
  margin-top: 0;
}

#sandBox .element.full_width ul li.row-right .hover-appear {
  position: static;
  margin-top: 0;
  margin-left: 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  text-align: left;
  justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -webkit-justify-content: left;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  width: 100%;
}

.element.full_width ul li.row-right .hover-appear .product-ajax-qs, .element.full_width ul li.row-right .hover-appear .wish-list, .element.full_width ul li.row-right .hover-appear form {
  width: auto;
}

.element.full_width ul li.row-right .hover-appear .quick_shop {
  border-left: 0;
  border-right: 0;
}

.element.full_width ul li.row-right .hover-appear .quick_shop, .element.full_width ul li.row-right .hover-appear .wish-list {
  font-size: 13px;
  color: #202020;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 20px;
}

.element.full_width .row-right .effect-ajax-cart button.add-to-cart i.fa, .element.full_width .row-right .effect-ajax-cart button.select-option i.fa, .element.full_width ul li.row-right .hover-appear .quick_shop i.fa, .element.full_width ul li.row-right .hover-appear .wish-list i.fa {
  padding-right: 10px;
}

.element.full_width ul li.row-right .hover-appear .product-ajax-qs:hover, .element.full_width ul li.row-right .hover-appear .product-ajax-qs:hover .quick_shop, .element.full_width ul li.row-right .hover-appear .wish-list:hover, .element.full_width ul li.row-right .hover-appear form:hover, .element.full_width ul li.row-right .hover-appear form:hover button.select-option {
  color: #a07936;
  background: 0 0;
}

.element.full_width ul li.row-right .hover-appear {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  -webkit-justify-content: left;
}

.filter-tag-group .tag-group ul > li {
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-right: 15px;
}

.filter-tag-group .tag-group#coll-filter-3 ul > li {
  width: 100%;
}

.filter-tag-group .tag-group#coll-filter-1 ul > li a {
  display: block;
  background: 0 0;
  border: 1px solid #eaeaea;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 28px;
}

.filter-tag-group .tag-group#coll-filter-1 ul > li.active a, .filter-tag-group .tag-group#coll-filter-1 ul > li:hover a {
  color: #fff;
  background: #a07936;
}

.filter-tag-group .tag-group#coll-filter-1 ul > li.active a {
  cursor: text;
}

.filter-tag-group .tag-group#coll-filter-1 > p {
  margin-bottom: 15px;
}

.filter-tag-group .tag-group ul li.swatch-tag span {
  display: block;
  width: 30px;
  height: 30px;
}

.filter-tag-group .tag-group ul li.swatch-tag a {
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;
  border: 2px solid transparent;
}

.filter-tag-group .tag-group ul li.swatch-tag.active a, .filter-tag-group .tag-group ul li.swatch-tag:hover a {
  border-color: #1e1e1e;
}

.filter-tag-group .tag-group ul li.swatch-tag.active a {
  cursor: text;
}

.filter-tag-group .tag-group#coll-filter-3 ul li a {
  overflow: hidden;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  display: block;
  float: left;
  padding-left: 20px;
  font-weight: 400;
  position: relative;
  color: grey;
}

.filter-tag-group .tag-group#coll-filter-3 ul li a:hover {
  color: #a07936;
}

.filter-tag-group .tag-group#coll-filter-3 ul li a span.fe-checkbox {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 0;
  margin-top: -8px;
  background-image: url(../images/check_box.png);
  background-repeat: no-repeat;
  background-position: center center;
}

.filter-tag-group .tag-group#coll-filter-3 ul li.active a span.fe-checkbox {
  background-image: url(../images/checked_box.html);
}

#tags-load {
  text-align: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}

#tags-load i.fa {
  color: #000;
  position: absolute;
  vertical-align: middle;
  left: 50%;
  top: 50%;
}

.templateCollection #content {
  position: relative;
}

#tags-load:before {
  content: "";
  background-color: #f7f7f7;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=0.7);
  opacity: 0.7;
}

.top-navigation .navigation .nav .nav-item.dropdown .dropdown-menu {
  display: block !important;
}

.top-navigation .navigation .nav .nav-item.dropdown .dropdown-menu > .dropdown .sub-dropdown {
  left: 100%;
  width: 30px;
  top: 0;
  height: 0;
  padding-bottom: 0;
}

.top-navigation .navigation .nav .nav-item.dropdown .dropdown-menu > .dropdown > .dropdown-menu {
  display: block !important;
  top: 0;
  left: 100%;
  margin-left: 25px;
}

@media (min-width: 1200px) {
  .top-navigation .navigation .nav .nav-item.dropdown .dropdown-menu > .dropdown > .dropdown-menu {
    -ms-transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .top-navigation .navigation .nav .nav-item.dropdown .dropdown-menu > .dropdown:hover .dropdown-menu {
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .nav-item.dropdown > .dropdown-menu {
    margin-left: -60px;
  }
  .home_collections .container-fluid{padding: 0 5%;}
}
@media (max-width: 991px) {
  .nav-item.dropdown > .dropdown-menu {
    margin-left: -60px;
  }

  .top-navigation .navigation .nav .nav-item.dropdown .dropdown-menu > .dropdown > .dropdown-menu {
    width: 160px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.section-categoryListing .row [class*=col-] {
  margin-bottom: 30px;
}
.section-productFilter .form-group {
  max-width: 180px;
}
@media (max-width: 767px) {
  .section-productFilter form {
    border: 1px solid #d5d5d5;
    padding: 3px 7px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  .element.no_full_width ul li.row-right .hover-appear{border: none;}
}
/* .section-productListing .row-container {
  border: 1px solid #d5d5d5 !important;
} */
.section-productListing .row-container .closeMe {
  position: absolute;
  top: 0;
  right: 0;
}
.section-brandsGallery .block {
  display: block;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  padding: 7px;
  margin: 0 0 30px;
  text-align: center;
}
.section-brandsGallery .block img {
  width: 100%;
}
.section-brandsGallery .block a {
  display: block;
  color: black;
}
.section-brandsGallery .block span {
  display: block;
  padding: 10px 0 0;
}
.section-loginCheckout .fieldsRow {
  margin-left: -10px;
  margin-right: -10px;
}
.section-loginCheckout .fieldsRow [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}
.section-loginCheckout .fieldsRow .form-control {
  border-radius: 0;
  box-shadow: none;
}
.section-loginCheckout .verticleOr {
  width: 1px;
  height: 180px;
  background-color: #dfdfdf;
  margin: 0;
  position: absolute;
}
.section-loginCheckout .verticleOr:before {
  content: "OR";
  border-radius: 50%;
  color: #fff;
  height: 24px;
  left: -12px;
  line-height: 24px;
  overflow: hidden;
  position: absolute;
  top: 25%;
  width: 24px;
  font-size: 10px;
  font-weight: 700;
  background-color: #7f2329;
}
@media (max-width: 990px) {
  .section-loginCheckout .verticleOr {
    display: none;
  }
}
.section-contactUs {
  padding-bottom: 40px;
}
.section-jewelryBrands .jewelryBrands [class*=col-] {
  margin-bottom: 30px;
}
.section-jewelryBrands .jewelryBrands [class*=col-] > a {
  display: block;
  background-color: white;
  text-align: center;
  border: 1px solid #d5d5d5;
  padding: 12px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.section-jewelryBrands .jewelryBrands [class*=col-] > a span {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  color: black;
}
.section-jewelryBrands .jewelryBrands [class*=col-] > a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
.section-requestDiamond .form-control {
  border-radius: 0;
  box-shadow: none;
}
.section-requestDiamond .input-group * {
  border-radius: 0 !important;
}

.educationGallery {
  width: 100%;
  float: left;
  margin: 0 0 50px;
  padding: 0;
}
.educationGallery .row {
  margin-left: -10px;
  margin-right: -10px;
}
.educationGallery .row [class*=col-] {
  padding: 10px;
}
.educationGallery .block {
  overflow: hidden;
  position: relative;
}
.educationGallery .block * {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.educationGallery .block img {
  width: 100%;
  border: 1px solid #f5f5f5;
}
.educationGallery .block span {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px 12px;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
}
.educationGallery .block:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.educationGallery .block:hover span {
  font-size: 16px;
  background-color: black;
}

.contentBox {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}
.contentBox group {
  width: 100%;
  float: left;
  margin: 0 0 30px;
}
.contentBox .groupTitle {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  margin: 0;
}
.contentBox p {
  line-height: 24px;
}

.contentlist {
  width: 100%;
  float: left;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.contentlist > li {
  margin: 0;
  padding: 5px 0 5px 20px;
  line-height: 20px;
  background: url(/images/icons/side-nav-icon.png) no-repeat left 11px;
}
.contentlist.inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contentlist.inline > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 25%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 25%;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  padding-right: 20px;
}
.contentlist.number {
  list-style: decimal;
}
.contentlist.number > li {
  background: none;
  padding-left: 10px;
  margin-left: 15px;
}

.groupTitle + .contentlist {
  margin-top: 6px;
}

.famousDiamondList {
  width: 100%;
  float: left;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.famousDiamondList > li {
  width: 100%;
  float: left;
}
.famousDiamondList > li + li {
  padding-top: 20px;
}
.famousDiamondList > li > .thumbnail {
  width: 150px;
  float: left;
  margin: 0 20px 0 0;
}
.famousDiamondList > li > .thumbnail img {
  width: 100%;
}
.famousDiamondList > li > p {
  margin: 0;
}

.categoryGrid {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: white;
}
.categoryGrid a {
  display: block;
  position: relative;
}
.categoryGrid a img {
  width: 100%;
}
.categoryGrid .categoryInfo {
  display: block;
}
.categoryGrid .categoryInfo strong {
  font-weight: 400;
  font-size: 20px;
  padding: 12px;
  color: black;
  display: block;
  position: relative;
}
.categoryGrid .categoryInfo strong::after {
  content: "";
  font-family: "FontAwesome";
  font-size: 30px;
  position: absolute;
  right: 12px;
  top: 0;
  color: black;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}
.categoryGrid:hover .categoryInfo strong::after {
  top: 50%;
  opacity: 1;
}

.section-educationGraphics .educationGraphics > a span {
  width: 150px;
  background-color: #555;
  color: white;
  font-size: 20px;
  text-align: center;
}
.section-educationGraphics .educationGraphics > a img {
  width: 100%;
}

.section-infoContent .infoImg {
  float: right;
  margin-left: 20px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .section-infoContent .infoImg {
    float: left;
    width: 100%;
    max-width: -webkit-fill-available;
    margin: 0;
  }
}

@media (max-width: 767px) {
  header#top.fixed {
   /* height: 86px;*/
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #f0f0f0;
  }
  #umbrella .cart-link a{padding-left: 0;}
  .navbar-toggle{padding: 0;}
 .customer-links{width: 100%;}
 .customer-links #accounts{justify-content: space-around !important; display: flex !important; padding-top: 5px;}
 #top a#site-title img{max-width: 200px;}
 #top .top a{font-size: 16px;}
 #top .top a .number{font-size: 12px;}

  .top-navigation ul li.top-logo {
    padding: 0;
    width: 200px;
  }

  .top-navigation ul li.top-logo img {
    margin: 0;
  }

  .top-navigation i.fa-heart,
.top-navigation i.fa-shopping-cart,
.top-navigation i.fa-user {
    font-size: 20px;
    padding: 0;
  }

  .navbar-toggle {
    margin: 0;
  }

  .navbar-toggle .icon-bar {
    background: #202020;
    width: 25px;
  }

  .top-navigation ul li.navigation .list-inline > li {
    width: 30px;
    height: 30px;
  }

  .top-navigation .navbar ul.navbar-nav {
    margin: 0;
    float: left;
    display: block;
    background: #fff;
    text-align: left;
    width: 100%;
    height: auto;
    max-height: -moz-calc(100vh - 50px);
    max-height: -webkit-calc(100vh - 50px);
    max-height: calc(100vh - 50px);
    overflow-y: auto;
  }

  .top-navigation .navbar ul.navbar-nav li {
    display: block;
    width: 100%;
    padding: 0;
  }

  #top nav.navbar .nav > li > a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }

  .megamenu-container {
    padding: 0;
    margin: 0;
  }

  .megamenu-container.mega-col-3 .sub-mega-menu {
    padding: 0;
  }

  .megamenu-container.mega-col-3 .sub-mega-menu > li {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }
  .megamenu-container.mega-col-3 .sub-mega-menu > li ~ li {
    border-top: 1px solid #f1f1f1;
  }
  .megamenu-container.mega-col-3 .sub-mega-menu > li > a {
    padding: 7px 12px;
    display: block;
  }

  .navOverlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .navOverlay .navWrapper {
    width: 300px;
    height: 100vh;
    float: right;
    position: relative;
    right: -100%;
    background-color: white;
    -webkit-transition: right 0.4s ease-in-out;
    -moz-transition: right 0.4s ease-in-out;
    -o-transition: right 0.4s ease-in-out;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
  }
  .navOverlay .navWrapper .navHeader {
    height: 50px;
    background-color: black;
  }
  .navOverlay .navWrapper .navHeader a {
    color: white;
  }
  .navOverlay .navWrapper .navHeader a.navLogo {
    padding-left: 10px;
  }
  .navOverlay .navWrapper .navHeader a.navLogo img {
    filter: invert(100%);
    height: 36px;
  }
  .navOverlay .navWrapper .navHeader a.closeMe {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 48px;
    font-size: 26px;
  }

  .mobileNavigation.in .navOverlay {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
  }
  .mobileNavigation.in .navOverlay .navWrapper {
    right: 0;
  }
}
@media (max-width: 767px) {
  #widget-newsletter {
    padding-bottom: 20px;
  }

  #widget-newsletter .newsletter .group_input,
#widget-newsletter .newsletter form input {
    width: 100%;
  }
}
.shoppingCartContainer .cartBlock {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  max-width: 50%;
  padding: 15px;
}
.shoppingCartContainer .cartBlock .title {
  border-bottom: 1px dotted #888;
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 5px;
  padding: 0 0 5px;
}
.selectPaymentMethods {background: #f9f9f9; padding: 5px 10px;}
.selectPaymentMethods input{ display: none;}
.payMethodContainerClass iframe{height: 42px; width: 100%;}
.whattext { font-size: 12px; color: #000;}
.payMethodContainerClass .toolTip-area { display: none;  position: absolute;  background: #000;  color: #fff;  width: 250px;  position: absolute;  right: 4px;  bottom: 20px;  padding: 10px;}

.shoppingCartContainer .billing-info {
  border-right: 1px solid #dfdede;
  float: left;
  height: auto;
}
.shoppingCartContainer .billing-info .form-group .form-control {
  border-radius: 0;
  box-shadow: none;
}
.shoppingCartContainer .billing-info .form-group label {
  white-space: nowrap;
  -webkit-flex-basis: 39%;
  -moz-flex-basis: 39%;
  -ms-flex-preferred-size: 39%;
  flex-basis: 39%;
  padding-right: 12px;
}
.shoppingCartContainer .billing-info .form-group input.form-control,
.shoppingCartContainer .billing-info .form-group .customSelect {
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
@media (min-width: 768px) and (max-width: 990px) {
  .shoppingCartContainer .billing-info {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    border: 1px solid #d5d5d5;
  }
}
@media (max-width: 767px) {
  .shoppingCartContainer .cartBlock {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
    border: none;
  }
  .shoppingCartContainer .cartBlock ~ .cartBlock {
    border-top: 1px solid #d5d5d5;
  }
}

.shoppingCartContainer .billing-info .billing-field {
  float: left;
  height: auto;
  margin: 0;
  padding: 0;
  width: 96%;
}

.shoppingCartContainer .billing-info .billing-field ul {
  margin: 0;
  padding: 0;
}

.shoppingCartContainer .billing-info .billing-field ul li {
  height: 42px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 56px;
  width: 100%;
}

.shoppingCartContainer .billing-info .billing-field div {
  width: 100% !important;
}

.shoppingCartContainer .shipping-method {
  float: left;
  height: auto;
  margin: 0;
}

.shoppingCartContainer .shipping-method .shipping-head {
  border-bottom: 1px dotted #888;
  float: left;
  height: auto;
  line-height: 20px;
  margin: 0;
  padding: 0 0 2px;
  font-size: 16px;
  width: 100%;
}

.shoppingCartContainer .shipping-method .radio-box {
  float: left;
  height: auto;
  margin: 5px 0 15px;
  padding: 0;
  width: 100%;
}

.shoppingCartContainer .shipping-method .delivery-box,
.shoppingCartContainer .shipping-method .diamond-text {
  background-color: #f5f5f5;
  color: #333;
  float: left;
  font: 13px/18px Calibri;
  height: auto;
  margin: 0;
  padding: 5px 10px;
  width: 100%;
  box-sizing: border-box;
}

.shoppingCartContainer .shipping-method .radio-box ul {
  margin: 0;
  padding: 0;
}

.shoppingCartContainer .shipping-method .radio-box ul li {
  color: #333;
  font-size: 13px;
  list-style-type: none;
  margin: 0;
  padding: 4px 0;
  width: 100%;
}

.shoppingCartContainer .review-order {
  border-left: 1px solid #dfdede;
}

.shoppingCartContainer .review-order .review-head {
  border-bottom: 1px dotted #888;
  float: left;
  height: auto;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0 0 2px;
  width: 100%;
}

.shoppingCartContainer .review-order .review-or-box {
  background-color: #f0f0f0;
  border-bottom: 1px solid #fece02;
  float: left;
  height: 25px;
  margin: 10px 0 0;
  padding: 0;
  width: 100%;
}

.shoppingCartContainer .review-order .review-or-box .product-head {
  color: #333;
  float: left;
  height: 25px;
  margin: 0;
  padding: 0 0 0 2%;
  width: 25%;
}

.shoppingCartContainer .review-order .review-or-box .des-head {
  color: #333;
  float: left;
  height: 25px;
  margin: 0;
  padding: 0;
  width: 40%;
}

.shoppingCartContainer .review-order .review-or-box .price-head {
  color: #333;
  float: left;
  height: 25px;
  margin: 0;
  padding: 0 2% 0 0;
  text-align: right;
  width: 31%;
}

.shoppingCartContainer .review-order .review-or-product {
  border-bottom: 1px dashed #999;
  float: left;
  height: auto;
  margin: 0;
  padding: 5px 0;
  width: 100%;
}

.shoppingCartContainer .review-order .review-or-product .main-product-box {
  float: left;
  height: auto;
  margin: 0;
  padding: 5px 0;
  position: relative;
  width: 100%;
}

.shoppingCartContainer .review-order .review-or-product .main-product-box .product-img {
  float: left;
  height: auto;
  margin: 0;
  padding: 0;
  width: 27%;
}

.shoppingCartContainer .review-order .review-or-product .main-product-box .product-img img {
  width: 100%;
}

.shoppingCartContainer .review-order .review-or-product .main-product-box .des-text {
  color: #333;
  float: left;
  font: 13px/20px Calibri;
  height: auto;
  margin: 0;
  padding: 0 0 0 2%;
  width: 38%;
}

.shoppingCartContainer .review-order .review-or-product .main-product-box .price-value {
  color: #333;
  float: left;
  font: 13px/20px Calibri;
  height: auto;
  margin: 0;
  padding: 0 2% 0 0;
  text-align: right;
  width: 31%;
}

.shoppingCartContainer .review-order .review-or-product .main-product-box .remove-set {
  bottom: 0;
  color: #a5448b;
  float: left;
  font: 13px/20px Calibri;
  height: auto;
  margin: 0;
  padding: 0 10px 0 0;
  position: absolute;
  right: 0;
  width: auto;
}

.shoppingCartContainer .review-order .pricing-box {
  background-color: #fcfdc4;
  border-bottom: 1px solid #fece02;
  color: #333;
  float: left;
  font: bold 13px/24px Calibri;
  height: 25px;
  margin: 10px 0 0;
  padding: 0 0 0 10px;
  width: 100%;
}

.shoppingCartContainer .review-order .pricing-detail {
  border-bottom: 1px dashed #999;
  float: left;
  height: auto;
  margin: 0;
  padding: 7px 0;
  width: 100%;
}

.shoppingCartContainer .review-order .pricing-detail .pricing-text {
  color: #333;
  float: left;
  font: 13px/20px Calibri;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: right;
  width: 47%;
}

.shoppingCartContainer .review-order .pricing-detail .pricing-price {
  color: #333;
  float: left;
  font: 13px/20px Calibri;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: right;
  width: 47%;
}

.homeCategories .home_collections_item_inner {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.homeCategories .home_collections_item_inner:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.salesTeamWrapper {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}
.salesTeamWrapper .salesTeamList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.salesTeamWrapper .salesTeamList > li {
  margin: 0 0 50px;
  padding: 0;
}
.salesTeamWrapper .salesTeamList > li > .personImage, .salesTeamWrapper .salesTeamList > li > .personInfo {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
.salesTeamWrapper .salesTeamList > li > .personImage {
  max-width: 250px;
  padding-right: 40px;
  text-align: center;
}
.salesTeamWrapper .salesTeamList > li > .personImage img {
  width: 100%;
}
@media (max-width: 767px) {
  .salesTeamWrapper .salesTeamList > li > .personImage {
    max-width: 100%;
    padding: 0;
    margin: 0 0 12px;
  }
}

.section-goldBuying {
  width: 100%;
  float: left;
  margin: 10px 0 50px;
  padding: 0;
}
.section-goldBuying .blocksContainer {
  background: url(../images/gold-buying-bg.jpg) no-repeat center/cover;
  padding: 40px 0;
  margin: 0 0 30px;
}
.section-goldBuying .blocksContainer h1 {
  font-size: 32px;
  text-align: center;
  font-weight: 600;
  line-height: 44px;
  margin: 0 0 40px;
}
.section-goldBuying .blocksContainer .block {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
  background-color: white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.section-goldBuying .blocksContainer .block:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.section-goldBuying .blocksContainer .block .blockTitle {
  display: block;
  margin: 10px 0;
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  color: #564a3a;
  text-align: center;
  line-height: 28px;
}
.section-goldBuying .blocksContainer .block .blockImage {
  display: block;
  padding: 0 12px;
  margin: 0 0 15px;
}
.section-goldBuying .blocksContainer .block .blockImage img {
  width: 100%;
}
.section-goldBuying .blocksContainer .block .blockList {
  width: 100%;
  float: left;
  list-style: none;
  margin: 0 0 15px;
  padding: 0 14px;
  box-sizing: border-box;
}
.section-goldBuying .blocksContainer .block .blockList > li {
  display: block;
  font-size: 16px;
  color: #564a3a;
  padding-left: 30px;
  font-weight: 600;
  line-height: 20px;
  margin: 6px 0 0;
  position: relative;
}
.section-goldBuying .blocksContainer .block .blockList > li:first-child {
  margin-top: 0;
}
.section-goldBuying .blocksContainer .block .blockList > li:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #cf940c;
  position: absolute;
  left: 0;
  top: 0;
}
.section-goldBuying h2 {
  color: #a87a1c;
  font-size: 38px;
  font-weight: 600;
  line-height: 52px;
  margin: 0 0 20px;
}
.section-goldBuying h3 {
  color: #a87a1c;
  font-size: 26px;
  font-weight: 600;
  line-height: 36px;
  margin: 0 0 10px;
}
.section-goldBuying .whyChooseList {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
.section-goldBuying .whyChooseList > li {
  display: block;
  font-size: 16px;
  color: #564a3a;
  padding-left: 20px;
  font-weight: 500;
  line-height: 20px;
  margin: 10px 0 0;
  position: relative;
}
.section-goldBuying .whyChooseList > li:first-child {
  margin-top: 0;
}
.section-goldBuying .whyChooseList > li:before {
  content: "*";
  font-size: 16px;
  color: #cf940c;
  position: absolute;
  left: 0;
  top: 4px;
  font-weight: 700;
}
@media (max-width: 990px) {
  .section-goldBuying .blockRow [class*=col-] {
    margin-bottom: 30px;
  }
  .section-goldBuying h2 {
    font-size: 26px;
    line-height: 36px;
    margin: 0 0 15px;
  }
  .section-goldBuying h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

.storeTimingCalander {
  width: 100%;
  float: left;
  margin: 10px 0 30px;
}
.storeTimingCalander .calanderTitle {
  display: block;
  font-size: 20px;
  padding: 10px 12px;
  background-color: #f2e4cc;
}
.storeTimingCalander table {
  font-size: 12px;
}
.storeTimingCalander table thead {
  background-color: #d5d5d5;
}
.storeTimingCalander table tbody {
  background-color: rgba(255, 255, 255, 0.7);
}
.storeTimingCalander table tbody td {
  background-color: white;
}
.storeTimingCalander table th, .storeTimingCalander table td {
  text-align: center;
}
.storeTimingCalander table td {
  min-height: 70px;
  vertical-align: middle;
}
.storeTimingCalander table td span {
  display: block;
}
.storeTimingCalander table td span.calDate {
  text-align: right;
  font-weight: bold;
}
.storeTimingCalander table td.active {
  background-color: white;
}
.storeTimingCalander table td.active span.calDate {
  color: green;
}

#homeCarousel {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}
#homeCarousel .owl-nav {
  width: 100%;
  float: left;
  margin: 0;
}
#homeCarousel .owl-nav .owl-next,
#homeCarousel .owl-nav .owl-prev {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
   background-repeat: no-repeat;
  background-size: auto 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#homeCarousel .owl-nav .owl-next{background: url(../images/homeDiamond/nextArrow.png)left top no-repeat;}
#homeCarousel .owl-nav .owl-prev{background: url(../images/homeDiamond/preArrow.png)left top no-repeat;}

#homeCarousel .owl-nav .owl-next span,
#homeCarousel .owl-nav .owl-prev span {
  display: none;
}
#homeCarousel .owl-nav .owl-next:hover,
#homeCarousel .owl-nav .owl-prev:hover {
  background-color: transparent;
  opacity: 1;
}
#homeCarousel .owl-nav .owl-next {
  right: 30px;
  background-position: center right;
}
#homeCarousel .owl-nav .owl-prev {
  left: 30px;
  background-position: center left;
}
@media (max-width: 767px) {
  #homeCarousel .owl-nav .owl-prev {left:0;  }
  #homeCarousel .owl-nav .owl-next{right:0;}
}

#home_collections span.col-name {
  text-transform: uppercase;
  font-weight: 500;
  color: #202020;
  display: block;
  width: 100%;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}






#home_collections .home_collections_item_inner {
  position: relative;
}

#home_collections .home_collections_item_inner .hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 12px;
}

#home_collections .home_collections_item .collection-action a:after {
  content: "";
  position: absolute;
  width: 30px;
  border-bottom: 1px solid;
  top: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

#home_collections .owl-item .home_collections_item a:hover img {
  opacity: 1;
  -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
}

#home_collections.owl-theme .owl-controls .owl-prev,
#home_collections.owl-theme .owl-controls .owl-next {
  margin-top: -40px !important;
}

/*Product Detail CSS Starts Here*/
@media (max-width: 767px) {
  .section-productDetail {
    margin-bottom: 20px;
  }
}

.productPreview {
  width: 100%;
  float: left;
  margin: 0 0 15px;
  padding: 10px;
  background-color: white;
}

.currentAngle > a {
  display: block;
}
.currentAngle > a .zoomWrapper {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding: 100% 0 0;
  position: relative;
}
.currentAngle > a .zoomWrapper img {
  max-width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.productPreviewBox {
  width: 100%;
  float: left;
  margin: 0 0 15px;
  padding: 10px;
  border: 1px solid #d5d5d5;
}

.productAnglesList {
  margin: 0 -5px;
  padding: 10px 0 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.productAnglesList > li {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 20%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 20%;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  max-width: 20%;
  padding: 0 5px;
}
.productAnglesList > li > a {
  width: 100%;
  float: left;
  margin: 0;
  padding: 100% 0 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #d5d5d5;
}
.productAnglesList > li > a > img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.socialPluginBox {
  width: 100%;
  float: left;
  text-align: center;
  margin: 0 0 20px;
}

.socialPluginList {
  margin: 0;
  padding: 0;
}
.socialPluginList > li {
  padding: 0 7px;
  list-style: none;
}
.socialPluginList > li > a {
  display: block;
  color: black;
  font-size:14px;
}
.socialPluginList > li > a[title=Facebook] {
  color: #3c5a99;
}
.socialPluginList > li > a[title=Twitter] {
  color: #38A1F3;
}
.socialPluginList > li > a[title=Pintrest] {
  color: #c8232c;
}
.socialPluginList > li > a[title=Instagram] {
  color: #f77737;
}
.socialPluginList > li > a:hover {
  color: black;
}

.requestBtns {
  width: 100%;
  float: left;
  margin: 0 0 20px;
}
.requestBtns .requestBtnsList {
  margin: 0 -5px;
  padding: 10px 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start !important;
}
.requestBtns .requestBtnsList > li {
  text-align: center;
  font-size: 12px;
  position: relative;
  flex: 0 0 25%;
  margin-bottom: 15px;
}
.requestBtns .requestBtnsList > li > a {
  color: #555;
  white-space: nowrap;
}
@media (max-width: 990px) {
  .requestBtns .requestBtnsList {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .requestBtns .requestBtnsList > li {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 25%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 25%;
    -ms-flex: 1 1 25%;
    flex: 1 1 25%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .requestBtns {
    margin-bottom: 10px;
  }
}

.tollFreeNo {
  font-size: 18px;
  display: block;
  text-align: center;
}
.tollFreeNo span {
  display: inline-block;
  line-height: 28px;
}
.tollFreeNo span i {
  color: #a07936;
}
.tollFreeNo span.tollText {
  white-space: nowrap;
}
.tollFreeNo span.tollNo {
  font-weight: bold;
  font-size: 20px;
  color: #a07936;
}
@media (max-width: 767px) {
  .tollFreeNo {
    margin-bottom: 20px;
    width: 100%;
    float: left;
    padding: 10px;
  }
  .tollFreeNo span {
    display: block;
  }
}

.productDetail .productTitle {
  font-size: 22px;
  line-height: 22px;
  margin: 0 0 10px;
}
.productDetail .productSku {
  font-size: 14px;
  margin: 0 0 15px;
  color: #656565;
}
.productDetail .productDesc {
  margin: 0 0 15px;
  line-height: 18px;
}
.productDetail .productPrice {
  font-size: 28px;
  line-height: 40px;
  margin: 0;
  color: #a07936;
}
.productDetail .productPrice span {
  color: #0f0f0f;
}
.productDetail .productPrice small {
  font-size: 14px;
  display: block;
  color: #a07936;
}
.productDetail .selectRingSizeBox {
  width: 100%;
  float: left;
  margin: 0 0 30px;
  padding: 0;
}
.productDetail .selectRingSizeBox label {
  margin: 6px 0 2px;
}
.productDetail .selectRingSizeBox .customSelect {
  max-width: 120px;
  margin-right:12px;
}
.productDetail .btnGroup {
  width: 100%;
  float: left;
  margin: 0 0 20px;
  padding: 0;
}
.productDetail .btnGroup .btn {
  text-transform: uppercase;
  margin: 5px;
}
.section-homeCarousel img{height: auto;}      
.itemContent.left {left:12%; max-width: 500px; }
.itemContent.right {right:12%;  }
.itemContent.center {width: 100%; text-align: center;  }
.itemContent.right {right:10%;  max-width: 500px;}
.itemContent {position: absolute; transform: translateY(-50%); top:50%; }
.itemContent .title {font-size: 36px; font-family: "Alice", serif; margin-bottom: 25px;}
.itemContent .ban_subtitle {font-size: 18px; font-weight: bold; margin-bottom: 20px;}
.itemContent .banner-description {font-size: 18px; margin-bottom: 40px; }
.itemContent .bannerbutton a {font-size: 14px; margin-right: 30px; padding: 12px 20px; text-transform: uppercase; background: #fff; color: #000;}
.itemContent .bannerbutton a:hover {background: #000; color: #fff;}
@media (min-width: 990px) { 
    .num-items-in-cart{margin-top: -2px;}
    .home_collections.home_collectionsBottom .col-md-3 {width: 20%;}
}
@media (max-width: 990px) {
  .productDetail .btnGroup {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .productDetail .btnGroup .btn {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -moz-box-flex: 1;
    -moz-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    border-radius: 0;
  }
  .itemContent .title{font-size: 24px; margin-bottom: 10px;}
  .itemContent .ban_subtitle, .itemContent .banner-description{font-size: 16px; margin-bottom: 10px;}
  .itemContent .banner-description{margin-bottom: 20px;}
}

.productSpecificationBox {
  width: 100%;
  float: left;
  padding: 20px 0 0;
}
.productSpecificationBox .tab-content {
  width: 100%;
  float: left;
  margin: -1px 0 0;
  padding: 15px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
}
.productSpecificationBox table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.productSpecificationBox table th, .productSpecificationBox table td {
  padding: 7px;
}
.productSpecificationBox table .tdColon {
  width: 30px;
  text-align: center;
}
.productSpecificationBox .specTable {
  margin: 0;
}
.productSpecificationBox .specTable tbody tr > *:first-child {
  width: 155px;
}
.productSpecificationBox .specTable tbody tr:first-child th, .productSpecificationBox .specTable tbody tr:first-child td {
  border-top: none;
}
.productSpecificationBox .addReviewForm {
  width: 100%;
  float: left;
  margin-top: -30px;
}
.productSpecificationBox .addReviewForm .form-group {
  position: relative;
}
.productSpecificationBox .addReviewForm .form-group .fldMsg {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  color: red;
}
.productSpecificationBox .addReviewForm .form-control {
  border-radius: 0;
  box-shadow: none;
}
.productSpecificationBox .btnShowReviewForm {
  position: relative;
  z-index: 1;
}


@media (max-width: 990px) {
  .productSpecificationBox .nav-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .productSpecificationBox .nav-tabs > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0;
    -moz-box-flex: 1;
    -moz-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
  }
  .productSpecificationBox .nav-tabs > li > a {
    width: 100%;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
  }
}

.specificationsTabs {
  width: 100%;
  float: left;
  padding: 0;
  margin: 0;
}
.specificationsTabs .nav-link {
  padding: 6px 12px;
  color: black;
}
.specificationsTabs .specificationsTabsContent {
  margin-top: -1px;
}
.specificationsTabs .specificationsTabsContent .panel {
  border-radius: 0;
}

.customerReviews {
  width: 100%;
  float: left;
  border-top: 1px solid #dfdfdf;
  padding: 10px 0 0;
  overflow: hidden;
}
.customerReviews .reviewList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.customerReviews .reviewList > li {
  width: 100%;
  float: left;
  margin: 6px 0 0;
  padding: 6px 0 0;
  border-top: 1px solid #f5f5f5;
}
.customerReviews .reviewList > li:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.customerReviews .reviewList > li p {
  padding: 0;
  line-height: 18px;
}
.customerReviews .reviewList > li .reviewerName {
  font-size: 12px;
  text-transform: uppercase;
  color: #555;
}
.customerReviews .noReview {
  text-align: center;
  color: red;
  margin: 0;
}

#similarProductCarousel .owl-nav {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}
#similarProductCarousel .owl-nav [class*=owl-] {
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  top: 30%;
  margin: 0;
  padding: 0;
  text-align: center;
}
#similarProductCarousel .owl-nav [class*=owl-] span {
  display: block;
  font-size: 40px;
  margin-top: -12px;
}
#similarProductCarousel .owl-nav .owl-prev {
  left: 0;
}
#similarProductCarousel .owl-nav .owl-next {
  right: 0;
}
.socialPluginBox .socialPluginList li a i{
  color: #555;
  font-size: 14px;
}

.socialPluginBox .socialPluginList li a img{
  width: 13px;
}

.section-productReview {
  background-color: white;
}

.resultHeader {
  width: 100%;
  float: left;
  margin: 0;
  padding: 0;
}
.resultHeader .choose_tab {
  width: 100%;
  float: left;
  position: relative;
  margin: 0;
}
.resultHeader .choose_tab > ul {
  width: 100%;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 3px solid black;
}
.resultHeader .choose_tab > ul > li {
  float: left;
  margin: 0 8px 0 0;
  padding: 0;
  color: black;
}
.resultHeader .choose_tab > ul > li a {
  text-align: center;
  text-decoration: none;
  color: #5a5858;
  font-size: 13px;
  line-height: 31px;
  display: block;
  padding: 0 10px;
  border: 1px solid black;
  border-bottom: none;
  cursor: pointer;
}
.resultHeader .choose_tab > ul > li a.current_tab {
  color: white;
  border-color: black;
  cursor: pointer;
  background: black;
}

.specificationsAccordion {
  width: 100%;
  float: left;
}
.specificationsAccordion .panel {
  border-radius: 0;
  border: none;
}
.specificationsAccordion .panel-body {
  background-color: white;
}
.specificationsAccordion .panel-heading {
  border-radius: 0;
}
.specificationsAccordion label {
  font-weight: normal;
}
.specificationsAccordion .form-control {
  border-radius: 0;
  box-shadow: none;
}
.specificationsAccordion table {
  border: none;
}
.specificationsAccordion table > tbody > tr > td {
  border: none;
}
.specificationsAccordion table > tbody > tr > td:nth-child(1) {
  width: 100px;
}
.specificationsAccordion table > tbody > tr > td:nth-child(2) {
  width: 30px;
}

#similarProducts .product-price span.price {
  color: #a07936 !important;
  display: block;
  padding: 6px 0 0;
}

footer {
  width: 100%;
  float: left;
}
footer .footerLinksWraper {
  margin: 0 -15px;
}
footer .footer-link-list {
  padding: 0 15px;
  margin: 0 0 15px;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -moz-box-flex: 1;
  -moz-flex: 1 1 0;
  -ms-flex: 1 1 0;
  flex: 1 1 0;
}
footer .general-title {
  text-align: left;
  margin: 0;
  padding: 0 0 10px;
}
footer .general-title.text-center {
  text-align: center !important;
}
footer .general-title::before {
  display: none;
}
footer .googleMap {
  width: 380px;
  margin: 0 0 15px;
}
@media (min-width: 768px) and (max-width: 990px) {
  footer .container {
    width: 100%;
  }
  footer .footerLinksWraper .footer-link-list.contactBlock, footer .footerLinksWraper .footer-link-list.mapBlock, footer .footerLinksWraper .footer-link-list.fbWidgetBlock {
    -webkit-flex-basis: 33.333333%;
    -moz-flex-basis: 33.333333%;
    -ms-flex-preferred-size: 33.333333%;
    flex-basis: 33.333333%;
    max-width: 33.333333%;
  }
  footer .footerLinksWraper .footer-link-list.mapBlock iframe, footer .footerLinksWraper .footer-link-list.fbWidgetBlock iframe {
    height: 340px !important;
  }
  footer .footerLinksWraper .footer-link-list.linksBlock {
    border-top: 1px solid #d5d5d5;
    padding-top: 13px;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  footer .googleMap {
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .footerLinksWraper .footer-link-list {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 7px;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #d5d5d5;
  }
  footer .general-title {
    padding-bottom: 10px;
    text-align: center;
  }
  footer .googleMap {
    width: 100%;
  }
  footer .fbWidget {
    width: 100%;
    float: left;
    overflow: hidden;
  }
}

.footer-link-list h6 {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-link-list a {
  color: black;
}

.footer-link-list .storeHours p {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.footer-link-list .storeHours p ~ p {
  margin-top: 5px;
}

.footerNavList {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footerNavList > li ~ li {
  margin-top: 8px;
}
.footerNavList > li > a {
  color: black;
}
.footer-content-top .storeHours  .general-title{margin-bottom: 0px;}
.homeBenFamily img{ max-width: 100%;}
.subText{font-size: 16px; line-height: 24px;}
.btnOutline{display: inline-block; border:2px solid #000; color: #000; text-transform:uppercase; padding: 8px 14px; font-size: 14px; letter-spacing: .5px;}
.btnOutline:hover{border:2px solid #000; color: #fff; background: #000; text-decoration: none;}
.subTitle{font-size: 24px;}
.subTitle a{color: #000;}
.homeBenFamily{padding-bottom: 60px;}
.homeBenFamily .homeBenContent {padding: 0 40px;}
.homeBenFamily img{ max-width: 100%;}
.scripText{font-family: 'Dancing Script', cursive; font-size: 28px;}
.partners-logo .owl-nav, .home-newproduct .owl-nav{position: absolute; top:50%; transform: translateY(-50%); margin-top: 0; width: 100%;}
    .partners-logo .owl-nav .owl-prev, .partners-logo .owl-nav .owl-next, .home-newproduct .owl-nav .owl-prev, .home-newproduct .owl-nav .owl-next{position: absolute; top:50%; transform: translateY(-50%); font: normal normal normal 14px/1 FontAwesome !important;}
    .partners-logo .owl-nav .owl-prev{left:-30px;}
    .partners-logo .owl-nav .owl-next{right:-30px;}
  .partners-logo .owl-nav .owl-prev:before, .home-newproduct .owl-nav .owl-prev:before{ content: "\f104";  font-size: 28px;}
  .partners-logo .owl-nav .owl-next:before, .home-newproduct .owl-nav .owl-next:before{content: "\f105";  font-size: 28px;}
  .partners-logo .owl-nav button, .home-newproduct .owl-nav button{background: none; color: #000;}
  .partners-logo .owl-nav button:hover, .home-newproduct .owl-nav button:hover{background: none !important; color: #000 !important;}
  .partners-logo .owl-nav button:focus, .home-newproduct .owl-nav button:focus{outline: none;box; box-shadow:inherit;}
  .partners-logo .owl-nav span{display: none;}

@media (max-width: 990px) {

  .footerNavList > li > a {
    padding: 3px 7px;
  }
  .footerNavList > li, .footerNavList > li ~ li {
    margin: 0;
    padding: 5px 0px;
  }
}

.footer-content-bottom {
  background: #21201f;
}
.ftpBottom{border-top:1px solid #7f7f7f;}
.ftpBottom li{list-style: none; color: #7f7f7f; padding:0 2px;}
.ftpBottom li a{font-size: 14px; color: #7f7f7f;}

.footer-content-bottom .copyright {
  padding-left: 0;
}

.footer-content-bottom .copyright,
#footer .footer-content-bottom .copyright a {
  font-family: "Lato", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.footer-content-top .general-title {
  padding-left: 0;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}
.ftpAddres{font-size: 16px;}



.footer-content-bottom {
  padding-left: 0;
  padding-right: 0;
}

.footer-content.footer-content-top {
  padding: 40px 0 20px;
  border-bottom: 1px solid #dedede;
}
.headerCovidNew{background: #c7d0d8; color: #fff; font-size: 16px; padding: 5px 0; position: relative; float: left; width: 100%;}


.socialWidget, .footerLogo  {margin-top: 22px;}
.footerLogo{background: #21201f; padding: 10px;}
.ftpAddres a{color: #000;}
.storeHours p{margin: 0;}
.socialWidgetList {
  width: 100%;
  float: left;
  padding: 0;
  list-style: none;
}
.socialWidgetList > li {
  margin-left: 12px;
}
.socialWidgetList > li:first-child {
  margin-left: 0;
}
.socialWidgetList > li > a {
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  border-radius: 4px;
  color: #fff;
}
.socialWidgetList > li.facbook > a{background: #3d5a98;}
.socialWidgetList > li.twitter > a{background: #1d9bf0;}
.socialWidgetList > li.pinterest > a{background: #d2252d;}
.socialWidgetList > li.instagram > a{background: #af2aab;}
.headerCovid {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    background: #a07936;
    text-align: center;
    font-size: 14px;
    color: #fff;
    box-sizing: border-box;
}
.headerNewsTicker { width: 100%;  float: left; margin: 0;  padding: 0px 10px;  color: #fff; text-align: center; position: relative;}
.headerNewsTicker .cross-icon { width: 30px;  height: 30px;   position: absolute;   right: 0;   top: 50%;   transform: translateY(-50%);  text-align: center;   font-size: 18px;  line-height: 30px;  color: #fff;}
.headerNewsTicker .staticTicker { list-style: none;  margin: 0;  padding: 0;}
.headerNewsTicker .staticTicker > li {margin: 0; padding: 0;}
.headerNewsTicker .staticTicker > li a{text-decoration: underline; margin-left: 5px; }
.headerNewsTicker .staticTicker > li a:hover{text-decoration: none;}
@media (max-width: 767px) {
  .socialWidgetList > li {
    margin-left: 7px;
  }
}
@media (max-width: 991px) {
    .diamondShapesList > li > a{font-size: 12px;}
    .home-partners .item .starRating{margin-bottom: 20px;}
    .footerNavList{margin-bottom: 20px;}    
  .googleReview ul{flex-wrap:wrap; padding-left: 0; }
  .googleReview li:first-child{width: 100%; text-align: center;}
  .googleReview li{width: 50%; text-align: center; padding: 10px;}
  .googleReview li img{max-width: 100%;}
  .diamondShapesList {margin: 0 -3px;}
  .diamondShapesList{flex-wrap:wrap;}
  .diamondShapesList li{width: 10%; margin-bottom: 10px; padding: 0 3px;}
  .diamondShapesList > li > a{font-size: 13px;}
  header{background: #fff;}  
  .section-productFilter .form-inline{display: flex; flex-wrap:wrap; margin: 0 -15px;}
  .section-productFilter .form-inline label{width: 100%; text-align: left; padding: 0 10px;}
  .section-productFilter .form-group{margin-bottom: 10px; max-width: 33.33%; width: 33.33%; position: static; padding: 0 10px;}
  .customSelect:after{display: none;}
      .order-mb-1{order:1;}
      .homeBenFamily .homeBenContent{padding-top: 30px;}
      #footer .contactAddress {text-align: center;}
    
    
}

@media (max-width: 768px) {
  .footer-content {
    padding: 15px 0;
  }

  .footer-content-bottom #widget-payment,
.footer-content-bottom .copyright {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }
}

/*# sourceMappingURL=theme-styles.css.map */
.bridelBox.Logo {
  width: 300px;
}

.bridelBox.Logo img {
  width:100%;
}

@media (min-width: 766px) {
    #top nav.navbar .nav > li > a .fa-caret-down{display: none;}
    .top-navigationMiddle{position: relative;}
    #top nav.navbar li .dropdown-menu.megamenu-container-1{background: #fff !important;   box-shadow: 1px 0px 2px #ccc;}
    #top nav.navbar .dropdown-menu li > a{font-size: 14px;}
    #top nav.navbar .dropdown-menu .sub2subcat li > a{font-size: 14px; text-transform:  capitalize !important; margin-bottom: 0;}
    #top nav.navbar .dropdown-menu .sub2subcat li{padding-left: 0; padding-right: 0;}
    #top nav.navbar .dropdown-menu li > a{margin-bottom: 10px; position: relative;}
    #top nav.navbar .dropdown-menu li > a:before { content: ""; position: absolute; bottom: -6px;  left: 0px;   width: 80px;  height: 1px;  background-color: #a69a96;}
    #top nav.navbar .dropdown-menu .sub2subcat li > a:before { display: none;}
    .secondBenContent .order-md-1{order:1;}
    
    
}
@media (max-width: 766px) {
  .bridelBox.Logo {
  width: auto;
}
      .diamondShapesList li{width: 20%; margin-bottom: 10px; padding: 0 3px;}
    .section-productFilter .form-group{width: 48%; max-width: 48%;}
.element ul li.row-right a.title-5{font-size: 16px;}
#home-banner .home-banner-action a, #home-banner .home-banner-caption p{font-size: 14px;}
.footer-content-top .general-title{text-align: left; font-size: 16px;}
.group.storeHours.mt-5, footer .socialWidget{margin-top: 0 !important;}
#top nav.navbar .dropdown-menu.megamenu-container .container {
  width: 100% !important; padding: 0;}
  .sub2subcat{display: none;}
.sub-mega-menu{flex-wrap:wrap;}
#top nav.navbar .dropdown-menu li{padding: 6px 11px;}
.mobileNavtitle:after{font: normal normal normal 14px/1 FontAwesome; content: '\f107'; position: absolute; right:0; font-size: 14px; top:0;}
#top nav.navbar .dropdown-menu a{display: block; text-decoration: none !important;}
.sub-sub-mega-menu li{padding-left: 0; padding-right: 0; border-top:1px solid #f1f1f1;}
.sub2subcat {margin-top: 10px;}
.googleReview ul{margin-top: 30px;}
   .partners-logo .owl-nav .owl-prev{left:0px;}
    .partners-logo .owl-nav .owl-next{right:0px;}
    .element .row-left{height: auto;}
    .element .row-left .img-responsive{display: inline-block;}
    .section-productFilter label, .section-productListing .row-container{width: 100%;}
    .createYourAccount .MT20{float: left; width: 100%; margin-bottom: 20px;}
    #header-search{margin-right: 0;}
    .subTitle{font-size: 18px;}
    .home-banner-wrapper { background: url(../images/mobileBen-David-Jewelers-Storefront.jpg) no-repeat center/cover;}
    .footer-content{padding-bottom: 60px;}
    .home-newproduct .owl-nav .owl-prev{left:0;}
    .home-newproduct .owl-nav .owl-next{right:0;}
    .diamondShapesList > li > a > img{width: 85%;}

    .educationGraphics-2 .educationGraphics{
      flex-direction: column;
      gap: 30px;
    }

    .section-educationGraphics .educationGraphics > a img {
      width: 100%;
      max-width: 59%;
  }

    .itemContent{padding: 0 13%; width: 100% !important; left:0 !important; right: 0 !important;}
    .itemContent .bannerbutton a{display: block; width: 100%; text-align: center; margin: 0 0 10px;}
    

}
.stockTag {
  position: absolute;
  left: 16px;
  top: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #1b396b;
  text-align: center;
  color: #fff;
  line-height: 14px;
  padding: 4px 9px;
}

.newTag,
.saleTag {
    width: 72px;
    height: 72px;
    background-image: url(../images/icons/sale-new-tag.png);
    background-repeat: no-repeat;
}
.group-product-item .newTag, .group-product-item .saleTag {
  position: absolute;
  left: 8px;
  top: -6px;
}

.saleTag {
    background-position: 0 0;
}

.newTag {
    background-position: -72px 0;
}

@media (max-width: 400px) {
    #accounts > li .dropdown-menu{width: 220px;}
    .home-newproduct .col-xs-6{width: 100%;}
    diamondShapesList > li > a{font-size: 12px;}

}





.collection-full .hover-appear{
  position: absolute;
  right: 30px;
  z-index: 1;
  top: 30px;
  display: flex;
  gap: 14px;
  flex-direction: row-reverse;
  opacity: 0;
}

.group-product-item .classForDevUse:hover .hover-appear{
  top: 10px;
  opacity: 1 !important;
}

.collection-full .hover-appear i{
  color: #000;
}

.panel-group.specificationAccordion{
  display: inline-block;
  width: 100%;
}

.panel-group.specificationAccordion .panel{
  border: none !important;
  border-radius: 0
}

.panel-group.specificationAccordion .panel .panel-heading{
  background-color: transparent !important;
  padding-left: 5px;
}

.panel-group .panel-title a.btn.btn-link{
  display: block;
  text-align: left;
  text-decoration: none !important;
  padding-left: 0 !important;
}

.panel-group .panel-title a.btn.btn-link:hover{
  text-decoration: none !important;
  color: #000;
}

 .secondBenContent .subTitle{font-size: 18px; font-weight: bold; margin: 20px 0;}
@media (max-width: 991px) {
  .collection-full .hover-appear{
    top: 10px;
    display: flex;
    gap: 14px;
    flex-direction: row-reverse;
    opacity: 1;
  }
  .panel-group .panel-title a.btn.btn-link{
    padding-left: unset !important;
  }

  .panel-group.specificationAccordion .panel .panel-heading{
    padding-left: unset;
  }
  .secondBenContent .subTitle{font-size: 16px;}
}


.requestBtns .requestBtnsList.req-ul-btns > li{
  margin-left: -4px;
}


@media (min-width: 766px) {.li-wid-req-call{flex: 0 0 14% !important;}}
.productSpecificationBox .specificationAccordion .panel.panel-default .panel-heading .panel-title a{
  display: block;
}

.btn-def-hov:hover{
  color: white;
  background-color: #000;
}

.skiptomaincontent { position: absolute; left: 10%; z-index: 100; overflow: hidden; top: -5px; background-color: #000; color: #fff; transform: translate(-50%,-100%); transition: transform 0.3s; font-size: 16px; padding: 10px;}
.skiptomaincontent:focus {transform: translate(-50%, 0%); color: #fff; background-color: #000;}


.bridelLanding {position:relative;display: inline-block; width:100%;text-align: center;}
.bridelLpBanner{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.4);padding:10px 0;display:flex;align-items:center;flex-wrap:wrap}
 
 .bridelLpMiddle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.bridelBottomContent {
  max-width: 330px;width: 100%;
}

  .bridelLpMiddle .bridelBottomContent h1 {
  color: #D0BD76;
  font-size: 28px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;margin: 0 0 15px;
}

  .bridelLpMiddle .bridelBottomContent h1 span {
  display: block;
}


.bridelNavBox ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin: 15px 0 20px;
  gap:50px;
}
.bridelNavBox ul li a {
  color: #D0BD76;
  font-size: 13px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.13px;
  line-height: 26px;  font-family: "Raleway", sans-serif;
}


  .bridelLanding  video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  .bridelBottom{
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  color: #fff;
}

 .bridelBottom h1 {
  color: #D0BD76;font-size: 25px;
  font-family: "Raleway", sans-serif;
}

   .bridelBottom h1 span{
  display: block;
}
.bridelBottom a {
  color: #fff;
  border: solid 2px #D0BD76;
  padding: 12px 25px 10px;
  margin: 10px 0 0;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  border-radius: 8px;
}

.bridelBottomContent a {
  color: #fff;
  border: solid 2px #D0BD76;
  padding: 12px 25px 10px;
  margin: 10px 0 0;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  font-family: "Raleway", sans-serif;
  text-decoration: none;
  border-radius: 8px;
}

.bridelBottomContent a:hover {
  color:#000; background-color: #D0BD76;
  border: solid 2px #D0BD76;
}



.a-auto {margin: auto; }

.bridalSlideBox { display: inline-block; width:100%; padding-top:40px;}
 .bridalSlideBox h3 a{
  color: #012;
  font-size: 18px;
  text-align: center;
  width: 100%;
  display: block;
  margin: 10px 0 0;
  font-family: "Raleway", sans-serif;
}



 .bridalSlideBox .bridalCard:hover .productImg img {
  transform: scale(1.06);
}

 .bridalSlideBox  .productImg img {
transition: all .8s ease-in-out 0s;
}

 .bridalSlideBox  .productImg  {
overflow:hidden;
}

.mt-5 {margin-top:3rem; }
.pt-5 {padding-top:3rem; }

.d-flex {display:flex; }


 .perfectContent h2 {
  font-family: "Raleway", sans-serif;
  color: #D0BD76;
  font-size: 30px;
  font-weight: 500;
}
.perfectContent h2 span {display:block;} 
 
.perfectContent {padding:0 50px; }


  .perfectContent p{
  color: #888;
  margin: 20px 0 0;
  font-family: "Alice", serif;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.perListed li {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
  gap: 10px;align-items: center;
}
.perListed .iconBoxes {
  width: 6%;
}
.perListed .iconBoxes img {
  width: 100%;
}
.perListed .perfectlistContent {
  width: 90%;
}
.perListed h2 {
  color: #888888;
  font-size: 21px;  font-family: "Raleway", sans-serif;
  margin: 0;
}

.perListed p {
  color: #888888;
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
  margin: 0 0 0;
}

.perfectCheckerboard p {
  color: #888888;  font-family: "Alice", serif;
  font-size:18px;
  line-height:28px;
  font-weight: 400;
  margin:0 0 13px;
}
.trm {font-size:16px; }




  .PerfectEdit  h2  {
  text-align: center;
  color: #D0BD76;
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  margin: 0 0 30px;
  font-weight: 600;
}

  .PerfectEdit  h3 a{margin: 13px 0 0;
  color: #888;  font-family: "Raleway", sans-serif;
  font-weight: 600; font-size:20px;
}

  .PerfectEdit p {
  font-family: "Raleway", sans-serif;
  color: #888;
  font-size: 14px;
  text-align: center;
  margin: 0 0 15px;
}

   .PerfectEdit a.view {
  border: solid 1px #D0BD76;
  color: #888;
  padding: 8px 20px;
  font-size: 15px;
  border-radius: 20px;
  margin: auto;
  display: table;
}

#backtop {
  font-size: 20px;
  color: #D0BD76;
  font-weight: 600;
}

.perfectImg video {width:100%; }


@media only screen and (min-width:768px)
{
.flex-row-reversed{flex-direction: row-reverse !important; }
}

@media only screen and (max-width:992px)
{
.bridelLanding video {
  height: 700px;
}
  .perfectContent {
    padding: 20px 0px 0;
  }



}

@media only screen and (max-width:767px)
{
.bridelLanding video {
  height: 500px;
}

  .bridelNavBox{
  overflow: auto;
  position: absolute;
  bottom: 50%;
  left: 0;
  padding: 0 10px;
  transform: translateY(50%);
overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}
 .bridelLpBanner { background:rgba(0,0,0,0.3); padding:10px 0;}

  .bridelNavBox ul::-webkit-scrollbar {
    display: none;                
  }
  
  .bridelLpMiddle { 
  flex-wrap: wrap;justify-content: center;
}




}