:root {
  --text-color: #1E1E1E;
  --text-light: #858585;
  --color-light: #fff;
  --accent-color: #1957F3;
  --light-grey: #eee;
  --dark-bg: #42484f;
}

body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #1E1E1E;
  -webkit-text-size-adjust: 100%;
  font-variant-ligatures: none;
  -webkit-font-variant-ligatures: none;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: greyscale;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
}

h5,
h6 {
  font-weight: 300;
}

h1 span,
.hero-title span,
h2 span {
  font-weight: 300;
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
}

/* Font size */
h1 {
  font-size: 6rem;
}

h2,
.section-title {
  font-size: 4rem;
}

h3 {
  font-size: 3rem;
}

h4 {
  font-size: 2.5rem;
}

h5,
.sub-header {
  font-size: 2rem;
}

h6,
.section-subtitle {
  font-size: 1.2rem;
}

p {
  color: #565656;
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 300;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  text-decoration: none !important;
}

a:hover {
  color: #1957F3;
}

.navbar {
  padding: 1rem 0;
  color: #1E1E1E;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.25);
  -moz-box-shadow: 0 5px 15px 0 rgba(0,0,0,0.25);
  box-shadow: 0 5px 15px 0 rgba(0,0,0,0.25);
}

.navbar-brand {
  color: #1E1E1E;
  font-size: 16px;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.navbar-brand:hover {
  color: black !important;
  text-decoration: none;
}

.navbar-brand img {
  height: 32px;
  vertical-align: middle;
}

/*.navbar .nav-item {*/
  /*margin-right: 15px;*/
/*}*/

.nav-item:hover .nav-link,
.nav-item.focus .nav-link,
.nav-item.active .nav-link {
  color: var(--accent-color);
}

.navbar .nav-link{
  color: #1E1E1E;
  font-size: 14px;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}

.navbar-nav .dropdown-menu {
  border-radius: 0;
}

.navbar-nav .dropdown-item {
  font-size: 13px;
}

.navbar-nav .separator {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
  display: block;
}

.navbar-toggler {
  margin-right: 15px;
  -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler .icon-bar {
  background-color: #1E1E1E;
  height: 3px;
  width: 100%;
  display: block;
  margin-top: 5px;
}

.dropdown-toggle::after {
  vertical-align: middle;
}

.link-cart {
  position: relative;
}

.cart-badge {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  background-color: var(--accent-color);
  color: var(--color-light);
  height: 16px;
  width: 16px;
  line-height: 10px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

.hero {
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-content {
  color: #1E1E1E;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  position: relative;
}

.hero-title {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 6rem;
  text-transform: uppercase;
  margin-top: 90px;
  margin-bottom: 20px;
  line-height: 1;
}

.hero-sub-title {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
}

.button-main,
.cart-link {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: var(--color-light) !important;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--accent-color);
  padding: 1rem 2rem 1rem 3rem !important;
  text-decoration: none !important;
  border: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.button-main::after {
  content: ' \27F6';
  vertical-align: text-bottom;
  margin-left: .5rem;
}

.button-main:hover,
.button-main:focus {
  color: #fff !important;
  background-color: #1d4fcc;
  outline: none;
  box-shadow: none;
}

.button-inverted {
  border: solid 2px var(--accent-color);
  background-color: transparent;
  color: var(--accent-color) !important;
  text-transform: uppercase;
  padding: 8px 25px;
  border-radius: 0;
  -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.button-inverted:hover,
.button-inverted:focus {
  color: #fff !important;
  background-color: var(--accent-color);
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

.button-wide {
  width: 100%;
}

.products-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.products-top .product {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24%;
  margin-bottom: 30px;
  margin-right: 1%;
  background-color: var(--color-light);
  color: var(--text-color);
}

.product h5,
.product h6,
.product p {
  text-decoration: none;
  color: var(--text-color);
  margin-bottom: 0;
}

.products-top .product:hover {
  text-decoration: none;
  color: var(--text-color);
}

.product a:hover {
  text-decoration: none;
}

.product img {
  height: 200px;
  padding: 20px;
  display: block;
  margin: 0 auto;
}

.product .title-container {
  /* border-top: solid 1px #ccc;
  margin-top: 20px; */
  padding: 20px;
  flex: 1;
}

.product .title {
  font-size: 1rem;
}

.product .price {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: var(--accent-color);
  font-size: 0.875rem;
  margin-top: 10px;
}

.product .reg-price,
.product .sale-price {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 0.875rem;
}

.product .sale-price p {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: var(--accent-color);
}

/* .cart-link {
  padding: 0 20px 20px 20px;
  font-size: 0.875rem;
  text-transform: uppercase;
  cursor: pointer;
} */

.section-grey {
  background-color: var(--light-grey);
}

.carousel-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.features {
  display: flex;
  flex-direction: row;
}

.feature-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.feature-item h6 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.features .fas {
  font-size: 2rem;
  color: #2e2e2e;
}

.testimonial {
  padding: 4rem 0;
}

.testimonial h5 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.testimonial h5 span {
  font-weight: 900;
}

.testimonial p {
  color: var(--text-light);
}

.testimonial .fa-quote-left {
  color: #d4d4d4;
}

.page-container {
  padding: 5rem 0;
}

.section-heading {
  padding: 60px 0;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.main-header {
  font-size: 3rem;
  text-align: center;
  letter-spacing: 2px;
}

.header-lg {
  font-size: 5rem;
  text-align: center;
  letter-spacing: 2px;
}

.package img {
  max-width: 100%;
}

.package-content {
  padding: 20px;
}

.package-content h5 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.package-content h6 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}

.package_contents p {
  margin: 5px 0;
}

.package-content .fa {
  color: #06b725;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #ccc;
}

textarea {
  resize: none;
}

input.error,
input[type="checkbox"].error,
select.error {
  color: #D8000C;
  background-color: #FFBABA !important;
  border: 1px solid #D8000C !important;
  -webkit-text-fill-color: red !important;
  -webkit-box-shadow: 0 0 0px 1000px #FFBABA inset;
  box-shadow: 0 0 0px 1000px #FFBABA inset;
}

.qtip-custom {
    background-color: #be1111;
    border-color: #832424;
    border-width: 1px;
    color: #ffffff;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Helvetica", "Arial", sans-serif !important;
    font-weight: 400;
}

#sendmessage {
  color: green;
  border:1px solid green;
  display:none;
  text-align:center;
  padding:15px;
  font-weight:600;
  margin-bottom:15px;
}

#sendmessage.show, #errormessage.show, .show {
  display:block;
}

.package-login {
  padding: 50px;
  text-align: center;
}

.package-login a {
  color: var(--accent-color);
  font-size: 0.875rem;
}

.text-sm {
  font-size: 0.875rem;
}

.hideIt {
  display: none;
}

.alert a {
  color: #856404;
  text-decoration: underline;
}

.text-accent {
  color: #63bb8b;
}

.cart_prod {
  background-color: var(--color-light);
  border: solid 1px var(--light-grey);
  padding: 20px;
  margin-bottom: 15px;
}

.cart_prod_title {
  font-size: 1rem;
  line-height: 1.4rem;
}

.cart_prod_price {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}

.prod-delete {
  display: block;
  margin-top: 10px;
  color: var(--accent-color);
  font-size: 0.875rem;
}

.prod-delete:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.package {
  background-color: var(--color-light);
  border: solid 1px var(--light-grey);
  padding: 20px;
}

.package h3 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.package_contents {
  text-align: left;
  border-bottom: solid 1px #ccc;
}


/* PAGE - BASEKT */

.basket p {
  text-align: left;
  margin: 5px 0;
}

.basket-links {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
}

.wide {
  width: 100%;
}

.checkout-boxes {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  align-items: start;
}

.checkout-box {
  flex: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.form-group input::-webkit-input-placeholder {
  font-size: 0.875rem;
  color: #495057;
}

.form-group input::-moz-placeholder {
  font-size: 0.875rem;
  color: #495057;
}

.form-group input:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #495057;
}

.form-group input:-moz-placeholder {
  font-size: 0.875rem;
  color: #495057;
}

.form-group textarea::-webkit-input-placeholder {
  font-size: 0.875rem;
  color: #495057;
}

.form-group textarea::-moz-placeholder {
  font-size: 0.875rem;
  color: #495057;
}

.form-group textarea:-ms-input-placeholder {
  font-size: 0.875rem;
  color: #495057;
}

.form-group textarea:-moz-placeholder {
  font-size: 0.875rem;
  color: #495057;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-size: 0.875rem;
  color: #495057;
}

.form-group a {
  color: var(--text-color);
  text-decoration: underline;
}

.cards-img {
  height: 25px;
}

.product-container {
  background-color: var(--color-light);
  padding: 20px;
  margin: 70px 0;
}

.striketrough {
  text-decoration: line-through;
}

.link-main {
  color: var(--text-color);
  text-decoration: underline;
}

.text-container a {
  color: var(--text-color);
  text-decoration: underline;
}

.account-list a {
  color: var(--text-color);
  transition: .5s color;
}

.account-list a .fa {
  color: var(--text-color);
  margin-right: 5px;
}

.account-list a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

footer {
  padding: 50px 0;
  background-color: var(--dark-bg);
  color: var(--color-light);
}

.footer-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-item {
  flex: 1;
  position: relative;
}
.footer-item:nth-of-type(3){
  padding-right: 20px;
}
footer ul {
  list-style-type: none;
  text-align: left;
  padding: 0;
}

footer h6 {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

footer li {
  font-size: 0.85rem;
  margin: 10px 0;
  color: #b4c8de;
}

footer a {
  color: #b4c8de;
  font-size: 0.85rem;
}

footer a:hover {
  text-decoration: none;
  color: var(--color-light);
}

.footer-bottom {
  margin-top: 60px;
  border-top: solid 1px #6b6b6b;
  padding-top: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #ffffff;
}

.footer-bottom img {
  height: 20px;
}

@media screen and (max-width: 1160px) {

}

@media screen and (max-width: 1024px) {
  .hero {
    height: 60vh;
  }

  .hero-title {
    font-size: 3rem;
  }

  footer h6,
  footer ul {
    text-align: center;
  }

  .footer-item {
    margin-bottom: 2rem;
  }

}

@media screen and (max-width: 992px) {
  .cart-badge {
    right: auto;
    left: 12px;
  }

  .products-top .product{
    width: 49% !important;
  }

  .section-heading {
    padding: 80px 0 30px 0;
  }

  .checkout-boxes {
    flex-direction: column;
    align-items: stretch;
  }
}

@media screen and (max-width: 768px) {
  .features {
    flex-direction: column;
  }

  .main-header {
    font-size: 3rem;
  }

  .basket {
    margin-top: 40px;
  }

  .product-img {
    height: 200px;
  }

  .footer-container,
  .footer-bottom {
    flex-direction: column;
  }
}

@media screen and (max-width: 640px) {
  .navbar {
    padding: 1rem;
  }

  .hero {
    height: 70vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .products-top .product{
    width: 100%;
  }

  .basket-links {
    flex-direction: column;
  }

  .basket-links a {
    margin: 20px 0;
  }
}

/* .dropdown:hover>.dropdown-menu {
  display: block;
  -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.navbar li a {
  -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
} */


/* TERMS + FAQ + PAYMENT + PRIVACY */
#terms h1,
#faq h1,
#payment h1,
#privacy h1 {
  font-weight: 700;
  font-size: 5rem;
  padding: 3.75rem 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #terms h1,
  #faq h1,
  #payment h1,
  #privacy h1 {
    font-size: 3rem;
  }
}

#terms h2,
#faq h2,
#payment h2,
#privacy h2 {
  font-size: 3.5rem;
}

#privacy h3 {
  font-size: 2.5rem;
  font-weight: 700;
}

#terms h5,
#faq h5,
#payment h5,
#privacy h5,
#privacy h3 {
  font-weight: 700;
  margin: 2.8rem 0 .4rem;
  text-transform: uppercase;
}

#privacy h5 {
  font-size: 1.5rem;
}

