html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  height: 100%;
}

body {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #103a4d;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; 
  cursor: default;
}

body img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #F28123;
  text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: #103a4d;
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
}

h1, .h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
}

@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

h2, .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}

@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.25rem;
}

@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}

@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  font-family: "Poppins", "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: #103a4d;
  margin: 0 0 1.25rem 0;
}

p:last-child {
  margin: 0;
}

:focus {outline:0 !important;box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;}

/* -----------------------------------------------------------------------------

# All Common Styles

----------------------------------------------------------------------------- */
.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: #fff;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}

.circle {
  width: 8vmax;
  height: 8vmax;
  border-right: 4px solid #000;
  border-radius: 50%;
  -webkit-animation: spinRight 800ms linear infinite;
  animation: spinRight 800ms linear infinite;
}

.circle:before {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
}

.circle:after {
  content: '';
  width: 6vmax;
  height: 6vmax;
  display: block;
  position: absolute;
  top: calc(50% - 3vmax);
  left: calc(50% - 3vmax);
  border-left: 3px solid #F28123;
  border-radius: 100%;
  -webkit-animation: spinLeft 800ms linear infinite;
  animation: spinLeft 800ms linear infinite;
  width: 4vmax;
  height: 4vmax;
  top: calc(50% - 2vmax);
  left: calc(50% - 2vmax);
  border: 0;
  border-right: 2px solid #000;
  -webkit-animation: none;
  animation: none;
}

@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.mt-80 {
  margin-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.gray-bg {
  background-color: #f5f5f5;
}

.orange-bg {
  background-color: #f28123;
}

.deep-bg {
  background-color: #07212e;
}

.white-bg {
  background-color: #fff;
}

.blue-bg {
  background-color: #162133;
}

.orange-text {
  color: #F28123;
}

.red-text{
  color: #FF2400;
}

a.boxed-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #F28123;
  color: #fff;
  padding: 10px 20px;
}

a.bordered-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #F28123;
  padding: 7px 20px;
}

a.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: #103a4d;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

a.read-more-btn:hover {
  color: #F28123;
}

a.boxed-btn, a.bordered-btn, a.cart-btn {
  border-radius: 50px;
}

.section-title h3 {
  font-size: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title h3:after {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 2px;
  background-color: #F28123;
  margin: 0 auto;
}

.section-title p {
  font-size: 1.3rem;
  width: 530px;
  margin: 0 auto;
  color: #103a4d;
  margin-top: 10px;
  line-height: 1.8em;
}

.section-title {
  margin-bottom: 80px;
}

.breadcrumb-bg {
  background-image: url('/OLD/assets/img/breadcrumb-bg.jpg');
}

.breadcrumb-text p {
  color: #F28123;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 15px;
}

.breadcrumb-text h1 {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  margin-top: 20px;   
}

.breadcrumb-section {  
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 200px;
}

.breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #07212e;
  z-index: -1;
  opacity: 0.8;
}

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */
ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #051922;
}

.top-header-area {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 25px 0;
  top: 0;
}

.top-header-area.white ul.navbar-nav li.nav-item a.nav-link, .top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
}

ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
  font-weight: 700;
  margin-right: 14px;
}

a.navbar-brand img {
  max-width: 150px;
}

nav.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.main-menu ul li {
  display: inline-block;
}

nav.main-menu ul li a {
  color: #fff;
  font-weight: 700;
  display: block;
  padding: 15px;
}

.menuimg {
  width: 26px;
  margin-right: 5px;
  margin-left: -10px;
}

nav.main-menu ul > li {
  position: relative;
}

nav.main-menu ul ul.sub-menu {
  position: absolute;
  background-color: #fff;
  width: 230px;
  padding: 2px 15px 0px;
  margin: 0;
  left: 0;
  top: 50px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: 0 0 20px #555555;
  box-shadow: 0 0 20px #555555;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
  text-align: left;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  font-weight: 600;
  padding: 7px 10px;
  font-size: 13px;
}

nav.main-menu ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}

nav.main-menu ul li:last-child a {
  display: inline-block;
}

nav.main-menu > ul li:last-child {
  float: right;
}

.floatright {
  float: right;
}

.site-logo {
  float: left;
  max-width: 150px;
}

ul.sub-menu li:last-child {
  float: none !important;
}

.mean-container .mean-bar {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 10px;
}

.mean-bar a.meanmenu-reveal {
  background-color: #F28123;
}

.main-menu-wrap {
  position: relative;
}

.mean-container a.meanmenu-reveal {
  color: #051922;
}

.mean-container a.meanmenu-reveal span {
  background-color: #051922;
}

.mean-container .mean-nav ul li a {
  padding: 0.5em 5%;
}

.mean-container .mean-nav ul li li a {
  padding: 0.5em 10%;
}

.mean-container .mean-nav ul li a.mean-expand {
  font-size: 16px;
  height: 14px;
  line-height: 15px;
  width: 18px;  
}

.mean-container a.meanmenu-reveal {
  padding: 8px 8px 6px;
  border-radius: 5px;
}

nav.mean-nav > ul > li:first-child > a {
  border-top: none;
}

.header-icons a {
  color: #fff;
  display: inline-block;
  padding: 10px;
}

.site-logo {
  padding: 6px 0;
}

.top-header-area.sepherate-header ul li > a, .top-header-area.sepherate-header .header-icons a {
  color: #051922;
}

