@font-face {
  font-family: "Akrobat";
  src: url("../webfonts/Akrobat-Regular.otf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Akrobat";
  src: url("../webfonts/Akrobat-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Akrobat";
  src: url("../webfonts/Akrobat-Thin.otf");
  font-weight: 200;
}
@font-face {
  font-family: "Akrobat";
  src: url("../webfonts/Akrobat-SemiBold.otf");
  font-weight: 500;
}
@font-face {
  font-family: "Akrobat";
  src: url("../webfonts/Akrobat-Bold.otf");
  font-weight: 600;
}
@font-face {
  font-family: "Merienda One";
  src: url("../webfonts/MeriendaOne-Regular.ttf");
  font-weight: 400;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  max-height: 100%;
}

body {
  font-size: 16px;
  font-family: "Akrobat";
  background-color: white;
}

i {
  font-family: "FontAwesome";
}

p {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

a {
  text-decoration: none;
  color: #454545;
}
a:hover, a:active {
  color: #00a9e0;
}

h2 {
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  font-size: 40px;
  color: white;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 29px;
  }
}

h3 {
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 21px;
  }
}

input, select, textarea {
  padding: 12px;
  outline: none;
  font-size: 14px;
  border: none;
  border: 1px solid #ebebeb;
  -moz-appearance: none;
  -webkit-appearance: none;
  transition: 300ms all;
}
input:focus, select:focus, textarea:focus {
  border: 1px solid #00a9e0;
  transition: 300ms all;
}
@media screen and (max-width: 767px) {
  input, select, textarea {
    font-size: 16px;
  }
}

button {
  padding: 12px;
  font-size: 14px;
  outline: none;
  background: #006DF0;
  color: white;
  border: none;
  min-width: 100px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 300ms background-color;
}
button:hover {
  background-color: #f1d80a;
  transition: 300ms background-color;
}
button:disabled {
  opacity: 0.6 !important;
}

.input-icon {
  position: relative;
  display: inline-block;
}
.input-icon input {
  padding-left: 35px;
  width: 100%;
}
.input-icon svg {
  position: absolute;
  font-size: 16px;
  left: 10px;
  top: 12px;
}

textarea {
  resize: none;
  min-height: 120px;
}

.checkbox label, .radio label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
}

.checkbox + .checkbox, .radio + .radio {
  margin-top: -5px;
}

.checkbox {
  padding-left: 20px;
  position: relative;
  display: inline-block;
}

.radio {
  position: relative;
  display: inline-block;
}

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
  position: absolute;
  margin-top: 4px;
  margin-left: -20px;
}

input[type=checkbox], input[type=radio] {
  margin: 4px 0 0;
  margin-top: 1px;
  line-height: normal;
  height: 17px;
  transform: translateY(-3px);
  width: 20px;
}

.checkbox label {
  display: inline-block;
  padding-left: 5px;
  position: relative;
}
.checkbox label::before {
  -o-transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  background-color: #ffffff;
  border-radius: 1px;
  border: 1px solid rgba(120, 130, 140, 0.3);
  content: "";
  display: inline-block;
  height: 17px;
  left: 0;
  margin-left: -20px;
  position: absolute;
  transition: 0.3s ease-in-out;
  width: 17px;
  outline: none !important;
}
.checkbox label::after {
  color: #2b2b2b;
  display: inline-block;
  font-size: 11px;
  height: 16px;
  left: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  position: absolute;
  top: 0;
  width: 16px;
}
.checkbox input[type=checkbox] {
  cursor: pointer;
  opacity: 0;
  z-index: 1;
  outline: none !important;
}
.checkbox input[type=checkbox]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type=checkbox]:focus + label::before {
  outline-offset: -2px;
  outline: none;
  outline: thin dotted;
}
.checkbox input[type=checkbox]:checked + label::after {
  content: "";
  background-image: url("../images/check.png");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}
.checkbox input[type=checkbox]:disabled + label::before {
  background-color: #e4e7ea;
  cursor: not-allowed;
}

.checkbox-success input[type=checkbox]:checked + label::before {
  background-color: #00a9e0;
  border-color: #00a9e0;
}

.checkbox input[type=checkbox]:disabled {
  cursor: not-allowed;
}

.button {
  padding: 12px;
  font-size: 14px;
  outline: none;
  background: #00a9e0;
  color: white;
  border: none;
  min-width: 130px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  transition: 300ms background-color;
}
.button:hover {
  background: rgba(0, 169, 224, 0.5);
}

