@charset "UTF-8";
/** 
 * Title: Main SASS file
 * Description: Import All Other sass files
 * Author: Ibby
 * Version: 0.1 
**/
/**
 *
 * Variables
 *
 */
/*===================================
=            Base Colors            =
===================================*/
/*=====  End of Base Colors  ======*/
/*=====================================
=            Custom colors            =
=====================================*/
/*=====  End of Custom colors  ======*/
/*====================================
=            Font Weights            =
====================================*/
/*=====  End of Font Weights  ======*/
/*==================================
=            Font Sizes            =
==================================*/
/*=====  End of Font Sizes  ======*/
:root {
  --doc-height: 100%;
}

/**
 *
 * Fonts and default styling
 *
 */
/*=============================
=            Fonts            =
=============================*/
/*=====  Secont Font  ======*/
/*============================================
  =            Define Var for Fonts            =
  ============================================*/
/*=====  End of Define Var for Fonts  ======*/
/*===================================
  =            Body Styles            =
  ===================================*/
body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 16px;
}

/*=====  End of Body Styles  ======*/
/*=============================================
  =            General Styles            =
  =============================================*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/*=====  End of General Styles  ======*/
/*===== Start of colors  ======*/
/*=====  End of colors  ======*/
/**
 *
 * Breakpoints
 *
 */
/**
 *
 * Custom Mixins
 *
 */
/*=================================
=            Animation            =
=================================*/
@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
@-webkit-keyframes rotate {
  0%, to {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
@-webkit-keyframes bob {
  0%, to {
    transform: rotate(3deg);
    transform: translateX(0);
  }
  50% {
    transform: rotate(-6deg);
    transform: translateX(5%);
  }
}
/*=====  End of Animation  ======*/
/*=============================
=            Fonts            =
=============================*/
/*=====  End of Fonts  ======*/
/*=====================================
=            Custom Mixins            =
=====================================*/
.dark-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.25s ease-in-out;
}

.iti {
  width: 100%;
}

.iti__country-list {
  z-index: 55;
}

html[dir=rtl] .iti__country {
  text-align: right;
}
html[dir=rtl] .iti__country .iti__country-name, html[dir=rtl] .iti__country .iti__flag-box {
  margin-left: 6px;
}

html[dir=rtl] .iti--allow-dropdown .iti__flag-container, html[dir=rtl] .iti--separate-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}

/*=====  End of Custom Mixins  ======*/
/*=============================
=            Align            =
=============================*/
/*=====  End of Align  ======*/
/*=====================================
=            Color pallete            =
=====================================*/
/*=====  End of Color pallete  ======*/
/*================================
=            Triangle            =
================================*/
/*=====  End of Triangle  ======*/
/*===================================
=            Placeholder            =
===================================*/
/*=====  End of Placeholder  ======*/
/*================================
=            Clearfix            =
================================*/
/*=====  End of Clearfix  ======*/
/*================================
=            Gradient            =
================================*/
/*=====  End of Gradient  ======*/
/*=====================================
=            Quick Padding            =
=====================================*/
/*=====  End of Quick Padding  ======*/
@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}

.overflow-hidden {
  overflow: hidden;
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

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

.border-0 {
  border-bottom: 0 !important;
}

/**
 *
 * Pulls on breakpoints
 *
 */
@media (max-width: 767px) {
  /** Pull left xs **/
  .pull-left-xs {
    float: left;
  }
  /** Pull right xs **/
  .pull-right-xs {
    float: right;
  }
}
@media (min-width: 768px) {
  /** Pull left sm **/
  .pull-left-sm {
    float: left;
  }
  /** Pull right sm **/
  .pull-right-sm {
    float: right;
  }
}
@media only screen and (min-width: 992px) {
  .pull-left-md {
    float: left;
  }
  /** Pull right **/
  .pull-right-md {
    float: right;
  }
}
@media (min-width: 1200px) {
  /** Pull left **/
  .pull-left-lg {
    float: left;
  }
  /** Pull right **/
  .pull-right-lg {
    float: right;
  }
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.428571429;
  color: #333333;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #428bca;
  text-decoration: none;
}
a:hover, a:focus {
  color: rgb(41.9400826446, 99.7066115702, 149.5599173554);
  text-decoration: underline;
}
a:focus {
  outline: none;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.428571429;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid rgb(238.425, 238.425, 238.425);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before, .container:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px;
}
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px;
}
.container-fluid:after {
  clear: both;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before, .row:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px;
}
.row:after {
  clear: both;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-1 {
  width: 8.3333333333%;
}

.col-xs-2 {
  width: 16.6666666667%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-4 {
  width: 33.3333333333%;
}

.col-xs-5 {
  width: 41.6666666667%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-7 {
  width: 58.3333333333%;
}

.col-xs-8 {
  width: 66.6666666667%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-10 {
  width: 83.3333333333%;
}

.col-xs-11 {
  width: 91.6666666667%;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-pull-1 {
  right: 8.3333333333%;
}

.col-xs-pull-2 {
  right: 16.6666666667%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-4 {
  right: 33.3333333333%;
}

.col-xs-pull-5 {
  right: 41.6666666667%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-7 {
  right: 58.3333333333%;
}

.col-xs-pull-8 {
  right: 66.6666666667%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-10 {
  right: 83.3333333333%;
}

.col-xs-pull-11 {
  right: 91.6666666667%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-push-1 {
  left: 8.3333333333%;
}

.col-xs-push-2 {
  left: 16.6666666667%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-4 {
  left: 33.3333333333%;
}

.col-xs-push-5 {
  left: 41.6666666667%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-7 {
  left: 58.3333333333%;
}

.col-xs-push-8 {
  left: 66.6666666667%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-10 {
  left: 83.3333333333%;
}

.col-xs-push-11 {
  left: 91.6666666667%;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

.col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-1 {
    width: 8.3333333333%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-pull-1 {
    right: 8.3333333333%;
  }
  .col-sm-pull-2 {
    right: 16.6666666667%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-4 {
    right: 33.3333333333%;
  }
  .col-sm-pull-5 {
    right: 41.6666666667%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-7 {
    right: 58.3333333333%;
  }
  .col-sm-pull-8 {
    right: 66.6666666667%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-10 {
    right: 83.3333333333%;
  }
  .col-sm-pull-11 {
    right: 91.6666666667%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-push-1 {
    left: 8.3333333333%;
  }
  .col-sm-push-2 {
    left: 16.6666666667%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-4 {
    left: 33.3333333333%;
  }
  .col-sm-push-5 {
    left: 41.6666666667%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-7 {
    left: 58.3333333333%;
  }
  .col-sm-push-8 {
    left: 66.6666666667%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-10 {
    left: 83.3333333333%;
  }
  .col-sm-push-11 {
    left: 91.6666666667%;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-pull-1 {
    right: 8.3333333333%;
  }
  .col-md-pull-2 {
    right: 16.6666666667%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-4 {
    right: 33.3333333333%;
  }
  .col-md-pull-5 {
    right: 41.6666666667%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-7 {
    right: 58.3333333333%;
  }
  .col-md-pull-8 {
    right: 66.6666666667%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-10 {
    right: 83.3333333333%;
  }
  .col-md-pull-11 {
    right: 91.6666666667%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-push-1 {
    left: 8.3333333333%;
  }
  .col-md-push-2 {
    left: 16.6666666667%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-4 {
    left: 33.3333333333%;
  }
  .col-md-push-5 {
    left: 41.6666666667%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-7 {
    left: 58.3333333333%;
  }
  .col-md-push-8 {
    left: 66.6666666667%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-10 {
    left: 83.3333333333%;
  }
  .col-md-push-11 {
    left: 91.6666666667%;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
  .col-md-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-pull-1 {
    right: 8.3333333333%;
  }
  .col-lg-pull-2 {
    right: 16.6666666667%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-4 {
    right: 33.3333333333%;
  }
  .col-lg-pull-5 {
    right: 41.6666666667%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-7 {
    right: 58.3333333333%;
  }
  .col-lg-pull-8 {
    right: 66.6666666667%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-10 {
    right: 83.3333333333%;
  }
  .col-lg-pull-11 {
    right: 91.6666666667%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-push-1 {
    left: 8.3333333333%;
  }
  .col-lg-push-2 {
    left: 16.6666666667%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-4 {
    left: 33.3333333333%;
  }
  .col-lg-push-5 {
    left: 41.6666666667%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-7 {
    left: 58.3333333333%;
  }
  .col-lg-push-8 {
    left: 66.6666666667%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-10 {
    left: 83.3333333333%;
  }
  .col-lg-push-11 {
    left: 91.6666666667%;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
table {
  max-width: 100%;
  background-color: transparent;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.428571429;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

table col[class*=col-] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*=col-],
table th[class*=col-] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
  background-color: rgb(232.25, 232.25, 232.25);
}

.table > thead > tr > td.success,
.table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
  background-color: rgb(207.8888888889, 232.9166666667, 197.5833333333);
}

.table > thead > tr > td.info,
.table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
  background-color: rgb(195.9347826087, 227.0217391304, 242.5652173913);
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
  background-color: rgb(249.5322580645, 242.2419354839, 203.9677419355);
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
  background-color: rgb(234.7934782609, 203.7065217391, 203.7065217391);
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: none;
}
.btn:hover, .btn:focus {
  color: #333;
  text-decoration: none;
}
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: rgb(229.5, 229.5, 229.5);
  border-color: rgb(173.4, 173.4, 173.4);
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: rgb(53.1095041322, 126.2603305785, 189.3904958678);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(47.5247933884, 112.9834710744, 169.4752066116);
  border-color: rgb(39.7061983471, 94.3958677686, 141.5938016529);
}
.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
  background-image: none;
}
.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  background-color: #428bca;
  border-color: rgb(53.1095041322, 126.2603305785, 189.3904958678);
}
.btn-primary .badge {
  color: #428bca;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: rgb(76.0064102564, 174.4935897436, 76.0064102564);
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(68.2692307692, 156.7307692308, 68.2692307692);
  border-color: rgb(57.4371794872, 131.8628205128, 57.4371794872);
}
.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: rgb(76.0064102564, 174.4935897436, 76.0064102564);
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: rgb(69.7715736041, 183.845177665, 217.7284263959);
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(48.5431472081, 175.6903553299, 213.4568527919);
  border-color: rgb(37.9081218274, 153.9299492386, 188.3918781726);
}
.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: rgb(69.7715736041, 183.845177665, 217.7284263959);
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: rgb(238.0078125, 162.109375, 54.4921875);
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: rgb(236.015625, 151.21875, 30.984375);
  border-color: rgb(213.2296875, 132.515625, 18.0703125);
}
.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: rgb(238.0078125, 162.109375, 54.4921875);
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: rgb(212.4719626168, 62.5046728972, 58.0280373832);
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(201.4953271028, 48.0841121495, 43.5046728972);
  border-color: rgb(172.1345794393, 41.0775700935, 37.1654205607);
}
.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: rgb(212.4719626168, 62.5046728972, 58.0280373832);
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-link {
  color: #428bca;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: rgb(41.9400826446, 99.7066115702, 149.5599173554);
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs, .btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: rgb(38.25, 38.25, 38.25);
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  color: #999999;
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}

.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}

.dropdown-menu-right {
  left: auto;
  right: 0;
}

.dropdown-menu-left {
  left: 0;
  right: auto;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #999999;
}

.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
  .navbar-right .dropdown-menu-left {
    left: 0;
    right: auto;
  }
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: 0;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  margin-left: -5px;
}
.btn-toolbar:before, .btn-toolbar:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px;
}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
  float: left;
}
.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
  margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group > .btn-group {
  float: left;
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group.btn-group-lg > .btn + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn .caret {
  margin-left: 0;
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px;
}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
  float: none;
  display: table-cell;
  width: 1%;
}
.btn-group-justified > .btn-group .btn {
  width: 100%;
}

[data-toggle=buttons] > .btn > input[type=radio],
[data-toggle=buttons] > .btn > input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.nav {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.nav:before, .nav:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px;
}
.nav:after {
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: rgb(238.425, 238.425, 238.425);
}
.nav > li.disabled > a {
  color: #999999;
}
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
  color: #999999;
  text-decoration: none;
  background-color: transparent;
  cursor: not-allowed;
}
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
  background-color: rgb(238.425, 238.425, 238.425);
  border-color: #428bca;
}
.nav .nav-divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.nav > li > a > img {
  max-width: none;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.428571429;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: rgb(238.425, 238.425, 238.425) rgb(238.425, 238.425, 238.425) #ddd;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #f9f9f9;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
  cursor: default;
}
.nav-pills > li {
  float: left;
}
.nav-pills > li > a {
  border-radius: 4px;
}
.nav-pills > li + li {
  margin-left: 2px;
}
.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  color: #fff;
  background-color: #428bca;
}

.nav-stacked > li {
  float: none;
}
.nav-stacked > li + li {
  margin-top: 2px;
  margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
  width: 100%;
}
.nav-justified > li, .nav-tabs.nav-justified > li {
  float: none;
}
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
  text-align: center;
  margin-bottom: 5px;
}
.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}
@media (min-width: 768px) {
  .nav-justified > li, .nav-tabs.nav-justified > li {
    display: table-cell;
    width: 1%;
  }
  .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-bottom: 0;
  }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
  border-bottom: 0;
}
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
  margin-right: 0;
  border-radius: 4px;
}
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
  border: 1px solid #ddd;
}
@media (min-width: 768px) {
  .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    border-bottom: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
  }
  .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
  .nav-tabs-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus {
    border-bottom-color: #fff;
  }
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}

.media,
.media .media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media-object {
  display: block;
}

.media-heading {
  margin: 0 0 5px;
}

.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}

.media-list {
  padding-left: 0;
  list-style: none;
}

.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}
.embed-responsive.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}
.embed-responsive.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.close {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  width: max-content !important;
  background: transparent !important;
  border: none !important;
  margin: 0 0 0 auto !important;
  height: max-content !important;
  line-height: 16px !important;
}
.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.428571429;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  visibility: visible;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}
.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}
.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}
.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}
.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  left: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  right: 5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  left: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  right: 5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

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

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs, .visible-sm, .visible-md, .visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
.fa, .fab, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scaleX(-1);
}

.fa-flip-vertical {
  transform: scaleY(-1);
}

.fa-flip-horizontal.fa-flip-vertical, .fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}

.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1);
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270 {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-abacus:before {
  content: "\f640";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acorn:before {
  content: "\f6ae";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-alarm-clock:before {
  content: "\f34e";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-alicorn:before {
  content: "\f6b0";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-analytics:before {
  content: "\f643";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angel:before {
  content: "\f779";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-crate:before {
  content: "\f6b1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-alt-down:before {
  content: "\f354";
}

.fa-arrow-alt-from-bottom:before {
  content: "\f346";
}

.fa-arrow-alt-from-left:before {
  content: "\f347";
}

.fa-arrow-alt-from-right:before {
  content: "\f348";
}

.fa-arrow-alt-from-top:before {
  content: "\f349";
}

.fa-arrow-alt-left:before {
  content: "\f355";
}

.fa-arrow-alt-right:before {
  content: "\f356";
}

.fa-arrow-alt-square-down:before {
  content: "\f350";
}

.fa-arrow-alt-square-left:before {
  content: "\f351";
}

.fa-arrow-alt-square-right:before {
  content: "\f352";
}

.fa-arrow-alt-square-up:before {
  content: "\f353";
}

.fa-arrow-alt-to-bottom:before {
  content: "\f34a";
}

.fa-arrow-alt-to-left:before {
  content: "\f34b";
}

.fa-arrow-alt-to-right:before {
  content: "\f34c";
}

.fa-arrow-alt-to-top:before {
  content: "\f34d";
}

.fa-arrow-alt-up:before {
  content: "\f357";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-from-bottom:before {
  content: "\f342";
}

.fa-arrow-from-left:before {
  content: "\f343";
}

.fa-arrow-from-right:before {
  content: "\f344";
}

.fa-arrow-from-top:before {
  content: "\f345";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-square-down:before {
  content: "\f339";
}

.fa-arrow-square-left:before {
  content: "\f33a";
}

.fa-arrow-square-right:before {
  content: "\f33b";
}

.fa-arrow-square-up:before {
  content: "\f33c";
}

.fa-arrow-to-bottom:before {
  content: "\f33d";
}

.fa-arrow-to-left:before {
  content: "\f33e";
}

.fa-arrow-to-right:before {
  content: "\f340";
}

.fa-arrow-to-top:before {
  content: "\f341";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-atom-alt:before {
  content: "\f5d3";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-axe:before {
  content: "\f6b2";
}

.fa-axe-battle:before {
  content: "\f6b3";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backpack:before {
  content: "\f5d4";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-badge:before {
  content: "\f335";
}

.fa-badge-check:before {
  content: "\f336";
}

.fa-badge-dollar:before {
  content: "\f645";
}

.fa-badge-percent:before {
  content: "\f646";
}

.fa-badger-honey:before {
  content: "\f6b4";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ball-pile:before {
  content: "\f77e";
}

.fa-ballot:before {
  content: "\f732";
}

.fa-ballot-check:before {
  content: "\f733";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-barcode-alt:before {
  content: "\f463";
}

.fa-barcode-read:before {
  content: "\f464";
}

.fa-barcode-scan:before {
  content: "\f465";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball:before {
  content: "\f432";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-basketball-hoop:before {
  content: "\f435";
}

.fa-bat:before {
  content: "\f6b5";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-bolt:before {
  content: "\f376";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-slash:before {
  content: "\f377";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-school:before {
  content: "\f5d5";
}

.fa-bell-school-slash:before {
  content: "\f5d6";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bells:before {
  content: "\f77f";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blanket:before {
  content: "\f498";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bone-break:before {
  content: "\f5d8";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-alt:before {
  content: "\f5d9";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-heart:before {
  content: "\f499";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-book-spells:before {
  content: "\f6b8";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-books:before {
  content: "\f5db";
}

.fa-boot:before {
  content: "\f782";
}

.fa-booth-curtain:before {
  content: "\f734";
}

.fa-bow-arrow:before {
  content: "\f6b9";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-bowling-pins:before {
  content: "\f437";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-alt:before {
  content: "\f49a";
}

.fa-box-ballot:before {
  content: "\f735";
}

.fa-box-check:before {
  content: "\f467";
}

.fa-box-fragile:before {
  content: "\f49b";
}

.fa-box-full:before {
  content: "\f49c";
}

.fa-box-heart:before {
  content: "\f49d";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-up:before {
  content: "\f49f";
}

.fa-box-usd:before {
  content: "\f4a0";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-boxes-alt:before {
  content: "\f4a1";
}

.fa-boxing-glove:before {
  content: "\f438";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-browser:before {
  content: "\f37e";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-bullseye-arrow:before {
  content: "\f648";
}

.fa-bullseye-pointer:before {
  content: "\f649";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-bus-school:before {
  content: "\f5dd";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-cabinet-filing:before {
  content: "\f64b";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calculator-alt:before {
  content: "\f64c";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-edit:before {
  content: "\f333";
}

.fa-calendar-exclamation:before {
  content: "\f334";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-star:before {
  content: "\f736";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-alt:before {
  content: "\f332";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campfire:before {
  content: "\f6ba";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candle-holder:before {
  content: "\f6bc";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-candy-corn:before {
  content: "\f6bd";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-bump:before {
  content: "\f5e0";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-garage:before {
  content: "\f5e2";
}

.fa-car-mechanic:before {
  content: "\f5e3";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-car-tilt:before {
  content: "\f5e5";
}

.fa-car-wash:before {
  content: "\f5e6";
}

.fa-caret-circle-down:before {
  content: "\f32d";
}

.fa-caret-circle-left:before {
  content: "\f32e";
}

.fa-caret-circle-right:before {
  content: "\f330";
}

.fa-caret-circle-up:before {
  content: "\f331";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cauldron:before {
  content: "\f6bf";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chair-office:before {
  content: "\f6c1";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-line-down:before {
  content: "\f64d";
}

.fa-chart-network:before {
  content: "\f78a";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-chart-pie-alt:before {
  content: "\f64e";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-bishop-alt:before {
  content: "\f43b";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-clock:before {
  content: "\f43d";
}

.fa-chess-clock-alt:before {
  content: "\f43e";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-king-alt:before {
  content: "\f440";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-knight-alt:before {
  content: "\f442";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-pawn-alt:before {
  content: "\f444";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-queen-alt:before {
  content: "\f446";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chess-rook-alt:before {
  content: "\f448";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-double-down:before {
  content: "\f322";
}

.fa-chevron-double-left:before {
  content: "\f323";
}

.fa-chevron-double-right:before {
  content: "\f324";
}

.fa-chevron-double-up:before {
  content: "\f325";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-square-down:before {
  content: "\f329";
}

.fa-chevron-square-left:before {
  content: "\f32a";
}

.fa-chevron-square-right:before {
  content: "\f32b";
}

.fa-chevron-square-up:before {
  content: "\f32c";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chimney:before {
  content: "\f78b";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-claw-marks:before {
  content: "\f6c2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clipboard-list-check:before {
  content: "\f737";
}

.fa-clipboard-prescription:before {
  content: "\f5e8";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-drizzle:before {
  content: "\f738";
}

.fa-cloud-hail:before {
  content: "\f739";
}

.fa-cloud-hail-mixed:before {
  content: "\f73a";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-rainbow:before {
  content: "\f73e";
}

.fa-cloud-showers:before {
  content: "\f73f";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sleet:before {
  content: "\f741";
}

.fa-cloud-snow:before {
  content: "\f742";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-clouds:before {
  content: "\f744";
}

.fa-clouds-moon:before {
  content: "\f745";
}

.fa-clouds-sun:before {
  content: "\f746";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-club:before {
  content: "\f327";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-code-commit:before {
  content: "\f386";
}

.fa-code-merge:before {
  content: "\f387";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-coffee-togo:before {
  content: "\f6c5";
}

.fa-coffin:before {
  content: "\f6c6";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-alt-check:before {
  content: "\f4a2";
}

.fa-comment-alt-dollar:before {
  content: "\f650";
}

.fa-comment-alt-dots:before {
  content: "\f4a3";
}

.fa-comment-alt-edit:before {
  content: "\f4a4";
}

.fa-comment-alt-exclamation:before {
  content: "\f4a5";
}

.fa-comment-alt-lines:before {
  content: "\f4a6";
}

.fa-comment-alt-minus:before {
  content: "\f4a7";
}

.fa-comment-alt-plus:before {
  content: "\f4a8";
}

.fa-comment-alt-slash:before {
  content: "\f4a9";
}

.fa-comment-alt-smile:before {
  content: "\f4aa";
}

.fa-comment-alt-times:before {
  content: "\f4ab";
}

.fa-comment-check:before {
  content: "\f4ac";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-edit:before {
  content: "\f4ae";
}

.fa-comment-exclamation:before {
  content: "\f4af";
}

.fa-comment-lines:before {
  content: "\f4b0";
}

.fa-comment-minus:before {
  content: "\f4b1";
}

.fa-comment-plus:before {
  content: "\f4b2";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comment-smile:before {
  content: "\f4b4";
}

.fa-comment-times:before {
  content: "\f4b5";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-alt:before {
  content: "\f4b6";
}

.fa-comments-alt-dollar:before {
  content: "\f652";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compass-slash:before {
  content: "\f5e9";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-compress-wide:before {
  content: "\f326";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-container-storage:before {
  content: "\f4b7";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-conveyor-belt:before {
  content: "\f46e";
}

.fa-conveyor-belt-alt:before {
  content: "\f46f";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-corn:before {
  content: "\f6c7";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cow:before {
  content: "\f6c8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-credit-card-blank:before {
  content: "\f389";
}

.fa-credit-card-front:before {
  content: "\f38a";
}

.fa-cricket:before {
  content: "\f449";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-curling:before {
  content: "\f44a";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dagger:before {
  content: "\f6cb";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deer:before {
  content: "\f78e";
}

.fa-deer-rudolph:before {
  content: "\f78f";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-desktop-alt:before {
  content: "\f390";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dewpoint:before {
  content: "\f748";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d10:before {
  content: "\f6cd";
}

.fa-dice-d12:before {
  content: "\f6ce";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d4:before {
  content: "\f6d0";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-d8:before {
  content: "\f6d2";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-diploma:before {
  content: "\f5ea";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-do-not-enter:before {
  content: "\f5ec";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dog-leashed:before {
  content: "\f6d4";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-empty:before {
  content: "\f473";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-dolly-flatbed-alt:before {
  content: "\f475";
}

.fa-dolly-flatbed-empty:before {
  content: "\f476";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-circle:before {
  content: "\f5ed";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-draw-square:before {
  content: "\f5ef";
}

.fa-dreidel:before {
  content: "\f792";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick:before {
  content: "\f6d6";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-duck:before {
  content: "\f6d8";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-ear:before {
  content: "\f5f0";
}

.fa-ear-muffs:before {
  content: "\f795";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-eclipse:before {
  content: "\f749";
}

.fa-eclipse-alt:before {
  content: "\f74a";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edit:before {
  content: "\f044";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-elephant:before {
  content: "\f6da";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-h-alt:before {
  content: "\f39b";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ellipsis-v-alt:before {
  content: "\f39c";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-empty-set:before {
  content: "\f656";
}

.fa-engine-warning:before {
  content: "\f5f2";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-dollar:before {
  content: "\f657";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-square:before {
  content: "\f321";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows:before {
  content: "\f31d";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expand-wide:before {
  content: "\f320";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-evil:before {
  content: "\f6db";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-field-hockey:before {
  content: "\f44c";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-certificate:before {
  content: "\f5f3";
}

.fa-file-chart-line:before {
  content: "\f659";
}

.fa-file-chart-pie:before {
  content: "\f65a";
}

.fa-file-check:before {
  content: "\f316";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-edit:before {
  content: "\f31c";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-exclamation:before {
  content: "\f31a";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-minus:before {
  content: "\f318";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-plus:before {
  content: "\f319";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-spreadsheet:before {
  content: "\f65b";
}

.fa-file-times:before {
  content: "\f317";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-user:before {
  content: "\f65c";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-film-alt:before {
  content: "\f3a0";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-fire-smoke:before {
  content: "\f74b";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-fireplace:before {
  content: "\f79a";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-alt:before {
  content: "\f74c";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flame:before {
  content: "\f6df";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flask-poison:before {
  content: "\f6e0";
}

.fa-flask-potion:before {
  content: "\f6e1";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-fog:before {
  content: "\f74e";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-folder-times:before {
  content: "\f65f";
}

.fa-folders:before {
  content: "\f660";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-football-helmet:before {
  content: "\f44f";
}

.fa-forklift:before {
  content: "\f47a";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-fragile:before {
  content: "\f4bb";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frosty-head:before {
  content: "\f79b";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-function:before {
  content: "\f661";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gas-pump-slash:before {
  content: "\f5f4";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gift-card:before {
  content: "\f663";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-gingerbread-man:before {
  content: "\f79d";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-champagne:before {
  content: "\f79e";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glass-whiskey-rocks:before {
  content: "\f7a1";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glasses-alt:before {
  content: "\f5f5";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-globe-snow:before {
  content: "\f7a3";
}

.fa-globe-stand:before {
  content: "\f5f6";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-golf-club:before {
  content: "\f451";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-h1:before {
  content: "\f313";
}

.fa-h2:before {
  content: "\f314";
}

.fa-h3:before {
  content: "\f315";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hammer-war:before {
  content: "\f6e4";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-heart:before {
  content: "\f4bc";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-box:before {
  content: "\f47b";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-magic:before {
  content: "\f6e5";
}

.fa-hand-holding-seedling:before {
  content: "\f4bf";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-receiving:before {
  content: "\f47c";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-heart:before {
  content: "\f4c3";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-usd:before {
  content: "\f4c5";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt:before {
  content: "\f4c6";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-santa:before {
  content: "\f7a7";
}

.fa-hat-winter:before {
  content: "\f7a8";
}

.fa-hat-witch:before {
  content: "\f6e7";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-haykal:before {
  content: "\f666";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side:before {
  content: "\f6e9";
}

.fa-head-vr:before {
  content: "\f6ea";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heart-circle:before {
  content: "\f4c7";
}

.fa-heart-rate:before {
  content: "\f5f8";
}

.fa-heart-square:before {
  content: "\f4c8";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-helmet-battle:before {
  content: "\f6eb";
}

.fa-hexagon:before {
  content: "\f312";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hockey-mask:before {
  content: "\f6ee";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-hockey-sticks:before {
  content: "\f454";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-home-heart:before {
  content: "\f4c9";
}

.fa-hood-cloak:before {
  content: "\f6ef";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-flood:before {
  content: "\f74f";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-humidity:before {
  content: "\f750";
}

.fa-hurricane:before {
  content: "\f751";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-skate:before {
  content: "\f7ac";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-inbox-in:before {
  content: "\f310";
}

.fa-inbox-out:before {
  content: "\f311";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-industry-alt:before {
  content: "\f3b3";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-info-square:before {
  content: "\f30f";
}

.fa-inhaler:before {
  content: "\f5f9";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-integral:before {
  content: "\f667";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-intersection:before {
  content: "\f668";
}

.fa-inventory:before {
  content: "\f480";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-jack-o-lantern:before {
  content: "\f30e";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-key-skeleton:before {
  content: "\f6f3";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-keynote:before {
  content: "\f66c";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kidneys:before {
  content: "\f5fb";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kite:before {
  content: "\f6f4";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-knife-kitchen:before {
  content: "\f6f5";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-lambda:before {
  content: "\f66e";
}

.fa-lamp:before {
  content: "\f4ca";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-landmark-alt:before {
  content: "\f752";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-layer-minus:before {
  content: "\f5fe";
}

.fa-layer-plus:before {
  content: "\f5ff";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leaf-heart:before {
  content: "\f4cb";
}

.fa-leaf-maple:before {
  content: "\f6f6";
}

.fa-leaf-oak:before {
  content: "\f6f7";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-lightbulb-dollar:before {
  content: "\f670";
}

.fa-lightbulb-exclamation:before {
  content: "\f671";
}

.fa-lightbulb-on:before {
  content: "\f672";
}

.fa-lightbulb-slash:before {
  content: "\f673";
}

.fa-lights-holiday:before {
  content: "\f7b2";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lips:before {
  content: "\f600";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location:before {
  content: "\f601";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-location-circle:before {
  content: "\f602";
}

.fa-location-slash:before {
  content: "\f603";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-alt:before {
  content: "\f30d";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-lock-open-alt:before {
  content: "\f3c2";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-loveseat:before {
  content: "\f4cc";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luchador:before {
  content: "\f455";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-mace:before {
  content: "\f6f8";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-mandolin:before {
  content: "\f6f9";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-marker-alt-slash:before {
  content: "\f605";
}

.fa-map-marker-check:before {
  content: "\f606";
}

.fa-map-marker-edit:before {
  content: "\f607";
}

.fa-map-marker-exclamation:before {
  content: "\f608";
}

.fa-map-marker-minus:before {
  content: "\f609";
}

.fa-map-marker-plus:before {
  content: "\f60a";
}

.fa-map-marker-question:before {
  content: "\f60b";
}

.fa-map-marker-slash:before {
  content: "\f60c";
}

.fa-map-marker-smile:before {
  content: "\f60d";
}

.fa-map-marker-times:before {
  content: "\f60e";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaphone:before {
  content: "\f675";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-mind-share:before {
  content: "\f677";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-hexagon:before {
  content: "\f307";
}

.fa-minus-octagon:before {
  content: "\f308";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mistletoe:before {
  content: "\f7b4";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-mobile-android:before {
  content: "\f3ce";
}

.fa-mobile-android-alt:before {
  content: "\f3cf";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monitor-heart-rate:before {
  content: "\f611";
}

.fa-monkey:before {
  content: "\f6fb";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-moon-cloud:before {
  content: "\f754";
}

.fa-moon-stars:before {
  content: "\f755";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mountains:before {
  content: "\f6fd";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-mug-marshmallows:before {
  content: "\f7b7";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-narwhal:before {
  content: "\f6fe";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-nintendo-switch:before {
  content: "\f418";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octagon:before {
  content: "\f306";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-oil-temp:before {
  content: "\f614";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-omega:before {
  content: "\f67a";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-ornament:before {
  content: "\f7b8";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-brush-alt:before {
  content: "\f5a9";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-pallet-alt:before {
  content: "\f483";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-parking-circle:before {
  content: "\f615";
}

.fa-parking-circle-slash:before {
  content: "\f616";
}

.fa-parking-slash:before {
  content: "\f617";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paw-alt:before {
  content: "\f701";
}

.fa-paw-claws:before {
  content: "\f702";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pegasus:before {
  content: "\f703";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-paintbrush:before {
  content: "\f618";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-pennant:before {
  content: "\f456";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-person-carry:before {
  content: "\f4cf";
}

.fa-person-dolly:before {
  content: "\f4d0";
}

.fa-person-dolly-empty:before {
  content: "\f4d1";
}

.fa-person-sign:before {
  content: "\f757";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-office:before {
  content: "\f67d";
}

.fa-phone-plus:before {
  content: "\f4d2";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-php:before {
  content: "\f457";
}

.fa-pi:before {
  content: "\f67e";
}

.fa-pie:before {
  content: "\f705";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pig:before {
  content: "\f706";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-alt:before {
  content: "\f3de";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-hexagon:before {
  content: "\f300";
}

.fa-plus-octagon:before {
  content: "\f301";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-podium:before {
  content: "\f680";
}

.fa-podium-star:before {
  content: "\f758";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poll-people:before {
  content: "\f759";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-presentation:before {
  content: "\f685";
}

.fa-print:before {
  content: "\f02f";
}

.fa-print-slash:before {
  content: "\f686";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pumpkin:before {
  content: "\f707";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-question-square:before {
  content: "\f2fd";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-rabbit:before {
  content: "\f708";
}

.fa-rabbit-fast:before {
  content: "\f709";
}

.fa-racquet:before {
  content: "\f45a";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-raindrops:before {
  content: "\f75c";
}

.fa-ram:before {
  content: "\f70a";
}

.fa-ramp-loading:before {
  content: "\f4d4";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-rectangle-landscape:before {
  content: "\f2fa";
}

.fa-rectangle-portrait:before {
  content: "\f2fb";
}

.fa-rectangle-wide:before {
  content: "\f2fc";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-repeat:before {
  content: "\f363";
}

.fa-repeat-1:before {
  content: "\f365";
}

.fa-repeat-1-alt:before {
  content: "\f366";
}

.fa-repeat-alt:before {
  content: "\f364";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-retweet-alt:before {
  content: "\f361";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-route-highway:before {
  content: "\f61a";
}

.fa-route-interstate:before {
  content: "\f61b";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-triangle:before {
  content: "\f61c";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rv:before {
  content: "\f7be";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-scalpel:before {
  content: "\f61d";
}

.fa-scalpel-path:before {
  content: "\f61e";
}

.fa-scanner:before {
  content: "\f488";
}

.fa-scanner-keyboard:before {
  content: "\f489";
}

.fa-scanner-touchscreen:before {
  content: "\f48a";
}

.fa-scarecrow:before {
  content: "\f70d";
}

.fa-scarf:before {
  content: "\f7c1";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-scroll-old:before {
  content: "\f70f";
}

.fa-scrubber:before {
  content: "\f2f8";
}

.fa-scythe:before {
  content: "\f710";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-all:before {
  content: "\f367";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-sheep:before {
  content: "\f711";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield:before {
  content: "\f132";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-check:before {
  content: "\f2f7";
}

.fa-shield-cross:before {
  content: "\f712";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shipping-timed:before {
  content: "\f48c";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shovel:before {
  content: "\f713";
}

.fa-shovel-snow:before {
  content: "\f7c3";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shredder:before {
  content: "\f68a";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-shuttlecock:before {
  content: "\f45b";
}

.fa-sigma:before {
  content: "\f68b";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signal-1:before {
  content: "\f68c";
}

.fa-signal-2:before {
  content: "\f68d";
}

.fa-signal-3:before {
  content: "\f68e";
}

.fa-signal-4:before {
  content: "\f68f";
}

.fa-signal-alt:before {
  content: "\f690";
}

.fa-signal-alt-1:before {
  content: "\f691";
}

.fa-signal-alt-2:before {
  content: "\f692";
}

.fa-signal-alt-3:before {
  content: "\f693";
}

.fa-signal-alt-slash:before {
  content: "\f694";
}

.fa-signal-slash:before {
  content: "\f695";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-skeleton:before {
  content: "\f620";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-ski-jump:before {
  content: "\f7c7";
}

.fa-ski-lift:before {
  content: "\f7c8";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sledding:before {
  content: "\f7cb";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-sliders-h-square:before {
  content: "\f3f0";
}

.fa-sliders-v:before {
  content: "\f3f1";
}

.fa-sliders-v-square:before {
  content: "\f3f2";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-plus:before {
  content: "\f5b9";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoke:before {
  content: "\f760";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snake:before {
  content: "\f716";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snow-blowing:before {
  content: "\f761";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowflakes:before {
  content: "\f7cf";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowmobile:before {
  content: "\f7d1";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-spade:before {
  content: "\f2f4";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spider-black-widow:before {
  content: "\f718";
}

.fa-spider-web:before {
  content: "\f719";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-spinner-third:before {
  content: "\f3f4";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root:before {
  content: "\f697";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-squirrel:before {
  content: "\f71a";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-staff:before {
  content: "\f71b";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-christmas:before {
  content: "\f7d4";
}

.fa-star-exclamation:before {
  content: "\f2f3";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-stars:before {
  content: "\f762";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-steering-wheel:before {
  content: "\f622";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stocking:before {
  content: "\f7d5";
}

.fa-stomach:before {
  content: "\f623";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-sun-cloud:before {
  content: "\f763";
}

.fa-sun-dust:before {
  content: "\f764";
}

.fa-sun-haze:before {
  content: "\f765";
}

.fa-sunrise:before {
  content: "\f766";
}

.fa-sunset:before {
  content: "\f767";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-sword:before {
  content: "\f71c";
}

.fa-swords:before {
  content: "\f71d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablet-android:before {
  content: "\f3fb";
}

.fa-tablet-android-alt:before {
  content: "\f3fc";
}

.fa-tablet-rugged:before {
  content: "\f48f";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer:before {
  content: "\f0e4";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tachometer-alt-average:before {
  content: "\f624";
}

.fa-tachometer-alt-fast:before {
  content: "\f625";
}

.fa-tachometer-alt-fastest:before {
  content: "\f626";
}

.fa-tachometer-alt-slow:before {
  content: "\f627";
}

.fa-tachometer-alt-slowest:before {
  content: "\f628";
}

.fa-tachometer-average:before {
  content: "\f629";
}

.fa-tachometer-fast:before {
  content: "\f62a";
}

.fa-tachometer-fastest:before {
  content: "\f62b";
}

.fa-tachometer-slow:before {
  content: "\f62c";
}

.fa-tachometer-slowest:before {
  content: "\f62d";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tally:before {
  content: "\f69c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-frigid:before {
  content: "\f768";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-hot:before {
  content: "\f76a";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-tennis-ball:before {
  content: "\f45e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-theta:before {
  content: "\f69e";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-thunderstorm:before {
  content: "\f76c";
}

.fa-thunderstorm-moon:before {
  content: "\f76d";
}

.fa-thunderstorm-sun:before {
  content: "\f76e";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tilde:before {
  content: "\f69f";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-times-hexagon:before {
  content: "\f2ee";
}

.fa-times-octagon:before {
  content: "\f2f0";
}

.fa-times-square:before {
  content: "\f2d3";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tire:before {
  content: "\f631";
}

.fa-tire-flat:before {
  content: "\f632";
}

.fa-tire-pressure-warning:before {
  content: "\f633";
}

.fa-tire-rugged:before {
  content: "\f634";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-alt:before {
  content: "\f71f";
}

.fa-tombstone:before {
  content: "\f720";
}

.fa-tombstone-alt:before {
  content: "\f721";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-toothbrush:before {
  content: "\f635";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tornado:before {
  content: "\f76f";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-cone:before {
  content: "\f636";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-traffic-light-go:before {
  content: "\f638";
}

.fa-traffic-light-slow:before {
  content: "\f639";
}

.fa-traffic-light-stop:before {
  content: "\f63a";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-treasure-chest:before {
  content: "\f723";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-tree-alt:before {
  content: "\f400";
}

.fa-tree-christmas:before {
  content: "\f7db";
}

.fa-tree-decorated:before {
  content: "\f7dc";
}

.fa-tree-large:before {
  content: "\f7dd";
}

.fa-trees:before {
  content: "\f724";
}

.fa-trello:before {
  content: "\f181";
}

.fa-triangle:before {
  content: "\f2ec";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-trophy-alt:before {
  content: "\f2eb";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-container:before {
  content: "\f4dc";
}

.fa-truck-couch:before {
  content: "\f4dd";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-truck-plow:before {
  content: "\f7de";
}

.fa-truck-ramp:before {
  content: "\f4e0";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-turkey:before {
  content: "\f725";
}

.fa-turtle:before {
  content: "\f726";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-tv-retro:before {
  content: "\f401";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-unicorn:before {
  content: "\f727";
}

.fa-union:before {
  content: "\f6a2";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usd-circle:before {
  content: "\f2e8";
}

.fa-usd-square:before {
  content: "\f2e9";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-chart:before {
  content: "\f6a3";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-crown:before {
  content: "\f6a4";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-class:before {
  content: "\f63d";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-crown:before {
  content: "\f6a5";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-fork:before {
  content: "\f2e3";
}

.fa-utensil-knife:before {
  content: "\f2e4";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-utensils-alt:before {
  content: "\f2e6";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-value-absolute:before {
  content: "\f6a6";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-plus:before {
  content: "\f4e1";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-volcano:before {
  content: "\f770";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume:before {
  content: "\f6a8";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-slash:before {
  content: "\f2e2";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-nay:before {
  content: "\f771";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-wand:before {
  content: "\f72a";
}

.fa-wand-magic:before {
  content: "\f72b";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-warehouse-alt:before {
  content: "\f495";
}

.fa-watch:before {
  content: "\f2e1";
}

.fa-watch-fitness:before {
  content: "\f63e";
}

.fa-water:before {
  content: "\f773";
}

.fa-water-lower:before {
  content: "\f774";
}

.fa-water-rise:before {
  content: "\f775";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whale:before {
  content: "\f72c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheat:before {
  content: "\f72d";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whistle:before {
  content: "\f460";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wifi-1:before {
  content: "\f6aa";
}

.fa-wifi-2:before {
  content: "\f6ab";
}

.fa-wifi-slash:before {
  content: "\f6ac";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-wind-warning:before {
  content: "\f776";
}

.fa-window:before {
  content: "\f40e";
}

.fa-window-alt:before {
  content: "\f40f";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-windsock:before {
  content: "\f777";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wreath:before {
  content: "\f7e2";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: normal;
  src: url(../webfonts/fa-brands-400.eot);
  src: url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(../webfonts/fa-brands-400.woff2) format("woff2"), url(../webfonts/fa-brands-400.woff) format("woff"), url(../webfonts/fa-brands-400.ttf) format("truetype"), url(../webfonts/fa-brands-400.svg#fontawesome) format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  src: url(../webfonts/fa-light-300.eot);
  src: url(../webfonts/fa-light-300.eot?#iefix) format("embedded-opentype"), url(../webfonts/fa-light-300.woff2) format("woff2"), url(../webfonts/fa-light-300.woff) format("woff"), url(../webfonts/fa-light-300.ttf) format("truetype"), url(../webfonts/fa-light-300.svg#fontawesome) format("svg");
}
.fal {
  font-weight: 300;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  src: url(../webfonts/fa-regular-400.eot);
  src: url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(../webfonts/fa-regular-400.woff2) format("woff2"), url(../webfonts/fa-regular-400.woff) format("woff"), url(../webfonts/fa-regular-400.ttf) format("truetype"), url(../webfonts/fa-regular-400.svg#fontawesome) format("svg");
}
.fal, .far {
  font-family: "Font Awesome 5 Pro";
}

.far {
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  src: url(../webfonts/fa-solid-900.eot);
  src: url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(../webfonts/fa-solid-900.woff2) format("woff2"), url(../webfonts/fa-solid-900.woff) format("woff"), url(../webfonts/fa-solid-900.ttf) format("truetype"), url(../webfonts/fa-solid-900.svg#fontawesome) format("svg");
}
.fa, .fas {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/*!
 * Bootstrap-select v1.12.2 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2017 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */
select.bs-select-hidden, select.selectpicker {
  display: none !important;
}

.bootstrap-select {
  width: 220px\9 ;
}

.bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}

.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;
}

.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}

.error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}

.bootstrap-select.fit-width {
  width: auto !important;
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 220px;
}

.bootstrap-select .dropdown-toggle:focus {
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  outline-offset: -2px;
}

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}

.bootstrap-select.form-control:not([class*=col-]) {
  width: 100%;
}

.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}

.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}

.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*=col-] {
  float: none;
  display: inline-block;
  margin-left: 0;
}

.bootstrap-select.btn-group.dropdown-menu-right, .bootstrap-select.btn-group[class*=col-].dropdown-menu-right, .row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
  float: right;
}

.form-group .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group, .form-inline .bootstrap-select.btn-group {
  margin-bottom: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control, .form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}

.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle, .form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}

.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}

.bootstrap-select.btn-group.disabled, .bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}

.bootstrap-select.btn-group.disabled:focus, .bootstrap-select.btn-group > .disabled:focus {
  outline: 0 !important;
}

.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0 !important;
  padding: 0 !important;
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}

.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
  width: 100%;
}

.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
  color: #fff;
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
  cursor: not-allowed;
}

.bootstrap-select.btn-group .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
}

.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}

.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
  display: block;
}

.bs-actionsbox, .bs-donebutton, .bs-searchbox {
  padding: 4px 8px;
}

.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.bs-donebutton .btn-group button {
  width: 100%;
}

.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}

.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */
img {
  vertical-align: middle;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.bcg {
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: initial;
  background-size: initial;
  height: 100%;
  width: 100%;
  background-size: cover;
}
@media only screen and (max-width: 767.98px) {
  .bcg {
    background-attachment: scroll !important;
  }
}

.hsContainer {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#contact .bcg {
  position: relative;
  background-image: url(../img/bg/parallax1.jpg);
}

#contact {
  height: 640px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #contact {
    height: 400px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #contact {
    height: 400px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #contact {
    height: 400px !important;
  }
}

#about_bg .bcg {
  position: relative;
  background-image: url(../img/bg/parallax1.jpg);
}

#about_bg {
  height: 680px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #about_bg {
    height: 400px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #about_bg {
    height: 400px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #about_bg {
    height: 400px !important;
  }
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) and (min-width: 240px) and (max-width: tablet-port) {
  .bcg {
    background-size: cover;
  }
}
@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.options-wrapper {
  margin-bottom: 20px;
  display: flex;
  gap: 15px;
}
@media only screen and (max-width: 991.98px) {
  .options-wrapper {
    flex-direction: column;
  }
}

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 18px;
  text-align: left;
  font: normal normal 300 12px/22px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #646464;
  opacity: 1;
  margin: 5px 0px;
}
html[dir=rtl] .control {
  padding-right: 30px;
  padding-left: 0px;
  text-align: right;
  font-family: "Cairo", sans-serif;
}
.control a {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}
.control a:hover {
  color: #235940;
  text-decoration: none;
}
.control.control--radio .control__indicator {
  border-radius: 50%;
}
.control.control--radio .control__indicator:after {
  border-radius: 50%;
}
.control input {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0px;
  margin: 0px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.control input:checked ~ .control__indicator, .control input:hover ~ .control__indicator, .control input:focus ~ .control__indicator {
  background: transparent;
  border-color: #e5e5e5;
  transition: all ease-in-out 0.5s;
}
.control input:checked ~ .control__indicator:after, .control input:hover ~ .control__indicator:after, .control input:focus ~ .control__indicator:after {
  visibility: visible;
  opacity: 1;
  transition: all ease-in-out 0.5s;
}
.control .control__indicator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 14px;
  width: 14px;
  background: #fff;
  border: 1px solid #afafb0;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .control .control__indicator {
  right: 0;
  left: unset;
}
.control .control__indicator:after {
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background-color: #235940;
  border: none;
  box-sizing: initial;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.5s;
}

/*
* Bootstrap 3 XL CSS Grid
*
* Bootstrap 3 XL CSS Grid addition for big and retina screens coverage
*
* Extends Bootstrap v3 by:
* Adding col-xl (1600+), col-xxl (1920+), col-xxxl (2560+)
* Adding visible and hidden options for all three
* Optionally limiting visible-lg, hidden-lg (1200+) classes to max 1600px
* Optionally increasing container fixed width for all three screen sizes
*
* Copyright 2014 Arnis Puskeiris (apbyte, arnico)
* Licensed under the MIT License
* http://opensource.org/licenses/MIT
*/
/* ==========================================================================
   Fix visible-lg and hidden-lg for resolutions over 1600px
   Remove if don't want to use
   ========================================================================== */
@media (min-width: 1600px) {
  .visible-lg {
    display: none !important;
  }
  .hidden-lg {
    display: block !important;
  }
  table.hidden-lg {
    display: table;
  }
  tr.hidden-lg {
    display: table-row !important;
  }
  th.hidden-lg,
  td.hidden-lg {
    display: table-cell !important;
  }
}
/* ==========================================================================
   Set containers fixed sizes for >1600px, >1920px, >2560px
   Remove all if don't want to use big fixed sizes for all blocks
   You still can use cols with .container-fluid blocks
   ========================================================================== */
@media only screen and (min-width: 1551px) {
  .container {
    width: 1460px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* ==========================================================================
   col-xl, col-xxl, col-xxxl setup.
   Don't remove anything below this line
   ========================================================================== */
.col-xl-1, .col-xxl-1, .col-xxxl-1, .col-xl-2, .col-xxl-2, .col-md-2, .col-xxxl-2, .col-xl-3, .col-xxl-3, .col-md-3, .col-xxxl-3, .col-xl-4, .col-xxl-4, .col-md-4, .col-xxxl-4, .col-xl-5, .col-xxl-5, .col-md-5, .col-xxxl-5, .col-xl-6, .col-xxl-6, .col-md-6, .col-xxxl-6, .col-xl-7, .col-xxl-7, .col-md-7, .col-xxxl-7, .col-xl-8, .col-xxl-8, .col-md-8, .col-xxxl-8, .col-xl-9, .col-xxl-9, .col-md-9, .col-xxxl-9, .col-xl-10, .col-xxl-100, .col-xxxl-10, .col-xl-11, .col-xxl-111, .col-xxxl-11, .col-xl-12, .col-xxl-122, .col-xxxl-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 1600px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left;
  }
  html[dir=rtl] .col-xl-1, html[dir=rtl] .col-xl-2, html[dir=rtl] .col-xl-3, html[dir=rtl] .col-xl-4, html[dir=rtl] .col-xl-5, html[dir=rtl] .col-xl-6, html[dir=rtl] .col-xl-7, html[dir=rtl] .col-xl-8, html[dir=rtl] .col-xl-9, html[dir=rtl] .col-xl-10, html[dir=rtl] .col-xl-11, html[dir=rtl] .col-xl-12 {
    float: right;
  }
  .col-xl-12 {
    width: 100%;
  }
  .col-xl-11 {
    width: 91.66666667%;
  }
  .col-xl-10 {
    width: 83.33333333%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-8 {
    width: 66.66666667%;
  }
  .col-xl-7 {
    width: 58.33333333%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-5 {
    width: 41.66666667%;
  }
  .col-xl-4 {
    width: 33.33333333%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-2 {
    width: 16.66666667%;
  }
  .col-xl-1 {
    width: 8.33333333%;
  }
  .col-xl-pull-12 {
    right: 100%;
  }
  .col-xl-pull-11 {
    right: 91.66666667%;
  }
  .col-xl-pull-10 {
    right: 83.33333333%;
  }
  .col-xl-pull-9 {
    right: 75%;
  }
  .col-xl-pull-8 {
    right: 66.66666667%;
  }
  .col-xl-pull-7 {
    right: 58.33333333%;
  }
  .col-xl-pull-6 {
    right: 50%;
  }
  .col-xl-pull-5 {
    right: 41.66666667%;
  }
  .col-xl-pull-4 {
    right: 33.33333333%;
  }
  .col-xl-pull-3 {
    right: 25%;
  }
  .col-xl-pull-2 {
    right: 16.66666667%;
  }
  .col-xl-pull-1 {
    right: 8.33333333%;
  }
  .col-xl-pull-0 {
    right: 0;
  }
  .col-xl-push-12 {
    left: 100%;
  }
  .col-xl-push-11 {
    left: 91.66666667%;
  }
  .col-xl-push-10 {
    left: 83.33333333%;
  }
  .col-xl-push-9 {
    left: 75%;
  }
  .col-xl-push-8 {
    left: 66.66666667%;
  }
  .col-xl-push-7 {
    left: 58.33333333%;
  }
  .col-xl-push-6 {
    left: 50%;
  }
  .col-xl-push-5 {
    left: 41.66666667%;
  }
  .col-xl-push-4 {
    left: 33.33333333%;
  }
  .col-xl-push-3 {
    left: 25%;
  }
  .col-xl-push-2 {
    left: 16.66666667%;
  }
  .col-xl-push-1 {
    left: 8.33333333%;
  }
  .col-xl-push-0 {
    left: 0;
  }
  .col-xl-offset-12 {
    margin-left: 100%;
  }
  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xl-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1920px) {
  .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
    float: left;
  }
  html[dir=rtl] .col-xxl-1, html[dir=rtl] .col-xxl-2, html[dir=rtl] .col-xxl-3, html[dir=rtl] .col-xxl-4, html[dir=rtl] .col-xxl-5, html[dir=rtl] .col-xxl-6, html[dir=rtl] .col-xxl-7, html[dir=rtl] .col-xxl-8, html[dir=rtl] .col-xxl-9, html[dir=rtl] .col-xxl-10, html[dir=rtl] .col-xxl-11, html[dir=rtl] .col-xxl-12 {
    float: right;
  }
  .col-xxl-12 {
    width: 100%;
  }
  .col-xxl-11 {
    width: 91.66666667%;
  }
  .col-xxl-10 {
    width: 83.33333333%;
  }
  .col-xxl-9 {
    width: 75%;
  }
  .col-xxl-8 {
    width: 66.66666667%;
  }
  .col-xxl-7 {
    width: 58.33333333%;
  }
  .col-xxl-6 {
    width: 50%;
  }
  .col-xxl-5 {
    width: 41.66666667%;
  }
  .col-xxl-4 {
    width: 33.33333333%;
  }
  .col-xxl-3 {
    width: 25%;
  }
  .col-xxl-2 {
    width: 16.66666667%;
  }
  .col-xxl-1 {
    width: 8.33333333%;
  }
  .col-xxl-pull-12 {
    right: 100%;
  }
  .col-xxl-pull-11 {
    right: 91.66666667%;
  }
  .col-xxl-pull-10 {
    right: 83.33333333%;
  }
  .col-xxl-pull-9 {
    right: 75%;
  }
  .col-xxl-pull-8 {
    right: 66.66666667%;
  }
  .col-xxl-pull-7 {
    right: 58.33333333%;
  }
  .col-xxl-pull-6 {
    right: 50%;
  }
  .col-xxl-pull-5 {
    right: 41.66666667%;
  }
  .col-xxl-pull-4 {
    right: 33.33333333%;
  }
  .col-xxl-pull-3 {
    right: 25%;
  }
  .col-xxl-pull-2 {
    right: 16.66666667%;
  }
  .col-xxl-pull-1 {
    right: 8.33333333%;
  }
  .col-xxl-pull-0 {
    right: 0;
  }
  .col-xxl-push-12 {
    left: 100%;
  }
  .col-xxl-push-11 {
    left: 91.66666667%;
  }
  .col-xxl-push-10 {
    left: 83.33333333%;
  }
  .col-xxl-push-9 {
    left: 75%;
  }
  .col-xxxl-push-8 {
    left: 66.66666667%;
  }
  .col-xxxl-push-7 {
    left: 58.33333333%;
  }
  .col-xxxl-push-6 {
    left: 50%;
  }
  .col-xxxl-push-5 {
    left: 41.66666667%;
  }
  .col-xxxl-push-4 {
    left: 33.33333333%;
  }
  .col-xxxl-push-3 {
    left: 25%;
  }
  .col-xxxl-push-2 {
    left: 16.66666667%;
  }
  .col-xxxl-push-1 {
    left: 8.33333333%;
  }
  .col-xxxl-push-0 {
    left: 0;
  }
  .col-xxxl-offset-12 {
    margin-left: 100%;
  }
  .col-xxxl-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-xxxl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xxxl-offset-9 {
    margin-left: 75%;
  }
  .col-xxxl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xxxl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xxxl-offset-6 {
    margin-left: 50%;
  }
  .col-xxxl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xxxl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xxxl-offset-3 {
    margin-left: 25%;
  }
  .col-xxxl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xxxl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xxxl-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 2560px) {
  .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, .col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12 {
    float: left;
  }
  html[dir=rtl] .col-xxxl-1, html[dir=rtl] .col-xxxl-2, html[dir=rtl] .col-xxxl-3, html[dir=rtl] .col-xxxl-4, html[dir=rtl] .col-xxxl-5, html[dir=rtl] .col-xxxl-6, html[dir=rtl] .col-xxxl-7, html[dir=rtl] .col-xxxl-8, html[dir=rtl] .col-xxxl-9, html[dir=rtl] .col-xxxl-10, html[dir=rtl] .col-xxxl-11, html[dir=rtl] .col-xxxl-12 {
    float: right;
  }
  .col-xxxl-12 {
    width: 100%;
  }
  .col-xxxl-11 {
    width: 91.66666667%;
  }
  .col-xxxl-10 {
    width: 83.33333333%;
  }
  .col-xxxl-9 {
    width: 75%;
  }
  .col-xxxl-8 {
    width: 66.66666667%;
  }
  .col-xxxl-7 {
    width: 58.33333333%;
  }
  .col-xxxl-6 {
    width: 50%;
  }
  .col-xxxl-5 {
    width: 41.66666667%;
  }
  .col-xxxl-4 {
    width: 33.33333333%;
  }
  .col-xxxl-3 {
    width: 25%;
  }
  .col-xxxl-2 {
    width: 16.66666667%;
  }
  .col-xxxl-1 {
    width: 8.33333333%;
  }
  .col-xxxl-pull-12 {
    right: 100%;
  }
  .col-xxxl-pull-11 {
    right: 91.66666667%;
  }
  .col-xxxl-pull-10 {
    right: 83.33333333%;
  }
  .col-xxxl-pull-9 {
    right: 75%;
  }
  .col-xxxl-pull-8 {
    right: 66.66666667%;
  }
  .col-xxxl-pull-7 {
    right: 58.33333333%;
  }
  .col-xxxl-pull-6 {
    right: 50%;
  }
  .col-xxxl-pull-5 {
    right: 41.66666667%;
  }
  .col-xxxl-pull-4 {
    right: 33.33333333%;
  }
  .col-xxxl-pull-3 {
    right: 25%;
  }
  .col-xxxl-pull-2 {
    right: 16.66666667%;
  }
  .col-xxxl-pull-1 {
    right: 8.33333333%;
  }
  .col-xxxl-pull-0 {
    right: 0;
  }
  .col-xxxl-push-12 {
    left: 100%;
  }
  .col-xxxl-push-11 {
    left: 91.66666667%;
  }
  .col-xxxl-push-10 {
    left: 83.33333333%;
  }
  .col-xxxl-push-9 {
    left: 75%;
  }
  .col-xxxl-push-8 {
    left: 66.66666667%;
  }
  .col-xxxl-push-7 {
    left: 58.33333333%;
  }
  .col-xxxl-push-6 {
    left: 50%;
  }
  .col-xxxl-push-5 {
    left: 41.66666667%;
  }
  .col-xxxl-push-4 {
    left: 33.33333333%;
  }
  .col-xxxl-push-3 {
    left: 25%;
  }
  .col-xxxl-push-2 {
    left: 16.66666667%;
  }
  .col-xxxl-push-1 {
    left: 8.33333333%;
  }
  .col-xxxl-push-0 {
    left: 0;
  }
  .col-xxxl-offset-12 {
    margin-left: 100%;
  }
  .col-xxxl-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-xxxl-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xxxl-offset-9 {
    margin-left: 75%;
  }
  .col-xxxl-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xxxl-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xxxl-offset-6 {
    margin-left: 50%;
  }
  .col-xxxl-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xxxl-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xxxl-offset-3 {
    margin-left: 25%;
  }
  .col-xxxl-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xxxl-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xxxl-offset-0 {
    margin-left: 0;
  }
}
.visible-xl,
.visible-xxl,
.visible-xxxl {
  display: none !important;
}

@media (min-width: 1600px) and (max-width: 1919px) {
  .visible-xl {
    display: block !important;
  }
  table.visible-xl {
    display: table;
  }
  tr.visible-xl {
    display: table-row !important;
  }
  th.visible-xl,
  td.visible-xl {
    display: table-cell !important;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .visible-xxl {
    display: block !important;
  }
  table.visible-xxl {
    display: table;
  }
  tr.visible-xxl {
    display: table-row !important;
  }
  th.visible-xxl,
  td.visible-xxl {
    display: table-cell !important;
  }
}
@media (min-width: 2560px) {
  .visible-xxxl {
    display: block !important;
  }
  table.visible-xxxl {
    display: table;
  }
  tr.visible-xxxl {
    display: table-row !important;
  }
  th.visible-xxxl,
  td.visible-xxxl {
    display: table-cell !important;
  }
}
@media (min-width: 1600px) and (max-width: 1919px) {
  .hidden-xl {
    display: none !important;
  }
}
@media (min-width: 1920px) and (max-width: 2559px) {
  .hidden-xxl {
    display: none !important;
  }
}
@media (min-width: 2560px) {
  .hidden-xxxl {
    display: none !important;
  }
}
.flagstrap {
  display: inline-block;
  position: relative;
  width: 100%;
}

.flagstrap-icon {
  display: inline-block;
  width: 16px;
  height: 11px;
  background: url(flags.png) no-repeat;
}

.flagstrap-icon.flagstrap-ad {
  background-position: -16px 0;
}

.flagstrap-icon.flagstrap-ae {
  background-position: -32px 0;
}

.flagstrap-icon.flagstrap-af {
  background-position: -48px 0;
}

.flagstrap-icon.flagstrap-ag {
  background-position: -64px 0;
}

.flagstrap-icon.flagstrap-ai {
  background-position: -80px 0;
}

.flagstrap-icon.flagstrap-al {
  background-position: -96px 0;
}

.flagstrap-icon.flagstrap-am {
  background-position: -112px 0;
}

.flagstrap-icon.flagstrap-an {
  background-position: -128px 0;
}

.flagstrap-icon.flagstrap-ao {
  background-position: -144px 0;
}

.flagstrap-icon.flagstrap-ar {
  background-position: -160px 0;
}

.flagstrap-icon.flagstrap-as {
  background-position: -176px 0;
}

.flagstrap-icon.flagstrap-at {
  background-position: -192px 0;
}

.flagstrap-icon.flagstrap-au {
  background-position: -208px 0;
}

.flagstrap-icon.flagstrap-aw {
  background-position: -224px 0;
}

.flagstrap-icon.flagstrap-az {
  background-position: -240px 0;
}

.flagstrap-icon.flagstrap-ba {
  background-position: 0 -11px;
}

.flagstrap-icon.flagstrap-bb {
  background-position: -16px -11px;
}

.flagstrap-icon.flagstrap-bd {
  background-position: -32px -11px;
}

.flagstrap-icon.flagstrap-be {
  background-position: -48px -11px;
}

.flagstrap-icon.flagstrap-bf {
  background-position: -64px -11px;
}

.flagstrap-icon.flagstrap-bg {
  background-position: -80px -11px;
}

.flagstrap-icon.flagstrap-bh {
  background-position: -96px -11px;
}

.flagstrap-icon.flagstrap-bi {
  background-position: -112px -11px;
}

.flagstrap-icon.flagstrap-bj {
  background-position: -128px -11px;
}

.flagstrap-icon.flagstrap-bm {
  background-position: -144px -11px;
}

.flagstrap-icon.flagstrap-bn {
  background-position: -160px -11px;
}

.flagstrap-icon.flagstrap-bo {
  background-position: -176px -11px;
}

.flagstrap-icon.flagstrap-br {
  background-position: -192px -11px;
}

.flagstrap-icon.flagstrap-bs {
  background-position: -208px -11px;
}

.flagstrap-icon.flagstrap-bt {
  background-position: -224px -11px;
}

.flagstrap-icon.flagstrap-bv {
  background-position: -240px -11px;
}

.flagstrap-icon.flagstrap-bw {
  background-position: 0 -22px;
}

.flagstrap-icon.flagstrap-by {
  background-position: -16px -22px;
}

.flagstrap-icon.flagstrap-bz {
  background-position: -32px -22px;
}

.flagstrap-icon.flagstrap-ca {
  background-position: -48px -22px;
}

.flagstrap-icon.flagstrap-catalonia {
  background-position: -64px -22px;
}

.flagstrap-icon.flagstrap-cd {
  background-position: -80px -22px;
}

.flagstrap-icon.flagstrap-cf {
  background-position: -96px -22px;
}

.flagstrap-icon.flagstrap-cg {
  background-position: -112px -22px;
}

.flagstrap-icon.flagstrap-ch {
  background-position: -128px -22px;
}

.flagstrap-icon.flagstrap-ci {
  background-position: -144px -22px;
}

.flagstrap-icon.flagstrap-ck {
  background-position: -160px -22px;
}

.flagstrap-icon.flagstrap-cl {
  background-position: -176px -22px;
}

.flagstrap-icon.flagstrap-cm {
  background-position: -192px -22px;
}

.flagstrap-icon.flagstrap-cn {
  background-position: -208px -22px;
}

.flagstrap-icon.flagstrap-co {
  background-position: -224px -22px;
}

.flagstrap-icon.flagstrap-cr {
  background-position: -240px -22px;
}

.flagstrap-icon.flagstrap-cu {
  background-position: 0 -33px;
}

.flagstrap-icon.flagstrap-cv {
  background-position: -16px -33px;
}

.flagstrap-icon.flagstrap-cw {
  background-position: -32px -33px;
}

.flagstrap-icon.flagstrap-cy {
  background-position: -48px -33px;
}

.flagstrap-icon.flagstrap-cz {
  background-position: -64px -33px;
}

.flagstrap-icon.flagstrap-de {
  background-position: -80px -33px;
}

.flagstrap-icon.flagstrap-dj {
  background-position: -96px -33px;
}

.flagstrap-icon.flagstrap-dk {
  background-position: -112px -33px;
}

.flagstrap-icon.flagstrap-dm {
  background-position: -128px -33px;
}

.flagstrap-icon.flagstrap-do {
  background-position: -144px -33px;
}

.flagstrap-icon.flagstrap-dz {
  background-position: -160px -33px;
}

.flagstrap-icon.flagstrap-ec {
  background-position: -176px -33px;
}

.flagstrap-icon.flagstrap-ee {
  background-position: -192px -33px;
}

.flagstrap-icon.flagstrap-eg {
  background-position: -208px -33px;
}

.flagstrap-icon.flagstrap-eh {
  background-position: -224px -33px;
}

.flagstrap-icon.flagstrap-england {
  background-position: -240px -33px;
}

.flagstrap-icon.flagstrap-er {
  background-position: 0 -44px;
}

.flagstrap-icon.flagstrap-es {
  background-position: -16px -44px;
}

.flagstrap-icon.flagstrap-et {
  background-position: -32px -44px;
}

.flagstrap-icon.flagstrap-eu {
  background-position: -48px -44px;
}

.flagstrap-icon.flagstrap-fi {
  background-position: -64px -44px;
}

.flagstrap-icon.flagstrap-fj {
  background-position: -80px -44px;
}

.flagstrap-icon.flagstrap-fk {
  background-position: -96px -44px;
}

.flagstrap-icon.flagstrap-fm {
  background-position: -112px -44px;
}

.flagstrap-icon.flagstrap-fo {
  background-position: -128px -44px;
}

.flagstrap-icon.flagstrap-fr {
  background-position: -144px -44px;
}

.flagstrap-icon.flagstrap-ga {
  background-position: -160px -44px;
}

.flagstrap-icon.flagstrap-gb {
  background-position: -176px -44px;
}

.flagstrap-icon.flagstrap-gd {
  background-position: -192px -44px;
}

.flagstrap-icon.flagstrap-ge {
  background-position: -208px -44px;
}

.flagstrap-icon.flagstrap-gf {
  background-position: -224px -44px;
}

.flagstrap-icon.flagstrap-gg {
  background-position: -240px -44px;
}

.flagstrap-icon.flagstrap-gh {
  background-position: 0 -55px;
}

.flagstrap-icon.flagstrap-gi {
  background-position: -16px -55px;
}

.flagstrap-icon.flagstrap-gl {
  background-position: -32px -55px;
}

.flagstrap-icon.flagstrap-gm {
  background-position: -48px -55px;
}

.flagstrap-icon.flagstrap-gn {
  background-position: -64px -55px;
}

.flagstrap-icon.flagstrap-gp {
  background-position: -80px -55px;
}

.flagstrap-icon.flagstrap-gq {
  background-position: -96px -55px;
}

.flagstrap-icon.flagstrap-gr {
  background-position: -112px -55px;
}

.flagstrap-icon.flagstrap-gs {
  background-position: -128px -55px;
}

.flagstrap-icon.flagstrap-gt {
  background-position: -144px -55px;
}

.flagstrap-icon.flagstrap-gu {
  background-position: -160px -55px;
}

.flagstrap-icon.flagstrap-gw {
  background-position: -176px -55px;
}

.flagstrap-icon.flagstrap-gy {
  background-position: -192px -55px;
}

.flagstrap-icon.flagstrap-hk {
  background-position: -208px -55px;
}

.flagstrap-icon.flagstrap-hm {
  background-position: -224px -55px;
}

.flagstrap-icon.flagstrap-hn {
  background-position: -240px -55px;
}

.flagstrap-icon.flagstrap-hr {
  background-position: 0 -66px;
}

.flagstrap-icon.flagstrap-ht {
  background-position: -16px -66px;
}

.flagstrap-icon.flagstrap-hu {
  background-position: -32px -66px;
}

.flagstrap-icon.flagstrap-ic {
  background-position: -48px -66px;
}

.flagstrap-icon.flagstrap-id {
  background-position: -64px -66px;
}

.flagstrap-icon.flagstrap-ie {
  background-position: -80px -66px;
}

.flagstrap-icon.flagstrap-il {
  background-position: -96px -66px;
}

.flagstrap-icon.flagstrap-im {
  background-position: -112px -66px;
}

.flagstrap-icon.flagstrap-in {
  background-position: -128px -66px;
}

.flagstrap-icon.flagstrap-io {
  background-position: -144px -66px;
}

.flagstrap-icon.flagstrap-iq {
  background-position: -160px -66px;
}

.flagstrap-icon.flagstrap-ir {
  background-position: -176px -66px;
}

.flagstrap-icon.flagstrap-is {
  background-position: -192px -66px;
}

.flagstrap-icon.flagstrap-it {
  background-position: -208px -66px;
}

.flagstrap-icon.flagstrap-je {
  background-position: -224px -66px;
}

.flagstrap-icon.flagstrap-jm {
  background-position: -240px -66px;
}

.flagstrap-icon.flagstrap-jo {
  background-position: 0 -77px;
}

.flagstrap-icon.flagstrap-jp {
  background-position: -16px -77px;
}

.flagstrap-icon.flagstrap-ke {
  background-position: -32px -77px;
}

.flagstrap-icon.flagstrap-kg {
  background-position: -48px -77px;
}

.flagstrap-icon.flagstrap-kh {
  background-position: -64px -77px;
}

.flagstrap-icon.flagstrap-ki {
  background-position: -80px -77px;
}

.flagstrap-icon.flagstrap-km {
  background-position: -96px -77px;
}

.flagstrap-icon.flagstrap-kn {
  background-position: -112px -77px;
}

.flagstrap-icon.flagstrap-kp {
  background-position: -128px -77px;
}

.flagstrap-icon.flagstrap-kr {
  background-position: -144px -77px;
}

.flagstrap-icon.flagstrap-kurdistan {
  background-position: -160px -77px;
}

.flagstrap-icon.flagstrap-kw {
  background-position: -176px -77px;
}

.flagstrap-icon.flagstrap-ky {
  background-position: -192px -77px;
}

.flagstrap-icon.flagstrap-kz {
  background-position: -208px -77px;
}

.flagstrap-icon.flagstrap-la {
  background-position: -224px -77px;
}

.flagstrap-icon.flagstrap-lb {
  background-position: -240px -77px;
}

.flagstrap-icon.flagstrap-lc {
  background-position: 0 -88px;
}

.flagstrap-icon.flagstrap-li {
  background-position: -16px -88px;
}

.flagstrap-icon.flagstrap-lk {
  background-position: -32px -88px;
}

.flagstrap-icon.flagstrap-lr {
  background-position: -48px -88px;
}

.flagstrap-icon.flagstrap-ls {
  background-position: -64px -88px;
}

.flagstrap-icon.flagstrap-lt {
  background-position: -80px -88px;
}

.flagstrap-icon.flagstrap-lu {
  background-position: -96px -88px;
}

.flagstrap-icon.flagstrap-lv {
  background-position: -112px -88px;
}

.flagstrap-icon.flagstrap-ly {
  background-position: -128px -88px;
}

.flagstrap-icon.flagstrap-ma {
  background-position: -144px -88px;
}

.flagstrap-icon.flagstrap-mc {
  background-position: -160px -88px;
}

.flagstrap-icon.flagstrap-md {
  background-position: -176px -88px;
}

.flagstrap-icon.flagstrap-me {
  background-position: -192px -88px;
}

.flagstrap-icon.flagstrap-mg {
  background-position: -208px -88px;
}

.flagstrap-icon.flagstrap-mh {
  background-position: -224px -88px;
}

.flagstrap-icon.flagstrap-mk {
  background-position: -240px -88px;
}

.flagstrap-icon.flagstrap-ml {
  background-position: 0 -99px;
}

.flagstrap-icon.flagstrap-mm {
  background-position: -16px -99px;
}

.flagstrap-icon.flagstrap-mn {
  background-position: -32px -99px;
}

.flagstrap-icon.flagstrap-mo {
  background-position: -48px -99px;
}

.flagstrap-icon.flagstrap-mp {
  background-position: -64px -99px;
}

.flagstrap-icon.flagstrap-mq {
  background-position: -80px -99px;
}

.flagstrap-icon.flagstrap-mr {
  background-position: -96px -99px;
}

.flagstrap-icon.flagstrap-ms {
  background-position: -112px -99px;
}

.flagstrap-icon.flagstrap-mt {
  background-position: -128px -99px;
}

.flagstrap-icon.flagstrap-mu {
  background-position: -144px -99px;
}

.flagstrap-icon.flagstrap-mv {
  background-position: -160px -99px;
}

.flagstrap-icon.flagstrap-mw {
  background-position: -176px -99px;
}

.flagstrap-icon.flagstrap-mx {
  background-position: -192px -99px;
}

.flagstrap-icon.flagstrap-my {
  background-position: -208px -99px;
}

.flagstrap-icon.flagstrap-mz {
  background-position: -224px -99px;
}

.flagstrap-icon.flagstrap-na {
  background-position: -240px -99px;
}

.flagstrap-icon.flagstrap-nc {
  background-position: 0 -110px;
}

.flagstrap-icon.flagstrap-ne {
  background-position: -16px -110px;
}

.flagstrap-icon.flagstrap-nf {
  background-position: -32px -110px;
}

.flagstrap-icon.flagstrap-ng {
  background-position: -48px -110px;
}

.flagstrap-icon.flagstrap-ni {
  background-position: -64px -110px;
}

.flagstrap-icon.flagstrap-nl {
  background-position: -80px -110px;
}

.flagstrap-icon.flagstrap-no {
  background-position: -96px -110px;
}

.flagstrap-icon.flagstrap-np {
  background-position: -112px -110px;
}

.flagstrap-icon.flagstrap-nr {
  background-position: -128px -110px;
}

.flagstrap-icon.flagstrap-nu {
  background-position: -144px -110px;
}

.flagstrap-icon.flagstrap-nz {
  background-position: -160px -110px;
}

.flagstrap-icon.flagstrap-om {
  background-position: -176px -110px;
}

.flagstrap-icon.flagstrap-pa {
  background-position: -192px -110px;
}

.flagstrap-icon.flagstrap-pe {
  background-position: -208px -110px;
}

.flagstrap-icon.flagstrap-pf {
  background-position: -224px -110px;
}

.flagstrap-icon.flagstrap-pg {
  background-position: -240px -110px;
}

.flagstrap-icon.flagstrap-ph {
  background-position: 0 -121px;
}

.flagstrap-icon.flagstrap-pk {
  background-position: -16px -121px;
}

.flagstrap-icon.flagstrap-pl {
  background-position: -32px -121px;
}

.flagstrap-icon.flagstrap-pm {
  background-position: -48px -121px;
}

.flagstrap-icon.flagstrap-pn {
  background-position: -64px -121px;
}

.flagstrap-icon.flagstrap-pr {
  background-position: -80px -121px;
}

.flagstrap-icon.flagstrap-ps {
  background-position: -96px -121px;
}

.flagstrap-icon.flagstrap-pt {
  background-position: -112px -121px;
}

.flagstrap-icon.flagstrap-pw {
  background-position: -128px -121px;
}

.flagstrap-icon.flagstrap-py {
  background-position: -144px -121px;
}

.flagstrap-icon.flagstrap-qa {
  background-position: -160px -121px;
}

.flagstrap-icon.flagstrap-re {
  background-position: -176px -121px;
}

.flagstrap-icon.flagstrap-ro {
  background-position: -192px -121px;
}

.flagstrap-icon.flagstrap-rs {
  background-position: -208px -121px;
}

.flagstrap-icon.flagstrap-ru {
  background-position: -224px -121px;
}

.flagstrap-icon.flagstrap-rw {
  background-position: -240px -121px;
}

.flagstrap-icon.flagstrap-sa {
  background-position: 0 -132px;
}

.flagstrap-icon.flagstrap-sb {
  background-position: -16px -132px;
}

.flagstrap-icon.flagstrap-sc {
  background-position: -32px -132px;
}

.flagstrap-icon.flagstrap-scotland {
  background-position: -48px -132px;
}

.flagstrap-icon.flagstrap-sd {
  background-position: -64px -132px;
}

.flagstrap-icon.flagstrap-se {
  background-position: -80px -132px;
}

.flagstrap-icon.flagstrap-sg {
  background-position: -96px -132px;
}

.flagstrap-icon.flagstrap-sh {
  background-position: -112px -132px;
}

.flagstrap-icon.flagstrap-si {
  background-position: -128px -132px;
}

.flagstrap-icon.flagstrap-sk {
  background-position: -144px -132px;
}

.flagstrap-icon.flagstrap-sl {
  background-position: -160px -132px;
}

.flagstrap-icon.flagstrap-sm {
  background-position: -176px -132px;
}

.flagstrap-icon.flagstrap-sn {
  background-position: -192px -132px;
}

.flagstrap-icon.flagstrap-so {
  background-position: -208px -132px;
}

.flagstrap-icon.flagstrap-somaliland {
  background-position: -224px -132px;
}

.flagstrap-icon.flagstrap-sr {
  background-position: -240px -132px;
}

.flagstrap-icon.flagstrap-ss {
  background-position: 0 -143px;
}

.flagstrap-icon.flagstrap-st {
  background-position: -16px -143px;
}

.flagstrap-icon.flagstrap-sv {
  background-position: -32px -143px;
}

.flagstrap-icon.flagstrap-sx {
  background-position: -48px -143px;
}

.flagstrap-icon.flagstrap-sy {
  background-position: -64px -143px;
}

.flagstrap-icon.flagstrap-sz {
  background-position: -80px -143px;
}

.flagstrap-icon.flagstrap-tc {
  background-position: -96px -143px;
}

.flagstrap-icon.flagstrap-td {
  background-position: -112px -143px;
}

.flagstrap-icon.flagstrap-tf {
  background-position: -128px -143px;
}

.flagstrap-icon.flagstrap-tg {
  background-position: -144px -143px;
}

.flagstrap-icon.flagstrap-th {
  background-position: -160px -143px;
}

.flagstrap-icon.flagstrap-tj {
  background-position: -176px -143px;
}

.flagstrap-icon.flagstrap-tk {
  background-position: -192px -143px;
}

.flagstrap-icon.flagstrap-tl {
  background-position: -208px -143px;
}

.flagstrap-icon.flagstrap-tm {
  background-position: -224px -143px;
}

.flagstrap-icon.flagstrap-tn {
  background-position: -240px -143px;
}

.flagstrap-icon.flagstrap-to {
  background-position: 0 -154px;
}

.flagstrap-icon.flagstrap-tr {
  background-position: -16px -154px;
}

.flagstrap-icon.flagstrap-tt {
  background-position: -32px -154px;
}

.flagstrap-icon.flagstrap-tv {
  background-position: -48px -154px;
}

.flagstrap-icon.flagstrap-tw {
  background-position: -64px -154px;
}

.flagstrap-icon.flagstrap-tz {
  background-position: -80px -154px;
}

.flagstrap-icon.flagstrap-ua {
  background-position: -96px -154px;
}

.flagstrap-icon.flagstrap-ug {
  background-position: -112px -154px;
}

.flagstrap-icon.flagstrap-um {
  background-position: -128px -154px;
}

.flagstrap-icon.flagstrap-us {
  background-position: -144px -154px;
}

.flagstrap-icon.flagstrap-uy {
  background-position: -160px -154px;
}

.flagstrap-icon.flagstrap-uz {
  background-position: -176px -154px;
}

.flagstrap-icon.flagstrap-va {
  background-position: -192px -154px;
}

.flagstrap-icon.flagstrap-vc {
  background-position: -208px -154px;
}

.flagstrap-icon.flagstrap-ve {
  background-position: -224px -154px;
}

.flagstrap-icon.flagstrap-vg {
  background-position: -240px -154px;
}

.flagstrap-icon.flagstrap-vi {
  background-position: 0 -165px;
}

.flagstrap-icon.flagstrap-vn {
  background-position: -16px -165px;
}

.flagstrap-icon.flagstrap-vu {
  background-position: -32px -165px;
}

.flagstrap-icon.flagstrap-wales {
  background-position: -48px -165px;
}

.flagstrap-icon.flagstrap-wf {
  background-position: -64px -165px;
}

.flagstrap-icon.flagstrap-ws {
  background-position: -80px -165px;
}

.flagstrap-icon.flagstrap-ye {
  background-position: -96px -165px;
}

.flagstrap-icon.flagstrap-yt {
  background-position: -112px -165px;
}

.flagstrap-icon.flagstrap-za {
  background-position: -128px -165px;
}

.flagstrap-icon.flagstrap-zanzibar {
  background-position: -144px -165px;
}

.flagstrap-icon.flagstrap-zm {
  background-position: -160px -165px;
}

.flagstrap-icon.flagstrap-zw {
  background-position: -176px -165px;
}

.flagstrap-icon.flagstrap-db {
  background-position: -32px 0;
}

/**
 *
 * Reset CSS
 *
 */
/*=============================
=            Reset            =
=============================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  line-height: 1;
}

/*-----  End of Reset  ------*/
/*=======================================
=            Bootstrap Reset            =
=======================================*/
#navbar {
  padding: 0px;
  border: none;
  background: none !important;
}

.navbar-default {
  border: none;
  margin-bottom: 0px !important;
  background: none !important;
  background-color: none !important;
}

/*=====  End of Bootstrap Reset  ======*/
/*=================================
=            iOS Reset            =
=================================*/
input[type=submit], input[type=text], input[type=tel], input[type=email], input[type=password] {
  -webkit-appearance: none;
}

/*=====  End of iOS Reset  ======*/
/*====================================
=            Global Rules            =
====================================*/
button {
  transition: 0.25s ease-in-out;
}
button:hover {
  cursor: pointer;
}
button:focus {
  outline: 0 !important;
}

input:focus {
  outline: 0 !important;
}

textarea:focus {
  outline: 0 !important;
}

input[type=submit] {
  transition: 0.25s ease-in-out;
}
input[type=submit]:hover {
  cursor: pointer;
}

/*=====  End of Global Rules  ======*/
/*=================================
=            No Gutter            =
=================================*/
.no-gutter > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

/*=====  End of No Gutter  ======*/
ul.nav li.dropdown:hover ul.dropdown-menu {
  display: block;
}

.slick-slide:focus {
  outline: none !important;
}

/**
 *
 * Variables
 *
 */
/*===================================
=            Base Colors            =
===================================*/
/*=====  End of Base Colors  ======*/
/*=====================================
=            Custom colors            =
=====================================*/
/*=====  End of Custom colors  ======*/
/*====================================
=            Font Weights            =
====================================*/
/*=====  End of Font Weights  ======*/
/*==================================
=            Font Sizes            =
==================================*/
/*=====  End of Font Sizes  ======*/
:root {
  --doc-height: 100%;
}

body {
  width: 100%;
}

.body-wraper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths,
  .col-md-5ths {
    width: 33.3333%;
    float: left;
  }
}
@media only screen and (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
a {
  transition: 0.25s ease-in-out;
}
a:hover {
  text-decoration: none;
}
a:focus {
  outline: 0;
  text-decoration: none;
}

img {
  transition: 0.25s ease-in-out;
}

.tooltip-inner {
  white-space: nowrap;
  max-width: none;
}

.body-scroll,
.fixed {
  position: fixed;
}

#search-results__block {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.34);
}
#search-results__block label.control.control--checkbox {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 22px;
  text-align: left;
  padding-left: 40px;
  color: #626262;
  margin-right: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #search-results__block label.control.control--checkbox {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #search-results__block label.control.control--checkbox {
    font-size: 17px;
    text-align: center !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #search-results__block label.control.control--checkbox {
    font-size: 16px;
    text-align: center;
  }
}
#search-results__block label.control-label {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 32px;
  text-align: left;
  color: #626262;
  margin-bottom: 20px;
  display: block;
  height: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #search-results__block label.control-label {
    font-size: 19px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #search-results__block label.control-label {
    font-size: 17px;
    text-align: center !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #search-results__block label.control-label {
    font-size: 16px;
    text-align: center;
  }
}
#search-results__block .search-desc {
  margin-top: 25px;
  margin-bottom: 5px;
}
#search-results__block .checkbox-block {
  padding-top: 25px;
}
#search-results__block #button-search {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  border: none;
  margin-top: 20px;
  padding: 0px !important;
  width: 100%;
}
html[dir=rtl] #search-results__block #button-search {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #search-results__block #button-search {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #search-results__block #button-search {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #search-results__block #button-search {
    font-size: 12px;
  }
}
#search-results__block #button-search:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
#search-results__block .filter-block input[type=text],
#search-results__block .filter-block input[type=tel],
#search-results__block .filter-block input[type=email],
#search-results__block .filter-block input[type=password] {
  -webkit-appearance: none;
  width: 100%;
  height: 55px;
  line-height: 55px;
  background: #fff;
  border: 1px solid #e1e1e1;
  padding-left: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  border-radius: 0;
  margin-bottom: 15px;
  color: #cccccc;
}
#search-results__block .filter-block input[type=text]:focus,
#search-results__block .filter-block input[type=tel]:focus,
#search-results__block .filter-block input[type=email]:focus,
#search-results__block .filter-block input[type=password]:focus {
  outline: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #search-results__block .filter-block input[type=text],
  #search-results__block .filter-block input[type=tel],
  #search-results__block .filter-block input[type=email],
  #search-results__block .filter-block input[type=password] {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  #search-results__block .filter-block input[type=text],
  #search-results__block .filter-block input[type=tel],
  #search-results__block .filter-block input[type=email],
  #search-results__block .filter-block input[type=password] {
    height: 45px;
    line-height: 45px;
  }
}
#search-results__block .filter-block .btn {
  -webkit-appearance: none;
  width: 100%;
  height: 55px;
  line-height: 55px;
  background: #fff;
  border: 1px solid #e1e1e1;
  padding-left: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  border-radius: 0;
  margin-bottom: 15px;
  padding: 0px 0px 0px 20px;
  color: #626262;
}
#search-results__block .filter-block .btn:focus {
  outline: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #search-results__block .filter-block .btn {
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  #search-results__block .filter-block .btn {
    height: 45px;
    line-height: 45px;
  }
}
#search-results__block .filter-block .btn-group {
  width: 100%;
  height: 70px;
}
@media only screen and (max-width: 767.98px) {
  #search-results__block .filter-block .btn-group {
    height: 55px;
  }
}
#search-results__block .filter-block button:focus {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#search-results__block .filter-block button:hover {
  background: none;
}
#search-results__block .filter-block div.open .caret:after {
  content: "\f106";
}
#search-results__block .filter-block div.open .caret:after {
  transform: rotate(180deg);
  color: #000000;
}
#search-results__block .filter-block .caret {
  border: none;
  background: #fff;
  transition: 0.25s ease-in-out;
  position: relative;
  right: 30px;
  position: absolute;
  top: 0px;
  margin-top: 0px;
}
#search-results__block .filter-block .caret:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f107";
  display: inline-block;
  font-size: 18px;
  color: #626262;
  transition: 0.25s ease-in-out;
}
#search-results__block .filter-block .dropdown-menu li:focus {
  outline: 0 !important;
}
#search-results__block .filter-block .dropdown-menu li a:hover {
  outline: 0 !important;
}
#search-results__block .filter-block .dropdown-menu li a:focus {
  outline: 0 !important;
}
#search-results__block .filter-block .btn-group.open .dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
#search-results__block .filter-block .btn-default.active, #search-results__block .filter-block .btn-default:active, #search-results__block .filter-block .btn-default:focus, #search-results__block .filter-block .btn-default:hover {
  background: none;
}
#search-results__block .filter-block .open > .btn-default.dropdown-toggle {
  background: none;
}
#search-results__block .filter-block .dropdown-menu {
  padding: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#search-results__block .filter-block .dropdown-menu li a {
  font-size: 14px;
  color: #000;
  padding: 5px;
}

a:focus {
  outline: 0 !important;
}
a:hover {
  outline: 0 !important;
}

.no-results__empty {
  margin-top: 50px !important;
  margin-bottom: 0px !important;
}

.no-pad-bottom {
  padding-bottom: 60px !important;
}

#collapse-checkout-confirm .buttons {
  border-top: 0 !important;
}
#collapse-checkout-confirm table {
  font-family: "Poppins", sans-serif;
  text-align: center;
  border: none;
}
#collapse-checkout-confirm table tr {
  border: none;
}
#collapse-checkout-confirm table tr td {
  border: none;
}
@media (min-width: 768px) {
  #collapse-checkout-confirm table tbody td {
    border-right: 1px solid #f4f4f4;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}
@media (min-width: 768px) {
  #collapse-checkout-confirm table tbody .text-right {
    text-align: center !important;
  }
}
#collapse-checkout-confirm table thead .text-right {
  text-align: center !important;
}
#collapse-checkout-confirm table thead td {
  text-align: center;
  background: #fcfaf8;
  vertical-align: middle;
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  color: #1d1d1d;
  height: 70px;
}
#collapse-checkout-confirm table tfoot tr:last-child td {
  border: none !important;
}

.radio-form .control {
  display: inline-block !important;
}
.radio-form .col-sm-12 {
  margin-top: 15px;
}

.results-block-pagi {
  text-align: right;
  font-family: "Poppins", sans-serif !important;
}
@media only screen and (max-width: 767.98px) {
  .results-block-pagi {
    padding-top: 10px;
    text-align: center;
  }
}

.dashboard-content .orders-table h3 {
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif !important;
}
.dashboard-content .orders-table table td {
  line-height: 1.4 !important;
}
.dashboard-content .orders-table thead td {
  text-align: center;
  background: #fcfaf8;
  vertical-align: middle;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.9em;
  color: #1d1d1d;
}

#intro {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #intro {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #intro {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #intro {
    font-size: 14px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
#intro h1 {
  margin-bottom: 0px;
  font-size: 3.163em;
  color: #4c4c4c;
  font-family: "Poppins", sans-serif;
}
@media only screen and (max-width: 767.98px) {
  #intro h1 {
    margin-bottom: 0px;
    font-size: 1.5em;
  }
}
#intro .intro__content h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] #intro .intro__content h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #intro .intro__content h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #intro .intro__content h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #intro .intro__content h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #intro .intro__content h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
#intro .intro__content.simple-header h1 {
  margin-bottom: 0px;
}
@media only screen and (max-width: 767.98px) {
  #intro .intro__content.simple-header h1 {
    margin-bottom: 0px;
  }
}

#footer {
  padding-bottom: 0px;
  background-color: #235940;
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #footer {
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer {
    text-align: center;
  }
}
#footer .footer-tophead {
  border-top: 1px solid rgba(107, 108, 119, 0.15);
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 991.98px) {
  #footer .footer-tophead {
    padding-bottom: 0px;
  }
}
#footer .footer-tophead .row {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 991.98px) {
  #footer .footer-tophead .row {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
  }
}
#footer .footer-tophead .row a {
  color: #fff;
}
#footer .footer-tophead .row .footer-logo {
  text-align: right;
}
html[dir=rtl] #footer .footer-tophead .row .footer-logo {
  text-align: left;
}
@media only screen and (max-width: 767.98px) {
  #footer .footer-tophead .row .footer-logo {
    text-align: center;
  }
  html[dir=rtl] #footer .footer-tophead .row .footer-logo {
    text-align: center;
  }
}
#footer .footer-tophead .row .footer-logo img {
  width: 140px;
  filter: brightness(0) invert(1);
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #footer .footer-tophead .row .footer-logo img {
    width: 120px;
    margin: 5px auto 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer .footer-tophead .row .footer-logo img {
    width: 100px;
    margin: 5px auto 25px;
  }
}
#footer .footer-tophead .row .footer-logo-text {
  font: normal normal 400 13px/30px "Poppins", sans-serif;
  letter-spacing: 0.39px;
  color: #fff;
  display: block;
  text-transform: uppercase;
  opacity: 1;
  margin-top: 10px;
}
html[dir=rtl] #footer .footer-tophead .row .footer-logo-text {
  letter-spacing: 0px;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #footer .footer-tophead .row .footer-logo-text {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer .footer-tophead .row .footer-logo-text {
    margin-top: 0px;
    margin-bottom: 20px;
  }
}
#footer .footer-tophead .row .main-flex {
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  #footer .footer-tophead .row .main-flex {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 15px auto 30px;
  }
}
@media (max-width: 576px) {
  #footer .footer-tophead .row .main-flex svg {
    width: 21px !important;
  }
}
#footer .footer-tophead .row .main-flex .flex-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
#footer .footer-tophead .row .main-flex .flex-area:nth-child(2) {
  margin-left: 110px;
}
html[dir=rtl] #footer .footer-tophead .row .main-flex .flex-area:nth-child(2) {
  margin-right: 110px;
  margin-left: 0px;
}
@media only screen and (max-width: 767.98px) {
  #footer .footer-tophead .row .main-flex .flex-area:nth-child(2) {
    margin: 0;
  }
  html[dir=rtl] #footer .footer-tophead .row .main-flex .flex-area:nth-child(2) {
    margin: 0;
  }
}
#footer .footer-tophead .row .main-flex .flex-area h5 {
  font: normal normal 600 15px/19px "Poppins", sans-serif;
  letter-spacing: 0.45px;
  color: #fff;
  opacity: 1;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#footer .footer-tophead .row .main-flex .flex-area h5:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: -10px;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #footer .footer-tophead .row .main-flex .flex-area h5:after {
  left: unset;
  right: 0;
}
#footer .footer-tophead .row .main-flex .flex-area h5:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #footer .footer-tophead .row .main-flex .flex-area h5 {
  letter-spacing: 0px;
  font-family: "Cairo", sans-serif;
  direction: ltr;
}
#footer #footer-accordion {
  border: 0px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  #footer #footer-accordion .col-md-3 {
    width: 21.5599% !important;
  }
  #footer #footer-accordion .col-md-3:last-child {
    width: 35% !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.5px) {
  #footer #footer-accordion .col-md-3 {
    width: 33.33333% !important;
  }
  #footer #footer-accordion .col-md-3:last-child {
    width: 100% !important;
  }
}
#footer #footer-accordion h4 {
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 20px;
  font: normal normal 600 13px/30px "Poppins", sans-serif;
  letter-spacing: 0.39px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
}
html[dir=rtl] #footer #footer-accordion h4 {
  letter-spacing: 0px;
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#footer #footer-accordion h4.accept-header {
  margin-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #footer #footer-accordion h4 {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer #footer-accordion h4 {
    display: none;
  }
}
#footer #footer-accordion h3 {
  font: normal normal 600 16px/30px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #fff;
  text-transform: uppercase;
  opacity: 1;
  border: 0px;
  border-bottom: 1px solid #EAEAEA;
  padding-top: 15px;
  padding-bottom: 15px;
  opacity: 1;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0px;
  display: none;
}
html[dir=rtl] #footer #footer-accordion h3 {
  letter-spacing: 0px;
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #footer #footer-accordion h3 {
    display: block;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer #footer-accordion h3 {
    display: block;
  }
}
#footer #footer-accordion h3:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f067";
  position: absolute;
  right: 15px;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
}
html[dir=rtl] #footer #footer-accordion h3:after {
  left: 15px;
  right: unset;
}
#footer #footer-accordion h3.ui-state-active:after {
  content: "\f068";
}
#footer #footer-accordion h3:focus {
  outline: none;
}
@media only screen and (min-width: 1200px) {
  #footer #footer-accordion h3:hover {
    cursor: pointer;
    opacity: 0.7;
    color: #235940;
  }
}
#footer #footer-accordion h3:last-child {
  border-bottom: 0 !important;
}
#footer #footer-accordion h3:focus {
  outline: none !important;
}
#footer #footer-accordion .ui-accordion-content {
  padding: 20px 15px;
  border: 0;
}
#footer ul.links li {
  margin-bottom: 2px;
}
#footer ul.links li a {
  text-align: left;
  font: normal normal 400 13px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  padding: 3px 0;
  position: relative;
  margin-bottom: 2px;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
  display: block;
  width: max-content;
  max-width: 100%;
}
#footer ul.links li a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: -2px;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #footer ul.links li a:after {
  left: unset;
  right: 0;
}
#footer ul.links li a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #footer ul.links li a {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#footer form.newsletter {
  margin-bottom: 30px;
}
#footer form.newsletter .mi-message {
  display: block;
  margin: 0;
  padding: 0;
  font: normal normal 400 12px/20px "Poppins", sans-serif !important;
  letter-spacing: 0.48px;
}
#footer form.newsletter .mi-message.success {
  color: #4cae4c;
}
#footer form.newsletter .mi-message.warning {
  color: #bf3334;
}
#footer form.newsletter .input-group-bkp {
  position: relative;
}
#footer form.newsletter .input-group-bkp input[type=email] {
  -webkit-appearance: none;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #b9b9b9;
  height: 55px;
  border: 0.5px solid #e5e5e5;
  padding: 6px 17px;
  padding-right: 163px;
  letter-spacing: 0.26px;
  width: 100%;
  background-color: transparent;
  text-align: left !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #footer form.newsletter .input-group-bkp input[type=email] {
    padding-right: 117px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer form.newsletter .input-group-bkp input[type=email] {
    padding-right: 117px;
    font-size: 15px;
    height: 55px;
  }
}
#footer form.newsletter .input-group-bkp input[type=email]:focus {
  outline: 0;
}
#footer form.newsletter .input-group-bkp .input-group-btn {
  position: absolute;
  right: 0;
  top: 0;
}
#footer form.newsletter .input-group-bkp button[type=submit] {
  transition: 0.25s ease-in-out;
  padding: 0;
  width: 146px;
  height: 55px;
  border: 2px solid #235940;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.36px;
  color: #235940;
  text-align: center;
  border-radius: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #footer form.newsletter .input-group-bkp button[type=submit] {
    width: 100px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer form.newsletter .input-group-bkp button[type=submit] {
    width: 100px;
    font-size: 15px;
    height: 55px;
    line-height: 53px;
  }
}
@media only screen and (min-width: 1200px) {
  #footer form.newsletter .input-group-bkp button[type=submit]:hover {
    cursor: pointer;
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
  }
}
#footer form.newsletter .input-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  #footer form.newsletter .input-group {
    flex-direction: column;
    gap: 15px;
  }
}
#footer form.newsletter .input-group input[type=email] {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
  margin: 0;
}
#footer form.newsletter .input-group input[type=email][type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] #footer form.newsletter .input-group input[type=email][type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
#footer form.newsletter .input-group input[type=email]::-webkit-outer-spin-button, #footer form.newsletter .input-group input[type=email]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] #footer form.newsletter .input-group input[type=email] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#footer form.newsletter .input-group input[type=email].placeholder {
  color: #cccccc;
}
#footer form.newsletter .input-group input[type=email]:-moz-placeholder {
  color: #cccccc;
}
#footer form.newsletter .input-group input[type=email]::-moz-placeholder {
  color: #cccccc;
}
#footer form.newsletter .input-group input[type=email]:-ms-input-placeholder {
  color: #cccccc;
}
#footer form.newsletter .input-group input[type=email]::-webkit-input-placeholder {
  color: #cccccc;
}
@media only screen and (max-width: 767.98px) {
  #footer form.newsletter .input-group input[type=email] {
    text-align: center;
  }
  html[dir=rtl] #footer form.newsletter .input-group input[type=email] {
    text-align: center;
  }
}
#footer form.newsletter .input-group .input-group-btn {
  max-width: 100px;
}
@media only screen and (max-width: 767.98px) {
  #footer form.newsletter .input-group .input-group-btn {
    max-width: 100%;
    display: block;
    width: 100%;
  }
}
#footer form.newsletter .input-group .input-group-btn button[type=submit] {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  margin: 0;
  max-width: 100%;
  border: none;
  background-color: #fff;
  color: #235940;
}
html[dir=rtl] #footer form.newsletter .input-group .input-group-btn button[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #footer form.newsletter .input-group .input-group-btn button[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #footer form.newsletter .input-group .input-group-btn button[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer form.newsletter .input-group .input-group-btn button[type=submit] {
    font-size: 12px;
  }
}
#footer form.newsletter .input-group .input-group-btn button[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  #footer form.newsletter .input-group .input-group-btn button[type=submit] {
    max-width: 100%;
    display: block;
    width: 100%;
  }
}
#footer .fsocials {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
@media only screen and (max-width: 767.98px) {
  #footer .fsocials {
    margin: 0 auto 15px;
    justify-content: center;
  }
}
#footer .fsocials li:last-of-type {
  display: none;
}
@media only screen and (min-width: 1200px) {
  #footer .fsocials li:hover {
    transform: translateY(-5px);
    transition: all ease-in-out 0.5s;
  }
}
#footer .fsocials li a {
  display: block;
}
#footer .fsocials li a svg {
  height: 18px;
  width: auto;
}
#footer .bottom-footer {
  text-align: center;
  background-color: transparent;
  margin-top: 40px;
  padding: 7px 0px;
  border-top: 1px solid #EAEAEA;
}
@media only screen and (min-width: 768px) {
  #footer .bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 105px;
  }
}
#footer .bottom-footer .powered a,
#footer .bottom-footer .copyright,
#footer .bottom-footer p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #fff;
  margin-top: 15px;
  text-align: left;
  margin: 17px 0 0;
  letter-spacing: 0px;
  display: block;
}
html[dir=rtl] #footer .bottom-footer .powered a,
html[dir=rtl] #footer .bottom-footer .copyright,
html[dir=rtl] #footer .bottom-footer p {
  text-align: right;
}
@media only screen and (max-width: 767.98px) {
  #footer .bottom-footer .powered a,
  #footer .bottom-footer .copyright,
  #footer .bottom-footer p {
    font-size: 13px;
    text-align: center;
  }
  html[dir=rtl] #footer .bottom-footer .powered a,
  html[dir=rtl] #footer .bottom-footer .copyright,
  html[dir=rtl] #footer .bottom-footer p {
    text-align: center;
  }
}
@media only screen and (max-width: 575.98px) {
  #footer .bottom-footer .powered a span,
  #footer .bottom-footer .copyright span,
  #footer .bottom-footer p span {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
#footer .bottom-footer .powered a {
  text-align: right;
}
html[dir=rtl] #footer .bottom-footer .powered a {
  text-align: left;
}
@media only screen and (max-width: 767.98px) {
  #footer .bottom-footer .powered a {
    text-align: center;
  }
  html[dir=rtl] #footer .bottom-footer .powered a {
    text-align: center;
  }
}
#footer .bottom-footer .copyright {
  text-align: center;
  margin: 35px 0 15px;
}
html[dir=rtl] #footer .bottom-footer .copyright {
  text-align: center;
}
#footer #go-top {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  font: normal normal 600 13px/37px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
}
#footer #go-top img {
  margin-right: 7px;
}
@media (min-width: 993px) {
  #footer #go-top {
    display: none;
  }
  #footer #go-top.sticky-top {
    display: block;
    position: fixed;
    bottom: 60px;
    right: 24px;
    z-index: 2;
    display: block;
  }
  #footer #go-top.sticky-top img {
    width: 45px;
    margin: 0px;
  }
}
#footer .we-accept {
  margin: 10px 0 5px;
  display: block;
  width: 500px;
  max-width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #footer .we-accept {
    margin: 10px auto 5px;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer .we-accept {
    margin: 10px auto 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #footer .we-accept {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  #footer .we-accept {
    max-width: 100%;
  }
}

/*==================================
=   bottom nav-section       =
==================================*/
.bottom-navigation {
  position: fixed;
  left: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: auto;
  background-color: #fff;
  padding: 15px 10px 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.8);
  z-index: 99;
  display: none;
}
.bottom-navigation .nav-item {
  flex-grow: 1;
  cursor: pointer;
  transition: all 0.2s ease-out;
}
.bottom-navigation .nav-item .nav-text {
  font-size: 11px;
  line-height: 15px;
  margin: auto;
  text-align: center;
  font-weight: 300;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  color: #4c4c4c;
  display: block;
}
.bottom-navigation .nav-item svg {
  width: 19px;
  height: 19px;
  margin: 0px auto 10px;
  display: block;
}

/* */
.nav-item.active > .nav-text {
  display: inline-block;
}

@media (min-width: 993px) {
  .bottom-navigation {
    display: none;
  }
}
.cookie-bar {
  position: fixed;
  width: 100%;
  text-align: center;
  z-index: 99991;
  padding: 35px 0;
  bottom: 0;
  transform: translateY(100%);
  transition: all ease-in-out 0.5s;
}
.cookie-bar--active {
  transform: translateY(0%);
  transition: all ease-in-out 0.5s;
}
@media only screen and (max-width: 1199.98px) {
  .cookie-bar {
    padding: 25px 0 25px;
  }
}
.cookie-bar .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #F5F5F5;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.8);
  padding: 11px 25px;
  gap: 15px;
  width: max-content;
  max-width: 100%;
  border-radius: 50px;
  margin: auto;
}
@media only screen and (max-width: 767.98px) {
  .cookie-bar .content {
    flex-direction: column;
    border-radius: 5px;
    padding: 25px;
    gap: 25px;
  }
}
.cookie-bar .content p {
  text-align: left;
  font-weight: 400;
  width: calc(100% - 80px);
  margin: 0;
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000000;
  opacity: 1;
}
.cookie-bar .content p a {
  font-family: inherit;
  line-height: inherit;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) {
  .cookie-bar .content p a:hover {
    color: #fff;
  }
}
@media only screen and (max-width: 767.98px) {
  .cookie-bar .content p {
    width: 100%;
    text-align: center;
    margin: 0px;
  }
}
.cookie-bar button {
  outline: 0;
  border: 0;
  background: transparent;
}
.cookie-bar #cookie-understand {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  width: max-content;
  line-height: 20px !important;
  height: auto !important;
  padding: 6px 15px;
  border-radius: 50px;
}
html[dir=rtl] .cookie-bar #cookie-understand {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .cookie-bar #cookie-understand {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .cookie-bar #cookie-understand {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  .cookie-bar #cookie-understand {
    font-size: 12px;
  }
}
.cookie-bar #cookie-understand:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  .cookie-bar #cookie-understand {
    width: 100%;
    line-height: 30px !important;
  }
}
@media only screen and (min-width: 1200px) {
  .cookie-bar #cookie-understand:hover {
    transition: all 0.3s ease;
  }
}

/*==================================
=              Header              =
==================================*/
#top {
  background: #fff;
  position: sticky;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1030;
  border-width: 0 0 1px;
  width: 100% !important;
  transition: all ease-in-out 0.8s;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #top {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #top {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767.98px) {
  #top {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  #top.sticky {
    transform: translateY(calc(-100% + 60px));
    transition: all ease-in-out 0.55s;
  }
}
#top.sticky #menu-bar {
  border-color: #e8e8e8;
}
@media only screen and (max-width: 1199.98px) {
  #top.sticky #menu-bar {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  #top.sticky #top-branding .logo-col img {
    width: 0 !important;
    margin: 0 !important;
    transition: all ease-in-out 0.55s 1.5s;
  }
}
#top #top-bar {
  transition: 0.25s ease-in-out;
  padding: 5px 0;
  position: relative;
  text-transform: capitalize;
  opacity: 1;
  background: #235940;
}
@media only screen and (max-width: 991.98px) {
  #top #top-bar {
    padding: 5px 0;
  }
}
#top #top-bar .close-note {
  cursor: pointer;
  width: initial !important;
  position: absolute;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  background-color: transparent;
  border: 0;
  transition: 0.25s ease-in-out;
  z-index: 9;
}
html[dir=rtl] #top #top-bar .close-note {
  left: 10px;
  right: unset;
}
#top #top-bar .close-note:hover i {
  color: #000000;
}
#top #top-bar .close-note:focus {
  outline: none !important;
}
#top #top-bar .close-note i {
  color: #fff;
  font-size: 16px;
}
#top #top-bar p {
  font: normal normal 400 12px/25px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #fff;
  text-align: center;
}
html[dir=rtl] #top #top-bar p {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #top #top-bar p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767.98px) {
  #top #top-bar p {
    font-size: 11px;
    text-align: left;
  }
  html[dir=rtl] #top #top-bar p {
    text-align: right;
  }
}
#top #top-bar p a {
  color: inherit;
  text-decoration: underline;
}
#top #top-bar p a:hover {
  color: #000000;
  text-decoration: none;
}
#top #top-branding {
  position: relative;
  width: 100%;
  left: 0;
  top: 0;
}
html[dir=rtl] #top #top-branding {
  right: 0;
  left: unset;
}
#top #top-branding.show-search .columns .item:not(.search-item) {
  opacity: 0;
}
#top #top-branding.show-search .columns .search-item #search-block-wrapper {
  opacity: 1 !important;
  pointer-events: auto !important;
}
#top #top-branding .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 21px;
  padding-bottom: 21px;
  position: relative;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}
#top #top-branding .container .logo-col {
  flex-grow: 1;
  text-align: center;
  margin: 0 30px;
  transition: all ease-in-out 0.5s;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container .logo-col {
    width: 100%;
    order: 3;
    margin: 0 0;
    flex-basis: 100%;
    transition: all ease-in-out 0.5s;
  }
}
#top #top-branding .container .logo-col a {
  display: block;
}
#top #top-branding .container .logo-col a img {
  width: 130px;
  transition: all ease-in-out 0.55s 0.25s;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #top #top-branding .container .logo-col a img {
    width: 100px;
  }
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container .logo-col a img {
    width: 100px;
    margin: 15px 0 0;
  }
}
#top #top-branding .container #left-col {
  justify-content: flex-start;
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container #left-col {
    width: auto;
    flex-grow: 1;
  }
}
#top #top-branding .container #left-col .col-wrapper button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
#top #top-branding .container #left-col .col-wrapper button .item-text {
  white-space: normal;
  text-align: left;
  font: normal normal 400 12px/20px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #235940;
}
html[dir=rtl] #top #top-branding .container #left-col .col-wrapper button .item-text {
  text-align: right;
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #top #top-branding .container #left-col .col-wrapper button .item-text {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container #left-col .col-wrapper button .item-text {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container #right-col {
    width: auto;
    flex-grow: 1;
  }
}
#top #top-branding .container #right-col .col-wrapper {
  justify-content: flex-end;
}
#top #top-branding .container #right-col .col-wrapper .item a {
  display: block;
}
#top #top-branding .container #right-col .col-wrapper .item a .item-text {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
#top #top-branding .container .columns {
  width: 33%;
}
#top #top-branding .container .columns .col-wrapper {
  display: flex;
  align-items: self-start;
  gap: 15px;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper {
  background-color: #235940;
  z-index: 9;
  position: relative;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper.open-lang .translation-lab-language-options {
  display: block;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper.open-lang .translation-lab-dropdown .language-label i {
  transform: rotate(190deg);
  transition: all ease-in-out 0.5s;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper .translation-lab-dropdown .language-label {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  background-color: #fff;
  letter-spacing: 0.1em;
  font: normal normal 400 15px/30px "Poppins", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  color: #235940;
}
html[dir=rtl] #top #top-branding .container .columns .col-wrapper .language-wrapper .translation-lab-dropdown .language-label {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper .translation-lab-dropdown .language-label i {
  transition: all ease-in-out 0.5s;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper .translation-lab-language-options {
  top: 100%;
  bottom: auto;
  left: auto;
  right: 0;
  display: none;
  position: absolute;
  list-style: none;
  margin: 0;
  min-width: 100%;
  width: auto;
  background-color: #fff;
  box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
  padding: 0.5rem 0;
  text-align: left;
  z-index: 1;
}
html[dir=rtl] #top #top-branding .container .columns .col-wrapper .language-wrapper .translation-lab-language-options {
  text-align: right;
  left: 0;
  right: auto;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper .translation-lab-language-options li {
  margin: 0;
  padding: 0.25em 0.62em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper .translation-lab-language-options li a {
  font: normal normal 400 15px/30px "Poppins", sans-serif;
  color: #235940;
  text-align: center;
}
#top #top-branding .container .columns .col-wrapper .language-wrapper .translation-lab-language-options li a.ar {
  font-family: "Cairo", sans-serif !important;
}
#top #top-branding .container .columns .col-wrapper .item {
  text-decoration: none;
  display: flex;
  align-items: center;
}
#top #top-branding .container .columns .col-wrapper .item .item-icon svg {
  vertical-align: middle;
  fill: #235940;
  stroke: none;
  width: 26px;
  height: 26px;
}
@media only screen and (min-width: 1200px) {
  #top #top-branding .container .columns .col-wrapper .item.mobile-menu-item {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  #top #top-branding .container .columns .col-wrapper .item.newsletter-item {
    display: none;
  }
}
#top #top-branding .container .columns .col-wrapper .item.cart-item {
  position: relative;
}
#top #top-branding .container .columns .col-wrapper .item.cart-item .small {
  width: 15px;
  height: 15px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(5px, -3px);
  background-color: #235940;
  color: #fff;
  font: normal normal 400 9px/14px "Poppins", sans-serif;
  display: none;
}
html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.cart-item .small {
  left: 0;
  right: unset;
  text-align: center;
  font-family: "Cairo", sans-serif;
  transform: translate(-5px, -3px);
}
#top #top-branding .container .columns .col-wrapper .item.cart-item .small.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper {
  position: absolute;
  z-index: 11;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 4px 0px;
  width: calc(100% - 195px);
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  transition: opacity 0.15s;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper {
    left: 0%;
    transform: translateX(0%);
    width: calc(100% - 50px);
  }
  html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper {
    right: 0;
    left: unset;
  }
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper {
    width: calc(100% - 50px);
    left: 0%;
    transform: translateX(0%);
  }
  html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper {
    right: 0;
    left: unset;
  }
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container {
  border-radius: 3px;
  border: 1px solid rgba(107, 108, 119, 0.15);
  align-items: center;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block {
  display: flex;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-icon {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  color: inherit;
  min-width: 0;
  border-radius: 0;
  font-size: inherit;
  list-style: inherit;
  min-width: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-icon input[type=submit] {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: none;
  outline: none;
  background-color: transparent;
}
html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-icon input[type=submit] {
  right: 0;
  left: unset;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-icon svg {
  vertical-align: middle;
  fill: #235940;
  stroke: none;
  width: 26px;
  height: 26px;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search] {
  width: 100%;
  background: none;
  height: 45px;
  border: none;
  text-align: left;
  text-transform: none;
  font: normal normal 400 15px/40px "Poppins", sans-serif;
  padding: 12px 12px 12px 55px;
  color: #235940;
  /* clears the 'X' from Chrome */
}
html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search] {
  text-align: right;
  font-family: "Cairo", sans-serif;
  padding: 12px 55px 12px 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search] {
    padding-left: 0;
    font-size: 16px;
  }
  html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search] {
    padding-left: 12px;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search] {
    padding-left: 0;
    font-size: 14px;
  }
  html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search] {
    padding-left: 12px;
    padding-right: 0;
  }
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search]::-webkit-search-decoration, #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search]::-webkit-search-cancel-button, #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search]::-webkit-search-results-button, #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block input[type=search]::-webkit-search-results-decoration {
  display: none;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-btn {
  -moz-user-select: "none";
  -ms-user-select: "none";
  -webkit-user-select: "none";
  user-select: "none";
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  width: auto;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  border-radius: 3px;
  padding: 6px 25px;
  min-width: 100px;
  color: #235940;
  font: normal normal 400 15px/20px "Poppins", sans-serif;
  background: #fff;
  margin: 5px;
  border: none;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-btn {
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-btn {
    padding: 6px 5px;
    min-width: 80px;
  }
}
@media only screen and (max-width: 767.98px) {
  #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-btn {
    padding: 6px 5px;
    min-width: 80px;
  }
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .search-container #search-block .search-btn:hover {
  color: #235940;
  transition: all ease-in-out 0.5s;
  background: #fff;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .close-search-btn {
  background-color: #235940;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 11px;
}
html[dir=rtl] #top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .close-search-btn {
  right: 100%;
  left: unset;
}
#top #top-branding .container .columns .col-wrapper .item.search-item #search-block-wrapper .close-search-btn svg {
  vertical-align: middle;
  fill: #fff;
  stroke: none;
  width: 26px;
  height: 26px;
}
#top #menu-bar {
  top: 0px;
  left: 0px;
  right: 0px;
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid transparent;
}
#top #menu-bar .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #top #menu-bar .container {
    position: relative;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #top #menu-bar .container {
    position: relative;
  }
}
@media only screen and (max-width: 767.98px) {
  #top #menu-bar .container {
    position: relative;
  }
}

/*=======  End of Header =======*/
/*==================================
=           Scroll Bar             =
==================================*/
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #235940;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #235940;
}

/*=====  End of Scroll Bar  ======*/
.loaded .preloader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.8s 0.5s ease-out;
}

.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 111110000;
  background-color: #235940;
}
.preloader-wrapper .spinner {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 1px 0 #fff;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 1px 0 #fff;
  -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 1px 0 #fff;
  -o-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 1px 0 #fff;
  -ms-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 2px 1px 0 #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  -moz-animation: spin 0.7s linear infinite;
  -ms-animation: spin 0.7s linear infinite;
  -webkit-animation: spin 0.7s linear infinite;
  -o-animation: spin 0.7s linear infinite;
  animation: spin 0.7s linear infinite;
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*===================================
  =            Sidebar Bag            =
  ===================================*/
#sidebar-wishlist-block {
  background: #fff;
  font-size: 16px;
  width: 500px;
  position: fixed;
  height: 100%;
  top: 0px;
  right: -675px;
  z-index: 9999;
  transition: 0.45s ease-in-out;
  overflow: hidden;
  padding: 10px 20px 20px 20px;
  box-shadow: 3px 4px 90px 0px rgba(0, 0, 0, 0.34);
  font-size: 16px;
  /* close wishlist */
}
#sidebar-wishlist-block.wishlist-active {
  right: 0 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block {
    padding-top: 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block {
    width: 500px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block {
    width: 100%;
    font-size: 14px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block {
    font-size: 13px;
  }
}
#sidebar-wishlist-block #mini-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  /* footer with actions */
}
#sidebar-wishlist-block #mini-cart header {
  display: block;
  width: 100%;
  flex: 1;
  max-height: 50px;
  position: relative;
}
#sidebar-wishlist-block #mini-cart header::after {
  content: " ";
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: calc(100% + 60px);
  height: 2px;
  background-color: #f2f2f2;
  transform: translateX(-50%);
}
#sidebar-wishlist-block #mini-cart header .welcome-title {
  line-height: 50px;
  display: block;
  text-align: left;
  font: normal normal normal 20px/50px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #a9a373;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #sidebar-wishlist-block #mini-cart header .welcome-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #sidebar-wishlist-block #mini-cart header .welcome-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart header .welcome-title {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart header .welcome-title {
    font-size: 17px;
  }
}
#sidebar-wishlist-block #mini-cart header .welcome-subtitle {
  text-transform: uppercase;
  color: #f9f9f9;
  font-size: 1.125em;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper {
  padding-top: 15px;
  display: block;
  width: 100%;
  flex: 1;
  max-height: calc(100% - 165px);
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper {
    max-height: calc(100% - 165px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper {
    max-height: calc(100% - 160px);
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper {
    max-height: calc(100% - 150px);
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper {
    max-height: calc(100% - 140px);
  }
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider {
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item {
  margin-bottom: 20px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 20px;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item:last-of-type {
  border: none;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item:focus {
  outline: 0;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item.slick-current .cart-box {
  border-bottom: 1px solid #000000 !important;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .cart-box {
  margin: 0px;
  min-height: 110px;
  max-height: 110px;
  position: relative;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row {
  margin: 0px;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .remove-item-cart {
  position: absolute;
  right: 0px;
  top: 0;
  color: #2e2e2e;
  background: none;
  border: none;
  font-size: 18px;
  z-index: 5000;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .remove-item-cart img {
  max-width: 12px;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .remove-item-cart:hover {
  cursor: pointer;
  color: #4c4c4c;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .row {
  height: 100%;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .col-md-7,
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .col-sm-7 {
  height: 100%;
  min-height: 110px;
  padding-left: 0;
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .col-md-7,
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .col-sm-7 {
    width: 66.66667%;
    float: left;
  }
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .col-md-4,
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .col-sm-4 {
  height: 100%;
  min-height: 110px;
  padding-right: 0px !important;
  padding-left: 0px !important;
  max-width: 110px;
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .col-md-4,
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .col-sm-4 {
    width: 33.33333%;
    padding-left: 20px;
    padding-right: 20px;
    float: left;
  }
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .image-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .image-holder a {
  display: block;
  height: 100px;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .image-holder img {
  width: 100px;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-right: 5px;
  padding-left: 10px;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-details {
  display: block;
  width: 100%;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-details .product-qty,
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-details .product-price {
  float: right;
  font-family: "Poppins", sans-serif;
  font: normal normal 600 15px/20px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #8e8765;
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-details .product-qty,
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-details .product-price {
    font-size: 12px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-details .product-qty,
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-details .product-price {
    font-size: 11px;
    line-height: 20px;
  }
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-details .product-qty {
  float: none;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-title {
  width: 100%;
  padding-right: 15px;
  display: block;
  display: block;
  text-align: left;
  font: normal normal 300 15px/24px "Poppins", sans-serif;
  letter-spacing: 0.15px;
  color: #000000;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-title {
    font-size: 15px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-title {
    font-size: 14px;
    line-height: 23px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-title {
    font-size: 13px;
    line-height: 21px;
  }
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-title a {
  color: #000000;
  width: 100%;
  color: inherit;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
#sidebar-wishlist-block #mini-cart #cart-wrapper #cart-slider .item .product-description .product-title a:hover {
  color: #235940;
}
#sidebar-wishlist-block #mini-cart footer {
  display: block;
  width: 100%;
  flex: 1;
  max-height: 105px;
  z-index: 9;
  padding-top: 15px;
  /* checkut */
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #sidebar-wishlist-block #mini-cart footer {
    max-height: 105px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart footer {
    max-height: 100px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart footer {
    max-height: 90px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block #mini-cart footer {
    max-height: 80px;
  }
}
#sidebar-wishlist-block #mini-cart footer #total-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
  font: normal normal 300 20px/31px "Poppins", sans-serif;
  letter-spacing: 0.6px;
  color: #646464;
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price {
    margin-bottom: 12px;
  }
}
#sidebar-wishlist-block #mini-cart footer #total-price small {
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price small {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price small {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price small {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price small {
    font-size: 12px;
  }
}
#sidebar-wishlist-block #mini-cart footer #total-price span {
  display: inline-block;
  font-size: 17px;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price span {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block #mini-cart footer #total-price span {
    font-size: 13px;
  }
}
#sidebar-wishlist-block #mini-cart footer #checkout-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart footer #checkout-block {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block #mini-cart footer #checkout-block {
    flex-wrap: wrap;
  }
}
#sidebar-wishlist-block #mini-cart footer #checkout-block button {
  width: 49%;
  height: 55px;
  line-height: 55px;
  background: #235940;
  position: relative;
  overflow: hidden;
  border: none;
  text-align: center;
  font: normal normal 600 15px/55px "Poppins", sans-serif;
  letter-spacing: 0.6px;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 1;
  transition: 0.25s ease-in-out;
}
#sidebar-wishlist-block #mini-cart footer #checkout-block button.full-width {
  width: 100% !important;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart footer #checkout-block button {
    font-size: 13px;
    height: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart footer #checkout-block button {
    font-size: 12px;
    height: 45px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block #mini-cart footer #checkout-block button {
    font-size: 11px;
    height: 40px;
    line-height: 40px;
  }
}
#sidebar-wishlist-block #mini-cart footer #checkout-block button:hover {
  box-shadow: 1px 5px 13px 0px rgba(0, 0, 0, 0.22);
  background: #000000;
  cursor: pointer;
}
#sidebar-wishlist-block #mini-cart .empty-cart {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 75vh;
  flex: 1;
}
#sidebar-wishlist-block #mini-cart .empty-cart img {
  width: 130px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}
#sidebar-wishlist-block #mini-cart .empty-cart p {
  line-height: 50px;
  display: block;
  text-align: center;
  font: normal normal normal 20px/50px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #4c4c4c;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #sidebar-wishlist-block #mini-cart .empty-cart p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #sidebar-wishlist-block #mini-cart .empty-cart p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block #mini-cart .empty-cart p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767.98px) {
  #sidebar-wishlist-block #mini-cart .empty-cart p {
    font-size: 17px;
  }
}
#sidebar-wishlist-block .close-cart-wishlist-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e2e2e;
  font-size: 24px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #sidebar-wishlist-block .close-cart-wishlist-btn {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #sidebar-wishlist-block .close-cart-wishlist-btn {
    font-size: 23px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block .close-cart-wishlist-btn {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575.98px) {
  #sidebar-wishlist-block .close-cart-wishlist-btn {
    font-size: 20px;
  }
}
#sidebar-wishlist-block .close-cart-wishlist-btn:hover {
  color: #2e2e2e;
}

.wishlist-cart-active {
  right: 0 !important;
}

/*=====  End of Sidebar Bag  ======*/
/*===================================
  =           cart-popup-block           =
  ===================================*/
#cart-popup-block {
  background: #fff;
  font-size: 16px;
  width: 500px;
  max-width: calc(100% - 20px);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: 0.45s ease-in-out;
  padding: 15px;
  box-shadow: 3px 4px 90px 0px rgba(0, 0, 0, 0.34);
  font-size: 16px;
  transition: all ease-in-out 0.5s;
  overflow: hidden;
  /* close wishlist */
}
#cart-popup-block.cart-hide {
  transition: all ease-in-out 0.5s;
  transform: translate(-50%, -50%) scale(0);
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block {
    width: 370px;
  }
}
#cart-popup-block #mini-cart {
  height: 100%;
  /* footer with actions */
}
#cart-popup-block #mini-cart header {
  width: 100%;
  position: relative;
}
#cart-popup-block #mini-cart header .welcome-title {
  font: normal normal 400 15px/15px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
}
html[dir=rtl] #cart-popup-block #mini-cart header .welcome-title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (max-width: 991.98px) {
  #cart-popup-block #mini-cart header .welcome-title {
    font-size: 13px;
    line-height: 13px;
  }
}
#cart-popup-block #mini-cart #cart-wrapper {
  padding-top: 5px;
  display: block;
  margin: 15px auto;
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider {
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box {
  margin: 0px;
  position: relative;
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  gap: 15px;
  padding-top: 10px;
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row {
    flex-direction: column !important;
  }
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-image {
  position: relative;
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-image .product-qty {
  position: absolute;
  right: 0px;
  top: 0px;
  transform: translate(25%, -25%);
  background-color: #235940;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font: normal normal 600 10px/21px "Poppins", sans-serif;
}
html[dir=rtl] #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-image .product-qty {
  left: 0px;
  right: unset;
  font-family: "Cairo", sans-serif;
  transform: translate(-25%, -25%);
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-image .image-holder {
  display: block;
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-image .image-holder img {
  width: 74px;
  height: 74px;
  background-color: #ffffff;
  border: 1px solid #dadada;
  border-radius: 5px;
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-image .image-holder img {
    width: 94px;
    height: 94px;
  }
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-description {
  flex-grow: 1;
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-description {
    text-align: center;
  }
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-description .product-title a {
  text-decoration: underline;
  font: normal normal 400 14.5px/20px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
}
html[dir=rtl] #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-description .product-title a {
  font-family: "Cairo", sans-serif !important;
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-description .product-title a {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 23px;
  }
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-description .product-details {
  text-align: left;
  font: normal normal 300 13px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-description .product-details {
  font-family: "Cairo", sans-serif !important;
  text-align: right;
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-description .product-details {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 20px;
  }
}
#cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-price {
  font: normal normal 400 14px/27px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  width: 118px;
  text-align: right;
}
html[dir=rtl] #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-price {
  font-family: "Cairo", sans-serif;
  text-align: left;
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart #cart-wrapper #cart-slider .item .cart-box .row .product-price {
    font-size: 16px;
    line-height: 23px;
  }
}
#cart-popup-block #mini-cart footer {
  display: block;
  width: 100%;
  flex: 1;
  max-height: 220px;
  z-index: 9;
  padding-top: 7px;
  /* checkut */
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #cart-popup-block #mini-cart footer {
    max-height: 220px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-popup-block #mini-cart footer {
    max-height: 220px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart footer {
    max-height: 190px;
  }
}
@media only screen and (max-width: 575.98px) {
  #cart-popup-block #mini-cart footer {
    max-height: 190px;
  }
}
#cart-popup-block #mini-cart footer #total-price {
  margin-bottom: 10px;
}
#cart-popup-block #mini-cart footer #total-price .row-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: #292929;
  font-weight: 500;
  margin-bottom: 14px;
  align-items: center;
}
#cart-popup-block #mini-cart footer #total-price small {
  display: inline-block;
  font-size: 16px;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-popup-block #mini-cart footer #total-price small {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-popup-block #mini-cart footer #total-price small {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart footer #total-price small {
    font-size: 13px;
  }
}
@media only screen and (max-width: 575.98px) {
  #cart-popup-block #mini-cart footer #total-price small {
    font-size: 12px;
  }
}
#cart-popup-block #mini-cart footer #total-price span {
  display: inline-block;
  font-size: 17px;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-popup-block #mini-cart footer #total-price span {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-popup-block #mini-cart footer #total-price span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart footer #total-price span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 575.98px) {
  #cart-popup-block #mini-cart footer #total-price span {
    font-size: 13px;
  }
}
#cart-popup-block #mini-cart footer #checkout-block {
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
#cart-popup-block #mini-cart footer #checkout-block button {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
}
html[dir=rtl] #cart-popup-block #mini-cart footer #checkout-block button {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-popup-block #mini-cart footer #checkout-block button {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-popup-block #mini-cart footer #checkout-block button {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-popup-block #mini-cart footer #checkout-block button {
    font-size: 12px;
  }
}
#cart-popup-block #mini-cart footer #checkout-block button:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
#cart-popup-block #mini-cart footer #checkout-block button:last-of-type {
  background-color: #fff;
  color: #235940;
}
#cart-popup-block #mini-cart footer #checkout-block button:last-of-type:hover {
  background-color: #235940;
  color: #fff;
}
#cart-popup-block .close-cart-popu-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e2e2e;
  font-size: 24px;
}
html[dir=rtl] #cart-popup-block .close-cart-popu-btn {
  left: 10px;
  right: unset;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-popup-block .close-cart-popu-btn {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-popup-block .close-cart-popu-btn {
    font-size: 23px;
  }
}
@media only screen and (max-width: 575.98px) {
  #cart-popup-block .close-cart-popu-btn {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575.98px) {
  #cart-popup-block .close-cart-popu-btn {
    font-size: 20px;
  }
}
#cart-popup-block .close-cart-popu-btn:hover {
  color: #2e2e2e;
}

/*=====  End of Sidebar Bag  ======*/
/*==================================
=           Currency          =
==================================*/
#currency-wrapper {
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: auto;
  z-index: 100000;
}
html[dir=rtl] #currency-wrapper {
  right: 15px;
  left: unset;
}
#currency-wrapper .ship-country.open .fa {
  transform: rotate(180deg);
  transition: all ease-in-out;
}
#currency-wrapper .ship-country .btn-default {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  cursor: pointer;
  outline: 0;
  padding: 5px 25px;
  position: relative;
  text-align: left !important;
  transition: none;
  /* transition: all .2s ease-in-out; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 767.98px) {
  #currency-wrapper .ship-country .btn-default {
    padding: 5px 15px;
  }
}
#currency-wrapper .ship-country .btn-default .fa {
  font-size: 12px;
  transition: all ease-in-out;
}
#currency-wrapper .ship-country .btn-default span[class^=flagstrap-selected] {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font: normal normal 400 14px/36px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
}
#currency-wrapper .ship-country .btn-default span[class^=flagstrap-selected] i {
  background-repeat: no-repeat;
  display: block;
  margin: 0 !important;
  float: left;
  transform: scale(1.25);
}
#currency-wrapper .ship-country .dropdown-menu {
  top: unset !important;
  bottom: 110% !important;
  width: 128px !important;
  min-width: 128px !important;
}
#currency-wrapper .ship-country .dropdown-menu li a {
  padding: 7px 25px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  font: normal normal 400 14px/36px "Poppins", sans-serif;
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  #currency-wrapper .ship-country .dropdown-menu li a {
    padding: 7px 15px;
  }
}
#currency-wrapper .ship-country .dropdown-menu li a i {
  background-repeat: no-repeat;
  display: block;
  margin: 0 !important;
  float: left;
  transform: scale(1.25);
}

/*=====  End of Currency  ======*/
/*==================================
=        Whatsapp Sticky           =
==================================*/
.whatsapp-sticky {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 2;
  display: block;
}
html[dir=rtl] .whatsapp-sticky {
  left: 15px;
  right: unset;
}
.whatsapp-sticky a {
  width: 45px;
  height: 45px;
  display: block;
  text-align: center;
  background-color: #25d366;
  border-radius: 50%;
}
.whatsapp-sticky a .fab {
  color: #fff;
  font-size: 24px;
  line-height: 45px;
}
@media only screen and (max-width: 575.98px) {
  .whatsapp-sticky a .fab {
    font-size: 30px;
  }
}

/*=====  End of Whatsapp Sticky  ======*/
/*==================================
=        Whatsapp Sticky           =
==================================*/
#subscribe-popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all ease-in-out 0.5s;
}
#subscribe-popup.show-subscribe {
  transform: scale(1);
  transition: all ease-in-out 0.5s;
}
#subscribe-popup .wrapper {
  background: #fff;
  padding: 45px 30px 30px;
  width: 600px;
  max-width: calc(100% - 30px);
  position: relative;
}
#subscribe-popup .wrapper .close-subscribe-popup-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
html[dir=rtl] #subscribe-popup .wrapper .close-subscribe-popup-btn {
  left: 0;
  right: unset;
}
#subscribe-popup .wrapper .close-subscribe-popup-btn svg {
  vertical-align: middle;
  fill: #000;
  stroke: none;
  width: 26px;
  height: 26px;
}
#subscribe-popup .wrapper form.newsletter .mi-message {
  display: block;
  color: red;
  margin: 0;
  padding: 0;
  font: normal normal 400 12px/20px "Poppins", sans-serif !important;
  letter-spacing: 0.48px;
}
#subscribe-popup .wrapper form.newsletter .mi-message.alert--alert-success {
  color: green !important;
}
#subscribe-popup .wrapper form.newsletter .input-group {
  position: relative;
  border: 0.5px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  #subscribe-popup .wrapper form.newsletter .input-group {
    flex-direction: column;
    border: none;
  }
}
#subscribe-popup .wrapper form.newsletter .input-group .subscribe-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
html[dir=rtl] #subscribe-popup .wrapper form.newsletter .input-group .subscribe-icon {
  left: unset;
  right: 15px;
}
@media only screen and (max-width: 767.98px) {
  #subscribe-popup .wrapper form.newsletter .input-group .subscribe-icon {
    top: 23px;
  }
}
#subscribe-popup .wrapper form.newsletter .input-group .subscribe-icon svg {
  vertical-align: middle;
  fill: #000;
  stroke: none;
  width: 26px;
  height: 26px;
}
#subscribe-popup .wrapper form.newsletter .input-group input[type=email] {
  -webkit-appearance: none;
  border: none;
  font: normal normal 400 12px/20px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #000;
  width: 100%;
  height: 45px;
  letter-spacing: 0.26px;
  background: transparent;
  padding: 19px 10px 19px 60px;
  background-color: transparent;
}
html[dir=rtl] #subscribe-popup .wrapper form.newsletter .input-group input[type=email] {
  padding: 19px 60px 19px 10px;
  letter-spacing: 0;
}
@media only screen and (max-width: 767.98px) {
  #subscribe-popup .wrapper form.newsletter .input-group input[type=email] {
    border: 0.5px solid #e5e5e5;
  }
}
#subscribe-popup .wrapper form.newsletter .input-group input[type=email]:focus {
  outline: 0;
}
#subscribe-popup .wrapper form.newsletter .input-group .input-group-btn {
  margin: 7px;
}
@media only screen and (max-width: 767.98px) {
  #subscribe-popup .wrapper form.newsletter .input-group .input-group-btn {
    width: 100%;
    margin-top: 10px;
  }
}
#subscribe-popup .wrapper form.newsletter .input-group .input-group-btn button[type=submit] {
  transition: 0.25s ease-in-out;
  padding: 0;
  width: 100px;
  height: 45px;
  font: normal normal 600 12px/20px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #fff;
  border: 2px solid #235940;
  background-color: #235940;
  text-transform: uppercase;
  text-align: center;
  border-radius: 3px;
}
@media only screen and (max-width: 767.98px) {
  #subscribe-popup .wrapper form.newsletter .input-group .input-group-btn button[type=submit] {
    width: 100%;
  }
}
#subscribe-popup .wrapper form.newsletter .input-group .input-group-btn button[type=submit]:hover {
  cursor: pointer;
  background-color: #fff;
  color: #235940;
}

/*=====  End of Whatsapp Sticky  ======*/
@media (max-width: 1199px) {
  #desktop-navigation {
    display: none !important;
  }
}

@media (min-width: 1199px) {
  .navbarmain-wrapper .nav-top-wrapper,
  #mobile-navigation {
    display: none !important;
  }
}

.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .item {
  display: none !important;
}

#main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 100%;
  padding-bottom: 10px;
}
@media only screen and (min-width: 1551px) {
  #main-menu {
    margin: auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #main-menu {
    margin: auto;
  }
}
#main-menu #desktop-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#main-menu #desktop-navigation li.nav-item > a.nav-link {
  font: normal normal 600 14px/30px "Poppins", sans-serif;
  color: #235940;
  opacity: 1;
  letter-spacing: 0.05em;
  display: block;
  padding: 8px 0;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#main-menu #desktop-navigation li.nav-item > a.nav-link:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 3px;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #main-menu #desktop-navigation li.nav-item > a.nav-link:after {
  left: unset;
  right: 0;
}
#main-menu #desktop-navigation li.nav-item > a.nav-link:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #main-menu #desktop-navigation li.nav-item > a.nav-link {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
#main-menu #desktop-navigation li.nav-item.dropdown {
  position: relative;
}
#main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper {
  padding: 10px 0;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  position: absolute;
  width: 240px;
  background-color: #fafafa;
  top: 100%;
  left: 0;
  transform: translateY(1em);
  transition: all 0.25s 0s, visibility 0s, z-index 0s, opacity 0.15s 0s;
}
html[dir=rtl] #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper {
  left: unset;
  right: 0;
}
#main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  width: 100%;
  height: 1px;
  transition: height 0.25s 0s;
}
html[dir=rtl] #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper:after {
  left: unset;
  right: 0;
}
#main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list h3,
#main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list a.nav-link {
  color: #000;
  font: normal normal 400 13px/20px "Poppins", sans-serif;
  padding: 8px 20px;
  display: block;
}
html[dir=rtl] #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list h3,
html[dir=rtl] #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list a.nav-link {
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) {
  #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list h3:hover,
  #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list a.nav-link:hover {
    background-color: #eeeeee;
  }
}
#main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list h3 svg {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2px;
  width: 18px;
}
html[dir=rtl] #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list h3 svg {
  transform: rotateZ(180deg);
}
#main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list.has-sub {
  position: relative;
}
#main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list.has-sub .flex-column {
  padding: 10px 0;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1;
  width: 240px;
  background-color: #fafafa;
  top: -10px;
  left: 100%;
  z-index: -1;
  transition: visibility 0s, z-index 0s, opacity 0.15s 0s;
}
html[dir=rtl] #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list.has-sub .flex-column {
  right: 100%;
  left: unset;
}
@media only screen and (min-width: 1200px) {
  #main-menu #desktop-navigation li.nav-item.dropdown .dropdown-menu-wrapper .menu-container .mega-menu-list.has-sub:hover .flex-column {
    visibility: visible;
    opacity: 1;
    z-index: 2;
  }
}
@media only screen and (min-width: 1200px) {
  #main-menu #desktop-navigation li.nav-item.dropdown:hover .dropdown-menu-wrapper {
    visibility: visible;
    opacity: 1;
    z-index: 2;
    transform: translateY(0%);
  }
}

/*!
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
.mm,
.mm ul,
.mm li,
.mm a,
.mm span {
  display: block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  /** Width for the menu. */
  --mm-width: 100%;
  /** Min-width for the menu. */
  --mm-min-width: 200px;
  /** Max-width for the menu. */
  --mm-max-width: 440px;
  /** Height for menu items. */
  --mm-item-height: 50px;
  /** Indent for menu items. */
  --mm-item-indent: 20px;
  /** Line height for menu items. */
  --mm-line-height: 24px;
  /** Close Button */
  --mm-button-size: 60px;
}

.mm-hidden {
  display: none !important;
}

.mm {
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  clip-path: inset(0 0 0 0);
  background: rgba(0, 0, 0, 0.5);
  color: #444;
  line-height: 24px;
  line-height: var(--mm-line-height);
  transform: translateX(0px);
  cursor: default;
}
.mm ul {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 50px;
  top: var(--mm-item-height);
  left: 100%;
  bottom: 0;
  width: 200%;
  padding-right: 100%;
  background: inherit;
  transition: left 0.3s ease 0s;
  cursor: default;
}
html[dir=rtl] .mm ul {
  right: 100%;
  left: unset;
}
.mm.mm--offcanvas {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9995;
  width: 100%;
  transition: transform 0.3s ease 0s, bottom 0s ease 0s;
}
html[dir=rtl] .mm.mm--offcanvas {
  right: 0;
  left: unset;
}
.mm.mm--offcanvas:not(.mm--open) {
  bottom: 100%;
  transform: translateX(-100%);
  transition-delay: 0s, 0.6s;
}
html[dir=rtl] .mm.mm--offcanvas:not(.mm--open) {
  transform: translateX(100%);
}
.mm.mm--offcanvas .navbarmain-wrapper {
  width: 390px;
  max-width: calc(100% - 60px);
  background: #fff;
  height: 100%;
}
.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper {
  width: 100%;
  padding: 16px 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .mmenu-close {
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: auto !important;
  position: absolute;
  left: 100%;
  top: 0;
  width: var(--mm-button-size);
  height: var(--mm-button-size);
  z-index: 2;
}
html[dir=rtl] .mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .mmenu-close {
  right: 100%;
  left: unset;
}
.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .mmenu-close .close-icon {
  vertical-align: middle;
  fill: #fff;
  stroke: none;
  width: 40px;
  height: 40px;
}
.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .mmenu-close .close-text {
  font: normal normal 400 12px/20px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #000;
  display: none;
}
html[dir=rtl] .mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .mmenu-close .close-text {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
}
.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .item {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .item button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .item button .item-icon svg {
  vertical-align: middle;
  fill: #000;
  stroke: none;
  width: 26px;
  height: 26px;
}
.mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .item button .item-text {
  white-space: normal;
  text-align: left;
  max-width: 210px;
  font: normal normal 400 12px/20px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #000;
}
html[dir=rtl] .mm.mm--offcanvas .navbarmain-wrapper .nav-top-wrapper .item button .item-text {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
  text-align: right;
}
.mm.mm--vertical #mobile-navigation {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(var(--doc-height) - 20vh);
}
.mm.mm--vertical ul {
  width: 100%;
  position: static;
  display: block;
  background-color: #fff;
  padding: 10px 0 20px 0 !important;
}
.mm.mm--vertical ul li.nav-item {
  display: block;
  width: 100%;
  margin: 0;
}
.mm.mm--vertical ul li.nav-item a.nav-link {
  font: normal normal 400 15px/30px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  display: block;
  padding: 8px 15px;
}
html[dir=rtl] .mm.mm--vertical ul li.nav-item a.nav-link {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
}
.mm.mm--vertical ul li.nav-item.dropdown-nav.mm--open .mob-nav-link {
  font-weight: 500;
  transition: all ease-in-out 0.5s;
}
.mm.mm--vertical ul li.nav-item.dropdown-nav.mm--open .mob-nav-link .svg svg {
  transform: rotate(90deg);
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .mm.mm--vertical ul li.nav-item.dropdown-nav.mm--open .mob-nav-link .svg svg {
  transform: rotateZ(90deg);
}
.mm.mm--vertical ul li.nav-item.dropdown-nav .mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all ease-in-out 0.5s;
  font: normal normal 400 15px/30px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  padding: 8px 15px;
}
html[dir=rtl] .mm.mm--vertical ul li.nav-item.dropdown-nav .mob-nav-link {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
}
.mm.mm--vertical ul li.nav-item.dropdown-nav .mob-nav-link .svg {
  border-left: 1px solid rgba(64, 64, 64, 0.2);
  height: 25px;
  width: 40px;
  pointer-events: none;
}
html[dir=rtl] .mm.mm--vertical ul li.nav-item.dropdown-nav .mob-nav-link .svg {
  border-right: 1px solid rgba(64, 64, 64, 0.2);
  border-left: 0;
}
.mm.mm--vertical ul li.nav-item.dropdown-nav .mob-nav-link .svg svg {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2px;
  width: 23px;
  margin: auto;
  display: block;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .mm.mm--vertical ul li.nav-item.dropdown-nav .mob-nav-link .svg svg {
  transform: rotateZ(180deg);
}
.mm.mm--vertical ul li.nav-item.dropdown-nav .ressub-nav {
  padding: 15px 15px !important;
  display: none;
}
.mm.mm--vertical ul li.nav-item.dropdown-nav .ressub-nav.mm--open {
  display: block;
}
.mm.mm--vertical ul li.nav-item.dropdown-nav .ressub-nav li.ressub-nav-item a.ressub-nav-link {
  font: normal normal 400 13px/28px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  display: block;
  padding: 5px 15px;
}
html[dir=rtl] .mm.mm--vertical ul li.nav-item.dropdown-nav .ressub-nav li.ressub-nav-item a.ressub-nav-link {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.pagination li {
  padding: 5px;
  width: 34px;
  height: 34px;
  text-align: center;
  border-radius: 50%;
  border: 0;
  position: relative;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination li::before, .pagination li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  top: 0;
  left: 0;
}
.pagination li::before {
  border: 1px solid transparent;
}
.pagination li span,
.pagination li a {
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  font: normal normal 400 13px/30px "Poppins", sans-serif;
  color: #000;
}
.pagination li.active {
  background: #235940;
  color: #fff;
  box-shadow: inset 0 0 1px #235940;
}
.pagination li.active span {
  color: #fff;
}
@media only screen and (min-width: 1200px) {
  .pagination li:hover::before {
    border-top-color: #235940;
    border-right-color: #235940;
    border-bottom-color: #235940;
    transition: border-top-color 0.12s linear, border-right-color 0.12s linear 0.08s, border-bottom-color 0.12s linear 0.18s;
  }
  .pagination li:hover::after {
    border-top: 1px solid #235940;
    border-left-width: 1px;
    border-right-width: 1px;
    transform: rotate(270deg);
    transition: transform 0.36s linear 0s, border-left-width 0s linear 0.15s;
  }
}

.breadcrumb {
  padding: 15px 0 0;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  justify-content: start;
  column-gap: 15px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb {
    column-gap: 7px;
  }
}
.breadcrumb > li a {
  font: normal normal 400 11.5px/30px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.breadcrumb > li a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: -5px;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .breadcrumb > li a:after {
  left: unset;
  right: 0;
}
.breadcrumb > li a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .breadcrumb > li a {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb > li a {
    line-height: 20px;
    font-size: 10px;
  }
}
.breadcrumb > li + li:before {
  content: "/ ";
  color: inherit;
  padding-right: 15px;
}
html[dir=rtl] .breadcrumb > li + li:before {
  padding-left: 15px;
  padding-right: 0px;
}
@media only screen and (max-width: 767.98px) {
  .breadcrumb > li + li:before {
    padding-right: 7px;
  }
  html[dir=rtl] .breadcrumb > li + li:before {
    padding-left: 7px;
    padding-right: 0px;
  }
}
.breadcrumb > .active {
  color: #999999;
}

#listing-area .filter-wrapper {
  margin: 0px auto 30px;
  position: relative;
  z-index: 9;
}
#listing-area .filter-wrapper.ml-auto {
  margin: 0px 0 30px auto;
}
html[dir=rtl] #listing-area .filter-wrapper.ml-auto {
  margin: 0px auto 30px 0;
}
#listing-area .filter-wrapper .collection-filter-control {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 992px) {
  #listing-area .filter-wrapper .collection-filter-control {
    display: none;
  }
}
#listing-area .filter-wrapper .collection-filter-control .btn {
  width: 50%;
  border-right: none;
  border-radius: 3px 0 0 3px;
  flex: 1 1 100%;
  padding: 15px;
  border: 1px solid #d3d3d6;
  border-bottom: none;
  background-color: #ebebeb;
  transition: background-color 0.15s;
  display: block;
  height: auto;
  font: normal normal 400 14px/30px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  transition: all ease-in-out 0.5s;
}
#listing-area .filter-wrapper .collection-filter-control .btn.active-btn {
  background: #fff;
}
#listing-area #listing-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
#listing-area #listing-filters.ml-auto {
  margin: 0 0 0 auto;
}
@media (max-width: 991.99px) {
  #listing-area #listing-filters {
    gap: 15px;
    position: relative;
    z-index: 1;
    background: #ffffff;
    border: 1px solid #d3d3d6;
    border-top: none;
    border-radius: 0 0 3px 3px;
  }
}
#listing-area #listing-filters .filter-left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #listing-area #listing-filters .filter-left {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  #listing-area #listing-filters .filter-left {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}
#listing-area #listing-filters .filter-left .actions a {
  border: 1px solid rgba(107, 108, 119, 0.15);
  background-color: transparent;
  border-radius: 3px;
  padding: 5px 18px;
  cursor: pointer;
  font: normal normal 400 12px/40px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  transition: all ease-in-out 0.5s;
  display: block;
}
@media (max-width: 991.99px) {
  #listing-area #listing-filters .filter-right {
    width: 100%;
    padding: 20px;
  }
}
#listing-area #listing-filters .filter-box {
  width: 155px;
  position: relative;
  z-index: 99;
}
@media (max-width: 991.99px) {
  #listing-area #listing-filters .filter-box {
    width: 100%;
  }
}
#listing-area #listing-filters .filter-box.open-filter {
  z-index: 999;
}
#listing-area #listing-filters .filter-box.open-filter .filter-header .icon i {
  transform: rotate(180deg);
  transition: all ease-in-out 0.5s;
}
#listing-area #listing-filters .filter-box.open-filter .filter-dropdown {
  visibility: visible;
  opacity: 1;
  z-index: 2;
  transform: translateY(0%);
  transition: all ease-in-out 0.5s;
}
#listing-area #listing-filters .filter-box .filter-header {
  border: 1px solid rgba(107, 108, 119, 0.15);
  background-color: transparent;
  border-radius: 3px;
  padding: 5px 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#listing-area #listing-filters .filter-box .filter-header .content .filter-title {
  font: normal normal 400 12px/20px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  display: none;
}
#listing-area #listing-filters .filter-box .filter-header .content .filter-subtitle {
  color: #6b6c77;
  font: normal normal 400 11px/20px "Poppins", sans-serif;
  opacity: 1;
  letter-spacing: 0.05em;
}
#listing-area #listing-filters .filter-box .filter-header .icon {
  font: normal normal 400 11px/20px "Poppins", sans-serif;
}
#listing-area #listing-filters .filter-box .filter-header .icon i {
  transition: all ease-in-out 0.5s;
}
#listing-area #listing-filters .filter-box .filter-dropdown {
  padding-top: 9px;
  width: 100%;
  width: max-content;
  max-width: 100vw;
  position: absolute;
  left: 0;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transform: translateY(1em);
  transition: all 0.25s 0s, visibility 0s, z-index 0s, opacity 0.15s 0s;
}
#listing-area #listing-filters .filter-box .filter-dropdown .filter-in {
  background: #ffffff;
  border: 1px solid rgba(107, 108, 119, 0.15);
  border-radius: 3px;
  color: #6b6c77;
  max-height: 200px;
  overflow-y: auto;
}
#listing-area #listing-filters .filter-box .filter-dropdown .filter-in label {
  padding: 15px 13px;
  margin: 0;
  font: normal normal 400 11px/20px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  transition: all ease-in-out 0.5s;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row-reverse;
  gap: 10px;
}
#listing-area #listing-filters .filter-box .filter-dropdown .filter-in label .control__indicator {
  position: relative;
  left: unset;
  top: unset;
  transform: none;
}
@media only screen and (min-width: 1200px) {
  #listing-area #listing-filters .filter-box .filter-dropdown .filter-in label:hover {
    background: rgba(107, 108, 119, 0.1);
    transition: all ease-in-out 0.5s;
  }
}
#listing-area #listing-filters .filter-box .filter-dropdown .filter-in label:not(:last-child) {
  border-bottom: 1px solid rgba(107, 108, 119, 0.3);
}

.product-card {
  position: relative;
}
html[dir=rtl] .product-card {
  direction: rtl;
}
@media only screen and (min-width: 1200px) {
  .product-card:hover {
    cursor: pointer;
  }
  .product-card:hover .image .image-primary {
    transform: scale(1.1);
  }
}
.product-card .featured-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}
.product-card .badge {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  width: 30px;
  height: 85px;
}
html[dir=rtl] .product-card .badge {
  left: 13px;
  right: unset;
}
.product-card .badge svg {
  display: block;
  width: auto;
  height: 85px;
}
.product-card .badge.out_badge {
  color: #ffffff;
}
.product-card .badge i {
  position: absolute;
  left: -26px;
  top: 17px;
  transform: rotate(-90deg);
  padding-left: 20px;
  padding-right: 5px;
  display: block;
  width: max-content;
  font: normal normal normal 11px/28px "Poppins", sans-serif;
  letter-spacing: 0.17px;
  color: #fff;
  opacity: 1;
  width: 85px;
  height: 30px;
}
html[dir=rtl] .product-card .badge i {
  left: -27px;
  right: unset;
  font-family: "Cairo", sans-serif;
  font-size: 9px;
  padding-left: 15px;
  top: 28px;
}
.product-card .image {
  position: relative;
  display: block;
  margin: 0px 0 20px 0;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .product-card .image {
    margin: 0px 0 15px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product-card .image {
    margin: 0px 0 10px 0;
  }
}
@media only screen and (max-width: 767.98px) {
  .product-card .image {
    margin: 0px 0 5px 0;
  }
}
.product-card .image .image-primary {
  transition: 0.25s ease-in-out;
}
.product-card .image .image-secondary {
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease-in-out;
}
html[dir=rtl] .product-card .image .image-secondary {
  right: -1px;
  left: unset;
}
.product-card .image img {
  transition: 0.25s ease-in-out;
  max-width: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
}
.product-card .title {
  text-align: left;
  font: normal normal 500 14px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  width: 80%;
  min-height: 60px;
  transition: 0.25s ease-in-out;
}
html[dir=rtl] .product-card .title {
  text-align: right;
  font-family: "Cairo", sans-serif;
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  .product-card .title {
    font-size: 14px;
    line-height: 20px;
    min-height: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .product-card .title {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product-card .title {
    font-size: 15px;
    line-height: 20px;
    min-height: 40px;
    width: 95%;
  }
}
@media only screen and (max-width: 767.98px) {
  .product-card .title {
    font-size: 13px;
    line-height: 18px;
    width: 98%;
  }
}
.product-card .title a {
  color: inherit;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
}
.product-card .price-wrapper {
  overflow: hidden;
  position: relative;
}
.product-card .price-wrapper .price {
  text-align: center;
  display: flex;
  vertical-align: middle;
  justify-content: start;
  align-self: center;
  align-items: center;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition: all ease-in-out 0.5s;
}
.product-card .price-wrapper .price .price-word {
  color: #000;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  font: normal normal 400 14px/30px "Poppins", sans-serif;
  text-align: left;
}
html[dir=rtl] .product-card .price-wrapper .price .price-word {
  text-align: right;
  font-family: "Cairo", sans-serif;
  letter-spacing: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product-card .price-wrapper .price .price-word {
    font-size: 10px;
    line-height: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .product-card .price-wrapper .price .price-word {
    font-size: 10px;
    line-height: 15px;
  }
}
.product-card .price-wrapper .price .price-new {
  color: #000;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  font: normal normal 400 14px/30px "Poppins", sans-serif;
  text-align: left;
}
html[dir=rtl] .product-card .price-wrapper .price .price-new {
  text-align: right;
  font-family: "Cairo", sans-serif;
  letter-spacing: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  .product-card .price-wrapper .price .price-new {
    font-size: 14px;
    line-height: 21px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .product-card .price-wrapper .price .price-new {
    font-size: 12px;
    line-height: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product-card .price-wrapper .price .price-new {
    font-size: 11px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 767.98px) {
  .product-card .price-wrapper .price .price-new {
    font-size: 11px;
    line-height: 18px;
    text-align: center;
  }
  html[dir=rtl] .product-card .price-wrapper .price .price-new {
    text-align: center;
  }
}
.product-card .price-wrapper .price .price-old {
  color: #000;
  text-transform: uppercase;
  font: normal normal 400 12px/30px "Poppins", sans-serif;
  text-align: left;
  margin-left: 10px;
  letter-spacing: 0.24px;
  text-decoration: line-through;
}
html[dir=rtl] .product-card .price-wrapper .price .price-old {
  text-align: right;
  font-family: "Cairo", sans-serif;
  letter-spacing: 0px;
  margin-right: 10px;
  margin-left: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  .product-card .price-wrapper .price .price-old {
    font-size: 12px;
    line-height: 21px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .product-card .price-wrapper .price .price-old {
    font-size: 11px;
    line-height: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product-card .price-wrapper .price .price-old {
    font-size: 10px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 767.98px) {
  .product-card .price-wrapper .price .price-old {
    font-size: 10px;
    line-height: 18px;
    text-align: center;
  }
  html[dir=rtl] .product-card .price-wrapper .price .price-old {
    text-align: center;
  }
}
.product-card .add-to-bag {
  transition: 0.25s ease-in-out;
  -webkit-appearance: none;
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  width: 100%;
  margin: 5px 0 0 0;
}
html[dir=rtl] .product-card .add-to-bag {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .product-card .add-to-bag {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .product-card .add-to-bag {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  .product-card .add-to-bag {
    font-size: 12px;
  }
}
.product-card .add-to-bag:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
.product-card .add-to-bag:disabled, .product-card .add-to-bag[disabled] {
  background-color: #6E6F6F !important;
}
@media only screen and (min-width: 1200px) {
  .product-card .add-to-bag:disabled:hover, .product-card .add-to-bag[disabled]:hover {
    color: #fff !important;
  }
}

html[dir=rtl] .category-card {
  direction: rtl;
}
.category-card .card-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
}
.category-card .card-wrapper .images-wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 4px;
  flex-wrap: wrap;
}
.category-card .card-wrapper .images-wrapper .images-collection .image img {
  width: 100%;
}
.category-card .card-wrapper .images-wrapper .images-collection.featured {
  height: 100%;
  width: 100%;
}
.category-card .card-wrapper .images-wrapper .images-collection.relative {
  height: 100%;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: space-between;
}
.category-card .card-wrapper .content-text {
  margin: 15px 0px 0px;
  padding-right: 25px;
  max-width: 100%;
}
html[dir=rtl] .category-card .card-wrapper .content-text {
  padding-left: 25px;
  padding-right: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .category-card .card-wrapper .content-text {
    padding-right: 25px;
    margin: 15px 0px 30px;
  }
  html[dir=rtl] .category-card .card-wrapper .content-text {
    padding-left: 25px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  .category-card .card-wrapper .content-text {
    padding-right: 25px;
    margin: 15px 0px 30px;
  }
  html[dir=rtl] .category-card .card-wrapper .content-text {
    padding-left: 25px;
    padding-right: 0px;
  }
}
.category-card .card-wrapper .content-text .card-title {
  font: normal normal 400 18px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] .category-card .card-wrapper .content-text .card-title {
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .category-card .card-wrapper .content-text .card-title {
    font-size: 21px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  .category-card .card-wrapper .content-text .card-title {
    font-size: 17px;
    line-height: 25px;
  }
}
.category-card .card-wrapper .content-text .card-description {
  margin: 8px 0px;
  text-align: left;
  font: normal normal 400 12px/20px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  min-height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
html[dir=rtl] .category-card .card-wrapper .content-text .card-description {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .category-card .card-wrapper .content-text .card-description {
    font-size: 15px;
    line-height: 21px;
    margin: 7px 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  .category-card .card-wrapper .content-text .card-description {
    font-size: 14px;
    line-height: 20px;
    margin: 7px 0px;
  }
}

#search-box {
  margin: 25px 0 0 0;
}
#search-box .search-input-wrapper {
  position: relative;
  border: 0.5px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.99px) {
  #search-box .search-input-wrapper {
    border: none;
    flex-direction: column;
    gap: 15px;
  }
}
#search-box .search-input-wrapper .search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
@media only screen and (max-width: 767.98px) {
  #search-box .search-input-wrapper .search-icon {
    top: 23px;
  }
}
#search-box .search-input-wrapper .search-icon svg {
  vertical-align: middle;
  fill: #e5e5e5;
  stroke: none;
  width: 26px;
  height: 26px;
}
#search-box .search-input-wrapper .select-wrapper {
  margin: 7px;
  border: 1px solid #e5e5e5;
  min-width: 150px;
}
@media (max-width: 991.99px) {
  #search-box .search-input-wrapper .select-wrapper {
    min-width: 100%;
    margin: 0px;
  }
}
#search-box .search-input-wrapper .select-wrapper .form-control {
  height: 40px;
  border: none !important;
  padding: 4px 12px !important;
  outline: none !important;
  box-shadow: none !important;
}
#search-box .search-input-wrapper #input-search {
  -webkit-appearance: none;
  border: none;
  font: normal normal 400 12px/30px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #000;
  width: 100%;
  height: 45px;
  letter-spacing: 0.26px;
  background: transparent;
  padding: 19px 10px 19px 60px;
  background-color: transparent;
  box-shadow: none;
}
@media only screen and (max-width: 767.98px) {
  #search-box .search-input-wrapper #input-search {
    border: 0.5px solid #e5e5e5;
  }
}
#search-box .search-input-wrapper #input-search:focus {
  outline: 0;
}
#search-box .search-input-wrapper .btn-wrapper {
  margin: 7px;
}
@media (max-width: 991.99px) {
  #search-box .search-input-wrapper .btn-wrapper {
    margin: 0px;
    width: 100%;
  }
}
#search-box .search-input-wrapper .btn-wrapper input[type=button] {
  transition: 0.25s ease-in-out;
  padding: 0;
  width: 100px;
  height: 40px;
  font: normal normal 600 12px/20px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #fff;
  border: 2px solid #235940;
  background-color: #235940;
  text-transform: uppercase;
  text-align: center;
  border-radius: 3px;
}
@media only screen and (max-width: 767.98px) {
  #search-box .search-input-wrapper .btn-wrapper input[type=button] {
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  #search-box .search-input-wrapper .btn-wrapper input[type=button]:hover {
    cursor: pointer;
    background-color: #fff;
    color: #235940;
  }
}
#search-box .selection-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 45px;
  padding: 15px 0 30px;
}
@media (max-width: 991.99px) {
  #search-box .selection-wrapper {
    gap: 5px;
    padding-top: 35px;
    flex-direction: column;
    align-items: start;
  }
}
#search-box .selection-wrapper .filter-wrapper {
  margin-bottom: 0 !important;
}
@media (max-width: 991.99px) {
  #search-box .selection-wrapper .filter-wrapper {
    width: 100%;
  }
}

/* search-image */
.no-products {
  margin: 50px 0;
}
.no-products p {
  font: normal normal 400 18px/30px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .no-products p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767.98px) {
  .no-products p {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results {
    width: calc(100% - 30px) !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results {
    width: calc(100% - 30px) !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results #d_ajax_search_results_body {
    max-height: 293px;
    overflow: hidden;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results #d_ajax_search_results_body {
    max-height: 293px;
    overflow: hidden;
  }
}
#d_ajax_search_results .row {
  /* border-style: solid;
  border-width: 1px;
  border-color: rgb(224, 224, 224);
  background-color: rgb(255, 255, 255);
  box-shadow: -2.237px 3.316px 43px 0px rgba(0, 0, 0, 0.16); */
  font-size: 13px;
  color: rgb(0, 0, 0);
  line-height: 1.538;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 12px;
  padding-top: 12px;
  text-align: center;
  margin: 0px;
  width: 50%;
  /* height: 50px; */
  display: table;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results .row {
    width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results .row {
    width: 100%;
  }
}
#d_ajax_search_results .row .search-image {
  width: 120px;
  height: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results .row .search-image {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results .row .search-image {
    width: 70px;
    height: 70px;
  }
}
#d_ajax_search_results .row .search-image img {
  width: 100%;
}
#d_ajax_search_results .row .search-description {
  width: calc(100% - 150px);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px 7%;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results .row .search-description {
    padding: 10px;
    height: 70px;
    width: calc(100% - 80px) !important;
    margin-left: auto;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results .row .search-description {
    padding: 10px;
    height: 70px;
    width: calc(100% - 80px) !important;
    margin-left: auto;
  }
}
#d_ajax_search_results .row .search-description .prdouct-name {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 21px;
  height: 21px;
  width: 100%;
  text-align: left;
  display: block;
  color: #626262;
  transition: 0.25s ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #d_ajax_search_results .row .search-description .prdouct-name {
    font-size: 17px;
    line-height: 25px;
    height: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #d_ajax_search_results .row .search-description .prdouct-name {
    font-size: 16px;
    line-height: 25px;
    height: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results .row .search-description .prdouct-name {
    font-size: 15px;
    line-height: 25px;
    height: 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results .row .search-description .prdouct-name {
    font-size: 14px;
    line-height: 27px;
    height: 27px;
  }
}
#d_ajax_search_results .row .search-description .prdouct-name a {
  color: inherit;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
#d_ajax_search_results .row .search-description .price {
  display: block;
  width: 100%;
  margin-top: 7px;
  margin-bottom: 7px;
  text-align: left;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results .row .search-description .price {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results .row .search-description .price {
    margin-top: 15px;
    margin-bottom: 10px;
  }
}
#d_ajax_search_results .row .search-description .price .price-new {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: right;
  color: #4c4c4c;
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #d_ajax_search_results .row .search-description .price .price-new {
    font-size: 17px;
    line-height: 21px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #d_ajax_search_results .row .search-description .price .price-new {
    font-size: 15px;
    line-height: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results .row .search-description .price .price-new {
    font-size: 15px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results .row .search-description .price .price-new {
    font-size: 15px;
    line-height: 21px;
    text-align: center;
  }
}
#d_ajax_search_results .row .search-description .price .price-old {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: #99989e;
  margin-left: 30px;
  text-decoration: line-through;
  display: inline-block;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #d_ajax_search_results .row .search-description .price .price-old {
    font-size: 17px;
    line-height: 21px;
    margin-left: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #d_ajax_search_results .row .search-description .price .price-old {
    font-size: 15px;
    line-height: 21px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results .row .search-description .price .price-old {
    font-size: 15px;
    line-height: 21px;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results .row .search-description .price .price-old {
    font-size: 15px;
    line-height: 21px;
    text-align: center;
    margin-left: 0px;
  }
}
#d_ajax_search_results .all_results {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 27px;
  height: 27px;
  width: 100%;
  text-align: left;
  display: block;
  color: #626262;
  text-transform: uppercase;
  transition: 0.25s ease-in-out;
}
#d_ajax_search_results .all_results i {
  transform: translateX(10px);
  font-size: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #d_ajax_search_results .all_results {
    font-size: 19px;
    line-height: 27px;
    height: 27px;
    height: 37px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #d_ajax_search_results .all_results {
    font-size: 18px;
    line-height: 25px;
    height: 25px;
    height: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #d_ajax_search_results .all_results {
    font-size: 17px;
    line-height: 23px;
    height: 23px;
    height: 33px;
  }
}
@media only screen and (max-width: 767.98px) {
  #d_ajax_search_results .all_results {
    font-size: 15px;
    line-height: 22px;
    height: 22px;
    height: 32px;
  }
}

.jq-toast-loader {
  background-color: #235940 !important;
}

.alert-block {
  margin: 10px 0;
}

.alert,
.alert-content {
  font-family: inherit;
  color: #fff;
  border-radius: 5px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  max-width: 100%;
  padding: 10px 15px;
  margin-bottom: 10px;
}
.alert button.close,
.alert-content button.close {
  color: #fff;
  opacity: 1 !important;
  float: none;
  margin: 0 0 0 auto;
}
.alert.alert-success, .alert.success,
.alert-content.alert-success,
.alert-content.success {
  background-color: #4cae4c;
}
.alert.alert-danger, .alert.error,
.alert-content.alert-danger,
.alert-content.error {
  background-color: #bf3334;
}

.text-danger {
  display: block;
  margin-top: 0px;
  color: #bf3334;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  position: relative;
  transform: translateY(-15px);
  text-align: left;
}
html[dir=rtl] .text-danger {
  text-align: right;
}
@media only screen and (min-width: 992px) {
  .text-danger {
    font-size: 11px;
  }
}

#popUp-cart {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  right: unset;
  bottom: unset;
  width: 100%;
  text-align: center;
  z-index: 9999;
  padding: 0;
  transform: translateX(150%);
  transition: all ease-in-out 0.5s;
  background-color: #fff;
  box-shadow: -1.93px 7px 35px rgba(0, 0, 0, 0.5294117647);
  padding: 0 !important;
}
@media only screen and (min-width: 1200px) {
  #popUp-cart {
    width: 690px;
    max-width: calc(100% - 90px);
    overflow: hidden;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #popUp-cart {
    width: 720px;
    max-width: calc(100% - 90px);
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #popUp-cart {
    width: 590px;
    max-width: calc(100% - 90px);
    overflow: hidden;
  }
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart {
    width: 300px;
    height: calc(100vh - 40px);
    overflow: auto;
  }
}
#popUp-cart .popUp-cart--active {
  transform: translateX(0%);
  transition: all ease-in-out 0.5s;
}
#popUp-cart .popUp-card-close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
html[dir=rtl] #popUp-cart .popUp-card-close {
  left: 15px;
  right: unset;
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .popUp-card-close {
    background: #fff;
    border-radius: 50%;
  }
}
#popUp-cart .popUp-card-close svg {
  vertical-align: middle;
  stroke: none;
  width: 25px;
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .popUp-card-close svg {
    width: 12px;
  }
}
#popUp-cart .popUp-card-close svg path {
  fill: #000;
  stroke: #000;
}
#popUp-cart .container-fluid {
  padding: 0;
}
#popUp-cart .container-fluid .row-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  gap: 30px;
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .container-fluid .row-wrapper {
    flex-direction: column;
  }
}
#popUp-cart .container-fluid .row-wrapper .image-wrapper {
  width: 50%;
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .container-fluid .row-wrapper .image-wrapper {
    width: 100%;
  }
}
#popUp-cart .container-fluid .row-wrapper .image-wrapper .image-box-item {
  width: 100%;
  display: block;
  margin: 0;
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .container-fluid .row-wrapper .image-wrapper .image-box-item {
    max-width: 350px;
    object-fit: contain;
  }
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper {
  height: 100%;
  width: 50%;
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .container-fluid .row-wrapper .content-wrapper {
    width: 100%;
    padding: 0 15px;
  }
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content .title {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
  margin: 0px 0 15px;
}
html[dir=rtl] #popUp-cart .container-fluid .row-wrapper .content-wrapper .content .title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #popUp-cart .container-fluid .row-wrapper .content-wrapper .content .title {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #popUp-cart .container-fluid .row-wrapper .content-wrapper .content .title {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #popUp-cart .container-fluid .row-wrapper .content-wrapper .content .title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .container-fluid .row-wrapper .content-wrapper .content .title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content .description {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin: 0px 0 15px;
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .container-fluid .row-wrapper .content-wrapper .content .description {
    font-size: 12px !important;
  }
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content .description a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content .description a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #popUp-cart .container-fluid .row-wrapper .content-wrapper .content .description a:after {
  left: unset;
  right: 0;
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content .description a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #popUp-cart .container-fluid .row-wrapper .content-wrapper .content .description {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  font-weight: 500;
  color: #235940;
  margin: 0;
  display: block;
  width: max-content;
  max-width: 100%;
  position: relative;
  transition: all ease-in-out 0.5s;
}
@media only screen and (max-width: 767.98px) {
  #popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn {
    font-size: 12px !important;
  }
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn a:after {
  left: unset;
  right: 0;
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn:after {
  left: unset;
  right: 0;
}
#popUp-cart .container-fluid .row-wrapper .content-wrapper .content a.popBtn:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}

#notify_when_available {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  right: unset;
  bottom: unset;
  width: 100%;
  text-align: center;
  z-index: 9999;
  padding: 0;
  transform: translateX(150%);
  transition: all ease-in-out 0.5s;
  background-color: #fff;
  box-shadow: -1.93px 7px 35px rgba(0, 0, 0, 0.5294117647);
  padding: 30px 25px !important;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  #notify_when_available {
    width: 590px;
    max-width: calc(100% - 90px);
  }
}
@media only screen and (max-width: 1199.98px) {
  #notify_when_available {
    width: 450px;
    max-width: calc(100% - 20px);
  }
}
#notify_when_available .close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
html[dir=rtl] #notify_when_available .close {
  left: 15px;
  right: unset;
}
#notify_when_available .close svg {
  vertical-align: middle;
  stroke: none;
  width: 25px;
}
@media only screen and (max-width: 767.98px) {
  #notify_when_available .close svg {
    width: 12px;
  }
}
#notify_when_available .close svg path {
  fill: #000;
  stroke: #000;
}
#notify_when_available .container-fluid {
  padding: 0;
}
#notify_when_available .container-fluid .row-wrapper {
  margin: 0;
}
#notify_when_available .container-fluid .row-wrapper .title {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
  text-align: center;
}
html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #notify_when_available .container-fluid .row-wrapper .title {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #notify_when_available .container-fluid .row-wrapper .title {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #notify_when_available .container-fluid .row-wrapper .title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #notify_when_available .container-fluid .row-wrapper .title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .title {
  text-align: center;
}
#notify_when_available .container-fluid .row-wrapper .description {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin: 25px 0;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  #notify_when_available .container-fluid .row-wrapper .description {
    font-size: 12px !important;
  }
}
#notify_when_available .container-fluid .row-wrapper .description a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#notify_when_available .container-fluid .row-wrapper .description a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .description a:after {
  left: unset;
  right: 0;
}
#notify_when_available .container-fluid .row-wrapper .description a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .description {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .description {
  text-align: center;
}
#notify_when_available .container-fluid .row-wrapper .description span {
  margin: 15px 0px;
  display: block;
}
#notify_when_available .container-fluid .row-wrapper .description span.success-sent {
  display: none;
}
#notify_when_available .container-fluid .row-wrapper .description span.success-sent .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
#notify_when_available .container-fluid .row-wrapper .description span.success-sent .content i {
  font-size: 25px;
  color: #4cae4c;
}
#notify_when_available .container-fluid .row-wrapper .pm-form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0px 0;
}
@media only screen and (max-width: 767.98px) {
  #notify_when_available .container-fluid .row-wrapper .pm-form {
    flex-direction: column;
    gap: 10px;
  }
}
#notify_when_available .container-fluid .row-wrapper .pm-form label {
  display: none;
}
#notify_when_available .container-fluid .row-wrapper .pm-form input[type=email] {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
  margin: 0;
}
#notify_when_available .container-fluid .row-wrapper .pm-form input[type=email][type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .pm-form input[type=email][type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
#notify_when_available .container-fluid .row-wrapper .pm-form input[type=email]::-webkit-outer-spin-button, #notify_when_available .container-fluid .row-wrapper .pm-form input[type=email]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .pm-form input[type=email] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#notify_when_available .container-fluid .row-wrapper .pm-form input[type=email].placeholder {
  color: #cccccc;
}
#notify_when_available .container-fluid .row-wrapper .pm-form input[type=email]:-moz-placeholder {
  color: #cccccc;
}
#notify_when_available .container-fluid .row-wrapper .pm-form input[type=email]::-moz-placeholder {
  color: #cccccc;
}
#notify_when_available .container-fluid .row-wrapper .pm-form input[type=email]:-ms-input-placeholder {
  color: #cccccc;
}
#notify_when_available .container-fluid .row-wrapper .pm-form input[type=email]::-webkit-input-placeholder {
  color: #cccccc;
}
@media only screen and (max-width: 767.98px) {
  #notify_when_available .container-fluid .row-wrapper .pm-form input[type=email] {
    text-align: center;
  }
  html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .pm-form input[type=email] {
    text-align: center;
  }
}
#notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn {
  max-width: 100px;
}
@media only screen and (max-width: 767.98px) {
  #notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn {
    max-width: 100%;
    display: block;
    width: 100%;
  }
}
#notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn button[type=submit] {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  margin: 0;
  max-width: 100%;
  border-radius: 0;
  padding: 0 !important;
}
html[dir=rtl] #notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn button[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn button[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn button[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn button[type=submit] {
    font-size: 12px;
  }
}
#notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn button[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  #notify_when_available .container-fluid .row-wrapper .pm-form .input-group-btn button[type=submit] {
    max-width: 100%;
    display: block;
    width: 100%;
  }
}

/*==================================
=            Mas Header            =
==================================*/
#mas-header {
  position: relative;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #mas-header .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #mas-header .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) {
  #mas-header .container #hero-slider {
    padding-left: 70px;
    padding-right: 70px;
  }
}
#mas-header .container #hero-slider .hero-slide {
  display: flex;
  justify-content: start;
}
#mas-header .container #hero-slider .hero-slide picture {
  width: 100%;
}
#mas-header .container #hero-slider .hero-slide picture img {
  width: 100%;
  object-fit: cover;
}
#mas-header .container #hero-slider .hero-slide .overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  padding: 65px 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #mas-header .container #hero-slider .hero-slide .overlay {
    padding: 45px 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  #mas-header .container #hero-slider .hero-slide .overlay {
    padding: 45px 25px;
  }
}
#mas-header .container #hero-slider .hero-slide .overlay .overlay-inner .overlay-title {
  font: normal normal 400 16px/20px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] #mas-header .container #hero-slider .hero-slide .overlay .overlay-inner .overlay-title {
  text-align: right;
}
#mas-header .container #hero-slider .hero-slide .overlay .overlay-inner .overlay-text p {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  margin-top: 5px;
  text-align: left;
}
html[dir=rtl] #mas-header .container #hero-slider .hero-slide .overlay .overlay-inner .overlay-text p {
  text-align: right;
}
#mas-header .container #hero-slider .hero-slide .overlay .overlay-inner .overlay-text p small {
  display: block;
  margin-top: 5px;
}
#mas-header .container #hero-slider .slick-track {
  height: 100%;
}
#mas-header .container #hero-slider .slick-list {
  height: 100%;
}
@media only screen and (max-width: 767.98px) {
  #mas-header .container #hero-slider .slick-dots {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #mas-header .container #hero-slider .slick-dots {
    display: none !important;
  }
}
#mas-header .container #hero-slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin: -20px 0px 0px 0px;
  z-index: 10;
  font-size: 0;
  width: 50px;
  height: 50px;
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  background-position: center center;
  background-size: 54%;
  background-repeat: no-repeat;
}
#mas-header .container #hero-slider .slick-arrow.slick-prev {
  left: 0;
  background-image: url("https://img.icons8.com/ios/50/000000/long-arrow-left.png");
}
#mas-header .container #hero-slider .slick-arrow.slick-next {
  right: 0;
  background-image: url("https://img.icons8.com/ios/50/000000/long-arrow-right.png");
}
#mas-header .container #hero-slider .slick-arrow.slick-disabled {
  opacity: 0.2;
}

/*=====  End of Mas Header  ======*/
/*==================================
=           New In slider          =
==================================*/
#new-in {
  margin: 45px auto 45px;
}
@media only screen and (max-width: 767.98px) {
  #new-in .default-slider {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #new-in .default-slider {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#new-in .card-wrapper {
  max-width: 220px;
  margin: auto;
}
#new-in .card-wrapper h3 {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
}
html[dir=rtl] #new-in .card-wrapper h3 {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #new-in .card-wrapper h3 {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #new-in .card-wrapper h3 {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #new-in .card-wrapper h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #new-in .card-wrapper h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
#new-in .card-wrapper p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  color: #4c4c4c;
  align-self: center;
  text-align: center;
  letter-spacing: 0px;
}
#new-in .card-wrapper a {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  margin: 15px auto;
  max-width: 100%;
}
html[dir=rtl] #new-in .card-wrapper a {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #new-in .card-wrapper a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #new-in .card-wrapper a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #new-in .card-wrapper a {
    font-size: 12px;
  }
}
#new-in .card-wrapper a:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
#new-in .card-wrapper-2 {
  margin: 0;
}
#new-in .card-wrapper-2 h3 {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
}
html[dir=rtl] #new-in .card-wrapper-2 h3 {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #new-in .card-wrapper-2 h3 {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #new-in .card-wrapper-2 h3 {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #new-in .card-wrapper-2 h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #new-in .card-wrapper-2 h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
#new-in .card-wrapper-2 p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #4c4c4c;
  align-self: center;
  text-align: left;
  position: relative;
  letter-spacing: 0px;
}
#new-in .card-wrapper-2 p a {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  text-decoration: underline;
  font: normal normal 600 14px/56px "Poppins", sans-serif;
  letter-spacing: 0.28px;
  color: #235940;
  text-transform: uppercase;
}
@media only screen and (max-width: 767.98px) {
  #new-in .card-wrapper-2 p a {
    position: unset;
    right: unset;
    top: unset;
    transform: translateY(0%);
  }
}
@media only screen and (min-width: 1200px) {
  #new-in .card-wrapper-2 p a:hover {
    color: #000000;
  }
}

/*=====  End of New In slider  ======*/
/*==================================
=          Cards Listing          =
==================================*/
#cards-listing {
  margin: 60px auto;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cards-listing {
    margin: 30px auto;
  }
}
@media only screen and (max-width: 767.98px) {
  #cards-listing {
    margin: 30px auto;
  }
}
#cards-listing .slick-slide {
  margin: 0 9px;
}
#cards-listing .slick-list {
  margin: 0 -9px;
}
#cards-listing .section-title h3 {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
}
html[dir=rtl] #cards-listing .section-title h3 {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #cards-listing .section-title h3 {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cards-listing .section-title h3 {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cards-listing .section-title h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #cards-listing .section-title h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
#cards-listing .category-card {
  margin: 0px;
}

/*=====  End of Cards Listing  ======*/
/*==================================
=            main-category            =
==================================*/
#main-category {
  margin: 60px auto;
}
#main-category .flex-gap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 120px;
}
#main-category .flex-gap .category-wrapper {
  position: relative;
  flex: 0 32%;
  overflow: hidden;
  margin: 15px;
  margin-bottom: 2%;
  /* (100-32*3)/2 */
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #main-category .flex-gap .category-wrapper {
    flex: 0 35%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #main-category .flex-gap .category-wrapper {
    flex: 0 45%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #main-category .flex-gap .category-wrapper {
    flex: 0 70%;
    order: 1;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #main-category .flex-gap .category-wrapper {
    flex: 0 100%;
    margin: 0px;
  }
}
#main-category .flex-gap .category-wrapper .cat-image {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #main-category .flex-gap .category-wrapper:hover .content {
    -webkit-transition: all 0.55s cubic-bezier(0.69, 0.26, 0.28, 0.95);
    -o-transition: all 0.55s cubic-bezier(0.69, 0.26, 0.28, 0.95);
    transition: all 0.55s cubic-bezier(0.69, 0.26, 0.28, 0.95);
  }
  #main-category .flex-gap .category-wrapper:hover .content .explore .explore-ico {
    color: #000000;
    transform: translate(30px, 5px);
    transition: all ease-in-out 0.5s;
  }
}
@media only screen and (min-width: 992px) {
  #main-category .flex-gap .category-wrapper.main-text {
    transform: translateY(120px);
  }
}
@media only screen and (max-width: 991.98px) {
  #main-category .flex-gap .category-wrapper.main-text {
    order: 2;
    margin-top: 0px;
  }
}
#main-category .flex-gap .category-wrapper .content {
  background-color: #235940;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  vertical-align: middle;
  z-index: 2;
  padding-bottom: 0px;
  padding: 45px 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #main-category .flex-gap .category-wrapper .content {
    padding: 25px 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #main-category .flex-gap .category-wrapper .content {
    padding: 45px 30px;
  }
}
#main-category .flex-gap .category-wrapper .content h6 {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  line-height: 44px;
  text-align: center;
  color: #626262;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 1550px) and (min-width: 1200px) {
  #main-category .flex-gap .category-wrapper .content h6 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (max-width: 767px) {
  #main-category .flex-gap .category-wrapper .content h6 {
    font-size: 28px;
    line-height: 35px;
  }
}
@media (max-width: 500px) {
  #main-category .flex-gap .category-wrapper .content h6 {
    font-size: 26px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #main-category .flex-gap .category-wrapper .content h6 {
    max-width: 100%;
  }
  #main-category .flex-gap .category-wrapper .content h6 br {
    display: none;
  }
}
#main-category .flex-gap .category-wrapper .content p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
  color: #413f47;
  margin: 7px auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #main-category .flex-gap .category-wrapper .content p {
    font-size: 15px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #main-category .flex-gap .category-wrapper .content p {
    font-size: 14px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #main-category .flex-gap .category-wrapper .content p {
    font-size: 13px;
    line-height: 29px;
  }
}
@media only screen and (max-width: 767.98px) {
  #main-category .flex-gap .category-wrapper .content p {
    font-size: 12px;
    line-height: 28px;
  }
}
#main-category .flex-gap .category-wrapper .content .explore {
  margin-top: 30px;
  display: block;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #ffffff;
  width: max-content;
  min-width: 240px;
  background-color: #235940;
  height: 58px;
  text-align: center;
  display: block;
  line-height: 58px;
  margin: 0px auto 15px;
  transition: all ease-in-out 0.5s;
}
@media only screen and (min-width: 992px) {
  #main-category .flex-gap .category-wrapper .content .explore {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #main-category .flex-gap .category-wrapper .content .explore {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    margin: 10px auto 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #main-category .flex-gap .category-wrapper .content .explore {
    height: 40px;
    line-height: 40px;
    font-size: 13px;
    margin: 20px auto 0px;
    min-width: 200px;
  }
}
@media only screen and (min-width: 1200px) {
  #main-category .flex-gap .category-wrapper .content .explore:hover {
    background-color: #626262;
  }
}
#main-category .flex-gap .category-wrapper .overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: rgba(34, 34, 34, 0.15);
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

/*=====  End of main-category  ======*/
/*==================================
=           Default slider         =
==================================*/
.slider-area {
  margin-bottom: 55px;
}
.slider-area .section-title h3 {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
}
html[dir=rtl] .slider-area .section-title h3 {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  .slider-area .section-title h3 {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .slider-area .section-title h3 {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider-area .section-title h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .slider-area .section-title h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
.slider-area .viewall {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-align: right;
  color: #000;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  float: right;
  margin-right: 54px;
}
@media only screen and (max-width: 767.98px) {
  .slider-area .viewall {
    margin-top: 40px;
    text-align: center;
    float: none;
  }
}
.slider-area .viewall:after {
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background-color: #f9f9f9;
  color: #000;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f105";
  display: inline-block;
  border-radius: 50%;
  font-size: 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -54px;
  transition: 0.25s ease-in-out;
}
@media only screen and (min-width: 1200px) {
  .slider-area .viewall:hover {
    color: #000000;
  }
  .slider-area .viewall:hover:after {
    background-color: #000000;
    color: #fff;
  }
}
.slider-area .slick-slide {
  margin: 0 9px;
}
.slider-area .slick-list {
  margin: 0 -9px !important;
}
.slider-area .slick-arrow {
  margin-top: -67px;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
@media only screen and (max-width: 767.98px) {
  .slider-area .default-slider {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .slider-area .default-slider {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/*=====  End of Default slider  ======*/
/*==================================
=            Mas Header            =
==================================*/
#banner-section {
  position: relative;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #banner-section .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #banner-section .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#banner-section .container #banner-section-slider .banner-slide {
  display: flex;
}
#banner-section .container #banner-section-slider .banner-slide picture {
  width: 100%;
}
#banner-section .container #banner-section-slider .banner-slide picture img {
  width: 100%;
  object-fit: cover;
}
#banner-section .container #banner-section-slider .banner-slide .overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  padding: 65px 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #banner-section .container #banner-section-slider .banner-slide .overlay {
    padding: 45px 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  #banner-section .container #banner-section-slider .banner-slide .overlay {
    padding: 45px 25px;
  }
}
#banner-section .container #banner-section-slider .banner-slide .overlay .overlay-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
#banner-section .container #banner-section-slider .banner-slide .overlay .overlay-inner .overlay-title {
  font: normal normal 400 16px/20px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
}
#banner-section .container #banner-section-slider .banner-slide .overlay .overlay-inner .overlay-text p {
  font: normal normal 400 26px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #fff;
  opacity: 1;
  margin-top: 5px;
  text-align: center;
}
#banner-section .container #banner-section-slider .banner-slide .overlay .overlay-inner .overlay-text p small {
  display: block;
  margin-top: 25px;
  font: normal normal 400 16px/20px "Poppins", sans-serif;
}
#banner-section .container #banner-section-slider .slick-track {
  height: 100%;
}
#banner-section .container #banner-section-slider .slick-list {
  height: 100%;
}
@media only screen and (max-width: 767.98px) {
  #banner-section .container #banner-section-slider .slick-dots {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #banner-section .container #banner-section-slider .slick-dots {
    display: none !important;
  }
}

/*=====  End of Mas Header  ======*/
/*==================================
=            Listing               =
==================================*/
#listing-area {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #listing-area {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #listing-area {
    margin-bottom: 15px;
    padding-top: 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #listing-area {
    margin-bottom: 10px;
    padding-top: 0px;
  }
}
#listing-area .page-title h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] #listing-area .page-title h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #listing-area .page-title h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #listing-area .page-title h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #listing-area .page-title h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #listing-area .page-title h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
#listing-area #product-list {
  margin-bottom: 25px;
}
#listing-area #product-list .item {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #listing-area #product-list .item {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #listing-area #product-list .item {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #listing-area #product-list .item {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #listing-area #product-list .item {
    margin-bottom: 20px;
  }
  #listing-area #product-list .item:nth-of-type(odd) {
    padding-right: 7px;
  }
  #listing-area #product-list .item:nth-of-type(even) {
    padding-left: 7px;
  }
}
#listing-area .show-results {
  font-family: "Poppins", sans-serif;
  display: none;
  font-size: 19px;
  letter-spacing: 0.07em;
  text-align: center;
  color: #a7a7a7;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #listing-area .show-results {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #listing-area .show-results {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767.98px) {
  #listing-area .show-results {
    font-size: 16px;
  }
}
#listing-area .show-results span {
  font-family: "Poppins", sans-serif;
  color: #626262;
}

#information-page {
  min-height: 80vh;
}
#information-page .page-title h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] #information-page .page-title h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #information-page .page-title h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #information-page .page-title h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #information-page .page-title h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #information-page .page-title h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
#information-page .information-page-body {
  margin: 45px auto;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #information-page .information-page-body {
    margin: 30px auto;
  }
}
@media only screen and (max-width: 767.98px) {
  #information-page .information-page-body {
    margin: 25px auto;
  }
}
#information-page .information-page-body b {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
  margin-bottom: 20px;
  display: block;
}
html[dir=rtl] #information-page .information-page-body b {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #information-page .information-page-body b {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #information-page .information-page-body b {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #information-page .information-page-body b {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #information-page .information-page-body b {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
#information-page .information-page-body span,
#information-page .information-page-body p {
  font: normal normal 400 13px/30px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  display: block;
}
#information-page .information-page-body span:not(:last-of-type),
#information-page .information-page-body p:not(:last-of-type) {
  margin-bottom: 20px;
}

.dashoard-top .page-title h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] .dashoard-top .page-title h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  .dashoard-top .page-title h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .dashoard-top .page-title h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .dashoard-top .page-title h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  .dashoard-top .page-title h1 {
    font-size: 16px;
    line-height: 22px;
  }
}

#dashboard-page {
  margin-bottom: 90px;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page {
    margin-bottom: 30px;
  }
}
#dashboard-page .dashboard-content .header-wrapper {
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
  margin: 0 0 25px 0;
  display: flex;
  justify-content: space-between;
}
#dashboard-page .dashboard-content .header-wrapper .content-title {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0 0 15px 0;
}
html[dir=rtl] #dashboard-page .dashboard-content .header-wrapper .content-title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #dashboard-page .dashboard-content .header-wrapper .content-title {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #dashboard-page .dashboard-content .header-wrapper .content-title {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .header-wrapper .content-title {
    font-size: 19px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .header-wrapper .content-title {
    font-size: 19px;
    line-height: 28px;
  }
}
#dashboard-page .dashboard-content .header-wrapper .header-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font: normal normal 400 13px/20px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  width: 35px;
  height: 35px;
  background: rgba(244, 244, 244, 0.6);
  border: 1px solid rgba(112, 112, 112, 0.34);
  border-radius: 5px;
}
#dashboard-page .dashboard-content .account-form label {
  font: normal normal 400 13px/18px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
html[dir=rtl] #dashboard-page .dashboard-content .account-form label {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#dashboard-page .dashboard-content .account-form input {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
}
#dashboard-page .dashboard-content .account-form input[type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] #dashboard-page .dashboard-content .account-form input[type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
#dashboard-page .dashboard-content .account-form input::-webkit-outer-spin-button, #dashboard-page .dashboard-content .account-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] #dashboard-page .dashboard-content .account-form input {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#dashboard-page .dashboard-content .account-form input.placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form input:-moz-placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form input::-moz-placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form input:-ms-input-placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form input::-webkit-input-placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select {
  width: 100%;
  position: relative;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  height: 45px;
  box-shadow: none !important;
  margin-bottom: 20px;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select:hover, #dashboard-page .dashboard-content .account-form .bootstrap-select:focus {
  outline: 0;
  background: #fff;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .btn {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  float: none;
}
html[dir=rtl] #dashboard-page .dashboard-content .account-form .bootstrap-select .btn {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .btn.placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .btn:-moz-placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .btn::-moz-placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .btn:-ms-input-placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .btn::-webkit-input-placeholder {
  color: #cccccc;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select.open .caret {
  background: #fff;
  color: #000000;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select.open .caret:after {
  color: #000000;
  content: "\f106";
}
#dashboard-page .dashboard-content .account-form .bootstrap-select.open .btn {
  border-color: rgba(0, 0, 0, 0.24);
}
#dashboard-page .dashboard-content .account-form .bootstrap-select.btn-group {
  width: 100%;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select.btn-group .dropdown-toggle {
  box-shadow: none;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .account-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    bottom: 0px;
    position: relative;
  }
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .caret {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  transition: 0.25s ease-in-out;
}
html[dir=rtl] #dashboard-page .dashboard-content .account-form .bootstrap-select .caret {
  left: 2px;
  right: unset;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .caret:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0, 0);
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f107";
  left: 40%;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .dropdown-menu {
  padding: 5px;
  box-shadow: none;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .dropdown-menu li a {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  padding: 5px;
}
#dashboard-page .dashboard-content .account-form .bootstrap-select .dropdown-menu li a:hover {
  color: #000000;
}
#dashboard-page .dashboard-content .account-form button[type=submit] {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  margin-top: 20px;
}
html[dir=rtl] #dashboard-page .dashboard-content .account-form button[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #dashboard-page .dashboard-content .account-form button[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .account-form button[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .account-form button[type=submit] {
    font-size: 12px;
  }
}
#dashboard-page .dashboard-content .account-form button[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .account-form button[type=submit] {
    margin: 20px auto 40px;
    display: block;
  }
}
#dashboard-page .dashboard-content .info-block .row {
  margin-bottom: 50px;
}
#dashboard-page .dashboard-content .info-block .box-title {
  font: normal normal 400 20px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 15px;
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
}
html[dir=rtl] #dashboard-page .dashboard-content .info-block .box-title {
  text-align: right;
  font-family: "Cairo", sans-serif;
  line-height: 40px;
}
#dashboard-page .dashboard-content .info-block .box-content a,
#dashboard-page .dashboard-content .info-block .box-content p {
  margin-bottom: 10px;
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .info-block .box-content a,
  #dashboard-page .dashboard-content .info-block .box-content p {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .info-block .box-content a a,
#dashboard-page .dashboard-content .info-block .box-content p a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .info-block .box-content a a:after,
#dashboard-page .dashboard-content .info-block .box-content p a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .info-block .box-content a a:after,
html[dir=rtl] #dashboard-page .dashboard-content .info-block .box-content p a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .info-block .box-content a a:hover:after,
#dashboard-page .dashboard-content .info-block .box-content p a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .info-block .box-content a,
html[dir=rtl] #dashboard-page .dashboard-content .info-block .box-content p {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#dashboard-page .dashboard-content .info-block .box-content a.btn-change {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  display: block;
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .info-block .box-content a.btn-change {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .info-block .box-content a.btn-change a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .info-block .box-content a.btn-change a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .info-block .box-content a.btn-change a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .info-block .box-content a.btn-change a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .info-block .box-content a.btn-change {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) {
  #dashboard-page .dashboard-content .info-block .box-content a.btn-change:hover {
    color: #235940;
  }
}
#dashboard-page .dashboard-content .address-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#dashboard-page .dashboard-content .address-wrapper .single-address {
  border: 1px solid rgba(107, 108, 119, 0.15);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #dashboard-page .dashboard-content .address-wrapper .single-address {
    width: calc(50% - 15px);
  }
}
#dashboard-page .dashboard-content .address-wrapper .single-address.default {
  border-color: #4cae4c;
}
#dashboard-page .dashboard-content .address-wrapper .single-address .address {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  flex-grow: 1;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .address-wrapper .single-address .address {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .address-wrapper .single-address .address a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .address-wrapper .single-address .address a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .address-wrapper .single-address .address a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .address-wrapper .single-address .address a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .address-wrapper .single-address .address {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#dashboard-page .dashboard-content .address-wrapper .single-address .address .label {
  font-family: inherit;
  background-color: #4cae4c;
  color: #fff;
  border-radius: 5px;
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}
#dashboard-page .dashboard-content .address-wrapper .single-address .action-btns {
  width: 90px;
  display: flex;
  gap: 10px;
}
#dashboard-page .dashboard-content .address-wrapper .single-address .action-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font: normal normal 400 13px/20px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  width: 35px;
  height: 35px;
  background: rgba(244, 244, 244, 0.6);
  border: 1px solid rgba(112, 112, 112, 0.34);
  border-radius: 5px;
}
#dashboard-page .dashboard-content .empty {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#dashboard-page .dashboard-content .empty p {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .empty p {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .empty p a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .empty p a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .empty p a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .empty p a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .empty p {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#dashboard-page .dashboard-content .order-histories-wrapper {
  margin-bottom: 35px;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment {
  border: 1px solid rgba(107, 108, 119, 0.15);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
  width: 100%;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col {
  width: 49.99%;
}
@media only screen and (min-width: 768px) {
  #dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col {
    display: flex;
    align-items: start;
    gap: 15px;
  }
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-title {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  font-weight: 600;
  display: block;
  margin-bottom: 1px;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-title {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-title a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-title a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-title a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-title a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-value {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-value {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-value a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-value a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-value a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-value a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col .col-value {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col.comment {
  width: 100%;
  border-top: 1px solid rgba(107, 108, 119, 0.15);
  margin-top: 15px;
  padding-top: 15px;
}
#dashboard-page .dashboard-content .order-histories-wrapper .single-comment .order-col.comment.only {
  border: none;
  padding: 0;
  margin: 0;
}
#dashboard-page .dashboard-content .order-info-wrapper {
  border: 1px solid rgba(107, 108, 119, 0.15);
  padding: 15px;
  margin-bottom: 30px;
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row {
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
  margin-bottom: 15px;
  padding-bottom: 15px;
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row .col-title {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .order-info-wrapper .order-row .col-title {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row .col-title a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row .col-title a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .order-info-wrapper .order-row .col-title a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row .col-title a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .order-info-wrapper .order-row .col-title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row .col-value {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .order-info-wrapper .order-row .col-value {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row .col-value a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row .col-value a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .order-info-wrapper .order-row .col-value a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .order-info-wrapper .order-row .col-value a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .order-info-wrapper .order-row .col-value {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#dashboard-page .dashboard-content .orders-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 25px;
}
#dashboard-page .dashboard-content .orders-wrapper .single-order {
  border: 1px solid rgba(107, 108, 119, 0.15);
  padding: 15px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col {
    width: 33%;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col {
    width: 49.5%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col {
    width: 100%;
    margin-bottom: 5px;
    display: flex;
    align-items: start;
  }
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  font-weight: 600;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 768px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title {
    display: block;
    margin-bottom: 1px;
  }
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-title {
    width: 140px;
  }
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-value {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-value {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-value a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-value a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-value a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-value a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col .col-value {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view {
  align-items: center;
  display: flex;
}
@media only screen and (min-width: 1200px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view {
    height: 45px;
  }
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view i {
    font-size: 17px;
    color: #000;
  }
  html[dir=rtl] #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view i {
    transform: rotateZ(180deg);
  }
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view .text {
    display: none;
  }
}
@media only screen and (max-width: 1199.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view a {
    transition: 0.25s ease-in-out;
    width: 257px;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    background-color: #235940;
    font: normal normal 400 16px/41px "Poppins", sans-serif;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    letter-spacing: 0.6px;
    border: 1px solid #235940;
    width: 100%;
    margin-top: 15px;
  }
  html[dir=rtl] #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view a {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 992px) and (max-width: 1199.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1199.98px) and (min-width: 768px) and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1199.98px) and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1199.98px) {
  #dashboard-page .dashboard-content .orders-wrapper .single-order .order-col.view a:hover {
    background: #fff;
    color: #235940;
    transition: all ease-in-out 0.5s;
    text-decoration: none;
  }
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout {
  margin-bottom: 30px;
  border: 1px solid rgba(107, 108, 119, 0.15);
  padding: 15px;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-header {
  display: flex;
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-header {
    display: none;
  }
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-header .cart-column {
  margin: 10px 0 0 30px;
  padding-bottom: 0.5em;
  font: normal normal normal 15px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-header .cart-column {
  font-family: "Cairo", sans-serif !important;
  margin: 10px 30px 0 0;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-header .cart-column.detail {
  flex-grow: 1;
  display: flex;
  margin-left: 0;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-header .cart-column.detail {
  margin-right: 0;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-header .cart-column.text {
  margin-left: 15px;
  width: 110px;
  flex-shrink: 0;
  text-align: center;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-header .cart-column.text {
  text-align: center;
  margin-right: 15px;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box {
  display: flex;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
  flex-wrap: wrap;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image {
  margin-right: 15px;
  width: 74px;
  flex-shrink: 0;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image {
  margin-left: 15px;
  margin-right: 0px;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper {
  width: 100%;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper a {
  display: block;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper a .images-collection .image img {
  width: 100%;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group {
  flex-grow: 1;
  max-width: calc(100% - 90px);
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row {
  display: flex;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row {
    flex-wrap: wrap;
  }
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description {
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
  }
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title {
  width: 250px;
  max-width: 100%;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title a {
  text-decoration: underline;
  font: normal normal 400 15px/20px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title a {
    font-size: 13px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 575.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title a {
    font-size: 12px;
    line-height: 16px;
  }
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title a {
  font-family: "Cairo", sans-serif !important;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description {
  width: 250px;
  max-width: 100%;
  margin: 5px 0;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small {
  text-align: left;
  font: normal normal 300 11px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small b {
  font-weight: 500;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small {
  font-family: "Cairo", sans-serif !important;
  text-align: right;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content {
    max-width: calc(100% - 40px);
  }
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text {
  width: 110px;
  flex-shrink: 0;
  text-align: center;
  margin-left: 15px;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text {
  margin-right: 15px;
  margin-left: 0px;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text {
    text-align: left;
    width: 100%;
    margin: 1px 0 0 0;
  }
  html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text {
    text-align: right;
  }
}
@media only screen and (max-width: 575.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text {
    margin-bottom: 10px;
  }
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text .text-mobile {
  font: normal normal 500 15px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  display: none;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text .text-mobile {
    text-align: left;
    display: inline-block;
    width: 100px;
    font-size: 13px;
    line-height: 20px;
  }
  html[dir=rtl] #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text .text-mobile {
    text-align: right;
  }
}
@media only screen and (max-width: 575.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text .text-mobile {
    width: 100%;
    font-size: 12px;
    line-height: 20px;
  }
}
#dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text .text {
  font: normal normal normal 15px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text .text {
    font-size: 13px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 575.98px) {
  #dashboard-page .dashboard-content .orders-summary #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-text .text {
    font-size: 12px;
    line-height: 20px;
  }
}
#dashboard-page .dashboard-content .orders-summary .summary-wrapper {
  margin: 15px 0;
}
#dashboard-page .dashboard-content .orders-summary .summary-wrapper .cart-subtotal-row {
  display: flex;
  justify-items: stretch;
  align-items: baseline;
  padding: 2px 0;
}
#dashboard-page .dashboard-content .orders-summary .summary-wrapper .cart-subtotal-row .title {
  font: normal normal 400 13px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary .summary-wrapper .cart-subtotal-row .title {
  font-family: "Cairo", sans-serif;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .orders-summary .summary-wrapper .cart-subtotal-row .title {
    font-size: 12px;
    line-height: 20px;
  }
}
#dashboard-page .dashboard-content .orders-summary .summary-wrapper .cart-subtotal-row .cart-subtotal-wrapper {
  flex-grow: 1;
  text-align: right;
}
html[dir=rtl] #dashboard-page .dashboard-content .orders-summary .summary-wrapper .cart-subtotal-row .cart-subtotal-wrapper {
  text-align: left;
}
#dashboard-page .dashboard-content .orders-summary .summary-wrapper .cart-subtotal-row .cart-subtotal-wrapper .total {
  font: normal normal 400 13.5px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-content .orders-summary .summary-wrapper .cart-subtotal-row .cart-subtotal-wrapper .total {
    font-size: 12px;
    line-height: 20px;
  }
}

#account-login {
  max-width: 100%;
  width: 700px;
  margin: 50px auto;
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 70px;
  margin: 25px auto;
}
#account-login .container {
  max-width: 100%;
  width: 100%;
}
#account-login .container .page-title h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
  text-align: center;
  margin-bottom: 40px;
}
html[dir=rtl] #account-login .container .page-title h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #account-login .container .page-title h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #account-login .container .page-title h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #account-login .container .page-title h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #account-login .container .page-title h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
html[dir=rtl] #account-login .container .page-title h1 {
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  #account-login .container .register-block,
  #account-login .container .login-block {
    margin-bottom: 50px;
  }
}
#account-login .container .register-block .control input,
#account-login .container .login-block .control input {
  width: 100px;
}
#account-login .container .register-block label,
#account-login .container .login-block label {
  font: normal normal 400 13px/18px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
html[dir=rtl] #account-login .container .register-block label,
html[dir=rtl] #account-login .container .login-block label {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#account-login .container .register-block input[type=text],
#account-login .container .register-block input[type=tel],
#account-login .container .register-block input[type=email],
#account-login .container .register-block input[type=password],
#account-login .container .login-block input[type=text],
#account-login .container .login-block input[type=tel],
#account-login .container .login-block input[type=email],
#account-login .container .login-block input[type=password] {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
}
#account-login .container .register-block input[type=text][type=tel],
#account-login .container .register-block input[type=tel][type=tel],
#account-login .container .register-block input[type=email][type=tel],
#account-login .container .register-block input[type=password][type=tel],
#account-login .container .login-block input[type=text][type=tel],
#account-login .container .login-block input[type=tel][type=tel],
#account-login .container .login-block input[type=email][type=tel],
#account-login .container .login-block input[type=password][type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] #account-login .container .register-block input[type=text][type=tel],
html[dir=rtl] #account-login .container .register-block input[type=tel][type=tel],
html[dir=rtl] #account-login .container .register-block input[type=email][type=tel],
html[dir=rtl] #account-login .container .register-block input[type=password][type=tel],
html[dir=rtl] #account-login .container .login-block input[type=text][type=tel],
html[dir=rtl] #account-login .container .login-block input[type=tel][type=tel],
html[dir=rtl] #account-login .container .login-block input[type=email][type=tel],
html[dir=rtl] #account-login .container .login-block input[type=password][type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
#account-login .container .register-block input[type=text]::-webkit-outer-spin-button, #account-login .container .register-block input[type=text]::-webkit-inner-spin-button,
#account-login .container .register-block input[type=tel]::-webkit-outer-spin-button,
#account-login .container .register-block input[type=tel]::-webkit-inner-spin-button,
#account-login .container .register-block input[type=email]::-webkit-outer-spin-button,
#account-login .container .register-block input[type=email]::-webkit-inner-spin-button,
#account-login .container .register-block input[type=password]::-webkit-outer-spin-button,
#account-login .container .register-block input[type=password]::-webkit-inner-spin-button,
#account-login .container .login-block input[type=text]::-webkit-outer-spin-button,
#account-login .container .login-block input[type=text]::-webkit-inner-spin-button,
#account-login .container .login-block input[type=tel]::-webkit-outer-spin-button,
#account-login .container .login-block input[type=tel]::-webkit-inner-spin-button,
#account-login .container .login-block input[type=email]::-webkit-outer-spin-button,
#account-login .container .login-block input[type=email]::-webkit-inner-spin-button,
#account-login .container .login-block input[type=password]::-webkit-outer-spin-button,
#account-login .container .login-block input[type=password]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] #account-login .container .register-block input[type=text],
html[dir=rtl] #account-login .container .register-block input[type=tel],
html[dir=rtl] #account-login .container .register-block input[type=email],
html[dir=rtl] #account-login .container .register-block input[type=password],
html[dir=rtl] #account-login .container .login-block input[type=text],
html[dir=rtl] #account-login .container .login-block input[type=tel],
html[dir=rtl] #account-login .container .login-block input[type=email],
html[dir=rtl] #account-login .container .login-block input[type=password] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#account-login .container .register-block input[type=text].placeholder,
#account-login .container .register-block input[type=tel].placeholder,
#account-login .container .register-block input[type=email].placeholder,
#account-login .container .register-block input[type=password].placeholder,
#account-login .container .login-block input[type=text].placeholder,
#account-login .container .login-block input[type=tel].placeholder,
#account-login .container .login-block input[type=email].placeholder,
#account-login .container .login-block input[type=password].placeholder {
  color: #cccccc;
}
#account-login .container .register-block input[type=text]:-moz-placeholder,
#account-login .container .register-block input[type=tel]:-moz-placeholder,
#account-login .container .register-block input[type=email]:-moz-placeholder,
#account-login .container .register-block input[type=password]:-moz-placeholder,
#account-login .container .login-block input[type=text]:-moz-placeholder,
#account-login .container .login-block input[type=tel]:-moz-placeholder,
#account-login .container .login-block input[type=email]:-moz-placeholder,
#account-login .container .login-block input[type=password]:-moz-placeholder {
  color: #cccccc;
}
#account-login .container .register-block input[type=text]::-moz-placeholder,
#account-login .container .register-block input[type=tel]::-moz-placeholder,
#account-login .container .register-block input[type=email]::-moz-placeholder,
#account-login .container .register-block input[type=password]::-moz-placeholder,
#account-login .container .login-block input[type=text]::-moz-placeholder,
#account-login .container .login-block input[type=tel]::-moz-placeholder,
#account-login .container .login-block input[type=email]::-moz-placeholder,
#account-login .container .login-block input[type=password]::-moz-placeholder {
  color: #cccccc;
}
#account-login .container .register-block input[type=text]:-ms-input-placeholder,
#account-login .container .register-block input[type=tel]:-ms-input-placeholder,
#account-login .container .register-block input[type=email]:-ms-input-placeholder,
#account-login .container .register-block input[type=password]:-ms-input-placeholder,
#account-login .container .login-block input[type=text]:-ms-input-placeholder,
#account-login .container .login-block input[type=tel]:-ms-input-placeholder,
#account-login .container .login-block input[type=email]:-ms-input-placeholder,
#account-login .container .login-block input[type=password]:-ms-input-placeholder {
  color: #cccccc;
}
#account-login .container .register-block input[type=text]::-webkit-input-placeholder,
#account-login .container .register-block input[type=tel]::-webkit-input-placeholder,
#account-login .container .register-block input[type=email]::-webkit-input-placeholder,
#account-login .container .register-block input[type=password]::-webkit-input-placeholder,
#account-login .container .login-block input[type=text]::-webkit-input-placeholder,
#account-login .container .login-block input[type=tel]::-webkit-input-placeholder,
#account-login .container .login-block input[type=email]::-webkit-input-placeholder,
#account-login .container .login-block input[type=password]::-webkit-input-placeholder {
  color: #cccccc;
}
#account-login .container .register-block footer,
#account-login .container .login-block footer {
  padding-bottom: 15px;
}
#account-login .container .register-block footer .btn-forget,
#account-login .container .login-block footer .btn-forget {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  display: block;
  text-align: right;
  cursor: pointer;
  color: #7e7e7e;
}
@media only screen and (max-width: 767.98px) {
  #account-login .container .register-block footer .btn-forget,
  #account-login .container .login-block footer .btn-forget {
    font-size: 12px !important;
  }
}
#account-login .container .register-block footer .btn-forget a,
#account-login .container .login-block footer .btn-forget a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#account-login .container .register-block footer .btn-forget a:after,
#account-login .container .login-block footer .btn-forget a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #account-login .container .register-block footer .btn-forget a:after,
html[dir=rtl] #account-login .container .login-block footer .btn-forget a:after {
  left: unset;
  right: 0;
}
#account-login .container .register-block footer .btn-forget a:hover:after,
#account-login .container .login-block footer .btn-forget a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #account-login .container .register-block footer .btn-forget,
html[dir=rtl] #account-login .container .login-block footer .btn-forget {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
html[dir=rtl] #account-login .container .register-block footer .btn-forget,
html[dir=rtl] #account-login .container .login-block footer .btn-forget {
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  #account-login .container .register-block footer .btn-forget:hover,
  #account-login .container .login-block footer .btn-forget:hover {
    color: #235940;
    text-decoration: none;
  }
}
#account-login .container .register-block input[type=submit],
#account-login .container .login-block input[type=submit] {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  margin: 0px auto 40px;
  display: block;
}
html[dir=rtl] #account-login .container .register-block input[type=submit],
html[dir=rtl] #account-login .container .login-block input[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #account-login .container .register-block input[type=submit],
  #account-login .container .login-block input[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #account-login .container .register-block input[type=submit],
  #account-login .container .login-block input[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #account-login .container .register-block input[type=submit],
  #account-login .container .login-block input[type=submit] {
    font-size: 12px;
  }
}
#account-login .container .register-block input[type=submit]:hover,
#account-login .container .login-block input[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
#account-login .container .register-block h1,
#account-login .container .login-block h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] #account-login .container .register-block h1,
html[dir=rtl] #account-login .container .login-block h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #account-login .container .register-block h1,
  #account-login .container .login-block h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #account-login .container .register-block h1,
  #account-login .container .login-block h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #account-login .container .register-block h1,
  #account-login .container .login-block h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #account-login .container .register-block h1,
  #account-login .container .login-block h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
#account-login .container .register-block p,
#account-login .container .login-block p {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin-bottom: 25px;
  width: 100%;
}
@media only screen and (max-width: 767.98px) {
  #account-login .container .register-block p,
  #account-login .container .login-block p {
    font-size: 12px !important;
  }
}
#account-login .container .register-block p a,
#account-login .container .login-block p a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#account-login .container .register-block p a:after,
#account-login .container .login-block p a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #account-login .container .register-block p a:after,
html[dir=rtl] #account-login .container .login-block p a:after {
  left: unset;
  right: 0;
}
#account-login .container .register-block p a:hover:after,
#account-login .container .login-block p a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #account-login .container .register-block p,
html[dir=rtl] #account-login .container .login-block p {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#account-login .container .register-block p a,
#account-login .container .login-block p a {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  #account-login .container .register-block p a:hover,
  #account-login .container .login-block p a:hover {
    color: #235940;
    text-decoration: none;
  }
}
#account-login .container .register-block button,
#account-login .container .login-block button {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  margin: 30px auto 40px;
  display: block;
}
html[dir=rtl] #account-login .container .register-block button,
html[dir=rtl] #account-login .container .login-block button {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #account-login .container .register-block button,
  #account-login .container .login-block button {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #account-login .container .register-block button,
  #account-login .container .login-block button {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #account-login .container .register-block button,
  #account-login .container .login-block button {
    font-size: 12px;
  }
}
#account-login .container .register-block button:hover,
#account-login .container .login-block button:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
#account-login .subscribe-wrapper {
  margin-bottom: 20px;
  display: none;
}

@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-sidebar.active .account-dashboard-sidebar {
    transition: all ease-in-out 0.5s;
    transform: translateX(0%);
  }
  html[dir=rtl] #dashboard-page .dashboard-sidebar.active .account-dashboard-sidebar {
    transform: translateX(0%);
  }
}
#dashboard-page .dashboard-sidebar .dashboard-sidebar-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  border-radius: 5px;
  min-height: 38px;
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  line-height: 36px;
  padding: 10px 15px;
  margin-bottom: 30px;
}
html[dir=rtl] #dashboard-page .dashboard-sidebar .dashboard-sidebar-trigger {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #dashboard-page .dashboard-sidebar .dashboard-sidebar-trigger {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #dashboard-page .dashboard-sidebar .dashboard-sidebar-trigger {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #dashboard-page .dashboard-sidebar .dashboard-sidebar-trigger {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-sidebar .dashboard-sidebar-trigger {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  #dashboard-page .dashboard-sidebar .dashboard-sidebar-trigger {
    display: none;
  }
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar {
  max-width: 80%;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar {
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 100vh;
    width: 100%;
    padding: 80px 0;
    transition: all ease-in-out 0.5s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  html[dir=rtl] #dashboard-page .dashboard-sidebar .account-dashboard-sidebar {
    transform: translateX(100%);
    left: unset;
    right: 0;
  }
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar-close {
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: auto !important;
  position: absolute;
  right: 15px;
  top: 25px;
  width: 35px;
  height: 35px;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar-close {
    display: none !important;
  }
}
html[dir=rtl] #dashboard-page .dashboard-sidebar .account-dashboard-sidebar-close {
  right: unset;
  left: 15px;
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar-close .close-icon {
  vertical-align: middle;
  fill: #000;
  stroke: none;
  width: 40px;
  height: 40px;
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin-bottom: 25px;
  font-weight: 500;
}
@media only screen and (max-width: 767.98px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
    font-size: 12px !important;
  }
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info a:after {
  left: unset;
  right: 0;
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (max-width: 991.98px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
    font: normal normal 400 24px/30px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #000;
    text-align: left;
    opacity: 1;
    margin: 0px 0 25px;
    margin: 10px 27px 0;
  }
  html[dir=rtl] #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
    font-family: "Cairo", sans-serif;
    text-align: right;
  }
}
@media only screen and (max-width: 991.98px) and (min-width: 1200px) and (max-width: 1550px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 991.98px) and (min-width: 992px) and (max-width: 1199.98px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 991.98px) and (min-width: 768px) and (max-width: 991.98px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 991.98px) and (max-width: 767.98px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .account-info {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar .links-wrapper {
  padding: 15px;
}
@media only screen and (min-width: 992px) {
  #dashboard-page .dashboard-sidebar .account-dashboard-sidebar .links-wrapper {
    background: rgba(244, 244, 244, 0.6);
  }
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all ease-in-out 0.5s;
  font: normal normal 400 15px/30px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  padding: 8px 15px;
  margin: 8px 0 0;
  position: relative;
  border: 1px solid transparent;
}
html[dir=rtl] #dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li a {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
html[dir=rtl] #dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li a {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li a:after {
  content: "\f105";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0, 0);
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  opacity: 0;
}
html[dir=rtl] #dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li a:after {
  left: 20px;
  right: unset;
  content: "\f104";
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li:hover a, #dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li.active a {
  border-color: #000;
}
#dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li:hover a:after, #dashboard-page .dashboard-sidebar .account-dashboard-sidebar ul li.active a:after {
  opacity: 1;
}

#cart-inner .page-title h1,
#shopping-cart .page-title h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] #cart-inner .page-title h1,
html[dir=rtl] #shopping-cart .page-title h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #cart-inner .page-title h1,
  #shopping-cart .page-title h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-inner .page-title h1,
  #shopping-cart .page-title h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-inner .page-title h1,
  #shopping-cart .page-title h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-inner .page-title h1,
  #shopping-cart .page-title h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
#cart-inner .page-title h1 .small,
#shopping-cart .page-title h1 .small {
  font: normal normal 400 15px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-decoration: underline;
}
html[dir=rtl] #cart-inner .page-title h1 .small,
html[dir=rtl] #shopping-cart .page-title h1 .small {
  font-family: "Cairo", sans-serif !important;
}
#cart-inner #cart-slider-checkout,
#shopping-cart #cart-slider-checkout {
  margin-bottom: 80px;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-header,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-header {
  display: flex;
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-header,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-header {
    display: none;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column {
  margin: 10px 0 0 30px;
  padding-bottom: 0.5em;
  font: normal normal normal 15px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column {
  font-family: "Cairo", sans-serif !important;
  margin: 10px 30px 0 0;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column.detail,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column.detail {
  flex-grow: 1;
  display: flex;
  margin-left: 0;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column.detail,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column.detail {
  margin-right: 0;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column.price,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column.price {
  width: 140px;
  flex-shrink: 0;
  text-align: right;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column.price,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column.price {
  text-align: left;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column.quantity,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column.quantity {
  margin-left: 30px;
  width: calc(56px + 3em);
  flex-shrink: 0;
  text-align: center;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column.quantity,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column.quantity {
  text-align: center;
  margin-right: 30px;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column.total,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column.total {
  flex-shrink: 0;
  width: 140px;
  text-align: right;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-header .cart-column.total,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-header .cart-column.total {
  text-align: left;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box {
  display: flex;
  padding-top: 15px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image {
  margin-right: 30px;
  width: 150px;
  flex-shrink: 0;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image {
  margin-left: 30px;
  margin-right: 0px;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image {
    width: 70px;
    margin-right: 15px;
  }
  html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image,
  html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image {
    margin-left: 15px;
    margin-right: 0px;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper {
  width: 100%;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper a,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper a {
  display: block;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper a .images-collection .image img,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.image .images-wrapper a .images-collection .image img {
  width: 100%;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group {
  flex-grow: 1;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row {
  display: flex;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description {
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title {
  width: 250px;
  max-width: 100%;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title a,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title a {
  text-decoration: underline;
  font: normal normal 400 15px/20px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title a,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .product-title a {
  font-family: "Cairo", sans-serif !important;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .text-danger,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .text-danger {
  display: block;
  position: relative;
  transform: none;
  margin: 15px 0;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description {
  width: 250px;
  max-width: 100%;
  margin: 5px 0;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small {
  text-align: left;
  font: normal normal 300 11px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small b,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small b {
  font-weight: 500;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content .description small {
  font-family: "Cairo", sans-serif !important;
  text-align: right;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .content {
    max-width: calc(100% - 40px);
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .remove,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .remove {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
}
@media only screen and (min-width: 992px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .remove,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .remove {
    display: none;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .remove .icon svg,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .remove .icon svg {
  vertical-align: middle;
  stroke: none;
  width: 22px;
  height: 22px;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .remove .icon svg path,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.description .remove .icon svg path {
  fill: #000;
  stroke: #000;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total, #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price {
  width: 140px;
  flex-shrink: 0;
  text-align: right;
  margin-left: 25px;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total, html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price {
  margin-right: 25px;
  text-align: left;
  margin-left: 0px;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total, #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price {
    width: 100%;
    margin: 5px 0 0 0;
  }
  html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total, html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price,
  html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total,
  html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price {
    margin: 5px 0 0 0;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total .price-wrapper .price, #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price .price-wrapper .price,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total .price-wrapper .price,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price .price-wrapper .price {
  font: normal normal 400 14px/27px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total .price-wrapper .price, html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price .price-wrapper .price,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-total .price-wrapper .price,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price .price-wrapper .price {
  font-family: "Cairo", sans-serif;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-price {
    display: none;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity {
  margin-left: 25px;
  flex-shrink: 0;
  text-align: center;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity {
  margin-right: 25px;
  margin-left: 0px;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity {
    width: 100%;
    margin: 5px 0 0 0;
    text-align: right;
  }
  html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity,
  html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity {
    text-align: left;
    margin: 5px 0 0 0;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap {
  max-width: 100%;
  padding: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input {
    justify-content: flex-end;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input {
  flex-shrink: 1;
  width: 55px;
  -webkit-appearance: none;
  height: 27px;
  background: none;
  text-align: center;
  font-size: 14px;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000 !important;
  border: none;
  text-shadow: none;
  outline: none;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input:disabled,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input:disabled {
  color: #000 !important;
  opacity: 1 !important;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input {
  font-family: "Cairo", sans-serif;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input.placeholder,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input.placeholder {
  color: #000 !important;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input:-moz-placeholder,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input:-moz-placeholder {
  color: #000 !important;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input::-moz-placeholder,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input::-moz-placeholder {
  color: #000 !important;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input:-ms-input-placeholder,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input:-ms-input-placeholder {
  color: #000 !important;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input::-webkit-input-placeholder,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input::-webkit-input-placeholder {
  color: #000 !important;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input:focus,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input input:focus {
  outline: none;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn {
  display: block;
  width: 27px;
  height: 27px;
  font-size: 19px;
  font-weight: 300;
  text-align: center;
  line-height: 25px;
  text-decoration: none;
  border: 1px solid rgba(107, 108, 119, 0.15);
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn.inactive,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn.inactive {
  opacity: 0.25;
  pointer-events: none;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn svg,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn svg {
  vertical-align: middle;
  stroke: none;
  width: 20px;
  height: 20px;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn svg path,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn svg path {
  fill: #000;
  stroke: #000;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn:hover,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input .incr-btn:hover {
  color: #000000;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input.count-input-sm,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input.count-input-sm {
  max-width: 125px;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input.count-input-sm input,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input.count-input-sm input {
  height: 36px;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input.count-input-lg,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input.count-input-lg {
  max-width: 200px;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input.count-input-lg input,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row .cart-inner.product-quantity .count-inp-wrap .count-input.count-input-lg input {
  height: 70px;
  border-radius: 3px;
}
@media only screen and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove,
  #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove {
    display: none;
  }
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove {
  border: none;
  outline: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove .icon svg,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove .icon svg {
  vertical-align: middle;
  stroke: none;
  width: 11px;
  height: 11px;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove .icon svg path,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove .icon svg path {
  fill: #000;
  stroke: #000;
}
#cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove .text,
#shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove .text {
  text-decoration: underline;
  font: normal normal 300 11px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove .text,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-items .cart-items-body .cart-box .cart-column.flex-group .cart-inner-row-lower .cart-column.product-remove .remove .text {
  font-family: "Cairo", sans-serif;
}
#cart-inner #cart-slider-checkout .cart-subtotal-and-discounts,
#shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts {
  margin: 15px 0 15px auto;
  width: 415px;
  max-width: 100%;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts {
  font-family: "Cairo", sans-serif;
  margin: 15px auto 15px 0;
}
#cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row,
#shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row {
  display: flex;
  justify-items: stretch;
  align-items: baseline;
  padding: 2px 0;
}
#cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title,
#shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title {
  font: normal normal 400 20px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title {
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title,
  #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title,
  #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title,
  #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title,
  #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .title {
    font-size: 14px;
    line-height: 20px;
  }
}
#cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper,
#shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper {
  flex-grow: 1;
  text-align: right;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper {
  text-align: left;
}
#cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total,
#shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total {
  font: normal normal 400 20px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total {
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total,
  #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total,
  #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total,
  #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total,
  #shopping-cart #cart-slider-checkout .cart-subtotal-and-discounts .cart-subtotal-row .cart-subtotal-wrapper .total {
    font-size: 14px;
    line-height: 20px;
  }
}
#cart-inner #cart-slider-checkout .cart-module,
#shopping-cart #cart-slider-checkout .cart-module {
  display: flex;
  justify-items: stretch;
  align-items: baseline;
  flex-wrap: wrap;
  padding: 2px 0;
  margin: 15px 0 15px auto;
  max-width: 415px;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module {
  margin: 15px auto 15px 0;
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-module,
  #shopping-cart #cart-slider-checkout .cart-module {
    gap: 10px;
    margin: 15px auto 35px;
    flex-direction: column;
  }
}
#cart-inner #cart-slider-checkout .cart-module .module-title,
#shopping-cart #cart-slider-checkout .cart-module .module-title {
  width: 100%;
  display: block;
  text-align: left;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-title,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-title {
  text-align: right;
}
#cart-inner #cart-slider-checkout .cart-module .module-title p,
#shopping-cart #cart-slider-checkout .cart-module .module-title p {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-module .module-title p,
  #shopping-cart #cart-slider-checkout .cart-module .module-title p {
    font-size: 12px !important;
  }
}
#cart-inner #cart-slider-checkout .cart-module .module-title p a,
#shopping-cart #cart-slider-checkout .cart-module .module-title p a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#cart-inner #cart-slider-checkout .cart-module .module-title p a:after,
#shopping-cart #cart-slider-checkout .cart-module .module-title p a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-title p a:after,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-title p a:after {
  left: unset;
  right: 0;
}
#cart-inner #cart-slider-checkout .cart-module .module-title p a:hover:after,
#shopping-cart #cart-slider-checkout .cart-module .module-title p a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-title p,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-title p {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#cart-inner #cart-slider-checkout .cart-module .module-body,
#shopping-cart #cart-slider-checkout .cart-module .module-body {
  flex-grow: 1;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 25px;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-body,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-body {
  text-align: left;
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-module .module-body,
  #shopping-cart #cart-slider-checkout .cart-module .module-body {
    flex-direction: column;
    gap: 10px;
    margin-top: 0px;
    width: 100%;
  }
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text],
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text] {
  -webkit-appearance: none;
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
  margin-bottom: 0px !important;
  width: 250px;
  font-size: 11px !important;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text][type=tel],
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text][type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-body input[type=text][type=tel],
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text][type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text]::-webkit-outer-spin-button, #cart-inner #cart-slider-checkout .cart-module .module-body input[type=text]::-webkit-inner-spin-button,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text]::-webkit-outer-spin-button,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-body input[type=text],
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text].placeholder,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text].placeholder {
  color: #cccccc;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text]:-moz-placeholder,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text]:-moz-placeholder {
  color: #cccccc;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text]::-moz-placeholder,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text]::-moz-placeholder {
  color: #cccccc;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text]:-ms-input-placeholder,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text]:-ms-input-placeholder {
  color: #cccccc;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text]::-webkit-input-placeholder,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text]::-webkit-input-placeholder {
  color: #cccccc;
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-module .module-body input[type=text],
  #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text] {
    width: 100% !important;
  }
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-body input[type=text],
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text] {
  text-align: right;
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=text]:focus,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=text]:focus {
  outline: 0;
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=submit],
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=submit] {
  transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  width: 146px !important;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-body input[type=submit],
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-inner #cart-slider-checkout .cart-module .module-body input[type=submit],
  #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-module .module-body input[type=submit],
  #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-module .module-body input[type=submit],
  #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=submit] {
    font-size: 12px;
  }
}
#cart-inner #cart-slider-checkout .cart-module .module-body input[type=submit]:hover,
#shopping-cart #cart-slider-checkout .cart-module .module-body input[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-module .module-body input[type=submit],
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=submit] {
  text-align: center;
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-module .module-body input[type=submit],
  #shopping-cart #cart-slider-checkout .cart-module .module-body input[type=submit] {
    width: 100% !important;
  }
}
#cart-inner #cart-slider-checkout .cart-bottom-row,
#shopping-cart #cart-slider-checkout .cart-bottom-row {
  margin: 25px 0 0 auto;
  display: block;
  width: 415px;
  text-align: right;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-bottom-row,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-bottom-row {
  text-align: left;
  margin: 25px auto 0 0;
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-bottom-row,
  #shopping-cart #cart-slider-checkout .cart-bottom-row {
    margin: 30px 0 0 !important;
    width: 100%;
  }
}
#cart-inner #cart-slider-checkout .cart-bottom-row .checkout,
#shopping-cart #cart-slider-checkout .cart-bottom-row .checkout {
  margin: 15px 0 0;
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  display: block;
  width: 100%;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-bottom-row .checkout,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-bottom-row .checkout {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #cart-inner #cart-slider-checkout .cart-bottom-row .checkout,
  #shopping-cart #cart-slider-checkout .cart-bottom-row .checkout {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #cart-inner #cart-slider-checkout .cart-bottom-row .checkout,
  #shopping-cart #cart-slider-checkout .cart-bottom-row .checkout {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #cart-slider-checkout .cart-bottom-row .checkout,
  #shopping-cart #cart-slider-checkout .cart-bottom-row .checkout {
    font-size: 12px;
  }
}
#cart-inner #cart-slider-checkout .cart-bottom-row .checkout:hover,
#shopping-cart #cart-slider-checkout .cart-bottom-row .checkout:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
#cart-inner #cart-slider-checkout .cart-bottom-row .continue,
#shopping-cart #cart-slider-checkout .cart-bottom-row .continue {
  margin: 15px 0 0;
  text-decoration: underline;
  font: normal normal 300 12px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  display: block;
  width: 100%;
}
html[dir=rtl] #cart-inner #cart-slider-checkout .cart-bottom-row .continue,
html[dir=rtl] #shopping-cart #cart-slider-checkout .cart-bottom-row .continue {
  font-family: "Cairo", sans-serif;
}
#cart-inner #cart-slider-checkout .cart-bottom-row .payment,
#shopping-cart #cart-slider-checkout .cart-bottom-row .payment {
  max-width: 100%;
  margin: 45px 0 0;
  display: block;
}
#cart-inner #cart-slider-checkout .cart-bottom-row .payment img,
#shopping-cart #cart-slider-checkout .cart-bottom-row .payment img {
  width: 100%;
}
#cart-inner #recommendations-wrapper,
#shopping-cart #recommendations-wrapper {
  margin-bottom: 70px;
  background: rgba(244, 244, 244, 0.4);
  padding: 25px;
}
@media only screen and (max-width: 767.98px) {
  #cart-inner #recommendations-wrapper,
  #shopping-cart #recommendations-wrapper {
    padding: 15px;
  }
}
#cart-inner #recommendations-wrapper .popup-close,
#cart-inner #recommendations-wrapper .popup-bottom,
#shopping-cart #recommendations-wrapper .popup-close,
#shopping-cart #recommendations-wrapper .popup-bottom {
  display: none;
}

#checkout-checkout {
  padding-bottom: 80px;
}
#checkout-checkout #intro {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #checkout-checkout #intro {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #intro {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
#checkout-checkout #content .panel-heading {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: #235940;
  font-size: 19px;
  color: #fff;
  padding: 0;
  border-radius: 0px;
  position: relative;
}
#checkout-checkout #content .panel-heading h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 21px;
  color: #fff;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-heading h4 {
    padding-left: 15px;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 17px;
  }
}
#checkout-checkout #content .panel-heading h4 a {
  color: #fff;
}
#checkout-checkout #content .panel-heading i {
  display: none;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content div.buttons .pull-right {
    float: none !important;
  }
}
#checkout-checkout #content .panel-body {
  padding-top: 40px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body .fieldset {
    margin-bottom: 30px;
  }
}
#checkout-checkout #content .panel-body .required label:after {
  content: "*";
  color: #bf3334;
  display: inline-block;
  margin-left: 3px;
}
#checkout-checkout #content .panel-body .control--checkbox span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-left: 10px;
}
#checkout-checkout #content .panel-body .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 360px;
  height: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
  }
}
#checkout-checkout #content .panel-body .btn {
  height: 40px;
  border-radius: 0px;
  color: #000;
  font-size: 14px;
  border: 1px solid #dcdcdc;
}
#checkout-checkout #content .panel-body .btn:focus {
  outline: 0;
}
#checkout-checkout #content .panel-body button:focus {
  outline: 0 !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#checkout-checkout #content .panel-body button:hover {
  background: none;
}
#checkout-checkout #content .panel-body div.open .caret:after {
  content: "\f106";
}
#checkout-checkout #content .panel-body .caret {
  border: none;
  background: #fff;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  bottom: 20px;
  position: relative;
  left: 10px;
}
#checkout-checkout #content .panel-body .caret:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f107";
  display: inline-block;
  font-size: 14px;
  transition: 0.25s ease-in-out;
}
#checkout-checkout #content .panel-body .btn-group.open .dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
#checkout-checkout #content .panel-body .btn-default.active, #checkout-checkout #content .panel-body .btn-default:active, #checkout-checkout #content .panel-body .btn-default:focus, #checkout-checkout #content .panel-body .btn-default:hover {
  background: none;
}
#checkout-checkout #content .panel-body .open > .btn-default.dropdown-toggle {
  background: none;
}
#checkout-checkout #content .panel-body .dropdown-menu {
  padding: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#checkout-checkout #content .panel-body .dropdown-menu li a {
  font-size: 14px;
  color: #000;
  padding: 5px;
}
#checkout-checkout #content .panel-body table tr td {
  padding-top: 28px;
  padding-bottom: 28px;
  vertical-align: middle;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 15px;
  padding-right: 15px;
  color: #6a6a6a;
  font-family: "Poppins", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #checkout-checkout #content .panel-body table tr td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #checkout-checkout #content .panel-body table tr td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#checkout-checkout #content .panel-body table tr td a {
  color: #626262;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}
#checkout-checkout #content .panel-body table tr td a:hover {
  color: #000000;
}
#checkout-checkout #content .panel-body table .text-right {
  text-align: right;
}
#checkout-checkout #content .panel-body table .total-text {
  font-weight: 700;
  color: #7d5163;
}
#checkout-checkout #content .panel-body legend,
#checkout-checkout #content .panel-body h2 {
  color: #4c4c4c;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body legend,
  #checkout-checkout #content .panel-body h2 {
    font-size: 20px;
  }
}
#checkout-checkout #content .panel-body p {
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif !important;
  font-size: 18px !important;
  letter-spacing: 0.02em;
  line-height: 26px !important;
  text-align: left !important;
  color: #4c4c4c !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #checkout-checkout #content .panel-body p {
    font-size: 18px !important;
    line-height: 25px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #checkout-checkout #content .panel-body p {
    font-size: 18px !important;
    line-height: 25px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body p {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 10px;
  }
}
#checkout-checkout #content .panel-body p:last-child {
  margin-bottom: 0;
}
#checkout-checkout #content .panel-body .radio {
  margin-bottom: 20px;
}
#checkout-checkout #content .panel-body .form-group label {
  display: block;
  margin-bottom: 10px;
}
#checkout-checkout #content .panel-body label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 1.1;
  letter-spacing: 0.08em;
  color: #626262;
  line-height: 1.3;
  margin-bottom: 7px;
  margin-top: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #checkout-checkout #content .panel-body label {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body label {
    margin-top: 5px;
    font-size: 14px;
  }
}
#checkout-checkout #content .panel-body label a {
  color: #235940 !important;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body label a {
    margin-top: 5px;
    font-size: 14px;
  }
}
#checkout-checkout #content .panel-body .buttons {
  border-top: 1px dotted #ddd;
  padding-right: 0px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #checkout-checkout #content .panel-body .buttons {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body .buttons {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
#checkout-checkout #content .panel-body .buttons label {
  display: inline-block;
  margin-right: 15px;
}
#checkout-checkout #content .panel-body .buttons label a {
  color: #000000;
}
#checkout-checkout #content .panel-body .buttons label a:hover {
  color: #000000;
}
#checkout-checkout #content .panel-body .buttons input[type=submit] {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  border: none;
}
html[dir=rtl] #checkout-checkout #content .panel-body .buttons input[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #checkout-checkout #content .panel-body .buttons input[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #checkout-checkout #content .panel-body .buttons input[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body .buttons input[type=submit] {
    font-size: 12px;
  }
}
#checkout-checkout #content .panel-body .buttons input[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
#checkout-checkout #content .panel-body .buttons .right {
  text-align: right;
}
#checkout-checkout #content .panel-body .form-group {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
#checkout-checkout #content .panel-body .form-group.has-error {
  margin-bottom: 30px !important;
}
#checkout-checkout #content .panel-body .forgotten {
  display: block;
  text-align: right;
  font-family: "Poppins", sans-serif;
  font-size: 1.088em;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-top: 5px;
  cursor: pointer;
  color: #7e7e7e;
}
#checkout-checkout #content .panel-body .forgotten:hover {
  color: #000000;
  text-decoration: none;
}
#checkout-checkout #content .panel-body input[type=text], #checkout-checkout #content .panel-body input[type=tel], #checkout-checkout #content .panel-body input[type=email], #checkout-checkout #content .panel-body input[type=password] {
  -webkit-appearance: none;
  width: 100%;
  height: 55px;
  line-height: 55px;
  background: #fff;
  border: 1px solid #e1e1e1;
  padding-left: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  border-radius: 0;
  color: #cccccc;
  margin-bottom: 19px;
}
#checkout-checkout #content .panel-body input:focus {
  outline: 0;
  border: 1px solid #e1e1e1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #checkout-checkout #content .panel-body input {
    height: 50px !important;
    line-height: 50px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body input {
    height: 45px !important;
    line-height: 45px !important;
    font-size: 14px !important;
  }
}
#checkout-checkout #content .panel-body .payment-option-box .text-danger {
  bottom: -9px;
}
@media only screen and (min-width: 992px) {
  #checkout-checkout #content .panel-body .payment-option-box .text-danger {
    bottom: -9px;
  }
}
#checkout-checkout #content .panel-body .payment-option-box .select-wrap {
  margin-bottom: 20px;
}
#checkout-checkout #content .panel-body .payment-option-box input[type=text], #checkout-checkout #content .panel-body .payment-option-box input[type=tel], #checkout-checkout #content .panel-body .payment-option-box input[type=email], #checkout-checkout #content .panel-body .payment-option-box input[type=password] {
  margin-bottom: 0px;
}
#checkout-checkout #content .panel-body .payment-option-box .has-error input[type=text], #checkout-checkout #content .panel-body .payment-option-box .has-error input[type=tel], #checkout-checkout #content .panel-body .payment-option-box .has-error input[type=email], #checkout-checkout #content .panel-body .payment-option-box .has-error input[type=password] {
  margin-bottom: 20px;
}
#checkout-checkout #content .panel-body .payment-option-box select {
  margin-bottom: 0px;
  -webkit-appearance: none;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body .payment-option-box .has-error .form-group {
    padding-bottom: 3px;
  }
  #checkout-checkout #content .panel-body .payment-option-box .has-error .form-group select {
    margin-bottom: 10px;
    -webkit-appearance: none;
  }
}
#checkout-checkout #content .panel-body textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #e1e1e1;
  padding-left: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1.1em;
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  height: 200px;
  border-radius: 0;
}
#checkout-checkout #content .panel-body textarea:focus {
  outline: 0;
  border: 1px solid #e1e1e1;
}
#checkout-checkout #content .panel-body select {
  width: 100%;
  line-height: 60px;
  background: #fff;
  border: 1px solid #e1e1e1;
  padding-left: 30px;
  padding-right: 30px;
  font-family: "Poppins", sans-serif;
  -webkit-appearance: none;
  font-size: 1.1em;
  border-radius: 0;
  height: 55px;
  line-height: 55px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #checkout-checkout #content .panel-body select {
    height: 50px !important;
    line-height: 50px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 15px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body select {
    height: 45px !important;
    line-height: 45px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    font-size: 13px !important;
  }
}
#checkout-checkout #content .panel-body select:hover {
  cursor: pointer;
}
#checkout-checkout #content .panel-body select:focus, #checkout-checkout #content .panel-body select.focus {
  outline: 0;
}
#checkout-checkout #content .panel-body select::-ms-expand {
  display: none;
}
#checkout-checkout #content .panel-body #input-payment-zone {
  margin-bottom: 0px;
}
#checkout-checkout #content .panel-body input[type=button] {
  -webkit-appearance: none;
  transition: 0.25s ease-in-out;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 25px;
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  border: none;
  width: 250px;
}
html[dir=rtl] #checkout-checkout #content .panel-body input[type=button] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #checkout-checkout #content .panel-body input[type=button] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #checkout-checkout #content .panel-body input[type=button] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body input[type=button] {
    font-size: 12px;
  }
}
#checkout-checkout #content .panel-body input[type=button]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #content .panel-body input[type=button] {
    margin-top: 10px !important;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
#checkout-checkout #content .panel-body #button-login {
  margin-top: 0px;
}
#checkout-checkout #content .panel-body .forgotten-btn {
  font-size: 14px;
  display: block;
  padding: 10px;
  color: #d0a4b7;
  padding-left: 0px;
  padding-top: 0px;
  padding-bottom: 20px;
}
#checkout-checkout #content .panel-body .forgotten-btn:hover {
  color: #000;
}
#checkout-checkout #content .panel-body .text-danger {
  position: absolute;
  bottom: -23px;
  display: block;
  margin-top: 0px;
  color: #bf3334;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
}
@media only screen and (min-width: 992px) {
  #checkout-checkout #content .panel-body .text-danger {
    font-size: 13px;
    bottom: -23px;
  }
}
#checkout-checkout #content .panel-body .radio {
  display: block;
}
#checkout-checkout #content .panel-body .checkbox {
  display: block;
  margin-bottom: 20px;
}
#checkout-checkout #content .bootstrap-select.has-error .text-danger {
  position: static;
  top: 0px;
  padding: 5px 10px;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  #checkout-checkout div.buttons .pull-right {
    position: relative;
  }
  #checkout-checkout div.buttons .pull-right:after {
    display: table;
    content: "";
    clear: both;
  }
  #checkout-checkout div.buttons:after {
    display: table;
    content: "";
    clear: both;
  }
  #checkout-checkout div.buttons .pull-right input[type=checkbox] {
    position: absolute;
    left: -20px;
    top: 26px;
  }
  #checkout-checkout #button-payment-method,
  #checkout-checkout #button-register {
    margin-left: 15px;
    margin-top: 0 !important;
  }
  #checkout-checkout #button-guest {
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  #checkout-checkout #button-payment-method,
  #checkout-checkout #button-register {
    display: block;
    margin-top: 35px !important;
  }
  #checkout-checkout div.buttons .pull-right {
    float: none !important;
  }
  #checkout-checkout div.buttons .pull-right input[type=checkbox] {
    margin-top: 3px;
    margin-right: 10px;
    float: left;
  }
}
#checkout-checkout #collapse-payment-method .buttons {
  border-top: 0 !important;
}
#checkout-checkout #collapse-payment-method .radio .control__indicator {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -3px;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #collapse-payment-method .radio .control__indicator {
    top: 12px;
  }
}
#checkout-checkout #collapse-payment-method .radio label img {
  margin-left: 15px;
  vertical-align: middle;
  max-width: 161px;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #collapse-payment-method .radio label img {
    display: inline;
    margin-left: 0;
    max-width: 100%;
    height: auto;
    zoom: 0.8;
    margin-top: 5px;
    max-width: 45%;
  }
}
#checkout-checkout #collapse-payment-method .radio label img[alt=cod] {
  width: 25px;
  margin-top: 0px;
}
#checkout-checkout #collapse-payment-method .radio label img[alt=benefit] {
  width: 25px;
  margin-top: 0px;
}
@media only screen and (min-width: 768px) {
  #checkout-checkout #payment-new label,
  #checkout-checkout #shipping-new label {
    margin-bottom: 0;
  }
  #checkout-checkout #payment-new .form-group,
  #checkout-checkout #shipping-new .form-group {
    margin-top: 15px !important;
    margin-bottom: 25px !important;
    display: flex;
    align-items: center;
  }
  #checkout-checkout #payment-new input[type=text],
  #checkout-checkout #shipping-new input[type=text] {
    margin-bottom: 0 !important;
  }
}
#checkout-checkout #payment-existing,
#checkout-checkout #shipping-existing {
  margin-bottom: 20px;
}
#checkout-checkout #payment-new .form-group,
#checkout-checkout #shipping-new .form-group {
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 767.98px) {
  #checkout-checkout #collapse-checkout-option .col-sm-6:last-child {
    margin-top: 40px;
  }
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

@media only screen and (max-width: 767.98px) {
  #history-order-details {
    border: 0 !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-order-details tbody,
  #history-order-details tr,
  #history-order-details td {
    display: block !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-order-details td {
    width: 100% !important;
    margin-bottom: 30px;
  }
}

#history-summary tbody {
  border: 0 !important;
}
#history-summary td:first-child {
  text-align: left;
  border-left: 0;
}
#history-summary td:last-child {
  border-right: 0 !important;
}
@media only screen and (max-width: 767.98px) {
  #history-summary {
    display: block;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-summary tr {
    display: block;
    border-bottom: 1px solid #e6e6e6 !important;
    margin-bottom: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-summary thead {
    display: none;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-summary tbody {
    display: block;
    text-align: left;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-summary tbody td {
    display: block;
    border: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 27px;
    text-align: left !important;
  }
}
#history-summary tbody td span {
  display: inline-block;
  margin-right: 8px;
}
@media (min-width: 768px) {
  #history-summary tbody td span {
    display: none !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-summary tbody td {
    display: block;
    border: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 27px;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-summary tbody td:not(:first-child) {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
  }
}
#history-summary tbody td:last-child {
  border-right: 0;
}

#history-totals {
  border: 0;
}
#history-totals tbody {
  border: 0 !important;
}
#history-totals td {
  border-width: 0 0 1px 0 !important;
  font-size: 1.2em;
  color: #848484;
  font-family: "Poppins", sans-serif;
  font-weight: normal !important;
  padding: 25px 15px;
  border-color: #e6e6e6 !important;
  text-align: left;
}
#history-totals td:first-child {
  border-left: 0 !important;
}
#history-totals td:last-child {
  text-align: right;
  border-right: 0 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #history-totals td {
    padding: 7px 0px !important;
    font-size: 14px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-totals td {
    padding: 7px 0px !important;
    font-size: 14px !important;
  }
}
#history-totals tr:last-child td {
  font-size: 18px !important;
  color: #333333 !important;
  font-family: "Poppins", sans-serif !important;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #history-totals tr:last-child td {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #history-totals tr:last-child td {
    font-size: 16px !important;
  }
}

@media (min-width: 768px) {
  #collapse-checkout-option p {
    max-width: 85%;
  }
}

@media (max-width: 768px) {
  .payment-option-box .cvv img {
    width: 79px !important;
  }
}

#popup_wrapper .popup-inner .popup-title {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] #popup_wrapper .popup-inner .popup-title {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #popup_wrapper .popup-inner .popup-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #popup_wrapper .popup-inner .popup-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #popup_wrapper .popup-inner .popup-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #popup_wrapper .popup-inner .popup-title {
    font-size: 16px;
    line-height: 22px;
  }
}
#popup_wrapper .popup-inner .popup-body .categoryTab_wrapper {
  margin: 20px 0px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 25px;
}
@media only screen and (max-width: 767.98px) {
  #popup_wrapper .popup-inner .popup-body .categoryTab_wrapper {
    column-gap: 15px;
    row-gap: 0;
  }
}
#popup_wrapper .popup-inner .popup-body .categoryTab_wrapper li {
  font: normal normal 400 13px/30px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  display: block;
  padding: 8px 0;
  position: relative;
  transition: all ease-in-out 0.5s;
  cursor: pointer;
}
#popup_wrapper .popup-inner .popup-body .categoryTab_wrapper li:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 3px;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #popup_wrapper .popup-inner .popup-body .categoryTab_wrapper li:after {
  left: unset;
  right: 0;
}
#popup_wrapper .popup-inner .popup-body .categoryTab_wrapper li:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #popup_wrapper .popup-inner .popup-body .categoryTab_wrapper li {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
#popup_wrapper .popup-inner .popup-body .categoryTab_wrapper li.active {
  color: #235940;
  transition: all ease-in-out 0.5s;
}
#popup_wrapper .popup-inner .popup-body .categoryTab_wrapper li.active:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
#popup_wrapper .popup-inner .popup-body .categoryContent_wrapper .categoryContent {
  display: none;
}
#popup_wrapper .popup-inner .popup-body .categoryContent_wrapper .categoryContent.active {
  display: block;
}
#popup_wrapper .popup-inner .popup-body .categoryContent_wrapper .categoryContent .slick-slide {
  margin: 0 9px;
}
#popup_wrapper .popup-inner .popup-body .categoryContent_wrapper .categoryContent .slick-list {
  margin: 0 -9px;
}

.checkout {
  background-color: #fff;
}
.checkout .checkout-container {
  display: grid;
  grid-template-areas: "header" "disclosure" "subheader" "main" "footer";
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100vh;
}
@media only screen and (min-width: 1200px) {
  .checkout .checkout-container {
    grid-template-rows: auto auto auto 1fr auto;
    min-height: 100vh;
    grid-template-areas: "header header" "disclosure disclosure" "subheader subheader" "main secondary" "footer footer";
    grid-template-columns: 58% 42%;
  }
}
.checkout .checkout-container #checkout-left {
  grid-area: main;
}
@media only screen and (min-width: 1200px) {
  .checkout .checkout-container #checkout-left {
    -ms-grid-row: 1;
  }
}
@media only screen and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-left {
    -ms-grid-row: 2;
  }
}
.checkout .checkout-container #checkout-right {
  background-color: #fafafa;
  padding: 15px;
  grid-area: secondary;
}
@media only screen and (min-width: 1200px) {
  .checkout .checkout-container #checkout-right {
    -ms-grid-row: 1;
    border-left: 1px solid rgba(107, 108, 119, 0.15);
  }
}
@media only screen and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-right {
    border: 1px solid rgba(107, 108, 119, 0.15);
  }
}
@media only screen and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-right {
    display: none;
  }
}

.bottom-footer {
  text-align: center;
  background-color: transparent;
  margin-top: 40px;
  padding: 7px 0px;
  border-top: 1px solid #EAEAEA;
}
@media only screen and (min-width: 768px) {
  .bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20vh;
  }
}
@media only screen and (min-width: 1200px) {
  .bottom-footer .payment-option {
    display: none;
  }
}
.bottom-footer .powered a,
.bottom-footer .copyright,
.bottom-footer p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: #000;
  margin-top: 15px;
  text-align: center;
  margin: 0 0;
  letter-spacing: 0px;
  display: block;
}
@media only screen and (max-width: 1199.98px) {
  .bottom-footer .powered a,
  .bottom-footer .copyright,
  .bottom-footer p {
    font-size: 11px;
    text-align: center;
    margin: 15px auto 0;
  }
  html[dir=rtl] .bottom-footer .powered a,
  html[dir=rtl] .bottom-footer .copyright,
  html[dir=rtl] .bottom-footer p {
    text-align: center;
  }
}
.bottom-footer .powered a {
  text-align: left;
}
html[dir=rtl] .bottom-footer .powered a {
  text-align: right;
}
@media only screen and (max-width: 1199.98px) {
  .bottom-footer .powered a {
    text-align: center;
  }
  html[dir=rtl] .bottom-footer .powered a {
    text-align: center;
  }
}
.bottom-footer .we-accept {
  margin: 10px auto 5px;
  display: block;
  width: 250px;
  max-width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .bottom-footer .we-accept {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  .bottom-footer .we-accept {
    max-width: 100%;
  }
}
.bottom-footer .copyright {
  text-align: center;
  margin: 5px 0 0px;
}
html[dir=rtl] .bottom-footer .copyright {
  text-align: center;
}

.security-wrapper .poweredBy {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 24px;
  color: #000;
  margin-top: 15px;
  text-align: center;
  margin: 10vh auto 20px;
  letter-spacing: 0px;
}
html[dir=rtl] .security-wrapper .poweredBy {
  font-family: "Cairo", sans-serif;
  text-align: center;
}
@media only screen and (max-width: 1199.98px) {
  .security-wrapper .poweredBy {
    margin: 2vh auto 20px;
  }
}
.security-wrapper .poweredBy .encrypted {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.security-wrapper .poweredBy a {
  color: inherit;
  display: block;
}
.security-wrapper .poweredBy a .side-logo {
  height: 20px;
  vertical-align: middle;
  margin: 0 5px;
}
.security-wrapper .poweredBy a .padlock-logo {
  margin-right: 7px;
  height: 15px;
}
html[dir=rtl] .security-wrapper .poweredBy a .padlock-logo {
  margin-left: 7px;
  margin-right: 0px;
}
@media only screen and (max-width: 767.98px) {
  .security-wrapper .poweredBy {
    font-size: 11px;
    text-align: center;
  }
  html[dir=rtl] .security-wrapper .poweredBy {
    text-align: center;
  }
  .security-wrapper .poweredBy .side-logo {
    height: 20px;
    vertical-align: middle;
    margin-left: 5px;
  }
}
.security-wrapper .image-we-accept img {
  width: 100%;
  margin: auto;
  display: block;
}

.mobile-cart {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) {
  .mobile-cart {
    display: none;
  }
}
.mobile-cart #checkout-right {
  margin: 0px auto 20px;
}
@media only screen and (max-width: 1199.98px) {
  .mobile-cart #checkout-right {
    display: block !important;
    padding: 0px !important;
    border: none !important;
  }
  .mobile-cart #checkout-right .checkout-right {
    border: 1px solid rgba(107, 108, 119, 0.15);
    padding: 15px !important;
  }
}
.mobile-cart #checkout-right #checkout-right-wrapper {
  padding: 0 !important;
  max-width: 100% !important;
}
.mobile-cart #checkout-right #checkout-right-wrapper .security-wrapper {
  display: none !important;
}

.qcheckout-page .text-danger {
  position: relative;
  transform: translateY(7px);
}

.checkout .checkout-container #checkout-right #checkout-right-wrapper {
  max-width: calc(462px + 5vw);
  padding: 6.7rem 4rem;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header {
  background-color: #f6f6f6;
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid rgba(107, 108, 119, 0.15);
}
@media only screen and (min-width: 1200px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header {
    display: none;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .open-text {
  display: block;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .close-text {
  display: none;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header.active .open-text {
  display: none;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header.active .close-text {
  display: block;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .total {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  font-weight: 500;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .total {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .total a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .total a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .total a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .total a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .total {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title {
  display: flex;
  align-items: center;
  gap: 5px;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title .item-icon svg {
  vertical-align: middle;
  fill: #000;
  stroke: none;
  width: 19px;
  height: 19px;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title .text-wrapper span {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title .text-wrapper span {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title .text-wrapper span a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title .text-wrapper span a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title .text-wrapper span a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title .text-wrapper span a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .mobile-cart-header .title .text-wrapper span {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content {
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1200px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content {
    max-height: 244px;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item {
  margin: 0 0 5px 0px;
}
@media only screen and (min-width: 1200px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item {
    padding-right: 15px;
  }
  html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item {
    padding-left: 15px;
    padding-right: 0px;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box {
  margin: 0px;
  position: relative;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  gap: 15px;
  padding-top: 10px;
}
@media only screen and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row {
    align-items: start;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-image {
  position: relative;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-image .product-qty-label {
  position: absolute;
  right: 0px;
  top: 0px;
  transform: translate(25%, -25%);
  background-color: #235940;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font: normal normal 600 10px/21px "Poppins", sans-serif;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-image .product-qty-label {
  font-family: "Cairo", sans-serif;
  right: unset;
  left: 0px;
  transform: translate(-25%, -25%);
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-image a {
  display: block;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-image a img {
  width: 64px;
  height: 64px;
  background-color: #ffffff;
  border: 1px solid rgba(107, 108, 119, 0.15);
  border-radius: 5px;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-description {
  flex-grow: 1;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-description .product-title a {
  text-decoration: underline;
  font: normal normal 400 11.5px/20px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-description .product-title a {
  font-family: "Cairo", sans-serif !important;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-description .product-details {
  text-align: left;
  font: normal normal 300 11px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-description .product-details {
  font-family: "Cairo", sans-serif !important;
  text-align: right;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-price {
  font: normal normal 400 14px/27px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: right;
  min-width: 90px;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .cart-content .item .cart-box .row .product-price {
  font-family: "Cairo", sans-serif;
  text-align: left;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper {
  margin: 15px 0;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper .cart-subtotal-row {
  display: flex;
  justify-items: stretch;
  align-items: baseline;
  padding: 2px 0;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper .cart-subtotal-row .title {
  font: normal normal 400 13px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper .cart-subtotal-row .title {
  font-family: "Cairo", sans-serif;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper .cart-subtotal-row .title {
    font-size: 12px;
    line-height: 20px;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper .cart-subtotal-row .cart-subtotal-wrapper {
  flex-grow: 1;
  text-align: right;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper .cart-subtotal-row .cart-subtotal-wrapper {
  text-align: left;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper .cart-subtotal-row .cart-subtotal-wrapper .total {
  font: normal normal 400 13.5px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .summary-wrapper .cart-subtotal-row .cart-subtotal-wrapper .total {
    font-size: 12px;
    line-height: 20px;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .code-tr-title label {
  font: normal normal 400 13px/18px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .code-tr-title label {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
@media only screen and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code {
    flex-direction: column;
    gap: 7px;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group {
  flex-grow: 1;
  background-color: #fff;
}
@media only screen and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group {
    width: 100%;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text] {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
  margin: 0;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text][type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text][type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text]::-webkit-outer-spin-button, .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text].placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text]:-moz-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text]::-moz-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text]:-ms-input-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code .form-group input[type=text]::-webkit-input-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code input[type=submit] {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  max-width: 120px;
  margin: 0;
}
html[dir=rtl] .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code input[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code input[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code input[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code input[type=submit] {
    font-size: 12px;
  }
}
.checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code input[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-right #checkout-right-wrapper .checkout-right .code-tr .promo-code input[type=submit] {
    max-width: 100%;
    display: block;
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper {
    margin-left: auto;
    padding: 6.7rem 4rem 0;
    max-width: calc(638px + 5vw);
  }
  html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper {
    margin-right: auto;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper {
    margin: auto;
    padding: 6.7rem 4rem 0;
    max-width: 100%;
  }
  html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper {
    margin: auto;
  }
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper {
    margin: auto;
    padding: 25px 15px 0;
  }
  html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper {
    margin: auto;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .checkout-logo-wrapper a {
  display: block;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .checkout-logo-wrapper a img {
  width: 85px;
  height: auto;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .breadcrumb-wrapper {
  margin-bottom: 15px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper {
  position: relative;
  padding-bottom: 0px;
  margin: 10px 0px 15px 0px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox] {
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  vertical-align: -4px;
  border-radius: 5px;
  display: none;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox]:hover {
  border-color: #235940;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox]:checked {
  border: none;
  -webkit-box-shadow: 0 0 0 10px #000 inset;
  box-shadow: 0 0 0 10px #000 inset;
  background-color: transparent;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox] ~ label {
  -webkit-appearance: none;
  padding-left: 25px;
  color: #000000;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font: normal normal normal 13px/19px "Poppins", sans-serif;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox] ~ label {
  padding-left: 0;
  padding-right: 25px;
  font-family: "Cairo", sans-serif !important;
  letter-spacing: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox] ~ label::after {
  height: 19px;
  width: 19px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid rgba(107, 108, 119, 0.15);
  border-radius: 5px;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox] ~ label::after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox] ~ label::before {
  height: 19px;
  width: 19px;
  content: "\f00c";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  font-family: "Font Awesome 5 Pro";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 999;
  font-size: 11px;
  background-color: #235940;
  opacity: 0;
  visibility: hidden;
  font-weight: 400;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox] ~ label::before {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox]:checked ~ label::before {
  visibility: visible;
  opacity: 1;
  transition: all ease-in-out 0.5s;
}
@media only screen and (min-width: 1200px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox]:hover ~ label::before {
    visibility: visible;
    opacity: 1;
    transition: all ease-in-out 0.5s;
  }
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .check-box-wrapper input[type=checkbox]:hover ~ label::after {
    border-color: #235940;
    background-color: #235940;
    transition: all ease-in-out 0.5s;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged {
  margin: 10px 0px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata {
  -webkit-appearance: none;
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  flex-flow: 1;
  font-weight: 500;
  gap: 10px;
  display: inherit;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata {
  direction: rtl;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  text-decoration: underline !important;
  font-weight: 400;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .userdata a:hover {
  color: #235940;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .logut {
  color: #235940;
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin-bottom: 0px;
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .logut {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .logut a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .logut a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .logut a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .logut a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .logut {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .user-logged .logut:hover {
  color: #235940;
  text-decoration: none;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping {
  border: 1px solid rgba(107, 108, 119, 0.15);
  padding: 0px 15px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
  position: relative;
  padding: 10px 0px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item {
    justify-content: space-between;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  width: 150px;
  font-weight: 500;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item {
  width: 120px;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .head-item {
    order: 1;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  flex-grow: 1;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item {
    order: 3;
    width: 100%;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .body-item span {
  width: 100%;
  color: inherit;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item {
  width: 50px;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item {
    order: 2;
  }
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item {
  width: 30px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item a {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  font-size: 12px;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item a {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item a a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item a a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item a a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item a a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item a {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item .footer-item a:hover {
  color: #235940;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .content-shipping .content-item:last-child {
  border-bottom: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form {
  margin-bottom: 25px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .iti {
  z-index: 55555;
  width: 100%;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .iti input {
  padding: 11px 5px 11px 52px !important;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .iti input {
  padding: 11px 52px 11px 5px !important;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .iti ~ label {
  display: none;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form textarea {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 5px 15px;
  height: 200px;
  margin-bottom: 20px;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form textarea {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
  text-align: right;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form textarea.placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form textarea:-moz-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form textarea::-moz-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form textarea:-ms-input-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form textarea::-webkit-input-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select {
  width: 100%;
  position: relative;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  height: 45px;
  box-shadow: none !important;
  margin-bottom: 20px;
  background-color: #fff;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select:hover, .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select:focus {
  outline: 0;
  background: #fff;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .btn {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  float: none;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .btn {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .btn.placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .btn:-moz-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .btn::-moz-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .btn:-ms-input-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .btn::-webkit-input-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select.open .caret {
  background: #fff;
  color: #000000;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select.open .caret:after {
  color: #000000;
  content: "\f106";
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select.open .btn {
  border-color: rgba(0, 0, 0, 0.24);
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select.btn-group {
  width: 100%;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select.btn-group .dropdown-toggle {
  box-shadow: none;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    bottom: 0px;
    position: relative;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .caret {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  transition: 0.25s ease-in-out;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .caret {
  left: 2px;
  right: unset;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .caret:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0, 0);
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f107";
  left: 40%;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .dropdown-menu {
  padding: 5px;
  box-shadow: none;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .dropdown-menu li a {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  padding: 5px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .bootstrap-select .dropdown-menu li a:hover {
  color: #000000;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group {
  margin-bottom: 20px;
  position: relative;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number],
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email],
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
  position: relative;
  background-color: #fff !important;
  margin-bottom: 0px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number][type=tel],
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email][type=tel],
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text][type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number][type=tel],
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email][type=tel],
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text][type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]::-webkit-outer-spin-button, .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]::-webkit-inner-spin-button,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]::-webkit-outer-spin-button,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]::-webkit-inner-spin-button,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]::-webkit-outer-spin-button,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number],
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email],
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number].placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email].placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text].placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]:-moz-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]:-moz-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]:-moz-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]::-moz-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]::-moz-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]::-moz-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]:-ms-input-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]:-ms-input-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]:-ms-input-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]::-webkit-input-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]::-webkit-input-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]::-webkit-input-placeholder {
  color: #cccccc;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number].placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email].placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text].placeholder {
  color: transparent;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]:-moz-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]:-moz-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]:-moz-placeholder {
  color: transparent;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]::-moz-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]::-moz-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]::-moz-placeholder {
  color: transparent;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]:-ms-input-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]:-ms-input-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]:-ms-input-placeholder {
  color: transparent;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]::-webkit-input-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]::-webkit-input-placeholder,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]::-webkit-input-placeholder {
  color: transparent;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number]:focus,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email]:focus,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text]:focus {
  border-color: #235940;
  box-shadow: 0px 0px 0px 0px #235940;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number].active,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email].active,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text].active {
  padding: 21px 11px 5px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label {
  -webkit-appearance: none;
  position: absolute;
  top: 23px;
  z-index: 999;
  padding: 0;
  left: 15px;
  opacity: 1;
  transform: translateY(-50%);
  transition: all ease-in-out 0.5s;
  color: #cccccc;
  font: normal normal 400 13px/13px "Poppins", sans-serif;
  pointer-events: none;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label,
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label,
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label,
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label,
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label,
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
  text-align: right;
  left: unset;
  right: 15px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label::before, .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label::after,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label::before,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label::after,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label::before,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label::after,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label::before,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label::after,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label::before,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label::after,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label::before,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label::after {
  display: none;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=number] ~ label.active,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=email] ~ label.active,
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .content-form .form-group input[type=text] ~ label.active {
  opacity: 1;
  transform: translateY(-18px);
  font-size: 9px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label {
  margin-bottom: 10px;
}
@media only screen and (min-width: 240px) and (max-width: 370px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label {
    flex-direction: column;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .label-big {
  text-align: left;
  font: normal normal 400 18px/25px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .label-big {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .label-big {
    font-size: 16px;
    line-height: 20px;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin-top: 5px;
  display: block;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check a {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  color: inherit;
  text-decoration: underline !important;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .head-label .login-check a:hover {
  color: #235940;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper {
  padding: 0px 15px;
  border: 1px solid rgba(107, 108, 119, 0.15);
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper {
    padding: 0px 7px;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type {
  position: relative;
  margin: auto;
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
  padding: 10px 3px;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type {
    padding: 5px 3px;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type:last-of-type {
  border-bottom: none;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type input {
  position: absolute;
  -webkit-appearance: none;
  cursor: pointer;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label {
  position: relative;
  padding: 0px 0px 0px 35px;
  border-radius: 4px;
  cursor: pointer;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 40px;
  align-items: center;
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label {
  padding: 0px 35px 0px 0px;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label {
    min-height: 35px;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label span {
  color: inherit;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label span.imgs {
  max-width: 40%;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label span.imgs img {
  width: 100%;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label span.text {
  width: calc(100% - 85px);
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label span.price {
  font-weight: 500;
  width: 80px;
  text-align: right;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label span.price {
  text-align: left;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label::after {
  content: "";
  position: absolute;
  left: 0px;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label::after {
  right: 0px;
  left: unset;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%) scale(0.41);
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 9;
  display: none;
  content: "";
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type label::before {
  right: 0px;
  left: unset;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type input[type=radio]:checked ~ label::after {
  background-color: #235940;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type input[type=radio]:checked ~ label::before {
  display: block;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type input[type=radio]:hover ~ label::after {
  background-color: #235940;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .selection-wrapper .method-type input[type=radio]:hover ~ label::before {
  display: block;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #form .add-address-wrapper {
  background-color: #fafafa;
  border: 1px solid rgba(107, 108, 119, 0.15);
  padding: 15px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper #delivery-wrapper #delivery-address {
  margin-bottom: 0px !important;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .time-date #select-wrapper-parent {
    margin-top: 20px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .time-date .bootstrap-select,
.checkout .checkout-container #checkout-left #checkout-left-wrapper .time-date .form-group {
  margin-bottom: 0px !important;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .payment-option-box {
  padding: 15px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper {
  padding: 30px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  background-color: #fafafa;
  border: 1px solid rgba(107, 108, 119, 0.15);
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper .security-wrapper .poweredBy {
  margin: 30px auto 20px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper .security-wrapper .image-we-accept img {
  width: 250px;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper .form-group {
  text-align: center;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper button {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  margin: auto;
  display: block;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper button {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper button {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper button {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper button {
    font-size: 12px;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper button:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper p.subtitle {
  display: block;
  margin: 20px auto 0;
  width: max-content;
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  .checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper p.subtitle {
    font-size: 12px !important;
  }
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper p.subtitle a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper p.subtitle a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper p.subtitle a:after {
  left: unset;
  right: 0;
}
.checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper p.subtitle a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .checkout .checkout-container #checkout-left #checkout-left-wrapper .form-wrapper p.subtitle {
  font-family: "Cairo", sans-serif;
  text-align: right;
}

.form-controller {
  padding-bottom: 30px;
}
@media only screen and (max-width: 1199.98px) {
  .form-controller {
    padding-bottom: 0px;
  }
}
.form-controller .row {
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 1199.98px) {
  .form-controller .row {
    flex-direction: column;
    gap: 15px;
  }
}
.form-controller .row .return {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  .form-controller .row .return {
    font-size: 12px !important;
  }
}
.form-controller .row .return a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
.form-controller .row .return a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .form-controller .row .return a:after {
  left: unset;
  right: 0;
}
.form-controller .row .return a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] .form-controller .row .return {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
.form-controller .row .return i {
  font-size: 10px;
  padding-right: 5px;
}
html[dir=rtl] .form-controller .row .return i {
  transform: rotateZ(180deg);
}
.form-controller .row button[type=submit] {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  max-width: 184px;
  margin: 0px 0px 0px auto;
  display: block;
}
html[dir=rtl] .form-controller .row button[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .form-controller .row button[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .form-controller .row button[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  .form-controller .row button[type=submit] {
    font-size: 12px;
  }
}
.form-controller .row button[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
.form-controller .row button[type=submit] .spin-wrapper {
  display: none;
}
html[dir=rtl] .form-controller .row button[type=submit] {
  margin: 0px auto 0px 0px;
}
@media only screen and (max-width: 991.98px) {
  .form-controller .row button[type=submit] {
    max-width: 100%;
    width: 100%;
  }
}

.dropdown-menu {
  z-index: 111000;
}

.qcheckout-page #popup_wrapper .popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999999;
  background: rgba(0, 0, 0, 0.22);
}
.qcheckout-page #popup_wrapper .popup .popup-close {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 20px;
  right: 20px;
  transition: ease 0.25s all;
  text-align: center;
  line-height: 100%;
}
html[dir=rtl] .qcheckout-page #popup_wrapper .popup .popup-close {
  right: unset;
  left: 20px;
}
@media only screen and (max-width: 991.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-close {
    right: 15px;
  }
  html[dir=rtl] .qcheckout-page #popup_wrapper .popup .popup-close {
    right: unset;
    left: 15px;
  }
}
.qcheckout-page #popup_wrapper .popup .popup-close svg {
  width: 100%;
}
.qcheckout-page #popup_wrapper .popup .popup-inner {
  max-width: 700px;
  width: 90%;
  padding: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-inner {
    padding: 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-inner {
    padding: 15px;
    width: 92%;
  }
}
.qcheckout-page #popup_wrapper .popup .popup-inner .popup-title {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
  text-align: center;
}
html[dir=rtl] .qcheckout-page #popup_wrapper .popup .popup-inner .popup-title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  .qcheckout-page #popup_wrapper .popup .popup-inner .popup-title {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-inner .popup-title {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-inner .popup-title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-inner .popup-title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 991.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-inner .popup-title {
    margin-top: 35px;
  }
}
html[dir=rtl] .qcheckout-page #popup_wrapper .popup .popup-inner .popup-title {
  text-align: center;
}
.qcheckout-page #popup_wrapper .popup .popup-inner .categoryTab_wrapper {
  justify-content: center;
}
.qcheckout-page #popup_wrapper .popup .popup-bottom .btn-close {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  display: block;
  margin: 40px auto 0;
}
html[dir=rtl] .qcheckout-page #popup_wrapper .popup .popup-bottom .btn-close {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-bottom .btn-close {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-bottom .btn-close {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  .qcheckout-page #popup_wrapper .popup .popup-bottom .btn-close {
    font-size: 12px;
  }
}
.qcheckout-page #popup_wrapper .popup .popup-bottom .btn-close:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}

#detailed-inner #product-area {
  border-bottom: 1px solid rgba(107, 108, 119, 0.15);
}
@media only screen and (min-width: 992px) {
  #detailed-inner #product-area {
    margin: 50px 0px 30px;
  }
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area {
    margin: 20px 0px 30px;
  }
}
#detailed-inner #product-area .product-image-slider {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  #detailed-inner #product-area .product-image-slider {
    max-width: 700px;
  }
}
#detailed-inner #product-area .product-image-slider .badge {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  width: 43px;
  height: 115px;
}
html[dir=rtl] #detailed-inner #product-area .product-image-slider .badge {
  left: 19px;
  right: unset;
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area .product-image-slider .badge {
    width: 38px;
    height: 95px;
  }
}
#detailed-inner #product-area .product-image-slider .badge svg {
  display: block;
  width: auto;
  height: 115px;
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area .product-image-slider .badge svg {
    height: 95px;
  }
}
#detailed-inner #product-area .product-image-slider .badge.out_badge {
  color: #ffffff;
}
#detailed-inner #product-area .product-image-slider .badge i {
  position: absolute;
  left: -35px;
  top: 35px;
  transform: rotate(-90deg);
  padding-left: 40px;
  padding-right: 5px;
  display: block;
  width: max-content;
  font: normal normal normal 15px/43px "Poppins", sans-serif;
  letter-spacing: 0.17px;
  color: #fff;
  opacity: 1;
  width: 115px;
  height: 43px;
}
html[dir=rtl] #detailed-inner #product-area .product-image-slider .badge i {
  left: -37px;
  top: 41px;
  font-size: 12px;
  font-family: "Cairo", sans-serif;
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area .product-image-slider .badge i {
    width: 95px;
    height: 38px;
    padding-left: 31px;
    font-size: 13px;
    left: -33px;
    top: 28px;
  }
  html[dir=rtl] #detailed-inner #product-area .product-image-slider .badge i {
    left: -32px;
    top: 33px;
    font-size: 10px;
    font-family: "Cairo", sans-serif;
  }
}
#detailed-inner #product-area .product-image-slider .slider-for {
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area .product-image-slider .slider-for:hover {
    cursor: pointer;
    border-color: #000000 !important;
  }
}
#detailed-inner #product-area .product-image-slider .slider-for img {
  width: 100%;
}
#detailed-inner #product-area .product-image-slider .slider-for #slide-video video {
  width: 100%;
}
#detailed-inner #product-area .product-image-slider .slider-for .slick-prev {
  left: -28px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area .product-image-slider .slider-for .slick-prev {
    left: 5px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area .product-image-slider .slider-for .slick-prev {
    left: 5px;
  }
}
#detailed-inner #product-area .product-image-slider .slider-for .slick-next {
  right: -28px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area .product-image-slider .slider-for .slick-next {
    right: 5px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area .product-image-slider .slider-for .slick-next {
    right: 5px;
  }
}
#detailed-inner #product-area .product-image-slider .slider-for .slick-prev:before,
#detailed-inner #product-area .product-image-slider .slider-for .slick-next:before {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: transparent;
  border: 1px solid transparent;
  color: #235940;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  display: inline-block;
  border-radius: 50%;
  font-size: 35px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.25s ease-in-out;
}
#detailed-inner #product-area .product-image-slider .slider-for .slick-prev:before {
  content: "\f104";
}
#detailed-inner #product-area .product-image-slider .slider-for .slick-next:before {
  content: "\f105";
}
#detailed-inner #product-area .product-image-slider .slider-for .slick-prev,
#detailed-inner #product-area .product-image-slider .slider-for .slick-next {
  margin-top: -54px;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 45%;
  display: block;
  padding: 0;
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
  cursor: pointer;
  color: #413f47;
  border: none;
  outline: none;
  background-color: transparent;
  border-radius: 50%;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area .product-image-slider .slider-for .slick-prev,
  #detailed-inner #product-area .product-image-slider .slider-for .slick-next {
    top: 50%;
  }
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area .product-image-slider .slider-for .slick-prev:hover,
  #detailed-inner #product-area .product-image-slider .slider-for .slick-next:hover {
    opacity: 1;
    color: #235940;
    background-color: transparent;
  }
}
#detailed-inner #product-area .product-image-slider .slider-nav {
  /* the parent */
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area .product-image-slider .slider-nav {
    display: none !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area .product-image-slider .slider-nav {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area .product-image-slider .slider-nav img:hover {
    cursor: pointer;
    border-color: #000000 !important;
  }
}
#detailed-inner #product-area .product-image-slider .slider-nav .slick-slide {
  margin: 0 7px;
}
#detailed-inner #product-area .product-image-slider .slider-nav .slick-slide.slick-current img {
  border-color: #000000 !important;
}
#detailed-inner #product-area .product-image-slider .slider-nav .slick-list {
  margin: 0 -7px;
}
#detailed-inner #product-area #product-rhs {
  position: relative;
  max-width: 465px;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs {
    min-height: 100vh;
    margin-bottom: 170px;
  }
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#detailed-inner #product-area #product-rhs .product-name {
  text-align: left;
  font: normal normal 400 24px/32px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  max-width: 296px;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-name {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #detailed-inner #product-area #product-rhs .product-name {
    font-size: 23px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .product-name {
    font-size: 23px;
    line-height: 31px;
  }
}
@media only screen and (min-width: 992px) {
  #detailed-inner #product-area #product-rhs .product-name {
    margin: 0px 0 22px;
  }
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-name {
    font-size: 22px;
    line-height: 30px;
    max-width: 240px;
    margin: 16px 0 25px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription-title,
#detailed-inner #product-area #product-rhs .product-about-title {
  text-align: left;
  font: italic normal 400 14px/25px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin-bottom: 9px;
  text-transform: capitalize;
  display: block;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-decription-title,
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-about-title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#detailed-inner #product-area #product-rhs .product-decription-description,
#detailed-inner #product-area #product-rhs .product-about-description {
  text-align: left;
  font: normal normal 300 13px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 25px;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-decription-description,
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-about-description {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-decription-description,
  #detailed-inner #product-area #product-rhs .product-about-description {
    font-size: 13px !important;
    line-height: 25px !important;
  }
}
#detailed-inner #product-area #product-rhs .product-decription-description p,
#detailed-inner #product-area #product-rhs .product-about-description p {
  text-align: left;
  font: normal normal initial initial/initial initial;
  letter-spacing: initial;
  color: initial;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-decription-description p,
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-about-description p {
  text-align: right;
}
#detailed-inner #product-area #product-rhs .product-decription-description p:not(:last-of-type),
#detailed-inner #product-area #product-rhs .product-about-description p:not(:last-of-type) {
  margin-bottom: 25px;
}
#detailed-inner #product-area #product-rhs .product-decription:last-child,
#detailed-inner #product-area #product-rhs .product-about:last-child {
  margin-bottom: 0;
}
#detailed-inner #product-area #product-rhs .product-code {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 28px;
  margin-bottom: 15px;
  text-align: center;
  color: #ed217c;
  text-transform: capitalize;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .product-code {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-code {
    font-size: 15px;
    margin-bottom: 5px;
    text-align: right;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-code {
    font-size: 14px;
    margin-bottom: 5px;
    text-align: right;
  }
}
#detailed-inner #product-area #product-rhs .product-code a {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: inherit;
  text-align: inherit;
  color: inherit;
  text-transform: inherit;
}
#detailed-inner #product-area #product-rhs .price {
  margin-top: 15px;
  margin-bottom: 15px;
}
#detailed-inner #product-area #product-rhs .price #power-price {
  display: flex !important;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 10px;
}
#detailed-inner #product-area #product-rhs .price #power-price .price-text {
  text-align: left;
  font: normal normal 400 17px/25px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .price #power-price .price-text {
    font-size: 16px;
  }
}
#detailed-inner #product-area #product-rhs .price #power-price .price-new {
  text-align: left;
  font: normal normal 400 17px/25px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .price #power-price .price-new {
    font-size: 16px;
  }
}
#detailed-inner #product-area #product-rhs .price #power-price .price-old {
  text-align: left;
  text-decoration: line-through;
  font: normal normal 400 16px/30px "Poppins", sans-serif;
  letter-spacing: 0.32px;
  color: #000;
  opacity: 1;
}
#detailed-inner #product-area #product-rhs #power-discount {
  display: none;
}
#detailed-inner #product-area #product-rhs #power-discount-new {
  display: inline-block;
  display: none !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs #power-discount-new {
    margin-top: 15px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #power-discount-new {
    margin-top: 15px;
  }
}
#detailed-inner #product-area #product-rhs #power-discount-new .power-discount-product {
  display: inline-block;
  margin-top: 0px;
  padding: 0px 10px;
  border-radius: 2px;
  background-color: #000000;
  color: #ffffff;
  font-weight: 700;
  z-index: 1;
  height: 29px;
  line-height: 29px;
}
#detailed-inner #product-area #product-rhs button.wishlist {
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid rgba(107, 108, 119, 0.15);
  width: 68px;
  height: 68px;
  transition: 0.25s ease-in-out;
  -webkit-appearance: none;
  color: #484848;
  flex-grow: 1;
  width: 100%;
  height: 65px;
  line-height: 65px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: 0px;
  margin-top: 10px;
  flex-basis: 394px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #detailed-inner #product-area #product-rhs button.wishlist {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs button.wishlist {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs button.wishlist {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs button.wishlist {
    font-size: 12px;
    height: 46px;
    line-height: 46px;
  }
}
#detailed-inner #product-area #product-rhs button.wishlist:focus {
  outline: none;
}
#detailed-inner #product-area #product-rhs button.wishlist:disabled, #detailed-inner #product-area #product-rhs button.wishlist[disabled] {
  background-color: #cccccc !important;
}
#detailed-inner #product-area #product-rhs button.wishlist:disabled i, #detailed-inner #product-area #product-rhs button.wishlist[disabled] i {
  color: #fff;
}
#detailed-inner #product-area #product-rhs button.wishlist.selected {
  color: #662d91;
}
#detailed-inner #product-area #product-rhs button.wishlist.selected i {
  color: #662d91;
  font-weight: bold;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs button.wishlist:hover {
    background-color: #662d91;
    color: #ffffff;
  }
  #detailed-inner #product-area #product-rhs button.wishlist:hover i {
    color: #ffffff;
    font-weight: bold;
  }
}
#detailed-inner #product-area #product-rhs button.wishlist i {
  color: #000000;
  font-weight: 200;
  margin-left: 10px;
  transition: 0.25s ease-in-out;
}
#detailed-inner #product-area #product-rhs .registry {
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid rgba(107, 108, 119, 0.15);
  width: 68px;
  height: 68px;
  transition: 0.25s ease-in-out;
  -webkit-appearance: none;
  color: #484848;
  flex-grow: 1;
  width: 100%;
  height: 65px;
  line-height: 65px;
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: 0em;
  margin-top: 10px;
  flex-basis: 394px;
  cursor: pointer;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #detailed-inner #product-area #product-rhs .registry {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .registry {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .registry {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .registry {
    font-size: 12px;
    height: 46px;
    line-height: 46px;
  }
}
#detailed-inner #product-area #product-rhs .registry img {
  max-width: 12px;
  margin-right: 15px;
  transition: 0.25s ease-in-out;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs .registry:hover .registry-dropdown {
    opacity: 1;
    visibility: visible;
    transition: all ease-in-out 0.5s;
  }
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown {
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, 100%);
  width: 100%;
  max-width: 280px;
  border: 1px solid rgba(107, 108, 119, 0.15);
  padding: 30px;
  padding-bottom: 0px;
  z-index: 999;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.5s;
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown:after {
  position: absolute;
  left: 50%;
  top: -2px;
  background-color: #7e6656;
  width: 16px;
  height: 16px;
  transform: rotate(45deg) translateX(-50%);
  content: "";
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .title {
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: 0em;
  color: #484848;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .title {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .title {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .title {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .title {
    font-size: 12px;
  }
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .empty {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 26px;
  text-align: right;
  color: #413f47;
  margin: 25px auto;
  text-align: center;
  text-transform: none;
  max-width: 180px;
  padding: 0px !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .empty {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .empty {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .empty {
    font-size: 12px;
  }
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box {
  margin-bottom: 35px;
  margin-top: 35px;
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .hideContent {
  overflow: hidden;
  height: 19em;
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .showContent {
  height: auto;
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control input:checked ~ .control__indicator {
  background: #8e8765;
  border-color: #8e8765;
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox {
  padding-right: 40px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 0em;
  line-height: 26px;
  text-align: right;
  color: #413f47;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox {
    font-size: 12px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox {
    font-size: 12px;
    padding-right: 30px;
  }
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox .control__indicator {
  width: 23px;
  height: 23px;
  border: 1.6px solid rgba(107, 108, 119, 0.15);
  border-radius: 50%;
  top: 1px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox .control__indicator {
    width: 19px;
    height: 19px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox .control__indicator {
    width: 19px;
    height: 19px;
  }
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox .control__indicator:focus {
  border-color: #235940;
}
#detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox .control__indicator:after {
  right: 9px;
  top: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox .control__indicator:after {
    right: 7px;
    top: 4px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox .control__indicator:after {
    right: 5px;
    top: 2px;
  }
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs .registry .registry-dropdown .filter-box .control--checkbox:hover .control__indicator {
    background: #8e8765;
    border-color: #8e8765;
  }
}
#detailed-inner #product-area #product-rhs .share {
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 26px;
  padding: 17px 0px;
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .share {
    font-size: 15px;
    padding: 14px 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .share {
    font-size: 14px;
    padding: 14px 0px;
  }
}
#detailed-inner #product-area #product-rhs .share li {
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}
#detailed-inner #product-area #product-rhs .share li:last-child {
  margin-left: 0;
}
#detailed-inner #product-area #product-rhs .share li a {
  color: #235940;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs .share li a:hover i {
    color: #000000;
  }
}
#detailed-inner #product-area #product-rhs .share li a img {
  height: 15px;
}
#detailed-inner #product-area #product-rhs .share li a i {
  font-size: 22px;
  color: #235940;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .share li a i {
    font-size: 18px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #detailed-inner #product-area #product-rhs .product-decription {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .product-decription {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-decription {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-decription {
    margin-top: 15px;
    padding-bottom: 0px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription .nav-tabs {
  border: 0 !important;
  padding: 0;
  margin-bottom: 15px;
  padding-top: 25px;
  display: none;
}
@media only screen and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-decription .nav-tabs {
    display: none;
  }
}
#detailed-inner #product-area #product-rhs .product-decription .nav-tabs li {
  border: 0 !important;
  margin-left: 0px;
}
#detailed-inner #product-area #product-rhs .product-decription .nav-tabs li:first-child {
  margin-right: 70px;
  padding-left: 0px !important;
}
@media only screen and (max-width: 575.98px) {
  #detailed-inner #product-area #product-rhs .product-decription .nav-tabs li:first-child {
    margin-right: 20px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription .nav-tabs li:hover, #detailed-inner #product-area #product-rhs .product-decription .nav-tabs li:focus {
  background-color: transparent !important;
}
#detailed-inner #product-area #product-rhs .product-decription .nav-tabs li:hover a, #detailed-inner #product-area #product-rhs .product-decription .nav-tabs li:focus a {
  background-color: transparent !important;
}
#detailed-inner #product-area #product-rhs .product-decription .nav-tabs li a {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #4e4e4e;
  font-weight: 500;
  text-transform: uppercase;
  border: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-decription .nav-tabs li a {
    font-size: 16px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription .nav-tabs li a:hover, #detailed-inner #product-area #product-rhs .product-decription .nav-tabs li a:focus {
  background-color: transparent !important;
  color: #235940;
}
#detailed-inner #product-area #product-rhs .product-decription .nav-tabs li.active a {
  color: #235940;
  font-size: 19px;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-decription .nav-tabs li.active a {
    font-size: 16px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription .tab-pane {
  display: block;
  opacity: 1 !important;
}
#detailed-inner #product-area #product-rhs .product-decription .tab-mobile {
  display: none;
  margin-bottom: 15px;
}
#detailed-inner #product-area #product-rhs .product-decription .tab-pane .tab-pane-header {
  display: block;
  text-align: left;
  letter-spacing: 0px;
  color: #413f47;
  font-weight: 500;
  opacity: 1;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 26px;
  padding: 17px 0px;
  cursor: pointer;
  border-top: 1px solid rgba(107, 108, 119, 0.15);
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-decription .tab-pane .tab-pane-header {
    font-size: 15px;
    line-height: 27px;
    padding: 14px 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-decription .tab-pane .tab-pane-header {
    font-size: 14px;
    line-height: 27px;
    padding: 14px 0px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription .tab-pane .tab-pane-header.active:after {
  content: "\f068";
}
#detailed-inner #product-area #product-rhs .product-decription .tab-pane .tab-pane-header:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f067";
  position: absolute;
  right: 5px;
  font-size: 15px;
  font-weight: 300;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  color: #707070;
}
#detailed-inner #product-area #product-rhs .product-decription table {
  width: auto;
}
#detailed-inner #product-area #product-rhs .product-decription table tr {
  border: 0;
}
#detailed-inner #product-area #product-rhs .product-decription table td {
  font-family: "Poppins", sans-serif !important;
  font-size: 17px !important;
  letter-spacing: 0em;
  text-align: left;
  color: #4c4c4c;
  border: 0;
  padding: 0;
  padding-bottom: 4px;
  padding-left: 0;
  padding-top: 4px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .product-decription table td {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-decription table td {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-decription table td {
    font-size: 16px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription table td:first-of-type {
  color: #7e7e7e;
  padding-right: 100px;
}
#detailed-inner #product-area #product-rhs .product-decription p,
#detailed-inner #product-area #product-rhs .product-decription p span {
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  letter-spacing: 0.02em;
  line-height: 20px !important;
  text-align: left !important;
  color: #4c4c4c !important;
}
#detailed-inner #product-area #product-rhs .product-decription p.inner,
#detailed-inner #product-area #product-rhs .product-decription p span.inner {
  margin-bottom: 15px !important;
}
#detailed-inner #product-area #product-rhs .product-decription p.inner:last-child,
#detailed-inner #product-area #product-rhs .product-decription p span.inner:last-child {
  margin-bottom: 0 !important;
}
#detailed-inner #product-area #product-rhs .product-decription p strong,
#detailed-inner #product-area #product-rhs .product-decription p span strong {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4e4e4e;
  margin-right: 7px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .product-decription p,
  #detailed-inner #product-area #product-rhs .product-decription p span {
    font-size: 12px !important;
    line-height: 24px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-decription p,
  #detailed-inner #product-area #product-rhs .product-decription p span {
    font-size: 12px !important;
    line-height: 25px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-decription p,
  #detailed-inner #product-area #product-rhs .product-decription p span {
    font-size: 12px !important;
    line-height: 22px !important;
    margin-bottom: 10px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription p:last-child,
#detailed-inner #product-area #product-rhs .product-decription p span:last-child {
  margin-bottom: 0;
}
#detailed-inner #product-area #product-rhs .product-decription ul li {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 32px;
  color: #000;
  list-style: disc;
  margin-left: 20px;
  padding-left: 4px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-decription ul li {
    font-size: 17px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-decription ul li {
    font-size: 16px;
    line-height: 28px;
  }
}
#detailed-inner #product-area #product-rhs .product-decription ul li:last-child {
  margin-bottom: 0;
}
#detailed-inner #product-area #product-rhs #product-selector {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: start;
  background-color: transparent;
  position: relative;
  margin: 15px 0px 20px;
  gap: 15px;
}
#detailed-inner #product-area #product-rhs #product-selector h6 {
  text-align: left;
  font: normal normal 400 14px/25px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin-bottom: 10px;
  margin-bottom: 0;
  text-align: center;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs #product-selector h6 {
  text-align: right;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #product-selector h6 {
    font-size: 13px !important;
    line-height: 35px !important;
  }
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container:not(.radio-type) label {
  font: normal normal 400 13px/18px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs #product-selector .selector-container:not(.radio-type) label {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label {
  border: none;
  width: 100px;
  height: auto;
  line-height: unset;
  margin: 3px;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label input[type=radio] {
  cursor: pointer;
  -webkit-appearance: none;
  opacity: 0;
  position: absolute;
  width: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  transform: translate(-50%, -50%);
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label i {
  z-index: 99;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  font-size: 28px;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label .text {
  margin: 3px;
  width: 100px;
  float: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: all ease-in-out 0.5s;
  box-shadow: none;
  padding: 0px;
  opacity: 1;
  height: 77px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.14px;
  color: #413f47;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label .text {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label .text {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label .text {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label .text {
    font-size: 10px;
  }
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label .wrapping-description {
  width: 100%;
  display: block;
  text-align: center;
  margin: 10px auto 0;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label.selected {
  opacity: 1;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label.selected .text {
  border-color: #235940 !important;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.radio-type label.selected .wrapping-description span {
  color: #000000 !important;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label {
  margin: 3px;
  width: 67px;
  height: auto;
  float: none;
  border: 2px solid transparent;
  overflow: hidden;
  display: inline-block;
  background-color: #ffffff;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: all ease-in-out 0.5s;
  box-shadow: none;
  padding: 0px;
  opacity: 1;
  line-height: unset;
  text-align: center;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.14px;
  color: #413f47;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label {
    font-size: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label {
    font-size: 10px;
  }
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label.selected {
  opacity: 1;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label.selected img {
  border-color: #000000 !important;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label.selected .wrapping-description span {
  color: #000000 !important;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.custom-selection label img {
  width: 100%;
  width: 67px;
  height: auto;
  border: 2px solid transparent !important;
  padding: 0px;
  border-radius: 0;
}
#detailed-inner #product-area #product-rhs #product-selector .selector-container.type.type-109 .wrapping-description {
  display: none !important;
}
#detailed-inner #product-area #product-rhs .product-options {
  margin-top: 15px;
}
#detailed-inner #product-area #product-rhs .product-options .selector {
  padding: 15px 0px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  z-index: 1000;
}
#detailed-inner #product-area #product-rhs .product-options .selector h3 {
  font-family: "Gill Sans Regular";
  letter-spacing: 0px;
  font-size: 18px;
  color: #000000;
  margin: 0;
  width: 140px !important;
}
#detailed-inner #product-area #product-rhs .product-options .selector .select {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  /*right: 15px;*/
  right: 0px;
  width: 140px;
  text-align: center;
  width: max-content;
}
#detailed-inner #product-area #product-rhs .product-options .selector .select .head-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  cursor: pointer;
  color: #a7a7a7;
}
#detailed-inner #product-area #product-rhs .product-options .selector .select .head-select span {
  font-family: "Gill Sans Regular";
  letter-spacing: 0px;
  color: #a7a7a7;
  opacity: 1;
  margin-left: 10px;
  text-align: left;
  opacity: 1;
  font-size: 18px;
}
#detailed-inner #product-area #product-rhs .product-options .selector .select .head-select span.selected {
  font-family: "Gill Sans SemiBold";
  letter-spacing: 0px;
  margin-left: 10px;
  text-align: left;
  color: #ac8243;
  opacity: 1;
  font-size: 18px;
}
#detailed-inner #product-area #product-rhs .product-options .selector .select .select-content {
  position: absolute;
  top: 130%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 0px 0;
  -webkit-box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 13px 0px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  height: 0;
  overflow: hidden;
}
#detailed-inner #product-area #product-rhs .product-options .selector .select .select-content.active {
  /*height: 95px;*/
  padding: 10px 0;
  width: 100%;
  height: auto;
  min-width: 150px;
}
#detailed-inner #product-area #product-rhs .product-options .selector .select .select-content ul li {
  padding: 5px 10px;
  color: #2f2f2f;
  font-family: "Gill Sans SemiBold";
  font-size: 15px;
  text-align: right;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  cursor: pointer;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs .product-options .selector .select .select-content ul li:hover {
    background-color: #000000;
    color: #fff;
  }
}
#detailed-inner #product-area #product-rhs .product-options .additional-options {
  padding: 0px;
  margin-bottom: 15px;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .control-label {
  width: 100%;
  display: block;
  text-align: left;
  font: normal normal 400 14px/25px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin-bottom: 10px;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-options .additional-options .control-label {
  text-align: right;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options .control-label {
    font-size: 13px !important;
    line-height: 35px !important;
  }
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control[type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control[type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control::-webkit-outer-spin-button, #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control.placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control:-moz-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control::-moz-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control:-ms-input-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=text].form-control::-webkit-input-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select {
  width: 100%;
  position: relative;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  height: 45px;
  box-shadow: none !important;
  margin-bottom: 20px;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select:hover, #detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select:focus {
  outline: 0;
  background: #fff;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .btn {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  float: none;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .btn {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .btn.placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .btn:-moz-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .btn::-moz-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .btn:-ms-input-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .btn::-webkit-input-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select.open .caret {
  background: #fff;
  color: #000000;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select.open .caret:after {
  color: #000000;
  content: "\f106";
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select.open .btn {
  border-color: rgba(0, 0, 0, 0.24);
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select.btn-group {
  width: 100%;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select.btn-group .dropdown-toggle {
  box-shadow: none;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    bottom: 0px;
    position: relative;
  }
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .caret {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  transition: 0.25s ease-in-out;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .caret {
  left: 2px;
  right: unset;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .caret:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0, 0);
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f107";
  left: 40%;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .dropdown-menu {
  padding: 5px;
  box-shadow: none;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .dropdown-menu li a {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  padding: 5px;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options .btn-group.bootstrap-select .dropdown-menu li a:hover {
  color: #000000;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options textarea {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 5px 15px;
  height: 200px;
  margin-bottom: 20px;
  height: 65px;
  resize: none;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs .product-options .additional-options textarea {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options textarea.placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options textarea:-moz-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options textarea::-moz-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options textarea:-ms-input-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options textarea::-webkit-input-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file] {
  float: left;
  -webkit-appearance: none;
  width: max-content !important;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file] {
    max-width: 50%;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file] {
    max-width: 50%;
  }
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]:focus {
  outline: none !important;
  border: none !important;
  background-color: transparent !important;
  background: none !important;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]:active {
  outline: none !important;
  border: none !important;
  background-color: transparent !important;
  background: none !important;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]:hover {
    outline: none !important;
    border: none !important;
    background-color: transparent !important;
    background: none !important;
  }
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before {
  content: attr(data-before);
  display: inline-block;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  color: #cccccc;
  font-family: "Poppins", sans-serif !important;
  font-size: 15px !important;
  letter-spacing: 0em;
  line-height: 23px !important;
  font-weight: 400;
  width: 100%;
  text-align: left;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before {
    font-size: 15px !important;
    line-height: 23px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before {
    font-size: 12px !important;
    line-height: 18px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before {
    font-size: 12px !important;
    line-height: 18px !important;
  }
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before:focus {
  outline: none !important;
  border: none !important;
  background-color: transparent !important;
  background: none !important;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before:active {
  outline: none !important;
  border: none !important;
  background-color: transparent !important;
  background: none !important;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before:hover {
    outline: none !important;
    border: none !important;
    background-color: transparent !important;
    background: none !important;
  }
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before .caret {
  color: #000000;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before.bs-placeholder {
  color: #cccccc !important;
  text-transform: capitalize;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file]::before.btn {
  color: #e1a2a0;
}
#detailed-inner #product-area #product-rhs .product-options .additional-options input[type=file].selected::before {
  color: #e1a2a0;
}
#detailed-inner #product-area #product-rhs .standard-option {
  display: none;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper {
  margin: 15px auto 0;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select {
  width: 100%;
  position: relative;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  height: 45px;
  box-shadow: none !important;
  margin-bottom: 20px;
  margin-bottom: 0px;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select:hover, #detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select:focus {
  outline: 0;
  background: #fff;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .btn {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  float: none;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .btn {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .btn.placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .btn:-moz-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .btn::-moz-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .btn:-ms-input-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .btn::-webkit-input-placeholder {
  color: #cccccc;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select.open .caret {
  background: #fff;
  color: #000000;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select.open .caret:after {
  color: #000000;
  content: "\f106";
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select.open .btn {
  border-color: rgba(0, 0, 0, 0.24);
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select.btn-group {
  width: 100%;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select.btn-group .dropdown-toggle {
  box-shadow: none;
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select.btn-group .dropdown-toggle .filter-option {
    bottom: 0px;
    position: relative;
  }
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .caret {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  transition: 0.25s ease-in-out;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .caret {
  left: 2px;
  right: unset;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .caret:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transform: translate(0, 0);
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f107";
  left: 40%;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .dropdown-menu {
  padding: 5px;
  box-shadow: none;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .dropdown-menu li a {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  padding: 5px;
}
#detailed-inner #product-area #product-rhs #count-select-wrapper .bootstrap-select .dropdown-menu li a:hover {
  color: #000000;
}
#detailed-inner #product-area #product-rhs #count-add {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: transparent;
  position: relative;
  margin-bottom: 15px;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap {
  width: 100%;
  flex-basis: 149px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  flex-grow: 1;
  background-color: white;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  display: none;
}
@media only screen and (min-width: 1551px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap {
    max-width: 160px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap {
    max-width: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap {
    max-width: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap {
    max-width: 130px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap {
    max-width: 110px;
  }
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap span {
  display: inline-block;
  vertical-align: middle;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0em;
  color: #999999;
  margin-left: 28px;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input {
  -webkit-appearance: none;
  width: 80px;
  height: 64px;
  line-height: 64px;
  border: 0;
  background: none;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  color: #000 !important;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input.placeholder {
  color: #000 !important;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input:-moz-placeholder {
  color: #000 !important;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input::-moz-placeholder {
  color: #000 !important;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input:-ms-input-placeholder {
  color: #000 !important;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input::-webkit-input-placeholder {
  color: #000 !important;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input:focus {
  outline: none;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input {
    width: 60px;
    height: 44px;
    line-height: 44px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input input {
    width: 60px;
    height: 44px;
    line-height: 44px;
    font-size: 16px;
  }
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input .incr-btn {
  display: block;
  position: absolute;
  width: 20px;
  height: 64px;
  font-size: 25px;
  font-weight: 300;
  text-align: center;
  line-height: 64px;
  top: 0;
  text-decoration: none;
  color: #4c4c4c;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input .incr-btn {
    height: 44px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input .incr-btn {
    height: 44px;
    line-height: 44px;
  }
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input .incr-btn:first-child {
  left: auto;
  right: 0;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input .incr-btn:hover {
    color: #000000;
  }
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input .incr-btn.decrease {
  right: 0;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input .incr-btn.increase {
  left: 0;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input.count-input-sm {
  max-width: 125px;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input.count-input-sm input {
  height: 36px;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input.count-input-lg {
  max-width: 200px;
}
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input.count-input-lg input {
  -webkit-appearance: none;
  height: 70px;
  border-radius: 3px;
}
#detailed-inner #product-area #product-rhs #count-add button[type=submit] {
  transition: 0.25s ease-in-out;
  -webkit-appearance: none;
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  width: 100%;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs #count-add button[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #detailed-inner #product-area #product-rhs #count-add button[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs #count-add button[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #count-add button[type=submit] {
    font-size: 12px;
  }
}
#detailed-inner #product-area #product-rhs #count-add button[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
#detailed-inner #product-area #product-rhs #count-add button[type=submit]:disabled, #detailed-inner #product-area #product-rhs #count-add button[type=submit][disabled] {
  background-color: #6E6F6F !important;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs #count-add button[type=submit]:disabled:hover, #detailed-inner #product-area #product-rhs #count-add button[type=submit][disabled]:hover {
    color: #fff !important;
  }
}
#detailed-inner #product-area #product-rhs #count-add.sold-out {
  margin-bottom: 0px;
  padding: 21px 0px 0px;
}
#detailed-inner #product-area #product-rhs #count-add.sold-out .count-inp-wrap {
  background-color: #cccccc;
  border: 1px solid rgba(107, 108, 119, 0.15);
}
#detailed-inner #product-area #product-rhs #count-add.sold-out .count-inp-wrap .count-input input {
  color: #ffffff !important;
  font-weight: 600;
}
#detailed-inner #product-area #product-rhs #count-add.sold-out .count-inp-wrap .count-input .incr-btn {
  color: #ffffff;
}
@media only screen and (min-width: 1200px) {
  #detailed-inner #product-area #product-rhs #count-add.sold-out .count-inp-wrap .count-input .incr-btn:hover {
    color: #ffffff;
  }
}
#detailed-inner #product-area #product-rhs #count-add.sold-out button[type=submit] {
  -webkit-appearance: none;
  transition: 0.25s ease-in-out;
  background-color: #cccccc;
}
#detailed-inner #product-area #product-rhs #count-add #notify-available {
  display: block;
  margin: 10px auto;
}
#detailed-inner #product-area #product-rhs #count-add #notify-available a .item-text {
  white-space: normal;
  text-align: left;
  max-width: 210px;
  font: normal normal 400 12px/20px "Poppins", sans-serif;
  letter-spacing: 0.48px;
  color: #000;
}
html[dir=rtl] #detailed-inner #product-area #product-rhs #count-add #notify-available a .item-text {
  text-align: right;
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
}
#detailed-inner #product-area #product-rhs #count-add #notify-available a .item-icon svg {
  vertical-align: middle;
  fill: #000;
  stroke: none;
  width: 18px;
  height: 18px;
}
#detailed-inner #product-area #product-rhs #product-notes p {
  font: italic normal 200 13px/27px "Poppins", sans-serif;
  letter-spacing: -0.13px;
  color: #1d1d1d;
  opacity: 1;
  display: block;
  width: 100%;
  padding: 5px 3px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #detailed-inner #product-area #product-rhs #product-notes p {
    font-size: 12px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  #detailed-inner #product-area #product-rhs #product-notes p {
    font-size: 11px;
    line-height: 23px;
  }
}

#faq-page {
  margin: 0px auto 50px;
}
#faq-page .page-title h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
  text-align: center;
}
html[dir=rtl] #faq-page .page-title h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #faq-page .page-title h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #faq-page .page-title h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #faq-page .page-title h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #faq-page .page-title h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
#faq-page .container .faq-container {
  background: rgba(244, 244, 244, 0.6);
  padding: 25px 15px;
  margin-top: 20px;
}
#faq-page .container .faq-container #faq-accordion {
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#faq-page .container .faq-container #faq-accordion .single-faq {
  width: calc(33.33% - 25px);
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #faq-page .container .faq-container #faq-accordion .single-faq {
    width: calc(49.55% - 25px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #faq-page .container .faq-container #faq-accordion .single-faq {
    width: 100%;
  }
}
@media only screen and (max-width: 767.98px) {
  #faq-page .container .faq-container #faq-accordion .single-faq {
    width: 100%;
  }
}
#faq-page .container .faq-container #faq-accordion .single-faq h3 {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  text-align: left;
  cursor: pointer;
  font: normal normal 600 12px/20px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  display: flex;
  gap: 5px;
  position: relative;
}
#faq-page .container .faq-container #faq-accordion .single-faq h3:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  display: block;
  font-size: inherit;
  color: #000;
  content: "\f067";
  transition: 0.25s ease-in-out;
}
#faq-page .container .faq-container #faq-accordion .single-faq h3.ui-state-active {
  border-color: #235940;
}
#faq-page .container .faq-container #faq-accordion .single-faq h3.ui-state-active:before {
  content: "\f068";
}
#faq-page .container .faq-container #faq-accordion .single-faq .ui-accordion-content {
  border: 0;
  border-bottom: 1px solid #eeeeee;
  padding: 0;
  background: none;
}
#faq-page .container .faq-container #faq-accordion .single-faq .ui-accordion-content ul li,
#faq-page .container .faq-container #faq-accordion .single-faq .ui-accordion-content p {
  font: normal normal 400 12px/24px "Poppins", sans-serif;
  opacity: 1;
  letter-spacing: 0.02em;
  display: flex;
  gap: 5px;
  position: relative;
  text-align: left;
  color: #999999;
  margin: 15px 0;
  padding-left: 18px;
}
#faq-page .container .faq-container #faq-accordion .single-faq .ui-accordion-content ul li a,
#faq-page .container .faq-container #faq-accordion .single-faq .ui-accordion-content p a {
  color: #000;
}
@media only screen and (min-width: 1200px) {
  #faq-page .container .faq-container #faq-accordion .single-faq .ui-accordion-content ul li a:hover,
  #faq-page .container .faq-container #faq-accordion .single-faq .ui-accordion-content p a:hover {
    color: #000000;
  }
}

#wishlist {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #wishlist {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  #wishlist {
    padding-bottom: 60px;
  }
}
#wishlist h2 {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 35px;
  letter-spacing: 0.01em;
  color: #343538;
  margin-top: 45px;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #wishlist h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  #wishlist h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
#wishlist table {
  width: 100%;
}
@media (max-width: 991px) {
  #wishlist table tr {
    position: relative;
  }
}
#wishlist table th {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 23px;
  text-align: left;
  color: #626262;
  text-transform: uppercase;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e5e5;
  padding-left: 15px;
  padding-right: 15px;
}
#wishlist table th.product-name {
  padding-left: 20px;
}
#wishlist table th.product-price, #wishlist table th.stock-status, #wishlist table th.total {
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table th.stock-status {
    width: 180px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table th.stock-status {
    width: 180px !important;
  }
}
#wishlist table th.product-price, #wishlist table th.stock-status {
  width: 220px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table th.product-price, #wishlist table th.stock-status {
    width: auto;
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table th.product-price, #wishlist table th.stock-status {
    width: auto;
    font-size: 16px;
    letter-spacing: 0;
  }
}
#wishlist table th.total {
  width: 280px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table th.total {
    width: auto;
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table th.total {
    width: auto;
    font-size: 16px;
    letter-spacing: 0;
  }
}
#wishlist table th.remove {
  width: 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table th.remove {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table th.remove {
    font-size: 16px;
    letter-spacing: 0;
  }
}
#wishlist table td {
  padding-top: 28px;
  padding-bottom: 28px;
  vertical-align: middle;
  border-bottom: 1px solid #e5e5e5;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
#wishlist table td .product-image {
  padding-left: 8px;
  width: 150px;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table td .product-image {
    width: 150px;
    width: auto !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #wishlist table td .product-image {
    width: 250px;
    width: auto !important;
  }
}
@media only screen and (min-width: 1200px) {
  #wishlist table td .product-image a:hover img {
    -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
    filter: grayscale(100%); /* FF 35+ */
  }
}
#wishlist table td .product-image img {
  transition: filter 0.5s ease-in-out;
  -webkit-filter: grayscale(0%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(0%); /* FF 35+ */
  width: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #wishlist table td .product-image img {
    width: 170px;
  }
}
@media only screen and (max-width: 767.98px) {
  #wishlist table td .product-image img {
    width: 170px;
  }
}
#wishlist table td .product-code {
  display: none;
}
#wishlist table td .product-name {
  display: inline-block;
  vertical-align: middle;
  width: 315px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table td .product-name {
    width: 250px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table td .product-name {
    width: 200px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 991px) {
  #wishlist table td .product-name {
    display: block !important;
    padding-left: 0;
    width: auto !important;
    margin-top: 15px;
  }
}
#wishlist table td .product-name a {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 21px;
  text-align: left;
  color: #626262;
  margin-top: 7px;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table td .product-name a {
    font-size: 19px;
    line-height: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table td .product-name a {
    font-size: 16px;
    line-height: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #wishlist table td .product-name a {
    font-size: 15px;
    line-height: 25px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #wishlist table td .product-name a {
    font-size: 14px;
    line-height: 27px;
    text-align: center;
  }
}
@media only screen and (min-width: 1200px) {
  #wishlist table td .product-name a:hover {
    color: #000000;
  }
}
#wishlist table td.product-price {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #4c4c4c;
  color: #999999;
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table td.product-price {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table td.product-price {
    font-size: 15px;
  }
}
#wishlist table td.product-price s,
#wishlist table td.product-price b {
  display: block;
  text-align: center;
}
#wishlist table td.stock-status {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #999999;
  text-transform: uppercase;
  color: #000000;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table td.stock-status {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table td.stock-status {
    font-size: 17px;
  }
}
#wishlist table td.stock-status.out {
  color: #bf3334;
}
#wishlist table td.add-to-cart {
  text-align: center;
}
@media (max-width: 991px) {
  #wishlist table td.add-to-cart {
    padding-bottom: 22px !important;
  }
}
#wishlist table td.add-to-cart button {
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.06em;
  transition: 0.25s ease-in-out;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  background-color: #4e4e4e;
  color: #fff;
  text-transform: uppercase;
  border: none;
  width: 210px;
  transition: 0.25s ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table td.add-to-cart button {
    width: 185px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table td.add-to-cart button {
    width: 160px;
  }
}
@media only screen and (max-width: 767.98px) {
  #wishlist table td.add-to-cart button {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  #wishlist table td.add-to-cart button:hover {
    background-color: #000000;
  }
}
#wishlist table td.add-to-cart button:disabled, #wishlist table td.add-to-cart button[disabled] {
  background-color: #dedcdc !important;
  border: 1px solid #bf3334;
  color: #bf3334;
  background-color: transparent !important;
}
#wishlist table td.remove {
  width: 135px;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #wishlist table td.remove {
    width: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #wishlist table td.remove {
    width: 100px;
  }
}
@media (max-width: 991px) {
  #wishlist table td.remove {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    border-bottom: 0;
  }
}
#wishlist table td.remove button {
  background-color: transparent;
  border: 0;
  padding: 0;
  margin-right: 8px;
  transition: 0.25s ease-in-out;
}
#wishlist table td.remove button i {
  font-size: 28px;
  color: #a7a7a7;
}
@media (max-width: 991px) {
  #wishlist table td.remove button i {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  #wishlist table td.remove button {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1200px) {
  #wishlist table td.remove button:hover i {
    color: #000000;
  }
}
@media only screen and (max-width: 991px) {
  #wishlist table {
    /* Hide table headers (but not display: none;, for accessibility) */
  }
  #wishlist table td,
  #wishlist table tr {
    display: block;
  }
  #wishlist table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: auto !important;
  }
  #wishlist table tr + tr {
    margin-top: 1.5em;
  }
  #wishlist table td {
    /* make like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    /*padding-left: 50%;*/
    background-color: #fafafa;
    text-align: center;
    font-size: 16px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    width: auto !important;
  }
  #wishlist table td:before {
    content: attr(data-label);
    display: inline-block;
    line-height: 1.5;
    margin-left: -100%;
    width: 100%;
    white-space: nowrap;
  }
}

#news-listing {
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-listing {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing {
    font-size: 14px;
  }
}
#news-listing header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
  padding-top: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-listing header {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing header {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing header {
    padding-top: 40px;
    padding-bottom: 40px;
    display: block;
  }
}
#news-listing header .total-results {
  width: 25%;
  align-self: center;
}
@media only screen and (max-width: 767.98px) {
  #news-listing header .total-results {
    text-align: center;
    width: 100%;
  }
}
#news-listing header .total-results span {
  font-family: "Poppins", sans-serif;
  display: block;
  color: #999999;
  font-size: 1.063em;
}
#news-listing header .title {
  width: 50%;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  #news-listing header .title {
    width: 100%;
  }
}
#news-listing header .title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 54px;
  letter-spacing: -0.04em;
  line-height: 1.42;
  color: #343538;
  font-size: 3.375em;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-listing header .title h2 {
    font-size: 3em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing header .title h2 {
    font-size: 3em;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing header .title h2 {
    font-size: 3em;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
#news-listing header .filter {
  text-align: right;
  width: 25%;
  align-self: center;
}
@media only screen and (max-width: 767.98px) {
  #news-listing header .filter {
    text-align: center;
    width: 100%;
  }
}
#news-listing .news-block {
  margin-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-listing .news-block {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing .news-block {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing .news-block {
    margin-bottom: 60px;
  }
}
#news-listing .news-block .image-holder img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}
#news-listing .news-block .news-content {
  padding-left: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing .news-block .news-content {
    padding-left: 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing .news-block .news-content {
    padding-left: 0px;
    padding-top: 30px;
  }
}
#news-listing .news-block .news-content h3 {
  color: #4c4c4c;
  margin-bottom: 13px;
  font-size: 2.938em;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-listing .news-block .news-content h3 {
    font-size: 2.5em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing .news-block .news-content h3 {
    font-size: 2.5em;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing .news-block .news-content h3 {
    font-size: 2.3em;
  }
}
#news-listing .news-block .news-content .metas {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-listing .news-block .news-content .metas {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing .news-block .news-content .metas {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing .news-block .news-content .metas {
    margin-bottom: 20px;
  }
}
#news-listing .news-block .news-content .metas span {
  color: #999999;
  font-size: 1.25em;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}
#news-listing .news-block .news-content p {
  font-size: 1.125em;
  color: #999999;
  font-family: "Poppins", sans-serif;
  line-height: 1.77;
}
#news-listing .news-block .news-content a.global-btn {
  margin-top: 40px;
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
}
html[dir=rtl] #news-listing .news-block .news-content a.global-btn {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-listing .news-block .news-content a.global-btn {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing .news-block .news-content a.global-btn {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing .news-block .news-content a.global-btn {
    font-size: 12px;
  }
}
#news-listing .news-block .news-content a.global-btn:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-listing .news-block .news-content a.global-btn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-listing .news-block .news-content a.global-btn {
    margin-top: 30px;
  }
}

#news-single {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 130px;
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-single {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-single {
    padding-top: 40px;
    padding-bottom: 70px;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-single {
    padding-top: 40px;
    padding-bottom: 60px;
    font-size: 15px;
  }
}
#news-single header {
  padding-bottom: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-single header {
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-single header {
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-single header {
    padding-bottom: 30px;
  }
}
#news-single header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.938em;
  letter-spacing: 0.01em;
  line-height: 1.1em;
  color: #343538;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-single header h2 {
    font-size: 2.5em;
  }
}
#news-single .metas {
  display: flex;
  text-align: center;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  #news-single .metas {
    display: block;
  }
}
#news-single .metas .date {
  margin-left: 30px;
  margin-right: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1.375em;
  letter-spacing: 0.01em;
  line-height: 1.3em;
  color: #999999;
  align-self: center;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  #news-single .metas .date {
    width: 100%;
    text-align: center;
  }
}
#news-single .metas .date:after {
  display: block;
  width: 10px;
  height: 10px;
  background: #d2d2d2;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -35px;
}
@media only screen and (max-width: 767.98px) {
  #news-single .metas .date:after {
    display: none;
  }
}
#news-single .metas .categories {
  margin-left: 30px;
  margin-right: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 1.375em;
  letter-spacing: 0.01em;
  line-height: 1.3em;
  align-self: center;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  #news-single .metas .categories {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
#news-single .metas .categories a {
  color: #999999;
}
#news-single .metas .categories a:hover {
  color: #000000;
  text-decoration: none;
}
#news-single .metas .categories:after {
  display: block;
  width: 10px;
  height: 10px;
  background: #d2d2d2;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -35px;
}
@media only screen and (max-width: 767.98px) {
  #news-single .metas .categories:after {
    display: none;
  }
}
#news-single .metas .socials {
  margin-left: 30px;
  margin-right: 30px;
  font-size: 30px;
  align-self: center;
}
#news-single .metas .socials li a {
  margin-left: 5px;
  margin-right: 5px;
}
#news-single .news-content p {
  padding-left: 100px;
  padding-right: 100px;
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
}
@media only screen and (max-width: 767.98px) {
  #news-single .news-content p {
    font-size: 12px !important;
  }
}
#news-single .news-content p a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#news-single .news-content p a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #news-single .news-content p a:after {
  left: unset;
  right: 0;
}
#news-single .news-content p a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #news-single .news-content p {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-single .news-content p {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-single .news-content p {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-single .news-content p {
    padding-left: 5px;
    padding-right: 5px;
  }
}
#news-single .news-content .gallery {
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-single .news-content .gallery {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-single .news-content .gallery {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-single .news-content .gallery {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-single .news-content .gallery .image-holder {
    margin-bottom: 30px;
  }
}
#news-single .news-content .gallery .image-holder img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-single .news-content .gallery .image-holder img {
    height: 400px;
    object-fit: cover;
  }
}
#news-single #news-slider {
  margin-top: 100px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #news-single #news-slider {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-single #news-slider {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-single #news-slider {
    margin-top: 40px;
  }
}
#news-single #news-slider img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #news-single #news-slider img {
    height: 400px;
    object-fit: cover;
  }
}
@media only screen and (max-width: 767.98px) {
  #news-single #news-slider img {
    height: 400px;
    object-fit: cover;
  }
}

#contact-page {
  max-width: 100%;
  width: 700px;
  margin: 25px auto;
}
#contact-page .container {
  max-width: 100%;
  width: 100%;
}
#contact-page .container .page-title h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
  text-align: center;
}
html[dir=rtl] #contact-page .container .page-title h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #contact-page .container .page-title h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #contact-page .container .page-title h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #contact-page .container .page-title h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #contact-page .container .page-title h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
html[dir=rtl] #contact-page .container .page-title h1 {
  text-align: center;
}
#contact-page .container .contact-info {
  margin: 70px auto;
}
#contact-page .container .contact-info .contact-content h4,
#contact-page .container .contact-info .contact-content h3 {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
  margin: 35px 0 20px;
}
html[dir=rtl] #contact-page .container .contact-info .contact-content h4,
html[dir=rtl] #contact-page .container .contact-info .contact-content h3 {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #contact-page .container .contact-info .contact-content h4,
  #contact-page .container .contact-info .contact-content h3 {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #contact-page .container .contact-info .contact-content h4,
  #contact-page .container .contact-info .contact-content h3 {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #contact-page .container .contact-info .contact-content h4,
  #contact-page .container .contact-info .contact-content h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #contact-page .container .contact-info .contact-content h4,
  #contact-page .container .contact-info .contact-content h3 {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
#contact-page .container .contact-info .contact-content p {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px !important;
  letter-spacing: 0.02em;
  line-height: 25px !important;
  text-align: left !important;
  color: #4c4c4c !important;
}
html[dir=rtl] #contact-page .container .contact-info .contact-content p {
  text-align: right !important;
  letter-spacing: 0 !important;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #contact-page .container .contact-info .contact-content p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #contact-page .container .contact-info .contact-content p {
    font-size: 16px !important;
    line-height: 25px !important;
  }
}
@media only screen and (max-width: 767.98px) {
  #contact-page .container .contact-info .contact-content p {
    font-size: 15px !important;
    line-height: 25px !important;
    margin-bottom: 10px;
  }
}
#contact-page .container .contact-info .contact-content p:last-child {
  margin-bottom: 0;
}
#contact-page .container .contact-info .contact-content p a {
  color: inherit;
}
html[dir=rtl] #contact-page .container .contact-info .contact-content p a {
  direction: ltr;
  display: inline-block;
}
@media only screen and (min-width: 1200px) {
  #contact-page .container .contact-info .contact-content p a:hover {
    color: #235940;
    text-decoration: none;
  }
}
#contact-page .container .contact-form {
  margin-bottom: 75px;
}
@media only screen and (max-width: 767.98px) {
  #contact-page .container .contact-form {
    margin-top: 40px;
  }
}
#contact-page .container .contact-form .contant-title {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
  text-align: center;
  margin: 5px 0 50px;
}
html[dir=rtl] #contact-page .container .contact-form .contant-title {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #contact-page .container .contact-form .contant-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #contact-page .container .contact-form .contant-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #contact-page .container .contact-form .contant-title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #contact-page .container .contact-form .contant-title {
    font-size: 16px;
    line-height: 22px;
  }
}
html[dir=rtl] #contact-page .container .contact-form .contant-title {
  text-align: center;
}
#contact-page .container .contact-form label {
  font: normal normal 400 13px/18px "Poppins", sans-serif;
  color: #000;
  opacity: 1;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
html[dir=rtl] #contact-page .container .contact-form label {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#contact-page .container .contact-form input[type=text],
#contact-page .container .contact-form input[type=tel],
#contact-page .container .contact-form input[type=email],
#contact-page .container .contact-form input[type=password] {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  padding: 5px 15px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  margin-bottom: 20px;
  background-color: transparent !important;
  -moz-appearance: textfield;
}
#contact-page .container .contact-form input[type=text][type=tel],
#contact-page .container .contact-form input[type=tel][type=tel],
#contact-page .container .contact-form input[type=email][type=tel],
#contact-page .container .contact-form input[type=password][type=tel] {
  padding-left: 52px !important;
}
html[dir=rtl] #contact-page .container .contact-form input[type=text][type=tel],
html[dir=rtl] #contact-page .container .contact-form input[type=tel][type=tel],
html[dir=rtl] #contact-page .container .contact-form input[type=email][type=tel],
html[dir=rtl] #contact-page .container .contact-form input[type=password][type=tel] {
  padding: 5px 52px 5px 15px !important;
  text-align: right;
}
#contact-page .container .contact-form input[type=text]::-webkit-outer-spin-button, #contact-page .container .contact-form input[type=text]::-webkit-inner-spin-button,
#contact-page .container .contact-form input[type=tel]::-webkit-outer-spin-button,
#contact-page .container .contact-form input[type=tel]::-webkit-inner-spin-button,
#contact-page .container .contact-form input[type=email]::-webkit-outer-spin-button,
#contact-page .container .contact-form input[type=email]::-webkit-inner-spin-button,
#contact-page .container .contact-form input[type=password]::-webkit-outer-spin-button,
#contact-page .container .contact-form input[type=password]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html[dir=rtl] #contact-page .container .contact-form input[type=text],
html[dir=rtl] #contact-page .container .contact-form input[type=tel],
html[dir=rtl] #contact-page .container .contact-form input[type=email],
html[dir=rtl] #contact-page .container .contact-form input[type=password] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
  text-align: right;
}
#contact-page .container .contact-form input[type=text].placeholder,
#contact-page .container .contact-form input[type=tel].placeholder,
#contact-page .container .contact-form input[type=email].placeholder,
#contact-page .container .contact-form input[type=password].placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form input[type=text]:-moz-placeholder,
#contact-page .container .contact-form input[type=tel]:-moz-placeholder,
#contact-page .container .contact-form input[type=email]:-moz-placeholder,
#contact-page .container .contact-form input[type=password]:-moz-placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form input[type=text]::-moz-placeholder,
#contact-page .container .contact-form input[type=tel]::-moz-placeholder,
#contact-page .container .contact-form input[type=email]::-moz-placeholder,
#contact-page .container .contact-form input[type=password]::-moz-placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form input[type=text]:-ms-input-placeholder,
#contact-page .container .contact-form input[type=tel]:-ms-input-placeholder,
#contact-page .container .contact-form input[type=email]:-ms-input-placeholder,
#contact-page .container .contact-form input[type=password]:-ms-input-placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form input[type=text]::-webkit-input-placeholder,
#contact-page .container .contact-form input[type=tel]::-webkit-input-placeholder,
#contact-page .container .contact-form input[type=email]::-webkit-input-placeholder,
#contact-page .container .contact-form input[type=password]::-webkit-input-placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form .text-danger {
  position: relative;
  transform: translateY(-15px);
}
#contact-page .container .contact-form textarea {
  font: normal normal 400 13px/35px "Poppins", sans-serif;
  -webkit-appearance: none;
  width: 100%;
  display: block;
  height: 45px;
  letter-spacing: 0.09em;
  text-align: left;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ebebeb;
  background: #fff;
  padding: 5px 15px;
  height: 200px;
  margin-bottom: 20px;
}
html[dir=rtl] #contact-page .container .contact-form textarea {
  letter-spacing: 0;
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#contact-page .container .contact-form textarea.placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form textarea:-moz-placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form textarea::-moz-placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form textarea:-ms-input-placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form textarea::-webkit-input-placeholder {
  color: #cccccc;
}
#contact-page .container .contact-form button[type=submit] {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
  margin: 40px auto 20px;
  display: block;
}
html[dir=rtl] #contact-page .container .contact-form button[type=submit] {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #contact-page .container .contact-form button[type=submit] {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #contact-page .container .contact-form button[type=submit] {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #contact-page .container .contact-form button[type=submit] {
    font-size: 12px;
  }
}
#contact-page .container .contact-form button[type=submit]:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}

#message-with-icon {
  margin: 30px auto 80px;
}
#message-with-icon .empty-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
#message-with-icon .empty-wrapper .col-left .svg-wrapper {
  border-right: 1px solid rgba(107, 108, 119, 0.15);
  padding-right: 50px;
}
html[dir=rtl] #message-with-icon .empty-wrapper .col-left .svg-wrapper {
  border-left: 1px solid rgba(107, 108, 119, 0.15);
  padding-left: 50px;
  border-right: 0px solid rgba(107, 108, 119, 0.15);
  padding-right: 0px;
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper .col-left .svg-wrapper {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(107, 108, 119, 0.15);
    padding-bottom: 20px;
  }
  html[dir=rtl] #message-with-icon .empty-wrapper .col-left .svg-wrapper {
    padding-left: 0;
    border-left: 0;
  }
}
#message-with-icon .empty-wrapper .col-left .svg-wrapper svg {
  vertical-align: middle;
  fill: #000;
  stroke: none;
  width: 190px;
  height: 190px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #message-with-icon .empty-wrapper .col-left .svg-wrapper svg {
    width: 190px;
    height: 190px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #message-with-icon .empty-wrapper .col-left .svg-wrapper svg {
    width: 170px;
    height: 170px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #message-with-icon .empty-wrapper .col-left .svg-wrapper svg {
    width: 170px;
    height: 170px;
  }
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper .col-left .svg-wrapper svg {
    width: 130px;
    height: 130px;
  }
}
#message-with-icon .empty-wrapper .col-left .svg-wrapper svg path {
  fill: #235940;
}
#message-with-icon .empty-wrapper .col-right .content .title {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
}
html[dir=rtl] #message-with-icon .empty-wrapper .col-right .content .title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #message-with-icon .empty-wrapper .col-right .content .title {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #message-with-icon .empty-wrapper .col-right .content .title {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #message-with-icon .empty-wrapper .col-right .content .title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper .col-right .content .title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper .col-right .content .title {
    text-align: center;
  }
}
#message-with-icon .empty-wrapper .col-right .content .description {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin: 0px 0 25px;
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper .col-right .content .description {
    font-size: 12px !important;
  }
}
#message-with-icon .empty-wrapper .col-right .content .description a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#message-with-icon .empty-wrapper .col-right .content .description a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #message-with-icon .empty-wrapper .col-right .content .description a:after {
  left: unset;
  right: 0;
}
#message-with-icon .empty-wrapper .col-right .content .description a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #message-with-icon .empty-wrapper .col-right .content .description {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper .col-right .content .description {
    text-align: center;
  }
}
#message-with-icon .empty-wrapper .col-right .content .page-btn {
  transition: 0.25s ease-in-out;
  width: 257px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  background-color: #235940;
  font: normal normal 400 16px/41px "Poppins", sans-serif;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.6px;
  border: 1px solid #235940;
}
html[dir=rtl] #message-with-icon .empty-wrapper .col-right .content .page-btn {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #message-with-icon .empty-wrapper .col-right .content .page-btn {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #message-with-icon .empty-wrapper .col-right .content .page-btn {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper .col-right .content .page-btn {
    font-size: 12px;
  }
}
#message-with-icon .empty-wrapper .col-right .content .page-btn:hover {
  background: #fff;
  color: #235940;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  #message-with-icon .empty-wrapper .col-right .content .page-btn {
    margin: auto;
    display: block;
  }
}

#common-maintenance .maintenance-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
#common-maintenance .maintenance-wrapper .col-left a {
  display: block;
  border-right: 1px solid rgba(107, 108, 119, 0.15);
  padding-right: 50px;
}
html[dir=rtl] #common-maintenance .maintenance-wrapper .col-left a {
  border-left: 1px solid rgba(107, 108, 119, 0.15);
  padding-left: 50px;
  border-right: 0px solid rgba(107, 108, 119, 0.15);
  padding-right: 0px;
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper .col-left a {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(107, 108, 119, 0.15);
    padding-bottom: 20px;
  }
  html[dir=rtl] #common-maintenance .maintenance-wrapper .col-left a {
    padding-left: 0;
    border-left: 0;
  }
}
#common-maintenance .maintenance-wrapper .col-left a img {
  width: 150px;
  transition: all ease-in-out 0.8s;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #common-maintenance .maintenance-wrapper .col-left a img {
    width: 100px;
  }
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper .col-left a img {
    width: 100px;
    margin: 15px 0 0;
  }
}
#common-maintenance .maintenance-wrapper .col-right .content .title {
  font: normal normal 400 24px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  text-align: left;
  opacity: 1;
  margin: 0px 0 25px;
}
html[dir=rtl] #common-maintenance .maintenance-wrapper .col-right .content .title {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #common-maintenance .maintenance-wrapper .col-right .content .title {
    font-size: 28px;
    line-height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #common-maintenance .maintenance-wrapper .col-right .content .title {
    font-size: 23px;
    line-height: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #common-maintenance .maintenance-wrapper .col-right .content .title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper .col-right .content .title {
    font-size: 19px;
    line-height: 28px;
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper .col-right .content .title {
    text-align: center;
  }
}
#common-maintenance .maintenance-wrapper .col-right .content .description {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  margin: 15px 0;
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper .col-right .content .description {
    font-size: 12px !important;
  }
}
#common-maintenance .maintenance-wrapper .col-right .content .description a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#common-maintenance .maintenance-wrapper .col-right .content .description a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #common-maintenance .maintenance-wrapper .col-right .content .description a:after {
  left: unset;
  right: 0;
}
#common-maintenance .maintenance-wrapper .col-right .content .description a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #common-maintenance .maintenance-wrapper .col-right .content .description {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper .col-right .content .description {
    text-align: center;
  }
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper .col-right .content .main-flex {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 15px auto 30px;
  }
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex svg {
  width: 21px !important;
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5 {
  text-align: left;
  font: normal normal 400 14px/21px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  position: relative;
  transition: all ease-in-out 0.5s;
}
@media only screen and (max-width: 767.98px) {
  #common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5 {
    font-size: 12px !important;
  }
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5 a {
  color: #235940;
  font-family: inherit;
  line-height: inherit;
  font-size: inherit;
  font-weight: 500;
  transition: all ease-in-out 0.5s;
  position: relative;
  transition: all ease-in-out 0.5s;
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5 a:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5 a:after {
  left: unset;
  right: 0;
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5 a:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5 {
  font-family: "Cairo", sans-serif;
  text-align: right;
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: #235940;
  left: 0;
  bottom: -10px;
  opacity: 0;
  transition: opacity 0.3s;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5:after {
  left: unset;
  right: 0;
}
#common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5:hover:after {
  opacity: 0.6;
  transition: all ease-in-out 0.5s;
}
html[dir=rtl] #common-maintenance .maintenance-wrapper .col-right .content .main-flex .flex-area h5 {
  letter-spacing: 0px;
  font-family: "Cairo", sans-serif;
  direction: ltr;
}

#location-wrapper {
  padding-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #location-wrapper {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #location-wrapper {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767.98px) {
  #location-wrapper {
    font-size: 15px;
  }
}
#location-wrapper .location-results {
  width: 50%;
  float: left;
  background: #fafafa;
  padding: 45px;
  padding-top: 50px;
  padding-bottom: 50px;
  height: 950px;
}
@media (min-width: 768px) {
  #location-wrapper .location-results {
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #location-wrapper .location-results {
    padding: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #location-wrapper .location-results {
    padding: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  #location-wrapper .location-results {
    padding: 20px;
    width: 100%;
    height: auto;
  }
}
#location-wrapper .location-results header {
  padding-bottom: 25px;
}
@media only screen and (max-width: 767.98px) {
  #location-wrapper .location-results header {
    padding-bottom: 20px;
  }
}
#location-wrapper .location-results header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.875em;
  line-height: 1.3;
  text-align: left;
  color: #1a1a1a;
}
#location-wrapper .location-results .filter-block {
  padding-bottom: 23px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #location-wrapper .location-results .filter-block {
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #location-wrapper .location-results .filter-block {
    padding-bottom: 15px;
  }
}
#location-wrapper .location-results .filter-block label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: #7e7e7e;
  margin-bottom: 7px;
}
#location-wrapper .location-results .filter-block button {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 0px;
  height: 51px;
}
#location-wrapper .location-results .filter-block .btn-group {
  width: 100%;
  border-radius: 0px;
}
#location-wrapper .location-results .location-block {
  background: #fff;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-right: 50px;
  padding-left: 140px;
  margin-bottom: 9px;
  position: relative;
  border: 1px solid transparent;
  transition: 0.25s ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #location-wrapper .location-results .location-block {
    padding-left: 100px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 767.98px) {
  #location-wrapper .location-results .location-block {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-top: 40px;
  }
}
#location-wrapper .location-results .location-block:hover {
  border-color: #000000;
}
#location-wrapper .location-results .location-block img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #location-wrapper .location-results .location-block img {
    left: 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  #location-wrapper .location-results .location-block img {
    position: relative;
    margin: 0px auto;
    margin-bottom: 20px;
    left: auto;
    display: block;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
}
#location-wrapper .location-results .location-block h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.5;
  color: #343538;
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #location-wrapper .location-results .location-block h5 {
    font-size: 0.975em;
  }
}
#location-wrapper .location-results .location-block p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #location-wrapper .location-results .location-block p {
    font-size: 0.875em;
  }
}
#location-wrapper .location-results .location-block p a {
  color: #343538;
  font-weight: 600;
}
#location-wrapper .location-results .location-block p a:hover {
  color: #000000;
}
#location-wrapper .location-results .location-block h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1em;
  line-height: 2;
  color: #343538;
  margin-top: 12px;
}
#location-wrapper .location-results .location-block address {
  font-style: normal;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 1em;
  line-height: 1.5;
  color: #343538;
}
#location-wrapper .location-results .location-block .view-btn {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: underline;
  font-size: 0.875;
  letter-spacing: 0.06em;
  line-height: 2;
  color: #343538;
  margin-top: 13px;
}
#location-wrapper .location-results .location-block .view-btn:hover {
  color: #000000;
  text-decoration: none;
}
#location-wrapper .location-map {
  float: right;
  width: 50%;
}
@media only screen and (max-width: 767.98px) {
  #location-wrapper .location-map {
    width: 100%;
    float: none;
  }
}
#location-wrapper .location-map iframe {
  width: 100%;
  height: 950px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #location-wrapper .location-map iframe {
    height: 900px;
  }
}
@media only screen and (max-width: 767.98px) {
  #location-wrapper .location-map iframe {
    height: 400px;
  }
}

.location-intro h1 {
  margin-bottom: 0px !important;
}

/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12-Feb-2019, 15:23:17
    Author     : Admin
*/
.site-section li {
  line-height: 35px;
  list-style-type: circle;
}

/*.out-of-stock{background:#ff0000 !important;}*/
.popup-youtube .fa-play-circle {
  font-size: 70px;
  padding: 21px;
  border: 1px solid #e3e3e3;
}

.news-content img {
  width: 48%;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
  margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

.list-group + .panel-footer {
  border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
  padding-right: 15px;
  padding-left: 15px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
  border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}

.panel-group .panel + .panel {
  margin-top: 5px;
}

.panel-group .panel-heading {
  border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
  border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
  border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}

.panel-default {
  border-color: #ddd;
}

.panel-default > .panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}

.panel-primary {
  border-color: #337ab7;
}

.panel-primary > .panel-heading {
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #337ab7;
}

.panel-primary > .panel-heading .badge {
  color: #337ab7;
  background-color: #fff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #337ab7;
}

.panel-success {
  border-color: #d6e9c6;
}

.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}

.panel-info {
  border-color: #bce8f1;
}

.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}

.panel-warning {
  border-color: #faebcc;
}

.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}

.panel-danger {
  border-color: #ebccd1;
}

.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 7px;
    margin-bottom: 0;
    text-align: right;
  }
}
#mini-cart .close-mc-btn {
  position: absolute;
  right: 20px;
  top: 40px;
  display: block;
  color: #c7c7c7;
  font-size: 42px;
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  border: 0;
  background: none;
  font-weight: 100;
  opacity: 1;
  z-index: 1;
}

#mini-cart .close-mc-btn:hover,
#mini-cart .close-mc-btn:focus {
  color: #a8852f;
  background: none;
  border: 0;
  outline: none;
}

@media only screen and (max-width: 991px) {
  #mini-cart .close-mc-btn {
    top: 0px !important;
    right: 15px !important;
  }
  #best-sellers #bs-slider .bsbox button.add-to-cart {
    z-index: 99;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  header#hero__bannerx #hero-sliderx img,
  header#hero__bannerx {
    height: 370px !important;
  }
}
@media (min-width: 1551px) {
  #fixed-header.sticky .hd-Banner_Nav ul li {
    margin-right: 30px !important;
  }
  #fixed-header.sticky .hd-Banner_Nav ul li a {
    font-size: 15px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1550px) {
  #fixed-header.sticky .hd-Banner_Nav ul li {
    margin-right: 20px !important;
  }
  #fixed-header.sticky .hd-Banner_Nav ul li a {
    font-size: 13px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #fixed-header.sticky .hd-Banner_Nav ul li a {
    font-size: 11px !important;
  }
}
@supports (-webkit-overflow-scrolling: touch) {
  #cart-inner table.cart td.quantity .btn {
    line-height: 0px !important;
    padding-bottom: 7px !important;
  }
  #cart-inner table.cart td.quantity input[type=text] {
    bottom: 0 !important;
    height: auto !important;
  }
  #cart-inner table.cart td.quantity span {
    height: auto;
  }
}
#detailed-inner #product-area #product-rhs .product-decription p,
#detailed-inner #more-information .tab-content p {
  margin-bottom: 0 !important;
}

#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap span {
  display: none !important;
}

/*#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap {
   max-width: 171px!important;
   padding:0 15px;
   }*/
#detailed-inner #product-area #product-rhs #count-add .count-inp-wrap .count-input {
  text-align: center;
  width: 100%;
}

.review-stars .stars {
  color: #bf8f54 !important;
  position: relative;
}

.review-stars small {
  font-size: 22px;
  letter-spacing: 0px;
  color: #747474 !important;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding-left: 10px;
}

#detailed-inner #product-area #product-rhs .product-price {
  font-size: 30px;
  letter-spacing: 0px;
  color: #24190b;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-top: 30px;
}

#detailed-inner #more-information .tab-content table tr td,
#detailed-inner #more-information .tab-content table {
  border: 0 !important;
}

#detailed-inner #more-information .tab-content table tr td {
  padding: 0 30px 10px 0 !important;
}

#detailed-inner #more-information .tab-content table tr td:first-child {
  padding-right: 30px !important;
}

.review-stars .stars:before {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 1.39em;
  letter-spacing: 8.8px;
  top: -3px;
}

.review-stars .stars i {
  margin-right: 5px;
  color: #d8d8d8;
  font-size: 1.375em;
}

.review-stars .stars.stars-1:before {
  content: "\f005";
}

.review-stars .stars.stars-2:before {
  content: "\f005\f005";
}

.review-stars .stars.stars-3:before {
  content: "\f005\f005\f005";
}

.review-stars .stars.stars-4:before {
  content: "\f005\f005\f005\f005";
}

.review-stars .stars.stars-5:before {
  content: "\f005\f005\f005\f005\f005";
}

.color-size label {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 125px;
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
}

#detailed-inner #product-area #product-rhs #wishlist-share {
  margin-top: 50px;
}

.color-size .bootstrap-select {
  display: inline-block;
  vertical-align: middle;
  width: 100% !important;
}

.color-size .bootstrap-select .btn {
  width: 100%;
  font-size: 20px;
  letter-spacing: 1px;
  color: #a7a7a7;
  font-family: "Poppins", sans-serif;
  height: 62px;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.color-size .bootstrap-select .dropdown-menu li a {
  font-size: 18px;
  letter-spacing: 1px;
  color: #a7a7a7;
  font-family: "Poppins", sans-serif;
}

.color-size .box {
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#reviews-page {
  width: 100%;
  padding-top: 13px;
  padding-bottom: 30px;
}

@media (max-width: 767px) {
  #detailed-inner #product-area #product-rhs #count-add button[type=submit] {
    margin-left: 0 !important;
  }
}
@media (min-width: 768px) {
  #reviews-page #review {
    padding-right: 45px;
  }
  #count-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
#reviews-page h4 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #1b1919;
  font-family: "Muli Bold";
}

#reviews-page .table {
  margin-bottom: 30px;
  width: 100%;
}

#reviews-page .table-cell {
  vertical-align: top;
  width: auto;
  display: table-cell;
  color: #7e7e7e;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 40px;
  line-height: 1.77;
}

#reviews-page .table-cell .author b {
  font-family: "Muli Semibold" !important;
}

#reviews-page .fa-user {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: #eeeeee;
  font-size: 22px;
  color: #999999;
  display: block;
  margin: 4px 25px 10px 0;
}

#reviews-page .table-cell.right {
  width: 100%;
  line-height: 24px;
}

#reviews-page p.author {
  font-size: 1em;
  color: #050505;
}

#reviews-page p.author .rating {
  color: #bf8f54;
  float: right;
  display: block;
  margin-top: 2px;
}

#reviews-page .rating_stars:before {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

#reviews-page .rating_stars i {
  color: #d8d8d8;
}

#reviews-page .rating_stars i:before {
  color: #d8d8d8 !important;
}

#reviews-page .r1:before {
  content: "\f005";
}

#reviews-page .r2:before {
  content: "\f005\f005";
}

#reviews-page .r3:before {
  content: "\f005\f005\f005";
}

#reviews-page .r4:before {
  content: "\f005\f005\f005\f005";
}

#reviews-page .r5:before {
  content: "\f005\f005\f005\f005\f005";
}

.rating-stars input[type=radio] {
  visibility: hidden;
  -webkit-appearance: none;
}

#form-review label {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  letter-spacing: 0.08em;
  color: #343538;
  line-height: 1.3;
  margin-bottom: 11px;
  font-size: 1.1em;
}

#form-review .control-label {
  display: block;
  text-align: left !important;
}

#form-review input[type=text],
#form-review textarea {
  background-color: #f3f3f3;
  border: 1px solid #f3f3f3;
  width: 100%;
  display: block;
  padding: 0 20px;
  -webkit-appearance: none;
}

#form-review textarea {
  padding: 20px;
}

#form-review input[type=text] {
  -webkit-appearance: none;
  height: 42px;
}

#form-review .form-group {
  margin-bottom: 15px;
}

#form-review #button-review {
  width: 163px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  background-color: #c69a64;
  text-transform: uppercase;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.08em;
  float: right;
  border-radius: 0;
  padding: 0;
}

#listing-area .review-stars .stars:before {
  top: 1px;
}

#listing-area .review-stars small {
  vertical-align: middle;
}

#listing-area .review-stars {
  margin-top: 20px;
}

#listing-area .review-stars i {
  font-size: 1.1em !important;
}

#listing-area .review-stars small {
  font-size: 18px !important;
}

#listing-area .review-stars .stars:before {
  font-size: 1.1em !important;
}

#form-review .rating-stars input[type=radio]:checked + label i:before {
  font-weight: 700;
}

#categories {
  margin: 60px auto;
}
#categories .page-title h1 {
  margin: 25px 0;
  font: normal normal 400 28px/30px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #000;
  opacity: 1;
  text-align: left;
}
html[dir=rtl] #categories .page-title h1 {
  text-align: right;
  font-family: "Cairo", sans-serif;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #categories .page-title h1 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #categories .page-title h1 {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #categories .page-title h1 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767.98px) {
  #categories .page-title h1 {
    font-size: 16px;
    line-height: 22px;
  }
}
#categories .category-card {
  margin: 0px 0 45px 0;
}

#offers-listing {
  margin-top: 40px;
  margin-bottom: 100px;
}
#offers-listing .category-block {
  margin-bottom: 58px;
}
@media (min-width: 768px) {
  #offers-listing .category-block:nth-of-type(even) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#offers-listing .category-block:nth-of-type(even) .more-images-wrap,
#offers-listing .category-block:nth-of-type(even) .spacer {
  display: none;
}
@media (min-width: 768px) {
  #offers-listing .ccin {
    max-width: 550px;
  }
}

#offers-detailed {
  text-align: center;
  margin-bottom: 115px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #offers-detailed {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #offers-detailed {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed {
    margin-bottom: 60px;
  }
}
#offers-detailed .offers-intro {
  margin-top: 65px;
  margin-bottom: 85px;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #offers-detailed .offers-intro {
    margin-top: 55px;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed .offers-intro {
    margin-top: 45px;
    margin-bottom: 50px;
  }
}
#offers-detailed .offers-intro h2 {
  font-family: "Poppins", sans-serif;
  font-size: 38px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #000;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #offers-detailed .offers-intro h2 {
    font-size: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #offers-detailed .offers-intro h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed .offers-intro h2 {
    font-size: 28px;
  }
}
#offers-detailed .offers-intro p {
  max-width: 907px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  letter-spacing: 0.01em;
  line-height: 32px;
  text-align: center;
  color: #000;
}
#offers-detailed .offers-intro p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #offers-detailed .offers-intro p {
    font-size: 21px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #offers-detailed .offers-intro p {
    font-size: 20px;
    line-height: 31px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #offers-detailed .offers-intro p {
    font-size: 19px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed .offers-intro p {
    font-size: 18px;
    line-height: 29px;
  }
}
@media only screen and (min-width: 1551px) {
  #offers-detailed #offers-list .row {
    margin-left: -37px;
    margin-right: -37px;
  }
}
@media only screen and (min-width: 1551px) {
  #offers-detailed #offers-list .row .col-md-4 {
    padding-left: 37px;
    padding-right: 37px;
  }
}
#offers-detailed #offers-list .offer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 6px dashed #353230;
  padding: 25px;
  text-align: center;
  margin-bottom: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #offers-detailed #offers-list .offer-box {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #offers-detailed #offers-list .offer-box {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed #offers-list .offer-box {
    margin-bottom: 30px;
  }
}
#offers-detailed #offers-list .offer-box span {
  display: block;
}
#offers-detailed #offers-list .offer-box .offer-get {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #000;
  opacity: 0.99;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed #offers-list .offer-box .offer-get {
    font-size: 22px;
  }
}
#offers-detailed #offers-list .offer-box .offer-percent {
  font-family: "Poppins", sans-serif;
  font-size: 68px;
  letter-spacing: 0.02em;
  color: #000;
  opacity: 0.99;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed #offers-list .offer-box .offer-percent {
    font-size: 48px;
  }
}
#offers-detailed #offers-list .offer-box .offer-descript {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  color: #000;
  max-width: 216px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed #offers-list .offer-box .offer-descript {
    font-size: 18px;
    line-height: 24px;
  }
}
#offers-detailed #offers-list .offer-box .offer-descript a {
  color: inherit;
  display: inline-block;
  border-bottom: 1px solid #000;
}
#offers-detailed #offers-list .offer-box .offer-descript a:hover {
  color: #000000;
}
#offers-detailed #offers-list .offer-box a.offer-code {
  display: block;
  width: 182px;
  height: 49px;
  line-height: 49px;
  background-color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#offers-detailed #offers-list .offer-box a.offer-code:hover {
  background-color: #000000;
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed #offers-list .offer-box a.offer-code {
    font-size: 17px;
  }
}
#offers-detailed #offers-list .offer-box .offer-expire {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  line-height: 26px;
  text-align: center;
  color: #000;
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed #offers-list .offer-box .offer-expire {
    font-size: 18px;
    line-height: 25px;
  }
}
#offers-detailed #offer-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  letter-spacing: 0.06em;
  text-align: left;
  color: #000;
  margin-top: 65px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #offers-detailed #offer-content h3 {
    font-size: 26px;
    line-height: 36px;
    margin-top: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #offers-detailed #offer-content h3 {
    font-size: 24px;
    line-height: 34px;
    margin-top: 45px;
  }
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed #offer-content h3 {
    font-size: 22px;
    line-height: 32px;
    margin-top: 40px;
  }
}
#offers-detailed #offer-content p {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 32px;
  text-align: left;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1550px) {
  #offers-detailed #offer-content p {
    font-size: 21px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #offers-detailed #offer-content p {
    font-size: 20px;
    line-height: 31px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #offers-detailed #offer-content p {
    font-size: 19px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767.98px) {
  #offers-detailed #offer-content p {
    font-size: 18px;
    line-height: 29px;
  }
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
html[dir=rtl] .slick-slider {
  direction: rtl;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-slider .slick-track:before, .slick-slider .slick-track:after {
  content: "";
  display: table;
}
.slick-slider .slick-track:after {
  clear: both;
}
.slick-loading .slick-slider .slick-track {
  visibility: hidden;
}
.slick-slider .slick-track .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
html[dir=rtl] .slick-slider .slick-track .slick-slide {
  float: right !important;
}
.slick-slider .slick-track .slick-slide.slick-loading img {
  display: none;
}
.slick-slider .slick-track .slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slider .slick-track .slick-slide {
  display: block;
}
.slick-loading .slick-slider .slick-track .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slider .slick-track .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-slider .slick-dots {
  position: relative;
  bottom: 0px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  margin-top: 25px;
}
.slick-slider .slick-dots li {
  position: relative;
  display: inline-block;
  height: 11px;
  margin: 0 5px;
  width: 11px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
}
.slick-slider .slick-dots li.slick-active button {
  background: #235940 !important;
  border: #235940 !important;
  opacity: 1;
}
.slick-slider .slick-dots li button {
  border: 0;
  background: transparent !important;
  display: block;
  height: 11px;
  width: 11px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 0px;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0.95;
  border: 1px solid #235940 !important;
  transform: translate(-50%, -50%);
}

.slick-arrow.slick-hidden {
  display: none;
}

/*===================================
=            Slick Theme            =
===================================*/
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../img/ico/ajax-loader.gif") center center no-repeat;
}

#banner-section .slick-dots,
#hero-slider .slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 767.98px) {
  #banner-section .slick-dots,
  #hero-slider .slick-dots {
    width: 100%;
    text-align: center;
    bottom: -22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #banner-section .slick-dots,
  #hero-slider .slick-dots {
    width: 100%;
    text-align: center;
    bottom: 11px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  #banner-section .slick-dots,
  #hero-slider .slick-dots {
    width: 100%;
    text-align: center;
  }
}
#banner-section .slick-dots li,
#hero-slider .slick-dots li {
  position: relative;
  display: inline-block;
  height: 11px;
  width: 11px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
@media only screen and (max-width: 767.98px) {
  #banner-section .slick-dots li,
  #hero-slider .slick-dots li {
    transform: scale(0.61);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  #banner-section .slick-dots li,
  #hero-slider .slick-dots li {
    transform: scale(0.61);
  }
}
#banner-section .slick-dots li button,
#hero-slider .slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 11px;
  width: 11px;
  outline: none;
  line-height: 0px;
  border: 2px solid #fff;
  background-color: transparent;
  font-size: 0px;
  color: transparent;
  padding: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
#banner-section .slick-dots li button:hover, #banner-section .slick-dots li button:focus,
#hero-slider .slick-dots li button:hover,
#hero-slider .slick-dots li button:focus {
  outline: none;
}
#banner-section .slick-dots li button:hover:before, #banner-section .slick-dots li button:focus:before,
#hero-slider .slick-dots li button:hover:before,
#hero-slider .slick-dots li button:focus:before {
  opacity: 1;
  background: #ebbcba;
  border-color: #ebbcba;
  opacity: 1;
}
#banner-section .slick-dots li button:before,
#hero-slider .slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "•";
  width: 11px;
  height: 11px;
  font-family: "slick";
  font-size: 0px;
  line-height: 11px;
  text-align: center;
  color: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 2px solid #fff;
  opacity: 1;
  border-radius: 50%;
  display: none;
}
#banner-section .slick-dots li.slick-active button:before,
#hero-slider .slick-dots li.slick-active button:before {
  background: #235940 !important;
  border-color: #235940 !important;
  opacity: 1;
}

.default-slider .slick-prev {
  left: -28px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .default-slider .slick-prev {
    left: -15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .default-slider .slick-prev {
    left: -15px;
  }
}
.default-slider .slick-next {
  right: -28px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .default-slider .slick-next {
    right: -15px;
  }
}
@media only screen and (max-width: 767.98px) {
  .default-slider .slick-next {
    right: -15px;
  }
}
.default-slider .slick-prev:before,
.default-slider .slick-next:before {
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #f1f1f1;
  color: #000;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  display: inline-block;
  border-radius: 50%;
  font-size: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 0.25s ease-in-out;
}
.default-slider .slick-prev:before {
  content: "\f104";
}
.default-slider .slick-next:before {
  content: "\f105";
}
.default-slider .slick-prev,
.default-slider .slick-next {
  margin-top: -54px;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 45%;
  display: block;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
@media only screen and (max-width: 767.98px) {
  .default-slider .slick-prev,
  .default-slider .slick-next {
    top: 37%;
  }
}
.default-slider .slick-prev:hover:before,
.default-slider .slick-next:hover:before {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
      Background is added as a separate element.
      As animating opacity is much faster than animating rgba() background-color.
  */
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
      stretched thumbnail or div placeholder element (see below)
      style is added to avoid flickering in webkit/blink when layers overlap
  */
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
      div element that matches size of large image
      large image loads on top of it
  */
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
      Error message appears when image is not loaded
      (JS option errorMsg controls markup)
  */
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

.pswp__scroll-wrap .pswp__caption {
  display: none;
}
.pswp__scroll-wrap .pswp__caption .pswp__caption__center {
  text-align: center !important;
}
.pswp__scroll-wrap .pswp__container,
.pswp__scroll-wrap .pswp__img {
  transition: none !important;
}

.pswp__bg {
  opacity: 1 !important;
  background-color: #fff !important;
}

.pswp__top-bar {
  display: none !important;
}

.pswp__ui {
  position: absolute;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 70px;
  left: 0;
  right: 0;
  transform: translateY(0);
  transition: transform 0.25s 0.6s;
  direction: ltr;
}
.pswp__ui .pswp__button {
  line-height: 1.42;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  font-size: 13px;
  display: inline-block;
  margin: 0;
  width: auto;
  min-width: 90px;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  min-width: 0;
  line-height: 1;
  margin: 15px;
}
@media only screen and (max-width: 767.98px) {
  .pswp__ui .pswp__button {
    font-size: 11px;
  }
}
.pswp__ui .pswp__button:hover {
  background-color: #235940;
}
.pswp__ui .pswp__button:hover:after {
  color: #fff;
}
.pswp__ui .pswp__button.pswp__button--close {
  width: 65px;
  height: 65px;
  position: relative;
}
.pswp__ui .pswp__button.pswp__button--close:after {
  font-family: "Font Awesome 5 Pro";
  content: "\f067";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  font-size: 19px;
  font-weight: 300;
  color: #000;
}
.pswp__ui .pswp__button .icon {
  width: 13px;
  height: 13px;
  margin: 8px;
}
.pswp__ui .pswp__button .icon.icon-close {
  width: 30px;
  height: 30px;
}
.pswp__ui .pswp__button .icon.icon-close path {
  fill: none !important;
  stroke-width: 2px;
  stroke: currentColor !important;
  stroke-linecap: miter;
  stroke-linejoin: miter;
}

#ar-lang {
  width: 100%;
  font-family: "Cairo", sans-serif !important;
  direction: rtl;
}
#ar-lang html,
#ar-lang body,
#ar-lang div,
#ar-lang span,
#ar-lang applet,
#ar-lang object,
#ar-lang iframe,
#ar-lang h1,
#ar-lang h2,
#ar-lang h3,
#ar-lang h4,
#ar-lang h5,
#ar-lang h6,
#ar-lang p,
#ar-lang blockquote,
#ar-lang button,
#ar-lang pre,
#ar-lang a,
#ar-lang abbr,
#ar-lang acronym,
#ar-lang address,
#ar-lang big,
#ar-lang cite,
#ar-lang code,
#ar-lang del,
#ar-lang dfn,
#ar-lang em,
#ar-lang img,
#ar-lang ins,
#ar-lang kbd,
#ar-lang q,
#ar-lang s,
#ar-lang samp,
#ar-lang small,
#ar-lang strike,
#ar-lang strong,
#ar-lang sub,
#ar-lang sup,
#ar-lang tt,
#ar-lang var,
#ar-lang b,
#ar-lang u,
#ar-lang i,
#ar-lang center,
#ar-lang dl,
#ar-lang dt,
#ar-lang dd,
#ar-lang ol,
#ar-lang ul,
#ar-lang li,
#ar-lang fieldset,
#ar-lang form,
#ar-lang label,
#ar-lang legend,
#ar-lang table,
#ar-lang caption,
#ar-lang tbody,
#ar-lang tfoot,
#ar-lang thead,
#ar-lang tr,
#ar-lang th,
#ar-lang td,
#ar-lang article,
#ar-lang aside,
#ar-lang canvas,
#ar-lang details,
#ar-lang embed,
#ar-lang figure,
#ar-lang figcaption,
#ar-lang footer,
#ar-lang header,
#ar-lang hgroup,
#ar-lang menu,
#ar-lang nav,
#ar-lang output,
#ar-lang ruby,
#ar-lang section,
#ar-lang summary,
#ar-lang time,
#ar-lang mark,
#ar-lang audio,
#ar-lang video,
#ar-lang article,
#ar-lang aside,
#ar-lang details,
#ar-lang figcaption,
#ar-lang figure,
#ar-lang footer,
#ar-lang header,
#ar-lang hgroup,
#ar-lang menu,
#ar-lang nav,
#ar-lang section {
  font-family: "Cairo", sans-serif !important;
}
#ar-lang .fab {
  font-family: "Font Awesome 5 Brands" !important;
}
#ar-lang .fa,
#ar-lang .far,
#ar-lang .fas {
  font-family: "Font Awesome 5 Pro" !important;
}
#ar-lang .fal,
#ar-lang .far {
  font-family: "Font Awesome 5 Pro" !important;
}
#ar-lang .navbar-nav > li {
  float: right;
}
#ar-lang .dropdown-menu {
  left: auto;
  right: 0;
}
#ar-lang .bootstrap-select.btn-group .dropdown-toggle .filter-option,
#ar-lang .bootstrap-select.btn-group .dropdown-menu li {
  text-align: right;
}
#ar-lang .col-xs-1,
#ar-lang .col-xs-2,
#ar-lang .col-xs-3,
#ar-lang .col-xs-4,
#ar-lang .col-xs-5,
#ar-lang .col-xs-6,
#ar-lang .col-xs-7,
#ar-lang .col-xs-8,
#ar-lang .col-xs-9,
#ar-lang .col-xs-10,
#ar-lang .col-xs-11,
#ar-lang .col-xs-12 {
  float: right;
}
#ar-lang .col-xs-pull-12 {
  left: 100%;
}
#ar-lang .col-xs-pull-11 {
  left: 91.66666667%;
}
#ar-lang .col-xs-pull-10 {
  left: 83.33333333%;
}
#ar-lang .col-xs-pull-9 {
  left: 75%;
}
#ar-lang .col-xs-pull-8 {
  left: 66.66666667%;
}
#ar-lang .col-xs-pull-7 {
  left: 58.33333333%;
}
#ar-lang .col-xs-pull-6 {
  left: 50%;
}
#ar-lang .col-xs-pull-5 {
  left: 41.66666667%;
}
#ar-lang .col-xs-pull-4 {
  left: 33.33333333%;
}
#ar-lang .col-xs-pull-3 {
  left: 25%;
}
#ar-lang .col-xs-pull-2 {
  left: 16.66666667%;
}
#ar-lang .col-xs-pull-1 {
  left: 8.33333333%;
}
#ar-lang .col-xs-pull-0 {
  left: auto;
}
#ar-lang .col-xs-push-12 {
  right: 100%;
}
#ar-lang .col-xs-push-11 {
  right: 91.66666667%;
}
#ar-lang .col-xs-push-10 {
  right: 83.33333333%;
}
#ar-lang .col-xs-push-9 {
  right: 75%;
}
#ar-lang .col-xs-push-8 {
  right: 66.66666667%;
}
#ar-lang .col-xs-push-7 {
  right: 58.33333333%;
}
#ar-lang .col-xs-push-6 {
  right: 50%;
}
#ar-lang .col-xs-push-5 {
  right: 41.66666667%;
}
#ar-lang .col-xs-push-4 {
  right: 33.33333333%;
}
#ar-lang .col-xs-push-3 {
  right: 25%;
}
#ar-lang .col-xs-push-2 {
  right: 16.66666667%;
}
#ar-lang .col-xs-push-1 {
  right: 8.33333333%;
}
#ar-lang .col-xs-push-0 {
  right: auto;
}
#ar-lang .col-xs-offset-12 {
  margin-right: 100%;
}
#ar-lang .col-xs-offset-11 {
  margin-right: 91.66666667%;
}
#ar-lang .col-xs-offset-10 {
  margin-right: 83.33333333%;
}
#ar-lang .col-xs-offset-9 {
  margin-right: 75%;
}
#ar-lang .col-xs-offset-8 {
  margin-right: 66.66666667%;
}
#ar-lang .col-xs-offset-7 {
  margin-right: 58.33333333%;
}
#ar-lang .col-xs-offset-6 {
  margin-right: 50%;
}
#ar-lang .col-xs-offset-5 {
  margin-right: 41.66666667%;
}
#ar-lang .col-xs-offset-4 {
  margin-right: 33.33333333%;
}
#ar-lang .col-xs-offset-3 {
  margin-right: 25%;
}
#ar-lang .col-xs-offset-2 {
  margin-right: 16.66666667%;
}
#ar-lang .col-xs-offset-1 {
  margin-right: 8.33333333%;
}
#ar-lang .col-xs-offset-0 {
  margin-right: 0;
}
@media (min-width: 768px) {
  #ar-lang .col-sm-1,
  #ar-lang .col-sm-2,
  #ar-lang .col-sm-3,
  #ar-lang .col-sm-4,
  #ar-lang .col-sm-5,
  #ar-lang .col-sm-6,
  #ar-lang .col-sm-7,
  #ar-lang .col-sm-8,
  #ar-lang .col-sm-9,
  #ar-lang .col-sm-10,
  #ar-lang .col-sm-11,
  #ar-lang .col-sm-12 {
    float: right;
  }
  #ar-lang .col-sm-pull-12 {
    left: 100%;
    right: auto;
  }
  #ar-lang .col-sm-pull-11 {
    left: 91.66666667%;
    right: auto;
  }
  #ar-lang .col-sm-pull-10 {
    left: 83.33333333%;
    right: auto;
  }
  #ar-lang .col-sm-pull-9 {
    left: 75%;
    right: auto;
  }
  #ar-lang .col-sm-pull-8 {
    left: 66.66666667%;
    right: auto;
  }
  #ar-lang .col-sm-pull-7 {
    left: 58.33333333%;
    right: auto;
  }
  #ar-lang .col-sm-pull-6 {
    left: 50%;
    right: auto;
  }
  #ar-lang .col-sm-pull-5 {
    left: 41.66666667%;
    right: auto;
  }
  #ar-lang .col-sm-pull-4 {
    left: 33.33333333%;
    right: auto;
  }
  #ar-lang .col-sm-pull-3 {
    left: 25%;
    right: auto;
  }
  #ar-lang .col-sm-pull-2 {
    left: 16.66666667%;
    right: auto;
  }
  #ar-lang .col-sm-pull-1 {
    left: 8.33333333%;
    right: auto;
  }
  #ar-lang .col-sm-pull-0 {
    left: auto;
    right: auto;
  }
  #ar-lang .col-sm-push-12 {
    right: 100%;
    left: auto;
  }
  #ar-lang .col-sm-push-11 {
    right: 91.66666667%;
    left: auto;
  }
  #ar-lang .col-sm-push-10 {
    right: 83.33333333%;
    left: auto;
  }
  #ar-lang .col-sm-push-9 {
    right: 75%;
    left: auto;
  }
  #ar-lang .col-sm-push-8 {
    right: 66.66666667%;
    left: auto;
  }
  #ar-lang .col-sm-push-7 {
    right: 58.33333333%;
    left: auto;
  }
  #ar-lang .col-sm-push-6 {
    right: 50%;
    left: auto;
  }
  #ar-lang .col-sm-push-5 {
    right: 41.66666667%;
    left: auto;
  }
  #ar-lang .col-sm-push-4 {
    right: 33.33333333%;
    left: auto;
  }
  #ar-lang .col-sm-push-3 {
    right: 25%;
    left: auto;
  }
  #ar-lang .col-sm-push-2 {
    right: 16.66666667%;
    left: auto;
  }
  #ar-lang .col-sm-push-1 {
    right: 8.33333333%;
    left: auto;
  }
  #ar-lang .col-sm-push-0 {
    right: auto;
    left: auto;
  }
  #ar-lang .col-sm-offset-12 {
    margin-right: 100%;
  }
  #ar-lang .col-sm-offset-11 {
    margin-right: 91.66666667%;
  }
  #ar-lang .col-sm-offset-10 {
    margin-right: 83.33333333%;
  }
  #ar-lang .col-sm-offset-9 {
    margin-right: 75%;
  }
  #ar-lang .col-sm-offset-8 {
    margin-right: 66.66666667%;
  }
  #ar-lang .col-sm-offset-7 {
    margin-right: 58.33333333%;
  }
  #ar-lang .col-sm-offset-6 {
    margin-right: 50%;
  }
  #ar-lang .col-sm-offset-5 {
    margin-right: 41.66666667%;
  }
  #ar-lang .col-sm-offset-4 {
    margin-right: 33.33333333%;
  }
  #ar-lang .col-sm-offset-3 {
    margin-right: 25%;
  }
  #ar-lang .col-sm-offset-2 {
    margin-right: 16.66666667%;
  }
  #ar-lang .col-sm-offset-1 {
    margin-right: 8.33333333%;
  }
  #ar-lang .col-sm-offset-0 {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  #ar-lang .col-md-1,
  #ar-lang .col-md-2,
  #ar-lang .col-md-3,
  #ar-lang .col-md-4,
  #ar-lang .col-md-5,
  #ar-lang .col-md-6,
  #ar-lang .col-md-7,
  #ar-lang .col-md-8,
  #ar-lang .col-md-9,
  #ar-lang .col-md-10,
  #ar-lang .col-md-11,
  #ar-lang .col-md-12 {
    float: right;
  }
  #ar-lang .col-md-pull-12 {
    left: 100%;
    right: auto;
  }
  #ar-lang .col-md-pull-11 {
    left: 91.66666667%;
    right: auto;
  }
  #ar-lang .col-md-pull-10 {
    left: 83.33333333%;
    right: auto;
  }
  #ar-lang .col-md-pull-9 {
    left: 75%;
    right: auto;
  }
  #ar-lang .col-md-pull-8 {
    left: 66.66666667%;
    right: auto;
  }
  #ar-lang .col-md-pull-7 {
    left: 58.33333333%;
    right: auto;
  }
  #ar-lang .col-md-pull-6 {
    left: 50%;
    right: auto;
  }
  #ar-lang .col-md-pull-5 {
    left: 41.66666667%;
    right: auto;
  }
  #ar-lang .col-md-pull-4 {
    left: 33.33333333%;
    right: auto;
  }
  #ar-lang .col-md-pull-3 {
    left: 25%;
    right: auto;
  }
  #ar-lang .col-md-pull-2 {
    left: 16.66666667%;
    right: auto;
  }
  #ar-lang .col-md-pull-1 {
    left: 8.33333333%;
    right: auto;
  }
  #ar-lang .col-md-pull-0 {
    left: auto;
  }
  #ar-lang .col-md-push-12 {
    right: 100%;
    left: auto;
  }
  #ar-lang .col-md-push-11 {
    right: 91.66666667%;
    left: auto;
  }
  #ar-lang .col-md-push-10 {
    right: 83.33333333%;
    left: auto;
  }
  #ar-lang .col-md-push-9 {
    right: 75%;
    left: auto;
  }
  #ar-lang .col-md-push-8 {
    right: 66.66666667%;
    left: auto;
  }
  #ar-lang .col-md-push-7 {
    right: 58.33333333%;
    left: auto;
  }
  #ar-lang .col-md-push-6 {
    right: 50%;
    left: auto;
  }
  #ar-lang .col-md-push-5 {
    right: 41.66666667%;
    left: auto;
  }
  #ar-lang .col-md-push-4 {
    right: 33.33333333%;
    left: auto;
  }
  #ar-lang .col-md-push-3 {
    right: 25%;
    left: auto;
  }
  #ar-lang .col-md-push-2 {
    right: 16.66666667%;
    left: auto;
  }
  #ar-lang .col-md-push-1 {
    left: auto;
    right: 8.33333333%;
  }
  #ar-lang .col-md-push-0 {
    right: auto;
  }
  #ar-lang .col-md-offset-12 {
    margin-right: 100%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-11 {
    margin-right: 91.66666667%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-10 {
    margin-right: 83.33333333%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-9 {
    margin-right: 75%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-8 {
    margin-right: 66.66666667%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-7 {
    margin-right: 58.33333333%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-6 {
    margin-right: 50%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-5 {
    margin-right: 41.66666667%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-4 {
    margin-right: 33.33333333%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-3 {
    margin-right: 25%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-2 {
    margin-right: 16.66666667%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-1 {
    margin-right: 8.33333333%;
    margin-left: auto;
  }
  #ar-lang .col-md-offset-0 {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  #ar-lang .col-lg-1,
  #ar-lang .col-lg-2,
  #ar-lang .col-lg-3,
  #ar-lang .col-lg-4,
  #ar-lang .col-lg-5,
  #ar-lang .col-lg-6,
  #ar-lang .col-lg-7,
  #ar-lang .col-lg-8,
  #ar-lang .col-lg-9,
  #ar-lang .col-lg-10,
  #ar-lang .col-lg-11,
  #ar-lang .col-lg-12 {
    float: right;
  }
  #ar-lang .col-lg-pull-12 {
    left: 100%;
    right: auto;
  }
  #ar-lang .col-lg-pull-11 {
    left: 91.66666667%;
    right: auto;
  }
  #ar-lang .col-lg-pull-10 {
    left: 83.33333333%;
    right: auto;
  }
  #ar-lang .col-lg-pull-9 {
    left: 75%;
    right: auto;
  }
  #ar-lang .col-lg-pull-8 {
    left: 66.66666667%;
    right: auto;
  }
  #ar-lang .col-lg-pull-7 {
    left: 58.33333333%;
    right: auto;
  }
  #ar-lang .col-lg-pull-6 {
    left: 50%;
    right: auto;
  }
  #ar-lang .col-lg-pull-5 {
    left: 41.66666667%;
    right: auto;
  }
  #ar-lang .col-lg-pull-4 {
    left: 33.33333333%;
    right: auto;
  }
  #ar-lang .col-lg-pull-3 {
    left: 25%;
    right: auto;
  }
  #ar-lang .col-lg-pull-2 {
    left: 16.66666667%;
    right: auto;
  }
  #ar-lang .col-lg-pull-1 {
    left: 8.33333333%;
    right: auto;
  }
  #ar-lang .col-lg-pull-0 {
    left: auto;
  }
  #ar-lang .col-lg-push-12 {
    right: 100%;
  }
  #ar-lang .col-lg-push-11 {
    right: 91.66666667%;
  }
  #ar-lang .col-lg-push-10 {
    right: 83.33333333%;
  }
  #ar-lang .col-lg-push-9 {
    right: 75%;
  }
  #ar-lang .col-lg-push-8 {
    right: 66.66666667%;
  }
  #ar-lang .col-lg-push-7 {
    right: 58.33333333%;
  }
  #ar-lang .col-lg-push-6 {
    right: 50%;
  }
  #ar-lang .col-lg-push-5 {
    right: 41.66666667%;
  }
  #ar-lang .col-lg-push-4 {
    right: 33.33333333%;
  }
  #ar-lang .col-lg-push-3 {
    right: 25%;
  }
  #ar-lang .col-lg-push-2 {
    right: 16.66666667%;
  }
  #ar-lang .col-lg-push-1 {
    right: 8.33333333%;
  }
  #ar-lang .col-lg-push-0 {
    right: auto;
  }
  #ar-lang .col-lg-offset-12 {
    margin-right: 100%;
  }
  #ar-lang .col-lg-offset-11 {
    margin-right: 91.66666667%;
  }
  #ar-lang .col-lg-offset-10 {
    margin-right: 83.33333333%;
  }
  #ar-lang .col-lg-offset-9 {
    margin-right: 75%;
  }
  #ar-lang .col-lg-offset-8 {
    margin-right: 66.66666667%;
  }
  #ar-lang .col-lg-offset-7 {
    margin-right: 58.33333333%;
  }
  #ar-lang .col-lg-offset-6 {
    margin-right: 50%;
  }
  #ar-lang .col-lg-offset-5 {
    margin-right: 41.66666667%;
  }
  #ar-lang .col-lg-offset-4 {
    margin-right: 33.33333333%;
  }
  #ar-lang .col-lg-offset-3 {
    margin-right: 25%;
  }
  #ar-lang .col-lg-offset-2 {
    margin-right: 16.66666667%;
  }
  #ar-lang .col-lg-offset-1 {
    margin-right: 8.33333333%;
  }
  #ar-lang .col-lg-offset-0 {
    margin-right: 0;
  }
}
#ar-lang table {
  background-color: transparent;
}
#ar-lang caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #777;
  text-align: right;
}
#ar-lang th {
  text-align: right;
}
#ar-lang .pull-right {
  float: left !important;
}
#ar-lang .pull-left {
  float: right !important;
}

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