nav.main-menu ul ul.sub-menu li {
  display: block;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
}

nav.main-menu ul li.current-list-item > a {
  color: #F28123;
}

nav.main-menu li:hover > a {
  color: #F28123;
}

nav.main-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a:hover {
  color: #F28123;
}

.sticky-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999 !important;
}

.sticky-wrapper.is-sticky .top-header-area {
  background-color: #051922;
  padding: 15px 0;
}

.top-header-area {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.navbar-nav {
  margin: 0 auto;
}

.wallet-area {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5555;
  background-color: #051922;
  width: 400px;
  height: 100%;
  text-align: center;
}
.wallet-address{
  cursor: pointer;
}

span.close-btn {
  position: absolute;
  right: 15px;
  color: #fff;
  top: 10px;
  cursor: pointer;
}

.search-bar {
  height: 100%;
  width: 100%;
  margin-top: 30%;
}

a.mobile-show {
  display: none;
}

.wallet-area .search-bar div.wallet-div {
  height: auto;
}

.wallet-div{
  margin-top: 10%;
}

.wallet-div input {
  border: none;
  padding: 15px;
  width: 60%;
  background-color: transparent;
  border-bottom: 1px solid #F28123;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.wallet-div button[type=submit] {
  border: none;
  background-color: #F28123;
  padding: 10px 30px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
  margin-top: 15%;
}

.wallet-div input::-webkit-input-placeholder {
  color: #fff;
}

.wallet-div input:-ms-input-placeholder {
  color: #fff;
}

.wallet-div input::-ms-input-placeholder {
  color: #fff;
}

.wallet-div input::placeholder {
  color: #fff;
}

.wallet-div button[type=submit] i {
  margin-left: 5px;
}

.wallet-area {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.wallet-area.wallet-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.wallet-div h3 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;  
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 0px;
}

/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */
.single-logo-item img {
  max-width: 120px;
  margin: 0 auto;
}

.logo-carousel-section {
  background-color: #f5f5f5;
}

.footer-area {
  background-color: #051922;
  color: #fff;
  padding: 150px 0;
}

h2.widget-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
  color: #fff;
}

h2.widget-title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #F28123;
  content: "";
}

.footer-box img{
  max-width: 20px;
}

.footer-box p {
  color: #fff;
  opacity: 0.7;
  line-height: 1.8;
  font-size: 1rem;
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box ul li {
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-box ul li:last-child {
  margin-bottom: 0;
}

.footer-box.subscribe form input[type=tel] {
  border: none;
  background-color: #012738;
  width: 78%;
  padding: 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
}

.footer-box.subscribe form button {
  width: 20%;
  border: none;
  background-color: #012738;
  color: #F28123;
  padding: 14px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

.footer-box.subscribe form button:focus {
  outline: none;
}

.copyright {
  background-color: #051922;
  border-top: 1px solid #232a35;
}

.copyright p {
  margin: 0;
  color: #fff;
  opacity: 0.7;
  padding: 16px 0;
  font-size: 15px;
}

.copyright a {
  color: #F28123;
  font-weight: 700;
}

.copyright a:hover {
  color: #f59d53;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  padding: 16px 10px;
  display: block;
}

.footer-box ul li a {
  color: #fff;
}

.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
}

.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #F28123;
}

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.navbar-brand:hover {
  opacity: 0.7;
}

a.boxed-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.boxed-btn:hover {
  background-color: #051922;
  color: #F28123;
}

a.bordered-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.bordered-btn:hover {
  background-color: #F28123;
  color: #fff;
}

ul.sub-menu a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #F28123;
}

.single-tof-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-tof-box:hover {
  -webkit-box-shadow: 0 0 80px #353535;
  box-shadow: 0 0 80px #353535;
}

a.video-play-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.video-play-btn:hover {
  background-color: #333;
  color: #F28123;
}

.latest-news-bg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover .latest-news-bg {
  opacity: 0.9;
}

a.tof-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn:hover {
  color: #F28123;
}

a.tof-btn:hover i {
  margin-left: 10px;
}

.single-latest-news {
  -webkit-box-shadow: 0 0 20px #dddddd;
  box-shadow: 0 0 20px #dddddd;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.single-logo-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  width: 50%;
  margin-left: 25%;
}

.single-logo-item:hover {
  opacity: 0.7;
}

.footer-box.pages ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.pages ul li:hover a {
  color: #F28123;
}

.footer-box.subscribe form button {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.subscribe form button:hover {
  background-color: #F28123;
  color: #051922;
}

.social-icons ul li:hover a {
  color: #F28123;
}

.social-icons ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a:hover {
  background-color: #051922;
  color: #F28123;
}

.counter-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.counter-box:hover {
  -webkit-box-shadow: 0 0 80px #6f6f6f;
  box-shadow: 0 0 80px #6f6f6f;
}

input[type="submit"] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px !important;
}

input[type="submit"]:hover {
  background-color: #051922;
  color: #F28123;
}

div.owl-controls, .owl-controls div {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
  opacity: 0.7;
}

.pagination-wrap ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pagination-wrap ul li:hover a {
  background-color: #F28123;
}

.icons a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.icons a:hover i {
  color: #F28123;
}

.tof-text a.tof-btn {
  margin-top: 15px;
  display: inline-block;
}