.clearfix:after {
  clear: both;
  display: block;
  content: "";
}

table {
  border-collapse: collapse;
  width: 100%;
}
table thead {
  background: #202020;
}
table tr:nth-child(even) {
  background: rgb(225, 225, 225);
}
table th {
  text-transform: uppercase;
  font-size: 16px;
  color: white;
}
@media screen and (max-width: 767px) {
  table th {
    font-size: 14px;
  }
}
table td, table th {
  padding: 8px;
}
table td {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  table td {
    font-size: 14px;
    padding: 4px;
  }
}
table tfoot {
  border-top: 2px solid #00a9e0;
}
table tfoot td {
  font-size: 18px;
  font-weight: bold;
  color: #00a9e0;
}
@media screen and (max-width: 767px) {
  table tfoot td {
    font-size: 16px;
  }
}

.barcode {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 400px;
  max-height: 300px;
  width: 100%;
  height: 100%;
  background: white;
  padding: 20px;
  box-shadow: 0px 0px 6px black;
  display: none;
}
.barcode p {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
}
.barcode button {
  margin-top: auto;
}
.barcode #barCode div {
  margin: 0 auto;
}

.displayFlex {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#changePwForm {
  margin-bottom: 10px;
}
#changePwForm::after {
  clear: both;
  display: block;
  content: "";
}
#changePwForm .input-icon {
  width: 33.33%;
  float: left;
}
@media screen and (max-width: 565px) {
  #changePwForm .input-icon {
    width: 100%;
    margin-bottom: 10px;
  }
}
#changePwForm button {
  width: 33.33%;
  float: left;
  margin-top: 0px !important;
}
@media screen and (max-width: 565px) {
  #changePwForm button {
    width: 100%;
    margin-bottom: 10px;
  }
}

.container-full {
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 85%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 95%;
  }
}
@media screen and (max-width: 1119px) {
  .container {
    max-width: 95%;
  }
}

.container-padding {
  padding: 40px 0px;
}

.row:after, .row:before {
  clear: both;
  content: "";
  display: block;
}

div[class^=col-] {
  padding: 8px;
  position: relative;
}

.input-half {
  width: calc(50% - 7.5px);
  margin-right: 15px;
  float: left;
}
.input-half:nth-child(2n) {
  margin-right: 0px;
}

@keyframes slideTop {
  0% {
    opacity: 0;
    top: -100px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.8);
  }
  100% {
    transform: scale(1);
  }
}
.scale {
  animation: scale 300ms ease-in-out forwards;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  animation: slideTop 300ms ease-in-out forwards;
}

#mobileHeader {
  display: none;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  #mobileHeader {
    display: block;
  }
}
#mobileHeader #mobileTopHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(59, 59, 59);
  color: white;
}
#mobileHeader #mobileTopHeader #shoppingCartLink {
  color: white;
  margin-right: auto;
}
#mobileHeader #mobileTopHeader .shopping-cart {
  position: relative;
  margin-right: auto;
}
#mobileHeader #mobileTopHeader .shopping-cart .shopping-items {
  width: 20px;
  height: 20px;
  background: #00a9e0;
  color: white;
  border-radius: 50%;
  position: absolute;
  right: -10px;
  bottom: 8px;
  font-size: 14px;
  line-height: 20px;
}
#mobileHeader #mobileTopHeader img {
  width: 40px;
  display: block;
  margin: 5px auto;
}
#mobileHeader #mobileTopHeader .menu-toggle {
  margin-left: auto;
}
#mobileHeader #mobileTopHeader .menu-btn {
  padding: 8px 12px;
  text-align: center;
  font-size: 24px;
}
#mobileHeader #mobileNavigation {
  position: absolute;
  top: 100%;
  z-index: 10;
  background: rgb(59, 59, 59);
  width: 100%;
  border-top: 1px solid #00a9e0;
  text-align: center;
  display: none;
}
#mobileHeader #mobileNavigation .header-info {
  padding: 8px;
}
#mobileHeader #mobileNavigation .header-info a {
  color: white;
}
#mobileHeader #mobileNavigation .navigation .menu {
  display: block;
  padding: 10px;
  border-bottom: 1px solid white;
  color: white;
}
#mobileHeader #mobileNavigation .navigation .menu:last-child {
  border-bottom: 0px;
}
#mobileHeader #mobileNavigation .navigation .menu-active {
  color: #00a9e0;
}

