/*
Author: Cameron Bix
Date: 16/4/18
Version: 1.0
*/
/*
Table of Contents

0.0 - Variables
1.0 - Type
2.0 - Core structure and positioning classes
3.0 - Panel style
4.0 - Sliders
5.0 - Buttons
6.0 - Keyframes
7.0 - SVG Animations
8.0 - Media Queries
9.0 - Imports
*/
/*
0.0 - Variables START
*/
/*
0.0 - Variables END
*/
/*
1.0 - Type START
*/
h1 {
  font-family: "Prompt", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #142121;
  letter-spacing: 0.05em;
}

.pop-modal-header,
h2 {
  font-family: "Prompt", sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #142121;
}

h3 {
  font-family: "Prompt", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #142121;
}

h4 {
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #142121;
}

p {
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #142121;
  max-width: 420px;
}

a {
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #142121;
  text-decoration: none !important;
  transition: 0.3s ease;
}
a:hover {
  color: #995e3a;
}

.whiteText h1 {
  color: white;
}
.whiteText h2 {
  color: white;
}
.whiteText h3 {
  color: white;
}
.whiteText h4 {
  color: white;
}
.whiteText p {
  color: white;
}
.whiteText a {
  color: white;
}

.lightGreyText h1 {
  color: #cfcfcc;
}
.lightGreyText h2 {
  color: #cfcfcc;
}
.lightGreyText h3 {
  color: #cfcfcc;
}
.lightGreyText h4 {
  color: #cfcfcc;
}
.lightGreyText p {
  color: #cfcfcc;
}
.lightGreyText a {
  color: #cfcfcc;
}

/*
1.0 - Type END
*/
/*
2.0 - Core structure and positioning classes START
*/
.xsMiddle {
  align-items: center;
  display: flex;
}

.xsCenter {
  justify-content: center;
}

.panelPad {
  padding-top: 50px;
  padding-bottom: 50px;
}

.brochurePad {
  padding-right: 125px;
  padding-left: 125px;
}

.panelPadSm {
  padding-top: 20px;
  padding-bottom: 20px;
}

.noPad {
  padding: 0;
}

/*
2.0 - Core structure and positioning classes END
*/
/*
3.0 - Panel style START
*/
.header::before {
  content: "";
  background-color: #003345;
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: -1;
  transition: 0.3s;
}

.header.blueBg::before {
  top: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0;
  transition: 0.3s;
}
.header .logo {
  padding-left: 20px;
  z-index: 10;
  max-height: 50px;
}
.header .logo img {
  height: auto;
}
.header .menu {
  text-align: center;
  padding-top: 30px;
  max-height: 200px;
  z-index: 3;
  position: relative;
  margin-top: -20px;
}
.header .menu > ul {
  list-style: none;
  display: inline-flex;
  margin-bottom: 0;
  padding-bottom: 1rem;
}
.header .menu > ul > li {
  margin-left: 40px;
  margin-right: 40px;
}
.header .menu > ul > li > a {
  color: white;
  letter-spacing: 0.05em;
}
.header .menu > ul > li > a:hover {
  color: #995e3a;
}
.header .menu > ul > li .dropDownContent {
  visibility: hidden;
  text-align: left;
  list-style: none;
  padding-left: 0;
  padding-top: 20px;
  width: 37px;
  white-space: nowrap;
  display: none;
}
.header .menu > ul > li .dropDownContent a {
  z-index: 5;
  position: relative;
}
.header .menu > ul > li .dropDownContent li:hover ul {
  display: block;
  position: absolute;
  top: 0;
  left: 80%;
  margin-left: 0;
  list-style: none;
  padding-left: 100px;
}
.header .menu > ul > li .dropDownContent li ul {
  display: none;
}
.header .menu > ul > li .dropDownContent li {
  position: relative;
}
.header .menu > ul > li.dropDownActive .dropDownContent {
  visibility: visible !important;
  display: block !important;
}
.header .menu .menuIcon {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  float: right;
  margin-top: 5px;
  display: none;
  z-index: 100;
}
.header .menu .menuIcon span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: white;
  left: 0;
  transition: 0.3s;
}
.header .menu .menuIcon span:nth-child(1) {
  top: 0;
}
.header .menu .menuIcon span:nth-child(2) {
  top: 8px;
}
.header .menu .menuIcon span:nth-child(3) {
  top: 16px;
}
.header .menu .menuIconActive span:nth-child(1) {
  top: 8px;
  transform: rotate(-45deg);
}
.header .menu .menuIconActive span:nth-child(2) {
  opacity: 0;
}
.header .menu .menuIconActive span:nth-child(3) {
  top: 8px;
  transform: rotate(45deg);
}
.header .menu .mobileMenu {
  position: fixed;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  left: 0;
  top: -100vh;
  transition: 0.3s;
  background-color: #003345;
  z-index: 2;
  padding-left: 0;
  padding-top: 100px;
  overflow: auto;
}
.header .menu .mobileMenu > li {
  margin-top: 10px;
  margin-bottom: 10px;
}
.header .menu .mobileMenu > li > a {
  font-size: 28px;
}
.header .menu .mobileMenu .dropDownContent {
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding-top: 0;
  width: 100%;
  z-index: 100;
}
.header .menu .mobileMenu .dropDownContent ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 13px;
  display: block;
  position: relative !important;
  left: 0 !important;
  padding-left: 0 !important;
}
.header .menu .mobileMenu .dropDownContent ul li {
  display: block;
}
.header .menu .mobileMenu .dropDownContent ul li a {
  font-size: 11px;
}
.header .menu .mobileMenu .dropDownActive .dropDownContent {
  max-height: 320px;
  overflow: visible;
}
.header .menu .mobileMenuActive {
  top: 0 !important;
}
.header a {
  color: white;
}
.header a:hover {
  color: #995e3a;
}
.header .adminBtn {
  padding-top: 30px;
  z-index: 2;
  position: relative;
  text-align: right;
  margin-top: -20px;
}
.header .adminBtn a {
  margin-right: 10px;
  margin-left: 10px;
}
.header .adminBtn a:last-child {
  margin-right: 0;
}
.header .adminBtn img {
  cursor: pointer;
}
.header .signInArea, .header .searchArea {
  display: none;
  padding-top: 50px;
  padding-bottom: 50px;
}
.header .signInArea .modal-header,
.header .signInArea .pop-modal-header, .header .searchArea .modal-header,
.header .searchArea .pop-modal-header {
  color: white;
}
.header .signInArea .woocommerce form.checkout_coupon, .header .signInArea .woocommerce form.login, .header .signInArea .woocommerce form.register, .header .searchArea .woocommerce form.checkout_coupon, .header .searchArea .woocommerce form.login, .header .searchArea .woocommerce form.register {
  border: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.header .signInArea .woocommerce p, .header .searchArea .woocommerce p {
  display: block;
}
.header .signInArea input[type=text], .header .signInArea input[type=password], .header .signInArea input[type=email], .header .signInArea select, .header .searchArea input[type=text], .header .searchArea input[type=password], .header .searchArea input[type=email], .header .searchArea select {
  border: 0;
  border-left: 1px solid white;
  border-bottom: 1px solid white;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 10px !important;
  font-family: "Prompt", sans-serif;
  color: white;
  font-size: 14px;
  font-weight: 400;
  padding: 3px;
  width: 100% !important;
  outline: none !important;
}
.header .signInArea input[type=text]::placeholder, .header .signInArea input[type=password]::placeholder, .header .signInArea input[type=email]::placeholder, .header .searchArea input[type=text]::placeholder, .header .searchArea input[type=password]::placeholder, .header .searchArea input[type=email]::placeholder {
  font-family: "Prompt", sans-serif;
  color: white;
  font-size: 14px;
  font-weight: 400;
}
.header .signInArea input[type=submit].button.alt, .header .signInArea button.button.alt, .header .searchArea input[type=submit].button.alt, .header .searchArea button.button.alt {
  border: 0;
  background-color: rgba(0, 0, 0, 0) !important;
  font-family: "Prompt", sans-serif;
  color: white;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  float: right;
  padding: 0;
  margin: 0;
}
.header .signInArea input[type=submit].button.alt:hover, .header .signInArea button.button.alt:hover, .header .searchArea input[type=submit].button.alt:hover, .header .searchArea button.button.alt:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #995e3a;
}