.single-pricing-table {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-pricing-table:hover {
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.product-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.cart-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.cart-btn:hover {
  background-color: #051922;
  color: #F28123;
}

.recent-posts ul li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.recent-posts ul li:hover {
  opacity: 0.7;
}

ul.sub-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #F28123 !important;
}

.sidebar-section ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-section ul li a:hover {
  opacity: 0.7;
}

.comment-text-body h4 a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.comment-text-body h4 a:hover {
  color: #F28123;
}

ul.product-share li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.product-share li:hover a {
  color: #F28123;
}

.service-menu ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-menu ul li a.active {
  font-weight: 600;
  color: #ffe200;
}

.service-menu ul li a:hover {
  color: #ffe200;
}

.single-product-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.wallet-div button[type=submit] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.wallet-div button[type=submit]:hover {
  background-color: #fff;
  color: #000;
}

span.close-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span.close-btn:hover {
  color: #fff;
}

a.mobile-show.wallet-icon,a.mobile-show.cart-icon,a.mobile-show.phone-icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.mobile-show.wallet-icon:hover,a.mobile-show.cart-icon:hover,a.mobile-show.phone-icon:hover {
  color: #F28123;
}

/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */
.hero-bg {
  background-image: url('/assets/img/hero/01.jpg');
  background-size: cover;
  background-position: top center;
  background-attachment: fixed;   
}

.hero-text {
  display: table;
  height: 100%;
}

.hero-text-tablecell {
  display: table-cell;
}

.hero-area {
  height: 114vh;
  position: relative;
  z-index: 1;
}

.hero-area img.wave{
  padding: 0;
  max-width: 100%;
  bottom: 0px;
  position: absolute;
  margin-bottom: -1px;
}

html, body {
  height: 100%;
}

.hero-text p.subtitle {
  color: #F28123;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 15px;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.hero-area div {
  height: 100%;
}

.hero-area div.hero-text {
  height: 100%;
  width: 100%;
}

.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.hero-area div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}

.hero-btns {
  margin-top: 35px;
}

.hero-btns a.bordered-btn {
  margin-left: 15px;
}

.hero-area div.hero-form {
  background-color: #fff;
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px #2d2d2d;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}

input[type="submit"] {
  background-color: #F28123;
  color: #103a4d;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  border: none !important;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 3px;
}

.homepage-bg-1 {
  background-image: url('/OLD/assets/img/hero-bg.jpg');
}

.homepage-bg-2 {
  background-image: url('/OLD/assets/img/hero-bg-2.jpg');
}

.homepage-bg-3 {
  background-image: url('/OLD/assets/img/hero-bg-3.jpg');
}

.homepage-slider {
  height: 100%;
}

.homepage-slider div {
  height: 100%;
}

.homepage-slider div.hero-text {
  display: table;
  width: 100%;
}

.homepage-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
}

.homepage-slider div.hero-text-tablecell div {
  height: auto;
}

.single-homepage-slider {
  background-size: cover;
  background-position: center;
  background-color: #020C0E;
  position: relative;
  z-index: 1;
}

.single-homepage-slider:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #051922;
  content: "";
  z-index: -1;
  opacity: 0.7;
}

div.owl-controls, .owl-controls div {
  height: auto;
  top: 50%;
  color: #F28123;
  font-size: 48px;
}

.homepage-slider {
  position: relative;
}

.owl-prev {
  position: absolute;
  left: 60px;
  margin-top: -30px;
}

.owl-next {
  position: absolute;
  right: 60px;
  margin-top: -30px;
}

/* -----------------------------------------------------------------------------

# List Styles

----------------------------------------------------------------------------- */
.list-section {
  background-color: #f5f5f5;
}

.list-section img.wave{
  padding: 0;
  max-width: 100%;
  background-color: #fff;
}

.list-box {
  overflow: hidden;
  letter-spacing: 0.5px;  
  border-radius: 15px;
  padding: 15px;
  height: 100%;
  background-color: #ffffffd6;
}

.list-box .content h3 {
  display: block;
  line-height: 22px;
  font-size: 1.3rem !important;
  margin-bottom: 4px;
}

.list-box .content p {
  margin-bottom: 0px;
  opacity: 0.8;
  font-size: 1.2rem;
  line-height: 20px;
}

.list-box .list-icon i {
  display: block;
  font-size: 30px;
  margin-right: 15px;
  color: #F28123;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 60px;
  border: 3px #F28123 dotted;
  border-radius: 999px;
}

/* -----------------------------------------------------------------------------

# Cart

----------------------------------------------------------------------------- */
.cart {
  padding-left: 20px;
}

.yourcart{
  padding: 20px;
  background-color: #fff;
  border-radius: 3px;
}

.yourcart .incart{
  height: 50px;
  margin: 1.25rem 0;
  border-radius: 3px;
  display: flex;
  justify-content: left;
  align-items: center;
  box-shadow: 0 .1rem .5rem rgba(0,0,0,.15);
}

.main-menu .linka{
  height: 100%;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -60px;
}

.main-menu .linka i {
  font-size: 26px;
  color: #f28123;
  margin: 0 10px;
}

.main-menu .linka a {
  font-size: 14px;
  color: #fff; 
  font-weight: 400;
}

.main-menu .linka a:hover{
  color: #f28123;
}

.main-menu .linka a span {
  font-weight: 600;
}

.yourcart h3, .cartdone h3{
  letter-spacing: -1px;
  font-weight: 400;
  opacity: 0.9;
}

.yourcart p{
  font-size: 1.1rem;
  opacity: 0.9;
}