@media screen and (max-width: 767px) {
  #desktopHeader {
    display: none;
  }
}
#desktopHeader #topHeader {
  background: #f8f8f8;
  align-items: center;
  box-shadow: 0px 0px 3px #d1d1d1;
  font-size: 14px;
}
#desktopHeader #topHeader .container {
  display: flex;
  align-items: center;
}
#desktopHeader #topHeader .container .header-info {
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  border-right: 1px solid rgb(69, 69, 69);
  color: rgb(69, 69, 69);
}
#desktopHeader #topHeader .container .header-info:last-child {
  border-right: none;
}
#desktopHeader #topHeader .container .header-info svg {
  margin-right: 5px;
}
#desktopHeader #topHeader .container .header-info a {
  font-size: 14px;
}
#desktopHeader #topHeader .container .shopping-cart {
  padding: 10px 0px;
  text-align: center;
  width: 45px;
  background: #00a9e0;
  color: white;
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  position: relative;
}
#desktopHeader #topHeader .container .shopping-cart .shopping-items {
  width: 20px;
  height: 20px;
  background: rgb(26, 26, 26);
  border-radius: 50%;
  position: absolute;
  right: -8px;
  bottom: -8px;
  font-size: 14px;
  line-height: 20px;
}
#desktopHeader #topHeader .container .header-right-info {
  margin-left: auto;
}
#desktopHeader #mainHeader {
  margin: 15px 0px;
}
#desktopHeader #mainHeader .container {
  display: flex;
  align-items: center;
}
#desktopHeader #mainHeader .container .social-icons-header {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1119px) {
  #desktopHeader #mainHeader .container .social-icons-header {
    display: none;
  }
}
#desktopHeader #mainHeader .container .social-icons-header .social-icon-header {
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}
#desktopHeader #mainHeader .container .social-icons-header .social-icon-header:last-child {
  margin-bottom: 0px;
}
#desktopHeader #mainHeader .container .logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}
#desktopHeader #mainHeader .container .logo img {
  width: 90px;
  display: block;
  margin-right: 15px;
}
#desktopHeader #mainHeader .container .logo .header-details {
  padding-left: 15px;
  color: rgb(69, 69, 69);
  border-left: 1px solid rgb(69, 69, 69);
}
#desktopHeader #mainHeader .container .logo .header-details .header-detail {
  margin-bottom: 4px;
}
#desktopHeader #mainHeader .container .navigation {
  margin-left: auto;
}
#desktopHeader #mainHeader .container .navigation .menu {
  margin-right: 10px;
  color: rgb(69, 69, 69);
  text-transform: uppercase;
  font-weight: 500;
  transition: 300ms color;
}
#desktopHeader #mainHeader .container .navigation .menu:hover {
  color: #00a9e0;
}
#desktopHeader #mainHeader .container .navigation .menu-active {
  color: #00a9e0;
}

#sliderHeader img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  #sliderHeader {
    margin-top: 45px;
  }
}
#sliderHeader .bx-wrapper {
  border: none;
  background: inherit;
}
#sliderHeader .bxslider {
  position: relative;
  -webkit-perspective: 2000;
  -webkit-backface-visibility: hidden;
}
#sliderHeader .bxslider img {
  width: 100%;
  opacity: 0.8;
  display: block;
}
#sliderHeader .bxslider .sliderContent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 95%;
}
#sliderHeader .bxslider .sliderContent h2 {
  margin-bottom: 10px;
}
#sliderHeader .bxslider .sliderContent p {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  color: white;
}

#chooseLangauge {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  #chooseLangauge {
    flex-direction: column;
  }
}
#chooseLangauge div {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  #chooseLangauge div {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}