.p_full_width p {
  max-width: 100%;
}

.p_full_width ol, .p_full_width li {
  margin-top: 10px;
  margin-bottom: 10px;
}

.acf-map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.acf-map * {
  cursor: default;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

.supplierSlider .swiper-slide img {
  max-width: 100%;
  width: auto;
  height: 50px;
}
@media screen and (max-width: 576px) {
  .supplierSlider .swiper-slide img {
    max-width: 80%;
    height: auto;
    display: block;
    margin: auto;
  }
}

.underlay-closer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.landingImgLarge {
  position: relative;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease;
}
.landingImgLarge .col {
  position: relative;
}
.landingImgLarge .col h3 {
  margin-left: 30px;
  font-style: italic;
}
.landingImgLarge .col .landingExplore {
  position: absolute;
  left: 15px;
  top: calc(100% - 10px);
}
.landingImgLarge .col .landingExplore div {
  background-color: white;
  width: 1px;
  height: 50px;
}
.landingImgLarge .col .landingExplore a {
  color: white;
  font-weight: 500;
  outline: 0;
}
.landingImgLarge .landingPrev {
  position: absolute;
  top: calc(50% - 18.5px);
  left: 15px;
}
.landingImgLarge .landingPrev p {
  font-weight: 500;
  color: white;
}
.landingImgLarge .landingNext {
  position: absolute;
  top: calc(50% - 18.5px);
  right: 15px;
}
.landingImgLarge .landingNext p {
  font-weight: 500;
  color: white;
}
.landingImgLarge .socialMedia {
  position: absolute;
  bottom: 20px;
  right: 40px;
}

.landingImgSmall {
  position: relative;
  min-height: 30vh;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-height: 787px) {
  .landingImgSmall {
    min-height: 40vh;
  }
}
.landingImgSmall .col {
  position: relative;
  margin-top: 10vh;
}
.landingImgSmall .col h3 {
  font-style: italic;
}
.landingImgSmall .landingPrev {
  position: absolute;
  top: calc(50% - 18.5px);
  left: 15px;
}
.landingImgSmall .landingPrev p {
  font-weight: 500;
  color: white;
}
.landingImgSmall .landingNext {
  position: absolute;
  top: calc(50% - 18.5px);
  right: 15px;
}
.landingImgSmall .landingNext p {
  font-weight: 500;
  color: white;
}
@media screen and (max-height: 701px) and (max-width: 1450px) {
  .landingImgSmall {
    align-items: flex-end;
    padding-bottom: 20px;
  }
  .landingImgSmall h1 {
    font-size: 38px;
  }
  .landingImgSmall p {
    max-width: 70%;
  }
}

.twoColTextLeft {
  min-height: 60vh;
}
.twoColTextLeft .textColumn {
  padding-top: 50px;
  padding-bottom: 50px;
}
.twoColTextLeft .textColumn p strong, .twoColTextLeft .textColumn p b {
  font-weight: 600;
}
.twoColTextLeft .textColumn > div {
  padding-left: 10px;
}
.twoColTextLeft .imageColumn {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 60vh;
}
.twoColTextLeft.reveal-panel .imageColumn {
  transition: 0.5s ease;
  transform: translateX(100%);
  opacity: 0;
}
.twoColTextLeft.reveal-panel .textColumn {
  transition: 0.5s ease;
  transform: translateX(-100%);
  opacity: 0;
}
.twoColTextLeft.reveal-panel .textColumn h2 {
  transition: 0.5s ease;
  transition-delay: 0.3s;
  transform: translateX(-50%);
}
.twoColTextLeft.reveal-panel.reveal .imageColumn {
  transform: translateX(0);
  opacity: 1;
}
.twoColTextLeft.reveal-panel.reveal .textColumn {
  transform: translateX(0);
  opacity: 1;
}
.twoColTextLeft.reveal-panel.reveal .textColumn h2 {
  transform: translateX(0);
}

.twoColTextRight {
  min-height: 60vh;
}
.twoColTextRight .textColumn {
  padding-top: 50px;
  padding-bottom: 50px;
}
.twoColTextRight .textColumn p strong, .twoColTextRight .textColumn p b {
  font-weight: 600;
}
.twoColTextRight .textColumn > div {
  padding-left: 10px;
}
.twoColTextRight .imageColumn {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 60vh;
}
.twoColTextRight.reveal-panel .imageColumn {
  transition: 0.5s ease;
  transform: translateX(-100%);
  opacity: 0;
}
.twoColTextRight.reveal-panel .textColumn {
  transition: 0.5s ease;
  transform: translateX(100%);
  opacity: 0;
}
.twoColTextRight.reveal-panel .textColumn h2 {
  transition: 0.5s ease;
  transition-delay: 0.3s;
  transform: translateX(50%);
}
.twoColTextRight.reveal-panel.reveal .imageColumn {
  transform: translateX(0);
  opacity: 1;
}
.twoColTextRight.reveal-panel.reveal .textColumn {
  transform: translateX(0);
  opacity: 1;
}
.twoColTextRight.reveal-panel.reveal .textColumn h2 {
  transform: translateX(0);
}

.contactFooter {
  background-color: #003345;
}
.contactFooter h2, .contactFooter p {
  color: #cfcfcc;
}
.contactFooter .contactDetails {
  margin-top: 30px;
}
.contactFooter .contactDetails p, .contactFooter .contactDetails a {
  font-size: 18px;
  color: #cfcfcc;
  font-weight: 300;
}
@media screen and (max-width: 500px) {
  .contactFooter .contactDetails {
    margin-bottom: 60px;
    margin-top: 0;
  }
}
.contactFooter form > div {
  position: relative;
}
.contactFooter form > div input[type=text], .contactFooter form > div input[type=tel], .contactFooter form > div input[type=email], .contactFooter form > div textarea, .contactFooter form > div select {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-bottom: 1px solid #cfcfcc;
  border-left: 1px solid #cfcfcc;
  font-family: "Prompt", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 35px;
  padding-left: 10px;
  width: 100%;
  color: #cfcfcc;
  border-radius: 0;
  outline: none;
  background-image: none !important;
}
.contactFooter form > div input[type=text] option, .contactFooter form > div input[type=tel] option, .contactFooter form > div input[type=email] option, .contactFooter form > div textarea option, .contactFooter form > div select option {
  color: black;
}
.contactFooter form > div input[type=submit] {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  float: right;
  font-family: "Prompt", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #cfcfcc;
  padding: 0;
  cursor: pointer;
}
.contactFooter form > div label {
  position: absolute;
  top: 2px;
  left: 11px;
  font-family: "Prompt", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #cfcfcc;
  pointer-events: none;
  transition: 0.3s;
  outline: 0;
}
.contactFooter form > div input:focus ~ label, .contactFooter form > div textarea:focus ~ label, .contactFooter form > div input:not(:focus):valid ~ label, .contactFooter form > div textarea:not(:focus):valid ~ label {
  top: -20px;
  font-size: 10px;
}
.contactFooter form > div input:required, .contactFooter form > div textarea:required {
  border-color: #cfcfcc !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.contactFooter form label.agree-to-marketing {
    top: 2px;
    left: 11px;
    font-family: "Prompt", sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #cfcfcc;
    transition: 0.3s;
    outline: 0;
}
.contactFooter form label.agree-to-marketing label input {
  margin-right: 0.5rem;
}
.single-product .landingImgSmall h1 br {
  display: none;
}

.footer {
  background-color: #6b716c;
}
.footer p, .footer a, .footer li {
  color: white;
  font-weight: 300;
}
@media screen and (max-width: 500px) {
  .footer a img {
    margin-top: 10px;
  }
}
.footer ul {
  list-style: none;
  padding-left: 0;
}

.page-id-63 .container-fluid .contactFooter {
  background-color: white;
}
.page-id-63 .container-fluid .contactFooter h2, .page-id-63 .container-fluid .contactFooter p, .page-id-63 .container-fluid .contactFooter a {
  color: #142121;
}
.page-id-63 .container-fluid .contactFooter input, .page-id-63 .container-fluid .contactFooter textarea {
  border-color: #142121 !important;
  color: #142121 !important;
}
.page-id-63 .container-fluid .contactFooter input::placeholder, .page-id-63 .container-fluid .contactFooter label {
  color: #142121;
}

div.wpcf7-response-output {
  margin: 0;
  padding: 5px 14px;
  border: 2px solid #843333;
  margin-top: 12px;
  background-color: #582020;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
div.wpcf7-response-output.wpcf7-mail-sent-ok {
  border: 2px solid #398f14 !important;
  background-color: #2a461e !important;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  border: 2px solid #843333;
}

.waitingToScroll > div {
  -webkit-animation: exploreBounce2 1.5s infinite;
  /* Safari 4+ */
  -moz-animation: exploreBounce2 1.5s infinite;
  /* Fx 5+ */
  -o-animation: exploreBounce2 1.5s infinite;
  /* Opera 12+ */
  animation: exploreBounce2 1.5s infinite;
  /* IE 10+, Fx 29+ */
}

@keyframes exploreBounce2 {
  0%, 20%, 50%, 80%, 100% {
    min-height: 50px;
  }
  40% {
    min-height: 75px;
  }
  60% {
    min-height: 60px;
  }
}
@keyframes exploreBounce {
  0% {
    min-height: 50px;
  }
  50% {
    min-height: 75px;
  }
  100% {
    min-height: 50px;
  }
}
/*
3.0 - Panel style END
*/
/*
4.0 - Sliders START
*/
/*
4.0 - Sliders END
*/
/*
5.0 - Buttons START
*/
.lineBtn {
  display: inline-flex;
  cursor: pointer;
}
.lineBtn .lineText {
  padding-left: 7px;
  transition: 0.3s;
  color: #fff;
  font-weight: 500;
}
.lineBtn .lineWhite {
  height: 5px;
  width: 50px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  transition: 0.3s;
  transform-origin: 50% 50%;
  margin-top: 7px;
  padding-right: 7px;
}
.lineBtn .lineGrey {
  height: 5px;
  width: 50px;
  border-top: 1px solid #6b716c;
  border-bottom: 1px solid #6b716c;
  transition: 0.3s;
  transform-origin: 50% 50%;
  margin-top: 7px;
}

.lineBtn:hover .lineWhite, .lineBtn:hover .lineGrey {
  transform: rotate(-45deg);
}
.lineBtn:hover .lineText {
  transform: translateX(-10px);
}

.lineBtnReverse {
  display: inline-flex;
  cursor: pointer;
}
.lineBtnReverse .lineText {
  padding-right: 7px;
  transition: 0.3s;
  color: #fff;
  font-weight: 500;
}
.lineBtnReverse .lineWhite {
  height: 5px;
  width: 50px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  transition: 0.3s;
  transform-origin: 50% 50%;
  margin-top: 7px;
}
.lineBtnReverse .lineGrey {
  height: 5px;
  width: 50px;
  border-top: 1px solid #6b716c;
  border-bottom: 1px solid #6b716c;
  transition: 0.3s;
  transform-origin: 50% 50%;
  margin-top: 7px;
}

.search-results ul li {
  list-style: none;
}

#customer_login p {
  color: #fff;
}

#loginform label {
  display: none;
}
#loginform .login-submit {
  text-align: right;
}
#loginform .login-submit input {
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s ease;
}
#loginform .login-submit input:hover {
  color: #995e3a;
}