.yourcart .cartnext p{
  font-size: 1.3rem;
  text-align: right;
}

.yourcart .cartnext p{
  margin-bottom: 30px;
}

.yourcart .cartnext p:first-child{
  font-size: 1rem;
  opacity: 0.5;
  margin-bottom: 15px;
}

.yourcart .cartnext p span{
  font-size: 1.6rem;
  font-weight: 600;  
  letter-spacing: -0.4px;
}

.yourcart .cartnext #totalpricenodph{
  font-size: 1rem;
  font-weight: 400;    
}

.yourcart .cartnext .cartzpet{
  color: #103a4d;
  opacity: 0.9;
  float: left;
  padding-left: 5px;
}

.yourcart .cartnext .gdpr{
  color: #103a4d;
  padding-left: 15px;
  text-align: left;
  font-size: 0.8rem !important;
}

.yourcart .cartnext .cartzpet:hover{
  color: #000;
}

.yourcart .cartnext .disabled{
  background-color: #cacaca;
  cursor: default;
}
.yourcart .cartnext .disabled:hover{
  background-color: #cacaca;
  color: #fff;
}

.yourcart .cartnext a:last-child{  
  float: right;
  margin-top: -11px;
}

.yourcart .cartnext .hotovo{
  margin-top: 18px !important;
}

.yourcart img{
  opacity: 0.8;
}

.delay-03 {
  animation-delay: 0.3s;
}

.delay-1 {
  animation-delay: 1s;
}

.cartdone{
  padding: 100px 20px 50px;
  background-color: #fff;
  border-radius: 3px;
}

.cartdone i{
  font-size: 75px;
  color: #f28123;  
}

.cartdone h3{
  margin-top: 30px;
  margin-bottom: 0;
}

.cartdone p{
  color: #999;
  font-size: 1.2rem;
}

.cartdone p span{
  color: #f28123;
  font-weight: 600;
}

.cartdone div .success {
  color: #b96016;
  background-color: #ffd9b9;
  border-color: #b96016;
  padding: .75rem 1.25rem;
  margin: 3rem 2.5rem 0;
}

#cartlive h4{    
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  padding-left: 5px;
  font-size: 1.2rem;
  text-align: left;
  opacity: 0.9;
  line-height: 16px;
}

#cartlive h4 span{ 
  font-size: 12px;
  font-weight: 600;
  color: #103a4d;
  letter-spacing: 0.1px;
  opacity: 0.8;
  line-height: 12px;
}

#cartlive p{
  font-weight: 400;
  text-align: right;
}

#cartlive .finalprice{
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.4px;
}

#form2 h5{
  font-weight: 400;
  opacity: 0.9;
  font-size: 1.2rem;
}