#terms p,
#faq p,
#payment p,
#privacy p,
#terms li,
#faq li,
#payment li,
#privacy li {
  margin-bottom: .5rem;
}

#terms ul,
#faq ul,
#payment ul,
#privacy ul {
  list-style: none;
  padding-left: 0;
}

/*---- MODAL STYLING ----*/

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
 /* z-index: 11; !* Sit on top *!*/
z-index: 999;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  margin-left:0px;
  color:#666;
}

/* Modal Header */
.modal-header {
  padding:  5px 16px;
  background-color: rgb(253, 84, 84);
  color: white;
}

.modal.warning,
.modal.error,
.modal.success {
  display: block;
}

.modal.warning .modal-header,
.modal.error .modal-header {
  display: inherit;
}
.modal.success .modal-header {
  background-color: rgb(125, 224, 76);
}

/* Modal Body */
.modal-body {
  padding: 16px;
}

/* Modal Footer */
.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 150px auto;
  padding: 0;
  border: 1px solid #888;
  width: 60%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

@media only screen and (max-width: 500px) {
  .modal-content {
    width: 80%;

  }
}

/* // Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hidden-xl {
    display: none;
  }

  .package h3 {
    font-size: 2rem;
  }

}

/* // Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

  .hidden-lg {
    display: none;
  }

  h1,
  .header-lg {
    font-size: 5rem;
  }

  h2,
  .section-title {
    font-size: 4rem;
  }

  h3 {
    font-size: 3rem;
  }

  h4,
  .lead {
    font-size: 2.5rem;
  }

  h5,
  .sub-header {
    font-size: 2rem;
  }

  h6,
  .section-subtitle {
    font-size: 1.5rem;
  }
}

/* // Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {

  .hidden-md {
    display: none;
  }

  h1,
  .header-lg {
    font-size: 4rem;
  }

  h2,
  .section-title {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.5rem;
  }

  h4,
  .lead {
    font-size: 2rem;
  }

  h5,
  .sub-header {
    font-size: 1.5rem;
  }

  h6,
  .section-subtitle {
    font-size: 1rem;
  }

}

/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

  .hidden-sm {
    display: none;
  }

  h1,
  .header-lg {
    font-size: 3rem;
  }

  h2,
  .section-title {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.8rem;
  }

  h4,
  .lead {
    font-size: 1.5rem;
  }

  h5,
  .sub-header {
    font-size: 1.2rem;
  }

  h6,
  .section-subtitle {
    font-size: 1rem;
  }

  .hero {
    text-align: center;
    background: -webkit-linear-gradient(#bb2929, rgba(187, 41, 41, .84), #bb2929 ), url('../img/hero.png') no-repeat center right;
    background: -moz-linear-gradient(#bb2929, rgba(187, 41, 41, .84), #bb2929 ), url('../img/hero.png') no-repeat center right;
    background: -o-linear-gradient(#bb2929, rgba(187, 41, 41, .84), #bb2929 ), url('../img/hero.png') no-repeat center right;
    background: linear-gradient(#1E1E1E, rgba(30, 30, 30, .7), #1E1E1E ), url('../img/hero.png') no-repeat center right;
    -webkit-background-size: cover;
    background-size: cover;
  }

  .hero h1,
  .hero h6,
  .hero p {
    color: #ffffff;
  }

}

/*Custom package*/