#carts {
  margin-top: 20px;
  margin-bottom: 20px;
}
#carts .cart {
  width: calc(33.333% - 20px);
  margin-right: 30px;
  box-shadow: 0px 0px 4px #d1d1d1;
  margin-bottom: 30px;
  float: left;
}
#carts .cart:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 1119px) {
  #carts .cart {
    width: calc(33.3333% - 20px);
  }
  #carts .cart:nth-child(4n) {
    margin-right: 30px;
  }
  #carts .cart:nth-child(3n) {
    margin-right: 0px;
  }
}
@media screen and (max-width: 767px) {
  #carts .cart {
    width: calc(50% - 15px);
    margin-right: 30px !important;
  }
  #carts .cart:nth-child(2n) {
    margin-right: 0px !important;
  }
}
@media screen and (max-width: 565px) {
  #carts .cart {
    width: 90%;
    margin: 0 auto;
    margin-right: auto !important;
    float: none;
    margin-bottom: 15px;
  }
  #carts .cart:nth-child(2n) {
    margin-right: auto !important;
  }
}
#carts .cart h3 {
  margin-bottom: 8px;
  padding: 10px;
  color: white;
  font-size: 24px;
}
#carts .cart img {
  width: 100%;
  margin-bottom: 8px;
  padding: 5px;
  background: white;
}
@media screen and (max-width: 565px) {
  #carts .cart img {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}
#carts .cart p {
  font-size: 14px;
  text-align: justify;
  padding: 10px;
  color: rgb(100, 100, 100);
}
#carts .cart .price {
  font-size: 22px;
  text-align: center;
  display: block;
  margin-bottom: 15px;
  color: #00a9e0;
  font-weight: 400;
  padding: 0px;
}
#carts .cart .price span {
  font-size: 18px;
}
#carts .cart .filter {
  background: white;
}
#carts .cart .filter label {
  width: 90px;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #carts .cart .filter label {
    font-size: 22px;
  }
}
#carts .cart .filter input {
  width: calc(100% - 95px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  #carts .cart .filter input {
    padding: 10px;
    font-size: 22px;
  }
}
#carts .cart .quantity {
  display: flex;
  align-items: center;
}
#carts .cart .quantity .qBtn {
  padding: 5px;
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  color: white;
  background: #00a9e0;
  min-width: 50px;
  cursor: pointer;
  width: 33.333%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  #carts .cart .quantity .qBtn {
    padding: 10px;
    font-size: 34px;
  }
}
#carts .cart .quantity .qBtn:first-child {
  background: rgb(32, 32, 32);
}
#carts .cart .quantity input {
  width: 33.333%;
  font-weight: bold;
  font-size: 16px;
  height: 43px;
  background: white;
  border-radius: 0px;
  text-align: center;
}
#carts .cart .quantity input:disabled {
  -webkit-opacity: 1;
}
@media screen and (max-width: 767px) {
  #carts .cart .quantity input {
    padding: 18px;
    height: 60px;
    font-size: 20px;
  }
}

footer {
  background: rgb(32, 32, 32);
  color: white;
  text-align: center;
  padding: 8px;
  border-top: 1px solid #00a9e0;
}
footer .social-icons {
  margin-bottom: 2px;
  font-size: 22px;
}
footer svg {
  margin-right: 10px;
}
footer p {
  font-size: 14px;
}
footer a {
  color: white;
}

.floatingBtnContainer {
  display: none;
  position: fixed;
  right: 38px;
  bottom: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  .floatingBtnContainer {
    bottom: 40px;
    display: flex;
  }
}
.floatingBtnContainer .floatingBtn {
  width: 0;
  height: 0;
  border-radius: 50%;
  color: white;
  line-height: 40px;
  font-size: 14px;
  background: #00a9e0;
  margin-bottom: 10px;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateY(8px);
  transition: 300ms all;
}
.floatingBtnContainer .mainFloatingBtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  color: white;
  background: #00a9e0;
  text-align: center;
  font-size: 30px;
  cursor: pointer;
}

.floatingBtnContainerActive .floatingBtn {
  opacity: 1;
  visibility: visible;
  width: 40px;
  height: 40px;
  transform: translateY(0px) scale(1);
  transition: 300ms all;
}
.floatingBtnContainerActive .floatingBtn:first-child {
  transition-delay: 0.15s;
}
.floatingBtnContainerActive .floatingBtn:nth-child(2) {
  transition-delay: 0.12s;
}
.floatingBtnContainerActive .floatingBtn:nth-child(3) {
  transition-delay: 0.1s;
}

#loginForm {
  padding: 20px;
}
#loginForm h3 {
  color: #202020;
}
#loginForm .input-icon {
  width: 100%;
  display: block;
}
#loginForm .input-field {
  margin-bottom: 15px;
}
#loginForm input {
  width: 100%;
}
#loginForm label {
  display: block;
  margin-bottom: 10px;
}
#loginForm .register {
  display: inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  #loginForm .register {
    display: block;
    margin-left: 0px;
    margin-top: 10px;
  }
}
#loginForm #loginFormContainer {
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