.checkout-section .order{
  font-weight: 400;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Poppins", "Open Sans", sans-serif;
  margin: 0 0 3.25rem 0;
  line-height: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.checkout-section .order i{  
  font-size: 1.4rem;
  margin-left: 3px;
  display: none;
}

.checkout-section .order span.ordertext:not(:last-child)::after {
  content: "";
  display: inline-flex;
  width: 44px;
  top: -7px;
  position: relative;
  border-bottom: 1px solid #666;
}

.checkout-section .order span.ordertext:not(:last-child)::after {   
  margin: 0 20px;
}

.checkout-section .order span.ordercircle {
  content: "";
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  max-width: 2rem;
  max-height: 2rem;
  border: 1px solid #666;
  border-radius: 50%;
  font-size: 1.2rem;
  position: relative;
  margin-right: .65rem;
}
.checkout-section .order span.ordercircle:first-child {
  background-color: #f28123;
  border-color: #f28123;
}

label {
  cursor: pointer;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
    font-size: 1.1rem;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #f28123;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* -----------------------------------------------------------------------------

# Cart Banner Styles

----------------------------------------------------------------------------- */
.cart-banner {
  background-color: #fff;
}

.cart-banner .image-column {
  position: relative;  
}

.cart-banner .image-column .imgshadow img {  
  box-shadow: 0 0 20px #cacaca;
  border-radius: 8px;
  margin-top: 118px;
}

.cart-banner .content-column .price-box {
  position: absolute;
  left: 0;
  top: 50px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid transparent;
  background-color: rgba(242, 129, 35, 0.75);  
  animation: pulse 5s infinite;
}

.cart-banner .content-column .price-box .inner-price {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: #F28123;
}

.cart-banner .content-column .price-box .inner-price .price {
  color: #103a4d;
  padding-top: 27px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  font-weight: 400;
}

.cart-banner .content-column .price-box .inner-price .price strong {
  color: #103a4d;
  font-size: 24px;
}

.cart-banner .content-column {
  position: relative;
  padding-top: 150px;
  z-index: 1;
}

.cart-banner .content-column h3 {
  font-size: 40px;
}

.cart-banner .content-column h4 {
  position: relative;
  font-weight: 300;
  text-transform: uppercase;
}

.cart-banner .content-column .text {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.time-counter {
  position: relative;
  margin-bottom: 25px;
}

.time-counter .time-countdown {
  position: relative;
}

.time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
  font-size: 13px;
  line-height: 1em;
  padding: 4px 10px 7px;
  text-transform: capitalize;
  text-align: center;
  border: 1px solid #F28123;
}

.time-countdown .counter-column .count {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0px 0px;
  color: #F28123;
  font-weight: 700;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------------------------

# Shop Banner Styles

----------------------------------------------------------------------------- */
.shop-banner {
  position: relative; 
}

.shop-banner img{
  max-width: 190px;
  padding-top: 30px;
}
.shop-banner img.wave{
  max-width: 100%;
  margin: -1px 0;
  padding: 0;
}

.shop-banner h3 {
  position: relative;
  font-size: 46px;
  line-height: 1.2em;
  margin-bottom: 0px;
  color: white;
}

.shop-banner .sale-percent {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #F28123;
}

.shop-banner .sale-percent span {
  position: relative;
  font-size: 24px;
  line-height: 1.1em;
  color: white;
  font-weight: 400;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}

/* -----------------------------------------------------------------------------

# About Page Styles

----------------------------------------------------------------------------- */
.feature-bg {
  position: relative;
  margin: 150px 0;
}

.fbg1:after {  
    background-image: url('/OLD/assets/img/products/feature-bg1.jpg');
    background-position: right;
}
.fbg2:after {
    background-image: url('/OLD/assets/img/products/feature-bg2.jpg');
    background-position: right;
}
.fbg3:after {
    background-image: url('/OLD/assets/img/products/feature-bg3.jpg');
    background-position: center;
}

.feature-bg:after {
  position: absolute;
  right: 0;
  top: 60px;
  width: 700px;
  height: 390px;
  content: "";
  background-size: cover;
  border-top-left-radius: 8px;
  -webkit-box-shadow: 0 0 20px #cacaca;
  box-shadow: 0 0 20px #cacaca;
  border-bottom-left-radius: 8px;
  z-index: -1;
  animation: fadeInRight 2s forwards;
}

.arrow-left {
  width: 0px;
  height: 0px;
  border-top: 200px solid transparent;
  border-bottom: 200px solid transparent;
  border-right: 200px solid #f28123;
}

.featured-text h2{
  text-align: center;
}

.single-wd-item {
  position: relative;
}

.single-wd-item h4 {
  font-weight: 600;
  font-size: 1.5rem;  
  margin-top: 15px;
  margin-bottom: 10px;
}

.single-wd-item h4 span {
  font-weight: 400;
  font-size: 1.4rem; 
  display: block;
  margin-top: 10px;
  opacity: 0.8;
}

ul.social-link-team {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

ul.social-link-team li {
  display: inline-block;
}

ul.social-link-team li a {
  color: #fff;
  background-color: #F28123;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 5px;
}

/* -----------------------------------------------------------------------------

# Contact Page Styles

----------------------------------------------------------------------------- */
.form-title {
  margin-bottom: 25px;
}

.form-title h2 {
  font-size: 25px;
}

.form-title p {
  font-size: 15px;
  line-height: 1.8;
}

.contact-form form p input[type=text], .contact-form form p input[type=tel], .contact-form form p input[type=email] {
  width: 49%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.contact-form form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  height: 200px;
  border-radius: 3px;
  width: 100%;
  resize: none;
}

.contact-form-wrap {
  background-color: #FBFBFB;
  padding: 45px 30px;
  border-radius: 5px;
}

.contact-form-box {
  padding-left: 40px;
  margin-bottom: 30px;
}

.contact-form-box h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.contact-form-box h4 i {
  position: absolute;
  left: -13%;
  color: #F28123;
  top: 2px;
}

.contact-form-box p {
  line-height: 1.8;
  opacity: 0.9;
}

.contact-form-wrap .contact-form-box:last-child {
  margin: 0;
}

.find-location p {
  color: #fff;
  font-size: 40px;
  margin: 0;
  font-weight: 600;
  padding: 95px 0;
}

.find-location p i {
  margin-right: 10px;
  color: #F28123;
}

#form_status span {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background: #E74C3C;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 3px;
  margin-bottom: 18px;
}

#form_status span.loading {
  color: #333;
  background: #eee;
  border-radius: 3px;
  padding: 18px 0px;
}

#form_status span.notice {
  color: yellow;
}

#form_status .success {
  color: #fff;
  text-align: center;
  background: #2ecc71;
  border-radius: 3px;
  padding: 30px 0px;
}

#form_status .success i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 14px;
}

#form_status .success h3 {
  color: #fff;
  margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
.product-filters {
  margin-bottom: 80px;
}

.product-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.product-filters ul li {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  margin: 10px;
  border: 2px dotted #051922;
  color: #323232;
  cursor: pointer;
  padding: 0px 20px;
  border-radius: 25px;
}

.product-filters ul li.active {
  border: 2px solid #F28123;
  background-color: #F28123;
  color: #fff;
}

.single-product-item {
  margin-bottom: 15px;
}

.single-product-item p.ttp{   
  font-size: 1rem;  
  line-height: 16px;
  margin: 20px auto 0;
  width: 200px;
  padding-left: 15px;
}

.single-product-item a{
  color: #103a4d;
}
.single-product-item a:hover{
  color: #F26123;
}

.single-product-desc li{ 
  text-align: left;
  font-size: 1.1rem;
  line-height: 16px;
}

.single-product-desc.pt li:first-child{
  padding-top: 5px;
}

.single-product-desc {
  margin: 10px auto 0;
  width: 200px;
  padding-left: 36px;
}

.single-product-desc li span{ 
  font-size: 10px;
}

