@charset "UTF-8";
/* Variables */
/* Base */
* {
  box-sizing: border-box;
}

body {
  background: #f1f1f1;
}

img {
  width: 100%;
}

header {
  background: #fff;
}

.main-nav {
  background: #037dc6;
  text-align: center;
  padding: 0px;
}
.main-nav .menu_close {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  background-image: url("../img/close.png");
  background-repeat: no-repeat;
  z-index: 20;
  background-size: 100%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .main-nav__ul {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #037dc6;
    height: 100%;
    z-index: 10;
    width: 100%;
    padding-top: 35px !important;
  }
  .main-nav__ul li {
    display: block !important;
    border-bottom: solid 1px #5aa5d2;
  }
  .main-nav__ul .main-nav__link {
    display: block;
  }
  .main-nav__ul + .menu_close {
    display: block;
  }
}
@media (min-width: 768px) {
  .main-nav__ul {
    display: block !important;
  }
}
.main-nav__sub {
  display: none;
  background: #037dc6;
  top: 40px;
  right: 0px;
  z-index: 5;
}
.main-nav__sub li {
  width: 100%;
}
.main-nav__sub a {
  width: 100%;
}
@media (min-width: 768px) {
  .main-nav__sub {
    position: absolute;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .main-nav__sub {
    top: 39px;
  }
}
.main-nav li {
  position: relative;
}
@media (min-width: 768px) {
  .main-nav li:hover > .main-nav__sub {
    display: block;
  }
}
.main-nav__link {
  padding: 8px 11px;
  display: inline-block;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 990px) {
  .main-nav__link {
    padding: 9px 4px;
    font-size: 14px;
  }
}
.main-nav__link:hover {
  background: #78bae8;
  color: #fff;
  text-decoration: none;
}
.main-nav__more {
  background-image: url(../img/dropdown.png);
  background-repeat: no-repeat;
  background-position: right 50%;
  background-size: 10px;
  padding-right: 16px !important;
}
@media (max-width: 767px) {
  .main-nav__more {
    background-position: calc(100% - 20px) 50%;
  }
}

.burger {
  margin: 0px auto;
  padding: 10px 0px;
  cursor: pointer;
}
.burger__inner {
  width: 25px;
}
.burger__inner div {
  width: 100%;
  height: 3px;
  margin: 3px 0px;
  background: #fff;
}
@media (min-width: 768px) {
  .burger {
    display: none !important;
  }
}

/* layout */
.page_container {
  max-width: 990px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  margin: 0px auto;
}

/* typography */
.hdln_2 {
  position: relative;
  font-weight: normal;
  font-size: 22px;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  color: #024d7b;
}

.hdln_2:before, .hdln_2:after {
  position: absolute;
  top: 51%;
  overflow: hidden;
  width: calc(50% - 10px);
  height: 1px;
  content: " ";
  background-color: #cecece;
}

.hdln_2:before {
  margin-left: -50%;
  text-align: right;
}

.hdln_2:after {
  margin-left: 10px;
}

/* Utilities */
.list {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.list-inline li {
  display: inline-block;
}

.txt-align-left {
  text-align: left;
}

.txt-align-center {
  text-align: center;
}

.txt-align-right {
  text-align: right;
}

.fullwidth {
  width: 100%;
}

.fullheight {
  height: 100%;
}

.right-border {
  border-right: solid 1px #dcdcdc;
}

.txt-white {
  color: #fff;
}

.txt-black {
  color: #000;
}

.txt-grey {
  color: #727273;
}

.txt-blue {
  color: #024d7b;
}

.txt-xs {
  font-size: 12px;
}

.txt-sm {
  font-size: 14px;
}

.txt-md {
  font-size: 16px;
}

.txt-lg {
  font-size: 20px;
}

.txt-xl {
  font-size: 24px;
}

.txt-400 {
  font-weight: 400;
}

.txt-600 {
  font-weight: 600;
}

.move-up {
  margin-bottom: -5px;
}

.b-bottom {
  border-bottom: solid 1px #ccc;
}

.v-middle {
  vertical-align: middle;
}

/* Components */
.card {
  border-radius: 5px;
  background: #fff;
  margin-bottom: 20px;
  padding: 10px;
  box-shadow: 0px 2px 0px #c7c7c7;
}

.search-card {
  background: #d6ecf6;
  overflow: hidden;
}
.search-card .btn {
  background-image: url("../img/next.png");
  background-size: 20px;
  background-color: #479000;
  background-repeat: no-repeat;
  background-position: 87px;
  color: #fff;
  border-radius: 3px;
  display: inline-block;
  padding: 5px 46px 5px 22px;
  float: right;
  margin-top: 10px;
  font-size: 20px;
}
.search-card select {
  height: 40px;
}

.card-cat {
  width: 100%;
  text-align: center;
}
.card-cat img {
  border-bottom: solid 1px #ccc;
  height: 110px;
  object-fit: contain;
}
.card-cat__title {
  font-size: 14px;
  margin: 10px 0px 0px 0px;
}
@media (min-width: 768px) {
  .card-cat {
    width: 150px;
  }
}
@media (min-width: 992px) {
  .card-cat {
    width: 150px;
  }
}

.card-fake-video {
  height: 180px;
}

.video-play {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #037dc6;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  cursor: pointer;
}
.video-play:before {
  content: "";
  width: 30px;
  height: 30px;
  border-top: solid 15px transparent;
  border-left: solid 25px #fff;
  border-bottom: solid 15px transparent;
  border-right: solid 15px transparent;
  display: inline-block;
  position: absolute;
  left: 20px;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.tp-card__stars {
  width: 100px;
}

/* icons */
.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-size: 100%;
}
.icon--user {
  background-image: url("../img/icon-user.png");
}
.icon--cart {
  background-image: url("../img/icon-cart.png");
  background-size: 22px;
}
.icon--chat {
  background-image: url(../img/chat.png);
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 5px;
}
.icon--facebook {
  background-image: url("../img/facebook.png");
}
.icon--instagram {
  background-image: url("../img/instagram.png");
}
.icon--twitter {
  background-image: url("../img/twitter.png");
}

/* Sections */
.main-search input {
  width: 100%;
  border: solid 1px #d4d4d4;
  border-radius: 5px 0px 0px 5px;
  margin-right: -5px;
  background: #f1f1f1;
  padding: 0px 10px;
}
.main-search input:focus {
  outline: none;
}
.main-search .btn {
  border-radius: 5px;
  font-size: 20px;
  padding: 5px 10px;
  color: #fff;
  background: #037dc6;
  border: none;
  font-weight: 500;
}

.header-icons {
  box-shadow: 0px 4px 10px #cecece;
}
.header-icons__icon img {
  width: 32px;
  align-self: center;
}

.list-side-nav li {
  margin-bottom: 5px;
}
.list-side-nav a {
  display: inline-block;
  background-position: 0px;
  background-image: url("../img/arrow.png");
  background-size: 14px;
  background-repeat: no-repeat;
  padding-left: 20px;
  font-size: 14px;
}

.bg-blue {
  background: #037dc6;
}

.bg-black {
  background: #000;
}

footer h3 {
  font-size: 18px;
  font-weight: 400;
}
footer a {
  color: #fff;
  font-size: 14px;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.payment-icon {
  height: 33px;
  width: auto;
}

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