span.select2-container {
  max-width: 320px;
}

span.select2-container--default .select2-selection--single {
  border: none;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-left: 1px solid #6b716c;
  border-bottom: 1px solid #6b716c;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  color: #6b716c;
  padding-left: 5px;
  width: 100%;
  max-width: 320px;
  outline: 0;
  border-radius: 0;
}

span.select2-container .select2-selection--single .select2-selection__rendered {
  font-family: "Prompt", sans-serif;
  font-size: 14px;
}

.table-basket input[type=submit], .table-basket button.button {
  background-color: #003345 !important;
  transition: 0.3s ease;
  color: #fff;
}
.table-basket input[type=submit]:hover, .table-basket button.button:hover {
  opacity: 0.8;
}

div.woocommerce table.shop_table td {
  border-top: 1px solid #6b716c;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #142121;
  max-width: 420px;
}

div.woocommerce table.shop_table {
  max-width: 701px;
  border: none;
  border-radius: 0;
}

.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  border-top: 1px solid #6b716c !important;
}

div#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: transparent;
}

#order_review table.shop_table.woocommerce-checkout-review-order-table {
  display: none;
}

div.woocommerce form .form-row {
  width: 100%;
  display: block;
  margin: 10px 0;
}

div.woocommerce form .form-row-last, div.woocommerce-page form .form-row-last,
div.woocommerce form .form-row-first, div.woocommerce-page form .form-row-first {
  float: none;
  width: 100%;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #003345 !important;
  transition: 0.3s ease;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  opacity: 0.8;
}

.lineBtnReverse:hover .lineWhite, .lineBtnReverse:hover .lineGrey {
  transform: rotate(45deg);
}
.lineBtnReverse:hover .lineText {
  transform: translateX(10px);
}

.woocommerce-checkout #payment .payment_method_stripe label[for=payment_method_stripe], #add_payment_method #payment .payment_method_stripe label[for=payment_method_stripe] {
  padding-left: 0 !important;
}