.product-price{
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.product-price span{
  display: inline-block;
  font-size: 1rem;
  letter-spacing: -1.1px;
  font-weight: 400;
}

.product-image {
  padding: 30px;
}

.product-image img:first-child{ 
  box-shadow: 0 0 15px #cacaca;  
  -webkit-box-shadow: 0 0 15px #cacaca;
}

.product-image img:hover {  
  box-shadow: none;
  -webkit-box-shadow: none;
}

.product-image img {
  width: 95%;
  border-radius: 5px;
}

.single-product-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

p.product-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0px;
}

p.product-desc span {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;  
  margin-top: 10px;
}

p.product-desc.mb15{
  margin-bottom: 15px;
}

a.cart-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #F28123;
  color: #fff;
  padding: 10px 20px;
  -webkit-user-select: none; 
  -ms-user-select: none; 
  user-select: none;
}

a.boxed-btn{
  -webkit-user-select: none; 
  -ms-user-select: none; 
  user-select: none;
}

a.cart-btn i {
  margin-right: 5px;
}

.single-product-img img {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.single-product-content h3 {
  font-size: 22px;
  font-weight: 600;
}

p.single-product-pricing span {
  font-size: 18px;
  display: block;
  opacity: 0.9;
  margin-bottom: 10px;
  font-weight: 600;
}

.single-product-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

.single-product-content p.single-product-pricing {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #103a4d;
  line-height: inherit;
}

input[type="number"] {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  width: 100px;
  margin-bottom: 15px;
}

.single-product-form a.cart-btn {
  margin-bottom: 15px;
}

a.cart-btn-clicked {
  background-color: #227c0e;
}

a.cart-btn-clicked:hover {  
  background-color: #227c0e;
  color: white;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-product-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
}

ul.product-share {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.product-share li {
  display: inline-block;
}

ul.product-share li a {
  display: block;
  color: #103a4d;
  margin-right: 10px;
}

.single-product-content {
  margin-left: 30px;
}

table.cart-table {
  border: 1px solid #f9f9f9;
  width: 100%;
}

thead {
  border-bottom: 1px solid #eee;
}

.grayline {
  width: calc(100%+30px);
  margin: 0 -15px;
  border-bottom: 1px solid #eee;
}

tr.table-head-row th {
  border-right: 1px solid #efefef;
  padding: 15px;
  font-weight: 500;
  text-align: center;
}

tr.table-head-row th:last-child {
  border-right: none;
}

.cart-table-wrap tbody tr td {
  text-align: center;
}

td.product-image img {
  max-width: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
  border: 1px solid #efefef;
  padding: 20px 0;
  color: #103a4d;
}

thead.cart-table-head tr {
  background-color: #efefef;
}

td.product-quantity input {
  margin-bottom: 0;
}

td.product-remove a {
  color: #103a4d;
}

.total-section table.total-table {
  border: 1px solid #efefef;
  width: 100%;
}

tr.table-total-row {
  background-color: #efefef;
}

tr.table-total-row th {
  font-weight: 500;
  font-size: 15px;
  padding: 15px;
}

table.total-table tbody tr.total-data td {
  border: 1px solid #efefef;
  padding: 19px 15px;
}

tr.total-data td strong {
  margin-right: 32px;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-buttons a:first-child {
  margin-right: 20px;
}

.coupon-section {
  margin-top: 50px;
}

.coupon-section h3 {
  font-size: 20px;
  font-weight: 500;
}

.coupon-form-wrap form p input[type=text] {
  border: 1px solid #ddd;
  color: #103a4d;
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
}

.cardform{
  background-color: #fff;
}

.cardform.single-accordion {
  margin-bottom: 15px;
  border-bottom: 1px solid #EFEFEF !important;
}

.cardform.single-accordion .card-header {
  background-color: #fff;
  border: none;
  padding: 0;
}

.cardform.single-accordion:last-child {
  margin-bottom: 0;
}

.cardform.single-accordion .card-header h5 button {
  color: #103a4d;
  font-size: 1.4rem;
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px;
  text-decoration: none;
  border: none;
  background-color: #f3f3f3;
  position: relative;
  padding-left: 50px;
  letter-spacing: -1px;  
  opacity: 0.9;
}

.cardform.single-accordion {
  border: 1px solid #F9F9F9;
}

.billing-address-form {
  padding: 20px;
}

.billing-address-form form p{
    margin: 0;
}

.billing-address-form form p input {
  border: 1px solid #ddd;
  padding: 0 15px;
  width: 100%;
  border-radius: 3px;
  height: 40px;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.billing-address-form form p textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 15px;
  height: 120px;
  resize: none;
}

.shipping-address-form p, .card-details p {
  margin: 0;
}

.cardform.single-accordion .card-header h5 button:before {
  position: absolute;
  left: 15px;
  top: 50%;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: #F28123;
}

.cardform.single-accordion .card-header h5 button[data-bs-target="#collapseOne"]:before{
  content: "\f2b9";
}
.cardform.single-accordion .card-header h5 button[data-bs-target="#collapseTwo"]:before{
  content: "\f5a0";
}
.cardform.single-accordion .card-header h5 button[data-bs-target="#collapseThree"]:before{
  content: "\f275";
}
.cardform.single-accordion .card-header h5 button[data-bs-target="#collapseFour"]:before{
  content: "\f249";
}

.billing-address-form form p:last-child {
  margin-bottom: 0;
}

table.order-details {
  border: 1px solid #efefef;
}

table.order-details thead tr th {
  background-color: #efefef;
  padding: 18px;
  font-size: 15px;
  font-weight: 500;
}

table.order-details tbody td {
  border: 1px solid #efefef;
  padding: 15px;
}

.order-details-wrap > a {
  margin-top: 30px;
}

.cardform.single-accordion {
  border: 1px solid #eeeeee;
}

.single-product-item {
  padding-bottom: 50px;
  padding-top: 30px;
  border-radius: 5px;
  background: white;  
}

#webdesign .single-product-item {
  -webkit-box-shadow: 0 0 20px #e4e4e4;
  box-shadow: 0 0 20px #e4e4e4;  
}



/* -----------------------------------------------------------------------------

# more

----------------------------------------------------------------------------- */
.error-text i {
  font-size: 90px;
  margin-bottom: 30px;
}

.error-text h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.error-text p {
  font-size: 15px;
  margin-bottom: 30px;
}

.full-height-section {
  height: 100%;
  display: table;
  width: 100%;
}

.full-height-tablecell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.walletimg {
  width: 15px;
  height: 15px;
  margin-right: 15px;  
}

.tooltiptext {
	visibility: hidden;
  width: 100px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 10px 5px;
	position: absolute;
	z-index: 1;
	top: 5px;
	left: 50%;
	margin-left: -50px;
  font-size: 0.9rem;
}

.tooltiptext:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltiptext {
  visibility: hidden;
  color: #fff;
  text-align: center;
  font-weight: 400;
}

.tooltipup:hover .tooltiptext {
  visibility: visible;
}

.imgcover1 {
    background-image: url('/OLD/assets/img/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;  
}

.imgcover2 {	
    background-image: url('/OLD/assets/img/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;  
    z-index: 1;
}

.imgcover3 {
  background-image: url('/OLD/assets/img/3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;  
  z-index: 1;
}

.hero-shade{
    position: relative;
    z-index: 0;
    height: 150%;
}

.hero-area:after, .hero-shade:after, .imgcover2:after, .imgcover3:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #07212e;
    z-index: -1;
    opacity: 0.6;
} 

.text-xl {
  color: #f28123;
  font-weight: 300;
  font-size: 96px;
}

.strikethrough {
  position: relative;
}

.strikethrough:before {
  position: absolute;
  content: "";
  left: -5%;
  top: 45%;
  right: -5%;
  border-top: 2px solid;
  border-color: inherit;
  
  -webkit-transform:rotate(-5deg);
  -moz-transform:rotate(-5deg);
  -ms-transform:rotate(-5deg);
  -o-transform:rotate(-5deg);
  transform:rotate(-5deg);
}

.grid{
  height: 380px;  
  background-size: cover;
  background-position: center;
  background-attachment: scroll;  
}

.sw{
  background-image: url('/OLD/assets/img/gold-smudge.jpg');
}
.dw{
  background-image: url('/OLD/assets/img/teal-smudge.jpg');
}
.w3{
  background-image: url('/OLD/assets/img/green-smudge.jpg');
}
.dww3{
  background-image: url('/OLD/assets/img/dww3-smudge.jpg');
}
.swdww3{
  background-image: url('/OLD/assets/img/swdww3-smudge.jpg');
}
.blsw{
  border-radius: 1px 0 0 1px;
  border-left: 4px solid #f18222 !important;
}
.bldw{
  border-radius: 1px 0 0 1px;
  border-left: 4px solid #5ab6bd !important;
}
.blw3{
  border-radius: 1px 0 0 1px;
  border-left: 4px solid #a9d68a !important;
}
.bldww3{
  border-left: 4px solid transparent !important;
}
.bldww3::before{
  content: "";
  position: relative;
  display: block;
  top: 0;
  width: 4px;
  left: -4px;
  height: 100%;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(#5ab6bd 50%,#a9d68a 50%);
}
.blswdww3{
  border-left: 4px solid transparent !important;
}
.blswdww3::before{
  content: "";
  position: relative;
  display: block;
  top: 0;
  width: 4px;
  left: -4px;
  height: 100%;
  border-radius: 2px 0 0 2px;
  background: linear-gradient(#f18222 33%,#5ab6bd 33% 66%,#a9d68a 66%);
}

.pricecenter{
  position: absolute;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 64%);
}

.pricecenter a.cart-btn{
  padding: 5px 15px;
  margin: 5px 0;
  width: 121.3px;
}

.pt-35{
  padding-top: 35px;
}

.price-mt-mb{
  margin-top: -10px;
  margin-bottom: 5px;
}

.boxshadow{
  box-shadow: 0 0 20px #cacaca;  
  -webkit-box-shadow: 0 0 20px #cacaca; 
}

.boxshadowop{
  box-shadow: 0 .1rem .5rem rgba(0,0,0,.15);  
  -webkit-box-shadow: 0 .1rem .5rem rgba(0,0,0,.15); 
}

.boxleaf{
  border-radius: 40px 0;
}

/* -----------------------------------------------------------------------------

# Cart

----------------------------------------------------------------------------- */

.quantity {
  align-items: center;
  background-color: #d91f29;
  border-radius: 1em;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 400;
  justify-content: center;
  line-height: 1;
  min-height: 17px;
  min-width: 17px;
  padding: 1px;
  z-index: 1;
  position: relative;
  top: -12px;
  margin-right: -17px;
}

.overlay:before {
  background-color: rgba(2,24,43,.5);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: .15s;
  z-index: 3;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;   
}

.overlayshow:before{
  opacity: 1;  
}

.showcart{
  display: flex !important;
}

#cart {
  align-items: stretch;
  background-color: #fff;
  border-radius: 3px;
  display: none;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.6;
  width: 360px;
  z-index: 101;
  position: absolute;
  right: 0px;
  top: 50px;  
  border-radius: 3px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;  
  -webkit-box-shadow: 0 0 20px #555555;
  box-shadow: 0 0 20px #555555;  
  max-height: 500px;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-color: #f28123 #e0e0e0;
  scrollbar-width: thin;
}

div.box-arrow {
  position: absolute;
  right: 12px; top: -5px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
  width: 0; height: 0;
}

#cart div h5{
  font-size: 1.2rem;
  letter-spacing: 0.1px;
  text-align: left;
  padding: 15px 15px 12px;  
  font-weight: 400;
}

#cart .cart-btn{
  font-weight: 400;
  padding: 5px 15px;
  font-size: 1rem;
  float: right;
  margin: 9px 10px 0 10px;
}

#cart a.vysypat {
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0;
  color: #F28123;
  float: left;
  padding: 15px 15px;
}

#cart a.vysypat:hover {  
  color: #051922 !important;
}