#cartContainer {
  max-width: 800px;
  width: 100%;
  padding: 20px;
}
#cartContainer table {
  margin-bottom: 20px;
}
#cartContainer h3 {
  color: #202020;
}
#cartContainer svg {
  font-size: 20px;
}
#cartContainer p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  #cartContainer input {
    width: 100%;
    display: block;
  }
}
#cartContainer button {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #cartContainer button {
    width: 100%;
    display: block;
  }
}
#cartContainer button:first-child {
  margin-right: 10px;
}

#howToContainer {
  padding: 20px 0px;
}
#howToContainer h3 {
  color: #202020;
}
#howToContainer h4 {
  font-size: 20px;
}
#howToContainer p {
  font-size: 16px;
  margin-bottom: 15px;
}
#howToContainer .boxesTut {
  display: flex;
  flex-wrap: wrap;
}
#howToContainer .boxesTut .boxTut {
  color: white;
  margin-right: 15px;
  margin-bottom: 20px;
  width: calc(50% - 7.5px);
  text-align: justify;
  background: rgb(236, 236, 236);
}
@media screen and (max-width: 767px) {
  #howToContainer .boxesTut .boxTut {
    width: 100%;
    margin-right: 0px;
  }
}
#howToContainer .boxesTut .boxTut:nth-child(2n) {
  margin-right: 0px;
}
#howToContainer .boxesTut .boxTut h4 {
  padding: 10px;
  background: #00a9e0;
  color: white;
}
#howToContainer .boxesTut .boxTut p {
  padding: 10px;
  color: #202020;
}
#howToContainer .boxesTut .boxTut img {
  opacity: 1;
  width: 100%;
  display: block;
}

.featureImg {
  width: calc(33.3333% - 13.33px);
  margin-right: 20px;
  text-align: center;
  float: left;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .featureImg {
    width: 90%;
    margin: 0 auto;
    padding: 8px;
    float: none;
  }
}
.featureImg:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (max-width: 767px) {
  .featureImg:nth-child(3n) {
    margin-right: auto;
  }
}
.featureImg img {
  width: 90px;
}
@media screen and (max-width: 767px) {
  .featureImg img {
    width: 60px;
  }
}
.featureImg h3 {
  color: #202020;
}

.aboutUsDetails {
  background: rgb(248, 248, 248);
  clear: both;
}
.aboutUsDetails .container {
  padding: 12px;
}
.aboutUsDetails h3 {
  color: #202020;
}
.aboutUsDetails p {
  text-align: justify;
}

#imagesContainer {
  margin-top: 20px;
}
#imagesContainer .img {
  width: calc(50% - 10px);
  margin-right: 20px;
  float: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #imagesContainer .img {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
    float: none;
  }
}
#imagesContainer .img:nth-child(2n) {
  margin-right: 0px;
}
#imagesContainer .img img {
  width: 100%;
}

.halfContact {
  width: calc(50% - 10px);
  margin-right: 20px;
  float: left;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .halfContact {
    width: 100%;
    margin-right: 0px;
    float: none;
    padding: 10px;
  }
}
.halfContact:last-child {
  margin-right: 0px;
}
.halfContact .contact-info {
  margin-bottom: 10px;
  display: block;
}
.halfContact h3 {
  color: #202020;
  font-size: 26px;
}
.halfContact .input-field {
  margin-bottom: 12px;
}
.halfContact .input-field label {
  display: block;
  margin-bottom: 8px;
}
.halfContact .input-field input, .halfContact .input-field textarea {
  width: 100%;
}

.payForm {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.payForm .input-field {
  margin-bottom: 15px;
}
.payForm .input-field label {
  display: block;
  margin-bottom: 8px;
}
.payForm .input-field input {
  width: 100%;
}

#cartDetailsContainer button {
  float: right;
}
#cartDetailsContainer .cart-details {
  display: block;
  margin-bottom: 15px;
  max-width: 800px;
  width: 100%;
}
#cartDetailsContainer .cart-details h4 {
  margin-bottom: 8px;
  text-transform: uppercase;
}
#cartDetailsContainer .cart-details::after {
  clear: both;
  display: block;
  content: "";
}
#cartDetailsContainer .input-field {
  margin-bottom: 8px;
}
#cartDetailsContainer .input-field label {
  display: block;
  margin-bottom: 2px;
}
#cartDetailsContainer .input-field input, #cartDetailsContainer .input-field select {
  width: 100%;
}
#cartDetailsContainer .input-icon {
  width: 100%;
  display: block;
}

/*# sourceMappingURL=main.css.map */