/*
5.0 - Buttons Form END
*/
/*
6.0 - Keyframes START
*/
/*
6.0 - Keyframes END
*/
/*
7.0 - SVG animations START
*/
/*
7.0 - SVG animations END
*/
/*
8.0 - Media queries START
*/
@media only screen and (min-width: 1200px) {
  .col-lg-15 {
    flex: 0 0 22.22%;
    max-width: 22.22%;
  }
}
@media only screen and (max-width: 1605px) {
  .header .menu > ul > li {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .menu .menuIcon {
    display: block !important;
  }
  .menu > ul {
    display: none !important;
  }
  .menu .mobileMenu {
    display: block !important;
  }
}
@media only screen and (max-width: 1200px) {
  .stockItem .stockTexture {
    top: 5px !important;
    left: 30px !important;
  }
}
@media screen and (max-height: 640px) {
  .landingImgSmall .landingPrev, .landingImgSmall .landingNext {
    top: unset !important;
    bottom: auto;
    height: 47px;
  }
}
@media only screen and (max-width: 992px) {
  .imageColumn {
    height: 350px;
  }

  .landingImgLarge, .landingImgSmall {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  .landingImgLarge h3, .landingImgSmall h3 {
    margin-left: 0 !important;
  }
  .landingImgLarge .landingPrev, .landingImgLarge .landingNext, .landingImgSmall .landingPrev, .landingImgSmall .landingNext {
    top: unset !important;
    bottom: 0;
    height: 47px;
  }

  .landingImgSmall {
    height: unset !important;
    min-height: 50vh;
  }

  .filter {
    position: static !important;
  }

  .selectFilter {
    top: 25px !important;
  }

  .accountDetails input {
    margin-left: 0 !important;
  }

  .socialMedia {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 45px !important;
  }

  h2 {
    font-size: 35px !important;
  }

  .checkout input[type=radio], .checkout img {
    margin-right: 3px !important;
  }
}
@media only screen and (max-width: 576px) {
  .landingExplore {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  h1 {
    font-size: 25px !important;
  }
}
/*
8.0 - Media queries END
*/
/*
9.0 - Imports START
*/
/*Gun Stock START*/
.classifications h3 {
  opacity: 0.25;
  cursor: pointer;
}

.class1Content, .class2Content, .class3Content {
  display: none;
}

.gunClassActive {
  opacity: 1 !important;
}

body.scroll-lock {
  overflow: hidden;
  height: 100vh;
}

a.toggle-filters {
  margin-top: 30px;
  text-align: center;
  width: 100%;
  display: block;
}

.filter-close-wrap {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 30px;
  text-align: right;
  z-index: 10000000;
  max-width: 100% !important;
}

.page-id-81 .filter {
  position: -webkit-sticky;
  position: sticky;
  top: 89px;
  z-index: 100;
  height: fit-content;
  overflow: auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .page-id-81 .filter {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
    overflow: auto;
  }
  .page-id-81 .filter.filter-show {
    opacity: 1;
    pointer-events: all;
  }
  .page-id-81 .filter > * {
    max-width: 600px;
    margin: auto;
  }
}
.page-id-81 .filter h2 {
  color: #142121;
  font-size: 30px;
}
.page-id-81 .filter p {
  font-weight: 700;
  color: #142121;
  margin: 0;
  transition: 0.3s ease;
  border-bottom-style: solid;
  border-color: grey;
  border-width: thin;
  padding-bottom: 4px;
  padding-top: 4px;
}
.page-id-81 .filter .filterRadios {
  color: #142121;
  font-weight: bold;
}
.page-id-81 .filter .filterRadios label {
  margin-right: 5px;
  cursor: pointer;
}
.page-id-81 .filter .filterRadios label input {
  position: absolute;
  opacity: 0;
}
.page-id-81 .filter .filterRadios label input:checked + p {
  color: #003345;
}
.page-id-81 .filter .filterRadios label:hover p {
  color: #003345;
}
.page-id-81 .filter .filterOption {
  position: relative;
  cursor: pointer;
}
.page-id-81 .filter .filterOption:hover p {
  color: #003345;
}
.page-id-81 .filter .filterOption:hover .stockPlus span {
  background-color: #003345;
}
.page-id-81 .filter .filterOption input, .page-id-81 .filter .filterOption .selectedFilters {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  outline: 0;
  color: #142121;
  font-weight: 600;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  cursor: pointer;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-left: 15px;
}
@media screen and (max-width: 500px) {
  .page-id-81 .filter .filterOption input, .page-id-81 .filter .filterOption .selectedFilters {
    width: 100%;
  }
}
.page-id-81 .filter .filterOption .selectFilter {
  max-height: 0;
  transition: 0.3s;
  overflow: hidden;
  width: 100%;
  left: 0;
  padding: 0 4px 0 15px;
  top: 66px;
  z-index: 101;
}
.page-id-81 .filter .filterOption .selectFilter ul {
  list-style: none;
  direction: rtl;
  color: #142121;
  opacity: 0;
  transition: 0.6s;
  padding-right: 0;
}
.page-id-81 .filter .filterOption .selectFilter ul li {
  background-image: url(/wp-content/themes/london-gun-company/images/icons/empty-select.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 18px;
  padding-right: 25px;
}
.page-id-81 .filter .filterOption .selectFilter ul li span {
  color: #142121;
  font-weight: 600;
  direction: ltr;
  display: inline-block;
  font-size: 1rem;
}
.page-id-81 .filter .filterOption .selectFilter .filterItemActive {
  color: #003345;
  background-image: url(/wp-content/themes/london-gun-company/images/icons/full-select.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 18px;
  padding-right: 25px;
}
.page-id-81 .filter .filterOption .selectFilter .filterItemActive span {
  color: #003345;
}
.page-id-81 .filter .filterOption select:focus {
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: unset;
  outline: 0;
  color: black;
  font-weight: 700;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
}
.page-id-81 .filter .filterOption .stockPlus {
  position: absolute;
  right: 20px;
  top: -10px;
  pointer-events: none;
}
.page-id-81 .filter .filterOption .stockPlus span {
  background-color: #003345;
  position: absolute;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}
.page-id-81 .filter .filterOption .stockPlus span:nth-child(1) {
  top: 20px;
  width: 16px;
  right: 0;
  height: 2px;
}
.page-id-81 .filter .filterOption .stockPlus span:nth-child(2) {
  top: 13px;
  height: 16px;
  right: 7px;
  width: 2px;
}
.page-id-81 .filter .filterActive .selectFilter {
  max-height: 450px !important;
  overflow: visible;
}
.page-id-81 .filter .filterActive .selectFilter ul {
  opacity: 1 !important;
}
.page-id-81 .filter .filterActive .stockPlus span:nth-child(2) {
  transform: rotate(90deg);
}

.stockItem {
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  align-items: end;
  display: flex;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .stockItem .stockItemUpper {
    margin-left: auto;
    margin-right: auto;
  }
}
.stockItem .stockTexture {
  position: absolute;
  z-index: 10;
  top: 20%;
  left: -10px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: black;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.stockItem .stockImage {
  min-height: 250px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 1400px) {
  .stockItem .stockImage {
    min-height: 150px;
  }
}
@media only screen and (max-width: 579px) {
  .stockItem .stockImage {
    background-size: contain;
  }
}
.stockItem .stockDescription {
  background-color: white;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
}
.stockItem .stockDescription hr {
  border-top: 1px solid #142121;
  width: 100%;
}
.stockItem .stockDescription h3, .stockItem .stockDescription p, .stockItem .stockDescription a {
  color: #142121;
  padding-top: 20px;
}
.stockItem .stockDescription a {
  transition: 0.3s ease;
}
.stockItem .stockDescription a:hover {
  color: #995e3a;
}
.stockItem .stockDescription p {
  font-size: 17px;
}
@media screen and (max-width: 1500px) {
  .stockItem .stockDescription p {
    font-size: 13px;
  }
}
.stockItem .stockDescription table {
  min-height: 360px;
}
.stockItem .stockDescription table td {
  width: 50%;
}

.ammoStock .row {
  margin-left: 0;
  margin-right: 0;
}

.stockItemSm {
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
  padding-bottom: 100px;
}
.stockItemSm .stockImage {
  min-height: 310px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: -22px;
  margin-right: -22px;
}
.stockItemSm .stockDescription {
  background-color: #003345;
  padding: 15px;
  cursor: pointer;
  height: 140px;
  position: absolute;
  bottom: 0;
  width: calc(100% - 6px);
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  transition: 0.3s;
  overflow: hidden;
}
.stockItemSm .stockDescription hr {
  border-top: 1px solid white;
}
.stockItemSm .stockDescription h3, .stockItemSm .stockDescription p, .stockItemSm .stockDescription a {
  color: white;
  font-weight: 400;
  margin: 0;
}
@media screen and (max-width: 1440px) {
  .stockItemSm .stockDescription h3 {
    font-size: 17px;
  }
}
.stockItemSm .stockDescription a {
  font-size: 20px;
}
.stockItemSm .stockDescription a:hover {
  color: #995e3a;
}
.stockItemSm .stockDescription p {
  font-size: 14px;
  margin: 0;
}
.stockItemSm .stockDescription .stockPlus {
  position: absolute;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  bottom: 0;
  height: 42px;
  z-index: 50;
}
.stockItemSm .stockDescription .stockPlus span {
  background-color: white;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}
.stockItemSm .stockDescription .stockPlus:hover span {
  background-color: #995e3a;
}
.stockItemSm .stockDescription .stockPlus span:nth-child(1) {
  top: 20px;
  width: 16px;
  height: 2px;
}
.stockItemSm .stockDescription .stockPlus span:nth-child(2) {
  top: 13px;
  height: 16px;
  width: 2px;
}
.stockItemSm .stockDescription .stockHidden {
  opacity: 0;
  transition: 0.3s;
}
.stockItemSm .stockDescription .stockHidden p {
  font-size: 11px;
}
.stockItemSm .stockDescriptionActive {
  height: 100%;
  overflow: visible;
}
.stockItemSm .stockDescriptionActive h3 {
  height: auto !important;
}
.stockItemSm .stockDescriptionActive .stockHidden {
  opacity: 1 !important;
}
.stockItemSm .stockDescriptionActive .stockPlus span:nth-child(2) {
  transform: rotate(90deg);
}

.scrolling-products {
  padding: 0 80px;
}
@media screen and (max-width: 1400px) {
  .scrolling-products {
    padding: 0 0;
  }
}

.stockSlider {
  position: relative;
  padding: 0 80px;
}
@media screen and (max-width: 1025px) {
  .stockSlider {
    padding: 0 0px;
  }
}
.stockSlider .swiper-slide {
  overflow: hidden;
}
.stockSlider .swiper-slide > .row {
  margin-left: 0;
  margin-right: 0;
}
.stockSlider::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  width: 100vw;
  bottom: 0;
  z-index: 50;
  background-image: url("/wp-content/themes/london-gun-company/images/loading.apng");
  background-repeat: no-repeat;
  background-position: top center;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  left: -100vw;
  transition: opacity 0.3s ease;
}
.stockSlider.loading::after {
  opacity: 1;
  left: 0;
}

.sliderNav {
  position: absolute;
  top: 10px;
  min-width: 200px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
.sliderNav.sliderNavBottom {
  position: relative;
  margin-bottom: 30px;
}
.sliderNav .swiper-button-next,
.sliderNav .swiper-button-prev {
  position: static;
  background-image: unset !important;
  height: 5px;
  outline: 0;
  text-align: center;
}
.sliderNav .swiper-pagination {
  position: static;
}
.sliderNav .swiper-pagination .swiper-pagination-bullet {
  margin-left: 10px;
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0) !important;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  outline: 0;
  position: relative;
  color: #cccccc;
  opacity: 1;
  padding-right: 20px;
}
.sliderNav .swiper-pagination .swiper-pagination-bullet::after {
  content: " ";
  display: block;
  width: 7px;
  height: 7px;
  background: black;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  right: -6px;
}
.sliderNav .swiper-pagination .swiper-pagination-bullet:last-child {
  padding-right: 0;
}
.sliderNav .swiper-pagination .swiper-pagination-bullet:last-child::after {
  display: none;
}
.sliderNav .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #000000;
}

.tableRow {
  overflow: auto;
}
.tableRow.reveal-panel thead tr {
  transition-delay: 0s !important;
}
.tableRow.reveal-panel tr {
  opacity: 0;
  transform: translateX(-200px);
  transition: 0.6s ease;
}
.tableRow.reveal-panel tr:nth-child(1) {
  transition-delay: 150ms;
}
.tableRow.reveal-panel tr:nth-child(2) {
  transition-delay: 300ms;
}
.tableRow.reveal-panel tr:nth-child(3) {
  transition-delay: 450ms;
}
.tableRow.reveal-panel tr:nth-child(4) {
  transition-delay: 600ms;
}
.tableRow.reveal-panel tr:nth-child(5) {
  transition-delay: 750ms;
}
.tableRow.reveal-panel tr:nth-child(6) {
  transition-delay: 900ms;
}
.tableRow.reveal-panel tr:nth-child(7) {
  transition-delay: 1050ms;
}
.tableRow.reveal-panel tr:nth-child(8) {
  transition-delay: 1200ms;
}
.tableRow.reveal-panel tr:nth-child(9) {
  transition-delay: 1350ms;
}
.tableRow.reveal-panel tr:nth-child(10) {
  transition-delay: 1500ms;
}
.tableRow.reveal-panel tr:nth-child(11) {
  transition-delay: 1650ms;
}
.tableRow.reveal-panel tr:nth-child(12) {
  transition-delay: 1800ms;
}
.tableRow.reveal-panel tr:nth-child(13) {
  transition-delay: 1950ms;
}
.tableRow.reveal-panel tr:nth-child(14) {
  transition-delay: 2100ms;
}
.tableRow.reveal-panel tr:nth-child(15) {
  transition-delay: 2250ms;
}
.tableRow.reveal-panel tr:nth-child(16) {
  transition-delay: 2400ms;
}
.tableRow.reveal-panel tr:nth-child(17) {
  transition-delay: 2550ms;
}
.tableRow.reveal-panel tr:nth-child(18) {
  transition-delay: 2700ms;
}
.tableRow.reveal-panel tr:nth-child(19) {
  transition-delay: 2850ms;
}
.tableRow.reveal-panel tr:nth-child(20) {
  transition-delay: 3000ms;
}
.tableRow.reveal-panel.reveal tr {
  transform: translateX(0);
  opacity: 1;
}

.tableHead th {
  padding: 10px;
  color: #6b716c;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
  background-color: #003345;
}

.tableContent td {
  padding: 10px;
}
.tableContent td p {
  margin: 0;
}

.tableContent:nth-child(2n) {
  background-color: #cfcfcc;
}

.filter-guns {
  cursor: pointer;
  opacity: 0;
}

.filterCategory h3 {
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 6px;
}
.filterCategory.activeFilter h3 {
  color: #003345;
}

.listing-price p {
  white-space: nowrap;
}

.condition-text p {
  white-space: nowrap;
}

.gunClass2 {
  text-align: center;
}

.classifications h3 {
  text-align: center;
}

/*Gun Stock END*/
.woocommerce-form-login-toggle .woocommerce-info {
  background: #003345;
  border: none;
  color: #fff;
  padding: 8px 12px;
  /* max-width: 320px; */
  max-width: 420px;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.woocommerce-form-login-toggle .woocommerce-info a {
  color: #fff;
}

.woocommerce-form-login-toggle .woocommerce-info::before {
  display: none;
}

.woocommerce form .form-row input.input-text {
  max-width: 420px;
}

.woocommerce-checkout-payment {
  max-width: 420px;
}

.woocommerce-checkout #payment div.form-row,
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
}

.gun-room-item {
  margin-top: 30px;
}
.gun-room-item .stockItem {
  flex-wrap: nowrap;
  flex-direction: column;
}
.gun-room-item .stockDescription {
  padding: 0 25px;
}
.gun-room-item .stockDescription h3 {
  margin: 0;
}
.gun-room-item .stockDescription .condition-text {
  padding: 0;
}
.gun-room-item .stockDescription .condition-text p {
  padding: 0;
}
.gun-room-item .stockDescription .stockExcerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.gun-room-item .stockDescription .specTable {
  margin: 16px 0;
  min-height: 10px;
}
.gun-room-item .stockDescription .specTable p {
  margin: 0;
  padding-top: 6px;
}
.gun-room-item .stockDescription .specTable .specTableLast {
  text-align: end;
}
.gun-room-item .stockImageGallery {
  justify-content: flex-start;
  margin: 0;
  margin-top: 4px;
  margin-bottom: 5px;
  padding: 0 25px;
}
.gun-room-item .stockImageGallery .stockImageGalleryItem {
  min-height: 0;
  padding: 0 2px;
  cursor: pointer;
}
.gun-room-item .stockImageGallery .stockImageGalleryItem:first-child {
  padding-left: 0;
}
.gun-room-item .stockImageGallery .stockImageGalleryItem:last-child {
  padding-right: 0;
}
.gun-room-item .stockImageGallery .stockImageGalleryItem div {
  background-position: center;
  height: 60px;
  background-repeat: no-repeat;
  background-size: cover;
}
.gun-room-item .stockImage {
  margin: 0 25px;
}
.gun-room-item .stockImage a.active-img {
  z-index: 2;
}
.gun-room-item .specTableWrapper {
  width: 100%;
}
.gun-room-item .button-wrap {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
}
.gun-room-item .enquiry-wrapper {
  height: 50px;
  background-color: #003345;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  border-right: solid;
  border-right-color: white;
  margin-top: auto;
}
.gun-room-item .enquiry-wrapper p {
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: white;
}
.gun-room-item .more-info-wrapper {
  height: 50px;
  background-color: #142121;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  margin-top: auto;
}
.gun-room-item .more-info-wrapper p {
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 0px;
  color: white;
}

.page-id-63 .container-fluid .contactFooter input.wpcf7-submit {
  text-align: center !important;
  display: block !important;
  width: 100% !important;
  float: none !important;
  padding: 20px !important;
  background: #003345 !important;
  color: #fff !important;
}

.padding-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.finance-gun-single .finance-wrap {
  max-width: 100%;
  margin: 10px 0;
}
.finance-gun-single .finance-wrap p {
  max-width: 100%;
}

.finance-enquire .contactFooter {
  margin: 10px 0;
}
.swiper-container.gun-room-gallery-swiper {
  width: 100%;
}
.swiper-container.gun-room-gallery-swiper .col-3 {
  width: 100%;
  max-width: 100%;
}

.stockItem .stockItemUpper {
  width: 100%;
}

.specTable {
  margin: 16px 0;
  min-height: 10px;
}
.specTable p {
  margin: 0;
  padding-top: 6px;
}

.p-full-width p {
  max-width: 100%;
}

a.em-link {
  text-decoration: underline !important;
  text-transform: uppercase;
}

textarea[name=message] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
textarea[name=message]::-webkit-scrollbar {
  display: none;
}

/*Services START*/
.post-type-archive-product .services .serviceBox h3 {
  min-height: 140px;
}

.services .col-12 {
  padding: 2.5px 0;
}
.services .serviceBox {
  position: relative;
  padding: 15px;
  transition: 0.5s;
  margin: 2.5px;
  height: 100%;
}
.services .serviceBox .serviceImage {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.services .serviceBox h3 {
  color: white;
  padding-bottom: 70px;
  font-weight: 600;
}
.services .serviceBox .serviceBoxContent {
  opacity: 0;
  transition: 0.5s;
}
.services .serviceBox .serviceBoxContent hr {
  background-color: white;
}
.services .serviceBox .serviceBoxContent p {
  color: white;
}
.services .serviceBox .serviceBoxContent a {
  color: white;
}
.services .serviceBox:hover .serviceBoxContent {
  opacity: 1 !important;
}
.services .serviceBox:hover {
  background-color: rgba(0, 51, 69, 0.6);
}

/*Services END*/
/*Species Table START*/
.speciesTable thead tr {
  background-color: #003345;
}
.speciesTable thead tr th {
  border: 0;
}
.speciesTable thead tr p {
  color: #6b716c;
  margin-bottom: 0;
  font-weight: 500;
}
.speciesTable tbody tr:nth-child(2n) {
  background-color: #cfcfcc;
}
.speciesTable tbody tr td {
  border: 0;
}
.speciesTable tbody tr td p {
  margin-bottom: 0;
}

/*Species Table END*/
/*Buying Guide START*/
.gunClass .gunImg {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
}
.gunClass .gunContent {
  background-color: #003345;
  padding: 20px;
}
.gunClass .gunContent a:hover {
  color: #995e3b;
}

/*Buying Guide END*/
/*Product Info START*/
.productGallery .swiper-container.gallery-top .swiper-slide {
  min-height: 80vh;
  background: no-repeat 50% 50%;
  background-size: cover;
}
.productGallery .swiper-container.gallery-thumbs .swiper-slide {
  min-height: 200px;
  background: no-repeat 50% 50%;
  background-size: cover;
}

.gunGallery .swiper-container.gallery-top .swiper-slide {
  min-height: 60vh;
  background: no-repeat 50% 50%;
  background-size: cover;
}
.gunGallery .swiper-container.gallery-thumbs {
  height: 100%;
}
.gunGallery .swiper-container.gallery-thumbs .swiper-slide {
  max-height: 141px;
  background: no-repeat 50% 50%;
  background-size: cover;
}

.productInfo {
  max-width: 420px;
}
.productInfo .addToBasket .quantity {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}
@media screen and (max-width: 600px) {
  .productInfo .addToBasket .quantity {
    display: flex;
  }
}
.productInfo .addToBasket .quantity .quantityBtn {
  position: relative;
  flex: 1 1 auto;
}
.productInfo .addToBasket .quantity .quantityBtn:after {
  clear: both;
  content: " ";
  display: block;
}
@media screen and (max-width: 600px) {
  .productInfo .addToBasket .quantity .quantityBtn {
    max-width: 9999px;
    flex: 1 1 100%;
  }
}
.productInfo .addToBasket .quantity .quantityBtn span {
  position: absolute;
  font-size: 45px;
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  line-height: 0;
  display: flex;
  height: 50%;
  align-items: center;
  overflow: hidden;
}
.productInfo .addToBasket .quantity .quantityBtn span.disabled {
  opacity: 0.2;
}
@media screen and (max-width: 600px) {
  .productInfo .addToBasket .quantity .quantityBtn span {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: block;
    bottom: auto !important;
    width: 50%;
    float: right;
    font-size: 50px;
    line-height: 50px;
    text-align: center;
  }
}
.productInfo .addToBasket .quantity .quantityBtn span.add {
  top: 0;
  right: 0;
}
.productInfo .addToBasket .quantity .quantityBtn span.subtract {
  bottom: 0;
  right: 0;
}
.productInfo .addToBasket .quantity input {
  width: 40px;
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-size: 30px;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  outline: 0;
  padding: 0;
  text-align: right;
  flex: 0 1 40px;
}
@media screen and (max-width: 600px) {
  .productInfo .addToBasket .quantity input {
    flex: 1 1 auto;
    display: block;
    width: 100%;
  }
}

.gallery-lg {
  min-height: 50vh;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-sm {
  min-height: 75vh;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 15px;
  margin-bottom: 15px;
}

/*Product Info END*/
/*Basket START*/
.table.table-basket thead {
  border-bottom: 1px solid #6b716c;
}
.table.table-basket td {
  padding: 0;
  border: 0;
}
.table.table-basket td img {
  height: 150px;
  width: auto;
  padding-right: 20px;
}
.table.table-basket th {
  padding: 0;
  border: 0;
}
.table.table-basket .productEntry td.basketBlue {
  height: 150px;
  width: 20px;
  background-color: #003345;
}
.table.table-basket .productEntry td.basketTitle {
  width: 320px;
}
.table.table-basket .productEntry td.basketTitle h3 {
  font-size: 20px;
}
.table.table-basket .productEntry .basketPrice {
  width: 100px;
}
.table.table-basket .productEntry .quantity {
  display: flex;
}
@media screen and (max-width: 600px) {
  .table.table-basket .productEntry .quantity {
    display: flex;
  }
}
.table.table-basket .productEntry .quantity .quantityBtn {
  position: relative;
  flex: 1 1 auto;
}
.table.table-basket .productEntry .quantity .quantityBtn:after {
  clear: both;
  content: " ";
  display: block;
}
@media screen and (max-width: 600px) {
  .table.table-basket .productEntry .quantity .quantityBtn {
    max-width: 9999px;
    flex: 1 1 100%;
  }
}
.table.table-basket .productEntry .quantity .quantityBtn span {
  position: absolute;
  font-size: 25px;
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  line-height: 0;
  display: flex;
  height: 50%;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .table.table-basket .productEntry .quantity .quantityBtn span {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    display: block;
    bottom: auto !important;
    width: 50%;
    float: right;
    font-size: 50px;
    line-height: 50px;
    text-align: center;
  }
}
.table.table-basket .productEntry .quantity .quantityBtn span.add {
  top: 0;
  right: 0;
}
.table.table-basket .productEntry .quantity .quantityBtn span.subtract {
  bottom: 0;
  right: 0;
}
.table.table-basket .productEntry .quantity input {
  width: 40px;
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-size: 20px;
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  outline: 0;
  padding: 0;
  text-align: right;
  flex: 0 1 40px;
}
@media screen and (max-width: 600px) {
  .table.table-basket .productEntry .quantity input {
    flex: 1 1 auto;
    display: block;
    width: 100%;
  }
}

.subtotal {
  border-top: 1px solid #6b716c;
  max-width: 669px;
  margin-left: 0;
  margin-right: 0;
}
.subtotal h3 {
  margin-top: 10px;
  font-size: 16px;
}
.subtotal h3 span {
  font-size: 24px;
}

.checkout input[type=text], .checkout input[type=email], .checkout input[type=password], .checkout input[type=tel] {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  border-left: 1px solid #6b716c;
  border-bottom: 1px solid #6b716c;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  color: #6b716c;
  padding-left: 5px;
  width: 100%;
  max-width: 320px;
  outline: 0;
  border-radius: 0;
}
.checkout input[type=submit] {
  background-color: rgba(0, 0, 0, 0);
  border: 0;
  outline: 0;
  font-family: "Prompt", sans-serif;
  font-size: 13px;
  color: black;
  cursor: pointer;
}
.checkout input[type=radio] {
  margin-right: 7px;
}
.checkout img {
  margin-right: 7px;
}
.checkout .text-right {
  max-width: 320px;
}

.woocommerce-message::before {
  color: white !important;
  top: 9px;
}

.woocommerce-message {
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: white;
  background-color: #003345;
  border: none;
  max-width: 420px;
  padding: 8px 12px 8px 44px;
}

.single_add_to_cart_button {
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

/*Basket END*/
/*Account START*/
.accountHeading {
  background-color: #003345;
  padding-top: 10px;
  padding-bottom: 10px;
}
.accountHeading h4 {
  font-weight: 500;
  margin: 0;
  display: inline-block;
  color: white;
}
.accountHeading .account-message {
  display: block;
}
.accountHeading .account-message p {
  font-weight: bold;
  margin: 10px 0 0 0;
  max-width: 100%;
}
.accountHeading .account-message ul {
  margin-bottom: 0;
}
.accountHeading .account-message ul li {
  font-family: "Prompt", sans-serif;
  font-size: 14px;
}
.accountHeading .account-message.account-error {
  color: #b90000;
}
.accountHeading .account-message.account-error p {
  color: #b90000;
}
.accountHeading .account-message.account-success {
  color: #00730b;
}
.accountHeading .account-message.account-success p {
  color: #00730b;
}
.accountHeading a {
  font-weight: 400;
  margin: 0;
}

.toggle-editable .cancel-account-details,
.toggle-editable .save-account-details,
.toggle-editable .password-edit {
  display: none;
}
.toggle-editable .accountDetails input, .toggle-editable .accountDetails select {
  border-left: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.toggle-editable.enable-editing .password-edit {
  display: block;
}
.toggle-editable.enable-editing .cancel-account-details,
.toggle-editable.enable-editing .save-account-details {
  display: initial;
  margin-left: 20px;
}
.toggle-editable.enable-editing .toggle-edit-options {
  display: none;
}
.toggle-editable.enable-editing .accountDetails input, .toggle-editable.enable-editing .accountDetails select {
  border-left: 1px solid #6b716c;
  border-bottom: 1px solid #6b716c;
}

.woocommerce .woocommerce-customer-details address {
  border: none;
}

.accountDetails input, .accountDetails select {
  margin-left: 25px;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: 0;
  border-left: 1px solid #6b716c;
  border-bottom: 1px solid #6b716c;
  outline: 0;
  padding-left: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
}
.accountDetails input.invalid-field, .accountDetails select.invalid-field {
  border-color: #b90000;
}
.accountDetails select {
  padding-left: 0;
}
.accountDetails select[disabled] {
  color: #000;
  height: 24px;
  padding-left: 4px;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.blueSide {
  width: 30px;
  height: 150px;
  background-color: #003345;
}

.orderDetails h4 {
  font-weight: 500;
}
.orderDetails p {
  font-weight: 500;
  font-size: 20px;
}
.orderDetails span {
  font-family: "Prompt", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

/*Account END*/
/*Blog START*/
#archives-2 {
  list-style: none;
}

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

.blogDate {
  font-weight: 500;
  font-size: 18px;
  color: white;
  opacity: 1;
  transition: 0.5s;
  margin-bottom: 0;
  position: absolute;
  bottom: 15px;
  pointer-events: none;
}

.serviceBox:hover .blogDate {
  opacity: 0;
}

a.blogLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

#secondary {
  position: sticky;
  top: 100px;
}

/*Blog END*/
.no-anim {
  transition-duration: 0s !important;
}
.no-anim::before {
  transition-duration: 0s !important;
}

.white-popup {
  width: 100%;
  max-width: 900px;
  margin: auto;
}
.white-popup .contactFooter {
  padding-left: 20px;
  padding-right: 20px;
}

.cookie {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50000;
  background: #142121;
  color: #fff;
  text-align: center;
  line-height: 25px;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  padding: 15px 10px;
}
.cookie a {
  color: #fff;
  text-decoration: underline !important;
  font-weight: normal;
}

a.block-link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: block;
}

.reveal-panel {
  overflow: hidden;
}

@media (max-width: 768px) {
  .reveal-panel {
    overflow: scroll;
  }
}
@media (min-width: 801px) and (max-width: 1280px) {
  .cart-filter-sm {
    max-width: 25% !important;
  }
}
@media (max-width: 1280px) {
  .gun-price-small {
    padding-left: 0px;
  }

  .spec-table-sm {
    padding-right: 0px;
  }

  .spec-table-td-sm {
    padding-right: 15px;
  }
}
@media (min-width: 1280px) {
  .checkerboard-left-lg {
    margin-left: 33.33333%;
  }
}
@media (max-width: 768px) {
  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.open-hours-popup {
  position: relative;
  max-width: 910px;
  margin-left: auto;
  margin-right: auto;
  background-color: #cfcfcc;
  /* padding: 2%; */
}
.open-hours-popup h2 {
  color: #142121;
}
@media only screen and (max-width: 992px) {
  .open-hours-popup h2 {
    font-size: 25px !important;
  }
}
.open-hours-popup p {
  font-size: 16px;
  max-width: 100%;
  color: #142121;
  margin-bottom: 6px !important;
}
.open-hours-popup a {
  padding: 5px 15px;
  background-color: #003345;
  color: white;
}
.open-hours-popup strong {
  font-weight: 700;
}
.open-hours-popup .row {
  /* margin-bottom: 100px; */
}
.open-hours-popup .link-padding {
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}
.open-hours-popup .link-padding a {
  padding: 0;
  width: 50%;
  max-width: 50%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 18px;
}
.open-hours-popup .link-padding a:nth-of-type(2) {
  background-color: #6b716c;
}
@media only screen and (max-width: 400px) {
  .open-hours-popup .link-padding {
    flex-wrap: wrap;
  }
  .open-hours-popup .link-padding a {
    width: 100%;
    max-width: 100%;
    height: 50px;
  }
}
@media only screen and (max-width: 992px) {
  .open-hours-popup {
    /* padding: 30px; */
  }
  .open-hours-popup .side-order-1 {
    /* padding: 30px; */
  }
}
@media only screen and (max-width: 767px) {
  .open-hours-popup {
    max-width: 450px !important;
  }
  .open-hours-popup .side-order-1 {
    order: 1;
    padding: 30px!important;
  }
  .open-hours-popup .side-order-2 {
    order: 2;
  }
}
#open-hours-popup .wpcf7-spinner {
  animation: spin 1s linear infinite !important;
  background: none !important;
  margin: 5px 0 0 0 !important;
  opacity: 1 !important;;
}

#open-hours-popup .wpcf7-spinner::before {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  border: 5px solid transparent !important;
  border-top-color: #003345 !important;
  background-color: transparent !important;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.4;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*
9.0 - Imports END
*/
.addtocartbtn {
  background: none;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #142121;
  text-decoration: none !important;
  transition: 0.3s ease;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-transform: uppercase;
}
.addtocartbtn:hover {
  color: #995e3a;
}

form.woocommerce-form.woocommerce-form-login.login {
  border: none;
  padding: 0;
}

ul.woocommerce-error a {
  color: #fff;
}

ul.woocommerce-error {
  padding: 8px 12px 8px 40px;
  background: #b81c23;
  color: #fff;
  font-size: 12px;
  max-width: 420px;
  border: none;
  color: #fff;
  max-width: 420px;
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.woocommerce-error::before {
  top: 8px;
  color: #fff;
  left: 13px;
}

div.woocommerce table.shop_table {
  display: table;
  width: 100%;
}

.woocommerce-checkout .container-fluid .woocommerce .woocommerce-message {
  max-width: 700px;
}

.searchArea input[type=submit] {
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
}

.finance-wrap {
  max-width: 400px;
  padding-top: 15px;
  background-color: #cfcfcc;
}
.finance-wrap .row {
  margin: 0;
}
.finance-wrap input[type=text] {
  width: 100%;
  padding-right: 30px;
  padding-left: 15px;
  margin-bottom: 15px;
  border: 0;
  border-radius: 3px;
  background-color: #003345;
  color: white;
  font-size: 14px;
  font-family: "Prompt", sans-serif;
  background-image: url(https://londonguncompany.co.uk/wp-content/uploads/2019/04/arrow-down-sign-to-navigate.png);
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 17px 17px;
  cursor: pointer;
}
.finance-wrap .finance-list {
  position: absolute;
  left: 15px;
  top: 24px;
  width: calc(100% - 30px);
  height: 0;
  margin: 0;
  padding: 5px 15px;
  list-style: none;
  background-color: #003345;
  z-index: 1;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  opacity: 0;
  overflow: hidden;
}
.finance-wrap .finance-list li {
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  color: white;
  transition: 0.3s;
  cursor: pointer;
}
.finance-wrap .finance-list li:hover {
  color: #cfcfcc;
}
.finance-wrap .finance-list.finance-list-active {
  height: auto;
  opacity: 1;
}
.finance-wrap input[type=range] {
  width: 100%;
  max-width: 100px;
  -webkit-appearance: none;
  height: 5px;
  background: grey;
  outline: none;
  margin-top: 10px;
  margin-right: 5px;
}
.finance-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 0;
  background: #003345;
  cursor: pointer;
}
.finance-wrap input[type=range]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 0;
  background: #003345;
  cursor: pointer;
}
.finance-wrap .finance-enquire {
  padding: 0;
}
.finance-wrap .finance-enquire a {
  position: relative;
  width: 100%;
  height: 70px;
  background-color: #003345;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.finance-wrap .range-percent span {
  font-family: "Prompt", sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #142121;
}
@media only screen and (max-width: 1200px) {
  .finance-wrap .range-percent {
    display: block;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 992px) {
  .finance-wrap {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 1400px) and (min-width: 1250px) {
  .header .menu > ul > li {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
}
@media only screen and (max-width: 1250px) {
  .header .menu > ul > li {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
}

.brochure-pdf-cta {
    border: 1px solid black;
    padding: 5px 35px;
}
.brochure-pdf-cta:hover {
  background-color: #003345;
  color: white;
}
h4.brochure-title {
  font-weight: 500;
  text-transform: uppercase;
}
.brochure-intro-text p {
  font-size: 18px;
}
@media only screen and (max-width: 1350px) {
  h4.brochure-title {
    font-size: 11px;
  }
}
@media only screen and (max-width: 992px) {
  .brochurePad {
    padding-left: 50px;
    padding-right: 50px;
  }
  .brochure-pdf-cta {
    padding: 5px 25px;
  }
    h4.brochure-title {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .brochurePad {
    padding-left: 20px;
    padding-right: 20px;
  }
  h4.brochure-title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 530px) {
  h4.brochure-title {
    font-size: 13px;
  }
}
@media only screen and (max-width: 480px) {
  h4.brochure-title {
    font-size: 11px;
  }
}
@media only screen and (min-width: 1800px) {
  h4.brochure-title {
    font-size: 24px;
  }
  .brochure-pdf-cta {
    padding: 10px 45px;
    font-size: 20px;
  }
}
/*# sourceMappingURL=style.css.map */