.incart{
  height: 50px;
  display: flex;
  margin: 0 1rem .8rem;
  box-shadow: 0 .05rem .3rem rgba(0,0,0,.15);
  border-radius: 1px 3px 3px 1px;
  align-items: center;
}

.incart .ksdiv{
  display: flex;
  justify-content: right;  
}

.incart p{
  font-size: 16px;
  font-weight: 400;
  color: #103a4d;
  position: relative;
  opacity: 0.9;
  flex: 1;
  margin: auto;
  text-align: left;
  line-height: 18px;
  font-family: "Open Sans", sans-serif;
}

.incart p.smallcart{
  margin: auto 5px auto 10px;
}

.incart p span{  
  font-size: 14px;
  font-weight: 600;
  color: #103a4d;
  letter-spacing: 0.1px;
  opacity: 1;  
  flex: 1; margin: auto;
}

.incart i{  
  cursor: pointer;
  font-size: 22px;
  color: #cacaca;
  padding-right: 4px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;  
  float: right;
  padding-left: 5px;
}

.incart i:hover{  
  color: #103a4d;
}

.incart .ksinput{
  width: 28px;
  margin: 10px 5px 10px 0;
  text-align: right;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding-right: 5px;
}
.incart .dksplus{    
  height: 20px;
  margin-top: 2px;
}
.incart .ksplusminus{
  margin: 0 5px; 
}