.custom-package {
  margin-top: 50px;
  -webkit-box-shadow: 2px 2px 35px -12px rgba(0,0,0,0.53);
  -moz-box-shadow: 2px 2px 35px -12px rgba(0,0,0,0.53);
  box-shadow: 2px 2px 35px -12px rgba(0,0,0,0.53);
}

.custom-btn {
  background-color: #1957F3 !important;
  border: unset !important;
  border-radius: 0px !important;
  color:white !important;
}

.custom-btn:hover {
  color: #fff !important;
  background-color: #1d4fcc !important;
  outline: none !important;
  box-shadow: none !important;
}

.lead {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 900;
}

.package_cost {
  text-align: left !important;
  font-family: 'Lato', Helvetica, Arial, sans-serif !important;
  font-weight: 900 !important;
}

i {
  color:#1957F3 !important;
}

.fa-user {
  color: black !important;
}

.fa-user:hover {
  color:#1957F3 !important;
}



.shopper1 {
  height:200px !important;
  background-image: url("../img/shopper-img1.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.shopper2 {
  height:200px !important;
  background-image: url("../img/shopper-img2.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.shopper3 {
  height:200px !important;
  background-image: url("../img/shopper-img3.png");
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .shopper3, .shopper2, .shopper1 {
    height: 180px !important;
  }
}

@media (max-width: 700px) {
  .shopper3, .shopper2, .shopper1 {
    height: 280px !important;
  }
}

@media (max-width: 650px) {
  .shopper3, .shopper2, .shopper1 {
    height: 280px !important;
  }
}


@media (max-width: 600px)  {
  .shopper3, .shopper2, .shopper1 {
    height: 250px !important;
  }
}

@media (max-width: 350px) {
  .shopper3, .shopper2, .shopper1 {
    height: 150px !important;
  }
}

.flex-box {
  display: flex;
}

@media (max-width: 1000px) {
  .flex-box {
    flex-direction: column;
  }
}

#terms {
  margin-top: 50px;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.dropdown-menu {
  padding: 10px !important;
}

.dropdown-menu>span {
  color:black !important;
}

.dropdown-menu>span {
  text-decoration: none !important;
}

.clearfix {
  text-decoration: none;
  color:black;
}

#shipping_amount {
  margin-left: 10px;
}

.custom-padding {
  padding: 120px;
}

@media (max-width: 600px) {
  .custom-padding {
    padding: unset !important;
  }
}

@media (max-width: 900px) {
  .response-btn {
    margin-bottom: 20px !important;
  }
}


.custom-btn {
  background-color: #1d4fcc !important;
}

.custom-btn:hover {
  background-color: #1b3c89 !important;
}

.link-cart,
.btn-cart,
.hide-btn,
.btn-membership {
  display: none;
}

.line-th {
  text-decoration: line-through !important;
}

.dropdown-menu {
  font-size: 13px !important;
}

ol{
  list-style:none;
}

.checkout-terms {
  font-size: 12px;
}

@media (min-width:998px) {
  #myAccountLink {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

#myAccountLink>a {
  color: black;
}

.full-text ul {
  list-style-type: disc !important;
}

.full-text ol, .full-text ul {
  padding-inline-start: 32px !important;
}
.full-text ol ul, .full-text ul ol {
  margin-top: 15px;
  margin-bottom: 15px;
}

.full-text ol {
  list-style-type: decimal !important;
}