.incart .ksplusminus a{
  color: #051922;
  -webkit-user-select: none; 
  -ms-user-select: none; 
  user-select: none;
}
.incart .ksplusminus a:hover{
  color: #f28123;
}

.bottomline{
  border-bottom: 1px solid #e4e4e4;
}

#cartli{
  z-index: 4;
}

/* Timeline dot  */
.card::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: white;
  border-radius: 999px;
  border: 4px solid  #f27123;
  z-index: 1;
}
/* setting dot to the left if the card is odd */
.card:nth-child(odd)::after {
  left: -2px;
  top: 39px;
}

/* setting dot to the right if the card is odd */
.card:nth-child(even)::after {
  right: -3px;
  top: 38px;
}

/* setting padding based on even or odd */
.card:nth-child(odd) {
  padding: 10px 0 10px 25px;
  border-color: transparent;
}
.card:nth-child(even) {
  padding: 10px 25px 10px 0;
  border-color: transparent;
}
/* Global ::before */
.card::before {
  content: "";
  position: absolute;
  width: 50%;
  border: dashed #f27123; 
}
.card::before,.card::after{
  opacity: 0;
  -moz-animation: delayedShow 2s;
  /* Firefox */
  -webkit-animation: delayedShow 2s;
  /* Safari and Chrome */
  -o-animation: delayedShow 2s;
  /* Opera */
  animation: delayedShow 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@keyframes delayedShow {
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
@-webkit-keyframes delayedShow {
  50% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

.card{
  background-color: transparent;
}

.card:nth-child(odd) .list-box{  
  border-radius: 30px 8px 8px 30px;
}
.card:nth-child(even) .list-box{
  border-radius: 8px 30px 30px 8px;
}
.card:first-of-type .list-box{
  border-radius: 30px 8px 30px 8px;
}
.card:last-child .list-box{
  border-radius: 30px 8px 30px 8px;
}

/* Setting the border of top, bottom, left */
.card:nth-child(odd)::before {
  left: 3px;
  top: -3.5px;
  bottom: -3.5px;
  border-width: 5px 0 5px 5px;
  border-radius: 50px 0 0 50px;
  z-index: 1;
}

/* Setting the border of top, bottom, right */
.card:nth-child(even)::before {
  right: 3px;
  top: -3px;
  bottom: -2.5px;
  border-width: 5px 5px 5px 0;
  border-radius: 0 50px 50px 0;
  z-index: 1;
}

/* Removing the border if it is the first card */
.card:first-of-type:before {
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Removing the border if it is the last card  and it's odd */
.card:last-child:nth-child(odd)::before {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}

/* Removing the border if it is the last card  and it's even */
.card:last-child:nth-child(even)::before {
  border-bottom: 0;
  border-bottom-right-radius: 0;
}

.hide{
  display: none !important;
}

.dropcaret{
    padding-left: 5px;
}