/** 
 * 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  ======*/
/**
 *
 * Fonts and default styling
 *
 */
/*=============================
=            Fonts            =
=============================*/
/*=====  End of Define Var for Fonts  ======*/
/*===================================
  =            Body Styles            =
  ===================================*/
body {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden; }

:root {
  --doc-height: 100%; }

button,
input[type=text], input[type=button], input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

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; }

/*=====  End of Custom Mixins  ======*/
/*=============================
=            Align            =
=============================*/
/*=====  End of Align  ======*/
/*=====================================
=            Color pallete            =
=====================================*/
/*=====  End of Color pallete  ======*/
/*================================
=            Triangle            =
================================*/
/*=====  End of Triangle  ======*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

/* Firefox */
input[type=number] {
  -moz-appearance: textfield; }

/*===================================
=            Placeholder            =
===================================*/
/*=====  End of Placeholder  ======*/
/*================================
=            Clearfix            =
================================*/
/*=====  End of Clearfix  ======*/
/*================================
=            Gradient            =
================================*/
/*=====  End of Gradient  ======*/
/*=====================================
=            Quick Padding            =
=====================================*/
/*=====  End of Quick Padding  ======*/
.overflow-hidden {
  overflow: hidden; }

/* New Mixin */
.container {
  margin: auto;
  width: 1600px;
  padding-right: 14rem;
  padding-left: 14rem;
  max-width: 100%; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .container {
      padding-right: 8rem;
      padding-left: 8rem; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .container {
      padding-right: 6rem;
      padding-left: 6rem; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .container {
      padding-right: 3rem;
      padding-left: 3rem; } }
  @media only screen and (max-width: 767.98px) {
    .container {
      padding-right: 1.5rem;
      padding-left: 1.5rem; } }

/**
 *
 * 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 (min-width: 992px) {
  /** Pull left **/
  .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; } }

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

.mt-0 {
  margin-top: 0px !important; }

.mr-0 {
  margin-right: 0px !important; }

.ml-0 {
  margin-left: 0px !important; }

.tippy-box {
  background-color: #8fd2ee !important;
  /* your custom background */
  color: #fff !important;
  /* text color */
  font-size: 13px;
  border-radius: 6px;
  padding: 6px 10px; }

.tippy-arrow {
  color: #8fd2ee !important;
  /* arrow color matches background */ }

@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.42857;
  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: #2a6496;
    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.42857;
  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 #eeeeee; }

.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-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.33333%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.33333%; }
  .col-sm-pull-2 {
    right: 16.66667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.33333%; }
  .col-sm-pull-5 {
    right: 41.66667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.33333%; }
  .col-sm-pull-8 {
    right: 66.66667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.33333%; }
  .col-sm-pull-11 {
    right: 91.66667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.33333%; }
  .col-sm-push-2 {
    left: 16.66667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.33333%; }
  .col-sm-push-5 {
    left: 41.66667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.33333%; }
  .col-sm-push-8 {
    left: 66.66667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.33333%; }
  .col-sm-push-11 {
    left: 91.66667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.33333%; }
  .col-sm-offset-2 {
    margin-left: 16.66667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333%; }
  .col-sm-offset-5 {
    margin-left: 41.66667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333%; }
  .col-sm-offset-8 {
    margin-left: 66.66667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333%; }
  .col-sm-offset-11 {
    margin-left: 91.66667%; }
  .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.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.33333%; }
  .col-md-pull-2 {
    right: 16.66667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.33333%; }
  .col-md-pull-5 {
    right: 41.66667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.33333%; }
  .col-md-pull-8 {
    right: 66.66667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.33333%; }
  .col-md-pull-11 {
    right: 91.66667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.33333%; }
  .col-md-push-2 {
    left: 16.66667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.33333%; }
  .col-md-push-5 {
    left: 41.66667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.33333%; }
  .col-md-push-8 {
    left: 66.66667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.33333%; }
  .col-md-push-11 {
    left: 91.66667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.33333%; }
  .col-md-offset-2 {
    margin-left: 16.66667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333%; }
  .col-md-offset-5 {
    margin-left: 41.66667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333%; }
  .col-md-offset-8 {
    margin-left: 66.66667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333%; }
  .col-md-offset-11 {
    margin-left: 91.66667%; }
  .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.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.33333%; }
  .col-lg-pull-2 {
    right: 16.66667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.33333%; }
  .col-lg-pull-5 {
    right: 41.66667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.33333%; }
  .col-lg-pull-8 {
    right: 66.66667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.33333%; }
  .col-lg-pull-11 {
    right: 91.66667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.33333%; }
  .col-lg-push-2 {
    left: 16.66667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.33333%; }
  .col-lg-push-5 {
    left: 41.66667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.33333%; }
  .col-lg-push-8 {
    left: 66.66667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.33333%; }
  .col-lg-push-11 {
    left: 91.66667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.33333%; }
  .col-lg-offset-2 {
    margin-left: 16.66667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333%; }
  .col-lg-offset-5 {
    margin-left: 41.66667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333%; }
  .col-lg-offset-8 {
    margin-left: 66.66667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333%; }
  .col-lg-offset-11 {
    margin-left: 91.66667%; }
  .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.42857;
    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: #e8e8e8; }

.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: #d0e9c6; }

.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: #c4e3f3; }

.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: #faf2cc; }

.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: #ebcccc; }

@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.42857;
  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: #e6e6e6;
    border-color: #adadad; }
  .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: #357ebd; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active,
  .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #3071a9;
    border-color: #285e8e; }
  .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: #357ebd; }
  .btn-primary .badge {
    color: #428bca;
    background-color: #fff; }

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c; }
  .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active,
  .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439; }
  .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: #4cae4c; }
  .btn-success .badge {
    color: #5cb85c;
    background-color: #fff; }

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da; }
  .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active,
  .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc; }
  .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: #46b8da; }
  .btn-info .badge {
    color: #5bc0de;
    background-color: #fff; }

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236; }
  .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active,
  .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512; }
  .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: #eea236; }
  .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff; }

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a; }
  .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active,
  .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925; }
  .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: #d43f3a; }
  .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: #2a6496;
    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.42857;
    color: #333333;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  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.42857;
  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-lg.btn-group > .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: #eeeeee; }
    .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: #eeeeee;
    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.42857;
      border: 1px solid transparent;
      border-radius: 4px 4px 0 0; }
      .nav-tabs > li > a:hover {
        border-color: #eeeeee #eeeeee #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.nav-justified > .active > a:hover,
  .nav-tabs-justified > .active > a:focus,
  .nav-tabs.nav-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.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus,
    .nav-tabs.nav-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; }

.navbar {
  position: relative;
  min-height: auto;
  margin-bottom: 20px;
  border: 1px solid transparent; }
  .navbar:before, .navbar:after {
    content: " ";
    display: table;
    width: 0px;
    height: 0px; }
  .navbar:after {
    clear: both; }
  @media (min-width: 768px) {
    .navbar {
      border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
  content: " ";
  display: table;
  width: 0px;
  height: 0px; }

.navbar-header:after {
  clear: both; }

@media (min-width: 768px) {
  .navbar-header {
    float: left; } }

.navbar-collapse {
  overflow-x: visible;
  padding-right: 15px;
  padding-left: 15px;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch; }
  .navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table;
    width: 0px;
    height: 0px; }
  .navbar-collapse:after {
    clear: both; }
  .navbar-collapse.in {
    overflow-y: auto; }
  @media (min-width: 1200px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none;
      padding-right: 0px;
      padding-left: 0px; }
      .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important; }
      .navbar-collapse.in {
        overflow-y: visible; }
      .navbar-fixed-top .navbar-collapse,
      .navbar-static-top .navbar-collapse,
      .navbar-fixed-bottom .navbar-collapse {
        padding-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
  max-height: 340px; }
  @media (max-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px; }
  @media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
      margin-right: 0;
      margin-left: 0; } }

.navbar-static-top {
  z-index: 1000;
  border-width: 0 0 1px; }
  @media (min-width: 768px) {
    .navbar-static-top {
      border-radius: 0; } }

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030; }
  @media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
      border-radius: 0; } }

.navbar-fixed-top {
  top: 0;
  border-width: 0 0 1px; }

.navbar-fixed-bottom {
  bottom: 0;
  margin-bottom: 0;
  border-width: 1px 0 0; }

.navbar-brand {
  float: left;
  padding: auto-20px/2 15px;
  font-size: 18px;
  line-height: 20px;
  height: auto; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }
  @media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
      margin-left: -15px; } }

.navbar-toggle {
  position: relative;
  float: right;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: auto-34px/2;
  margin-bottom: auto-34px/2;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px; }
  .navbar-toggle:focus {
    outline: 0; }
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px; }
  .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px; }
  @media (min-width: 768px) {
    .navbar-toggle {
      display: none; } }

.navbar-nav {
  margin: auto-20px/2/2 -15px; }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
  @media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
      position: static;
      float: none;
      width: auto;
      margin-top: 0;
      background-color: transparent;
      border: 0;
      box-shadow: none; }
      .navbar-nav .open .dropdown-menu > li > a,
      .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px; }
      .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px; }
        .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus {
          background-image: none; } }
  @media (min-width: 768px) {
    .navbar-nav {
      float: left;
      margin: 0; }
      .navbar-nav > li {
        float: left; }
        .navbar-nav > li > a {
          padding-top: auto-20px/2;
          padding-bottom: auto-20px/2; }
      .navbar-nav.navbar-right:last-child {
        margin-right: -15px; } }

@media (min-width: 768px) {
  .navbar-left {
    float: left !important; }
  .navbar-right {
    float: right !important; } }

.navbar-form {
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-top: auto-34px/2;
  margin-bottom: auto-34px/2; }
  @media (max-width: 767px) {
    .navbar-form .form-group {
      margin-bottom: 5px; } }
  @media (min-width: 768px) {
    .navbar-form {
      width: auto;
      border: 0;
      margin-left: 0;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      -webkit-box-shadow: none;
      box-shadow: none; }
      .navbar-form.navbar-right:last-child {
        margin-right: -15px; } }

.navbar-nav > li > .dropdown-menu {
  margin-top: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.navbar-btn {
  margin-top: auto-34px/2;
  margin-bottom: auto-34px/2; }
  .navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: auto-30px/2;
    margin-bottom: auto-30px/2; }
  .navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: auto-22/2;
    margin-bottom: auto-22/2; }

.navbar-text {
  margin-top: auto-20px/2;
  margin-bottom: auto-20px/2; }
  @media (min-width: 768px) {
    .navbar-text {
      float: left;
      margin-left: 15px;
      margin-right: 15px; }
      .navbar-text.navbar-right:last-child {
        margin-right: 0; } }

.navbar-default {
  background-color: #fff;
  border-color: #ddd; }
  .navbar-default .navbar-brand {
    color: #777; }
    .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
      color: #5e5e5e;
      background-color: transparent; }
  .navbar-default .navbar-text {
    color: #777; }
  .navbar-default .navbar-nav > li > a {
    color: #777; }
    .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
      color: #333;
      background-color: transparent; }
  .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #eeeeee; }
  .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent; }
  .navbar-default .navbar-toggle {
    border-color: #ddd; }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
      background-color: #ddd; }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #888; }
  .navbar-default .navbar-collapse,
  .navbar-default .navbar-form {
    border-color: #ddd; }
  .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #eeeeee;
    color: #555; }
  @media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
      color: #777; }
      .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent; }
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #555;
      background-color: #eeeeee; }
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #ccc;
      background-color: transparent; } }
  .navbar-default .navbar-link {
    color: #777; }
    .navbar-default .navbar-link:hover {
      color: #333; }
  .navbar-default .btn-link {
    color: #777; }
    .navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
      color: #333; }
    .navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:hover,
    fieldset[disabled] .navbar-default .btn-link:focus {
      color: #ccc; }

.navbar-inverse {
  background-color: #222;
  border-color: #090909; }
  .navbar-inverse .navbar-brand {
    color: #999999; }
    .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-text {
    color: #999999; }
  .navbar-inverse .navbar-nav > li > a {
    color: #999999; }
    .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus {
      color: #fff;
      background-color: transparent; }
  .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909; }
  .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent; }
  .navbar-inverse .navbar-toggle {
    border-color: #333; }
    .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus {
      background-color: #333; }
    .navbar-inverse .navbar-toggle .icon-bar {
      background-color: #fff; }
  .navbar-inverse .navbar-collapse,
  .navbar-inverse .navbar-form {
    border-color: #101010; }
  .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    background-color: #090909;
    color: #fff; }
  @media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
      border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
      color: #999999; }
      .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
      color: #fff;
      background-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
      color: #444;
      background-color: transparent; } }
  .navbar-inverse .navbar-link {
    color: #999999; }
    .navbar-inverse .navbar-link:hover {
      color: #fff; }
  .navbar-inverse .btn-link {
    color: #999999; }
    .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus {
      color: #fff; }
    .navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
      color: #444; }

.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%; }

.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: rgba(0, 0, 0, 0.15); }
  .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.42857px; }

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

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

.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-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 {
  opacity: 1 !important;
  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: .75em;
  vertical-align: -.0667em; }

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

.fa-sm {
  font-size: .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: .08em solid #eee;
  border-radius: .1em;
  padding: .2em .25em .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: .3em; }

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: .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;
  font-display: swap;
  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;
  font-display: swap;
  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;
  font-display: swap;
  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;
  font-display: swap;
  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, .navbar-form .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, .navbar-form .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: .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: .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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.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; }

@-webkit-keyframes slide-in {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
    transform: translate3d(0, -5px, 0) scale(0.95); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1); } }

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translate3d(0, -5px, 0) scale(0.95); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1); } }

/*
 * 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 (min-width: 992px) {
    .bcg {
      background-attachment: fixed; } }
  @media only screen and (max-width: 767px) {
    .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: 1199px) {
    #contact {
      height: 400px !important; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #contact {
      height: 400px !important; } }
  @media only screen and (max-width: 767px) {
    #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: 1199px) {
    #about_bg {
      height: 400px !important; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #about_bg {
      height: 400px !important; } }
  @media only screen and (max-width: 767px) {
    #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; } }

.control {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  text-align: left;
  font: normal normal 400 12px/22px "Poppins", sans-serif;
  letter-spacing: 0px;
  color: #121212;
  opacity: 1;
  margin: 10px 0px; }
  html[dir="rtl"] .control {
    text-align: right;
    padding-left: 0px;
    padding-right: 30px;
    letter-spacing: 0; }
  .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: #121212;
      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: 18px;
    width: 18px;
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: all ease-in-out 0.5s; }
    html[dir="rtl"] .control .control__indicator {
      left: unset;
      right: 0;
      letter-spacing: 0; }
    .control .control__indicator:after {
      content: "";
      position: absolute;
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      box-sizing: content-box;
      left: 30%;
      top: 46%;
      width: 3px;
      height: 8px;
      border: solid #121212;
      border-width: 0 1px 1px 0;
      transform: rotate(45deg) translate(-50%, -50%);
      transform-origin: center;
      opacity: 0;
      visibility: hidden;
      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
   ========================================================================== */
/* ==========================================================================
   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; }
  .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; }
  .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; }
  .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; }

/*!
 * 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 {
  /** Height for menu items. */
  --mm-item-height: 100px;
  /** Indent for menu items. */
  --mm-item-indent: 20px;
  /** Line height for menu items. */
  --mm-line-height: 24px; }

.mm-hidden {
  display: none !important; }

.mm {
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  color: #444;
  background: #ffffff;
  line-height: 24px;
  line-height: var(--mm-line-height);
  transform: translateX(0px); }

.mm {
  cursor: pointer; }

.mm.mm--main:after {
  padding-left: 20px;
  padding-left: var(--mm-item-indent); }

.mm ul:after {
  content: "";
  display: block;
  height: 50px;
  height: var(--mm-item-height); }
  .mm ul:after:last-of-type {
    height: 0px; }

.mm ul:last-of-type:after {
  display: none; }

.mm > ul {
  left: 0; }

.mm ul.mm--open {
  left: 0; }

.mm ul.mm--parent {
  left: -100%;
  overflow-y: hidden; }

.mm:before {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  top: calc(var(--mm-item-height) / 2);
  left: 20px;
  left: var(--mm-item-indent);
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(-45deg) translate(50%, -50%);
  opacity: 1;
  z-index: 66; }

.mm .menu-header {
  opacity: 0;
  visibility: hidden; }

.mm.mm--main {
  cursor: default; }
  .mm.mm--main .menu-header {
    opacity: 1;
    visibility: visible; }
  .mm.mm--main .menu-title {
    display: none; }
  .mm.mm--main:before {
    content: none;
    display: none; }

.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; }
  .mm ul li.seperator .seperator-body {
    width: calc(100% - 30px);
    height: 1px;
    margin: 5px auto;
    background-color: #f1f1f1; }
  .mm ul li span,
  .mm ul li a {
    text-decoration: none;
    padding: 8px 0px;
    text-align: left;
    opacity: 1;
    width: 100%;
    font: normal normal 500 14px/2 "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #333333;
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 10px; }
    html[dir="rtl"] .mm ul li span, html[dir="rtl"]
    .mm ul li a {
      font-family: "Cairo", sans-serif;
      letter-spacing: 0;
      text-align: right;
      letter-spacing: 0; }
    .mm ul li span svg,
    .mm ul li a svg {
      height: auto;
      width: 14px; }
  .mm ul li span {
    position: relative; }
    .mm ul li span:after {
      font-family: "Font Awesome 5 pro";
      content: "\f105";
      position: absolute;
      font-weight: 400;
      z-index: 99;
      right: 0px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: #E5E5E5; }
      html[dir="rtl"] .mm ul li span:after {
        right: unset;
        left: 0px;
        content: "\f104";
        letter-spacing: 0; }
  .mm ul li .ressub-nav {
    padding: 0px 15px;
    width: 100%; }
    .mm ul li .ressub-nav li {
      border-bottom: 1px solid #f1f1f1; }
      .mm ul li .ressub-nav li a,
      .mm ul li .ressub-nav li span {
        padding: 5px 0px 5px 10px !important; }
        html[dir="rtl"] .mm ul li .ressub-nav li a, html[dir="rtl"]
        .mm ul li .ressub-nav li span {
          padding: 5px 10px 5px 0px  !important;
          letter-spacing: 0; }
        .mm ul li .ressub-nav li a:after,
        .mm ul li .ressub-nav li span:after {
          right: 0px; }
          html[dir="rtl"] .mm ul li .ressub-nav li a:after, html[dir="rtl"]
          .mm ul li .ressub-nav li span:after {
            right: unset;
            left: 0;
            letter-spacing: 0; }
      .mm ul li .ressub-nav li.mm--open > .mob-nav-link {
        color: #2959D3; }
        .mm ul li .ressub-nav li.mm--open > .mob-nav-link:after {
          color: #2959D3; }

.mm ul li .ressub-nav ul.mm--open {
  padding: 15px 10px;
  width: 100%; }
  .mm ul li .ressub-nav ul.mm--open .ressub-nav-item {
    border: none; }
    .mm ul li .ressub-nav ul.mm--open .ressub-nav-item a {
      text-align: left;
      font: normal normal 400 13px/26px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #333333;
      opacity: 1; }
      html[dir="rtl"] .mm ul li .ressub-nav ul.mm--open .ressub-nav-item a {
        font-family: "Cairo", sans-serif;
        text-align: right;
        letter-spacing: 0;
        letter-spacing: 0; }

.mm.mm--dark {
  background: #333;
  color: #ccc; }

.mm.mm--vertical:before,
.mm.mm--vertical:after {
  content: none;
  display: none; }

.mm.mm--vertical {
  overflow-y: auto; }

.mm.mm--vertical ul {
  width: 100%;
  padding-right: 0;
  position: static; }

.mm.mm--vertical ul ul {
  display: none;
  padding-left: 0px; }

.mm.mm--vertical ul ul:after {
  height: 25px;
  height: calc(var(--mm-item-height) / 2); }

.mm.mm--vertical ul.mm--open {
  display: block; }

.mm.mm--vertical li.mm--open > span:after {
  content: "\f107";
  font-weight: 500; }

.mm.mm--vertical ul ul li:last-child:after {
  content: none;
  display: none; }

:root {
  /** Width for the menu. */
  --mm-width: 80%;
  /** Min-width for the menu. */
  --mm-min-width: 200px;
  /** Max-width for the menu. */
  --mm-max-width: 440px; }

.mm-body--open {
  overflow-y: hidden;
  pointer-events: none; }

.mm {
  pointer-events: auto; }

#mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 9995;
  display: flex;
  flex-direction: column;
  width: var(--mm-width);
  min-width: var(--mm-min-width);
  max-width: var(--mm-max-width);
  transition: transform 0.3s ease 0s, bottom 0s ease 0s; }
  html[dir="rtl"] #mobile-menu {
    left: unset;
    right: 0;
    letter-spacing: 0; }
  #mobile-menu:not(.mm--open) {
    transform: translateX(-100%);
    transition-delay: 0s, 0.6s; }
    html[dir="rtl"] #mobile-menu:not(.mm--open) {
      transform: translateX(100%);
      letter-spacing: 0; }

.mm-blocker {
  pointer-events: auto;
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  top: 100%;
  z-index: 9990;
  width: 100%;
  opacity: 0;
  transition-property: opacity, top;
  transition-timing-function: ease, linear;
  transition-duration: 0.45s, 0s;
  transition-delay: 0s, 0.45s; }
  html[dir="rtl"] .mm-blocker {
    right: unset;
    left: 0;
    letter-spacing: 0; }

.mm-blocker.mm--open {
  top: 0;
  z-index: 9999;
  width: calc(100% - 80%);
  width: calc(100% - var(--mm-width));
  min-width: calc(100% - 440px);
  min-width: calc(100% - var(--mm-max-width));
  max-width: calc(100% - 200px);
  max-width: calc(100% - var(--mm-min-width));
  opacity: 1;
  transition-delay: 0.3s, 0s; }

/*# sourceMappingURL=mmenu-light.css.map */
.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: 30px;
  left: 0;
  right: 0;
  transform: translateY(0);
  transition: transform 0.25s 0.6s; }
  .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; }
    .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 6 Free";
        content: "\f00d";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 19px;
        font-weight: 900;
        color: #121212; }
    .pswp__ui .pswp__button .icon {
      width: 13px;
      height: 13px;
      margin: 8px; }
      html[dir="rtl"] .pswp__ui .pswp__button .icon {
        transform: rotate(180deg);
        letter-spacing: 0; }
      .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; }
  @media only screen and (max-width: 768px) {
    .pswp__ui .pswp__button {
      font-size: 11px; } }
  .pswp__ui .pswp__button:hover {
    color: white;
    background-color: #2959D3; }

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #8fd2ee;
  outline: none; }
  @media only screen and (max-width: 991.98px) {
    .flickity-button {
      display: none !important; } }

.flickity-button:hover {
  background: white;
  transition: all ease-in-out 0.5s;
  cursor: pointer;
  transform: scale(1.2); }
  .flickity-button:hover svg {
    fill: #2959D3;
    transition: all ease-in-out 0.5s; }

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F; }

.flickity-button:active {
  opacity: 0.6; }

.flickity-button:disabled {
  opacity: 0;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none; }

.flickity-button-icon {
  fill: currentColor; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 6px #00000029 !important;
  background: #2959D3; }

.flickity-prev-next-button.previous {
  left: 0;
  transform: translate(-50%, -50%); }

.flickity-prev-next-button.next {
  right: 0;
  transform: translate(50%, -50%); }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: -30px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: -30px; }

.flickity-prev-next-button .flickity-button-icon {
  fill: #fff;
  width: 40%;
  height: 40%;
  transition: all ease-in-out 0.5s; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 3px;
  background: #FFDE58;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }
  @media only screen and (max-width: 767.98px) {
    .flickity-page-dots .dot {
      width: 8px;
      height: 8px;
      margin: 0 3px; } }
  @media only screen and (max-width: 575.98px) {
    .flickity-page-dots .dot {
      width: 7px;
      height: 7px;
      margin: 0 1.5px; } }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0; }

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1; }

/* flickity-bar */
.progress.flickitySlider .flickity-page-dots {
  position: relative !important;
  bottom: 0 !important;
  margin: 30px auto 0; }
  @media only screen and (max-width: 767.98px) {
    .progress.flickitySlider .flickity-page-dots {
      margin: 15px auto 0; } }
  .progress.flickitySlider .flickity-page-dots .dot {
    background: #2959D3; }
    .progress.flickitySlider .flickity-page-dots .dot.is-selected {
      opacity: 1; }

.flickitySlider-bar {
  height: 2px;
  background: #e6e6e6;
  width: 100%;
  position: relative;
  margin: 25px auto 0;
  display: none; }
  @media only screen and (max-width: 575.98px) {
    .flickitySlider-bar {
      margin: 15px auto 0; } }
  .flickitySlider-barLine {
    position: absolute;
    top: 0;
    height: 100%;
    width: 40px;
    /* fixed width like scrollbar thumb */
    border-radius: 3px;
    transition: left 0.1s linear;
    background: #121212;
    max-width: 100%; }

.carousel.is-fullscreen .carousel-cell {
  height: 100%; }

.magnifier-thumb-wrapper {
  position: relative;
  display: block;
  top: 0;
  left: 0; }

.magnifier-lens {
  position: absolute;
  border: solid 1px #ccc;
  z-index: 1000;
  top: 0;
  left: 0;
  overflow: hidden; }

.magnifier-loader {
  position: absolute;
  top: 0;
  left: 0;
  border: solid 1px #ccc;
  color: #fff;
  text-align: center;
  background: transparent;
  background: rgba(50, 50, 50, 0.5);
  z-index: 1000;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F323232,endColorstr=#7F323232)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7F323232,endColorstr=#7F323232); }

.magnifier-loader-text {
  font: 13px Arial;
  margin-top: 10px; }

.magnifier-large {
  position: absolute;
  z-index: 100; }

.magnifier-preview {
  padding: 0;
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden; }

.magnifier-preview img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain; }

.opaque {
  opacity: .5;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50); }

.hidden {
  display: none; }

#zoom-preview {
  width: 100%;
  height: 70vh;
  position: absolute;
  top: 0;
  left: 100%;
  /* move to right without affecting layout */
  border: 1px solid #ddd;
  background: #fff;
  z-index: 9;
  pointer-events: none;
  visibility: hidden;
  /* <-- hide initially */ }
  @media only screen and (max-width: 1199.98px) {
    #zoom-preview {
      left: 0 !important;
      width: 100% !important;
      height: auto !important;
      aspect-ratio: 4 / 2 !important; } }

#zoom-preview.visible {
  visibility: visible !important; }

/**
 *
 * 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  ======*/
body {
  width: 100%; }

.body-wraper {
  width: 100%; }

.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 (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; }

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;
  font-weight: 400;
  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-weight: 400;
    font-size: 1.1em;
    color: #1d1d1d;
    height: 70px; }
  #collapse-checkout-confirm table tfoot tr:last-child td {
    border: none !important; }

.dashboard-content .orders-table h3 {
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500; }

.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; }

.alert,
.text-danger {
  line-height: 22px; }

.text-danger {
  display: block;
  margin-top: 0px;
  color: #bf3334;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 12px; }
  @media (min-width: 992px) {
    .text-danger {
      font-size: 11px; } }

#intro {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 16px; }
  @media screen and (min-width: 1025px) and (max-height: 767px) {
    #intro {
      padding-top: 30px;
      padding-bottom: 30px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #intro {
      padding-top: 30px;
      padding-bottom: 30px;
      font-size: 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #intro {
      padding-top: 30px;
      padding-bottom: 30px;
      font-size: 15px; } }
  @media only screen and (max-width: 767px) {
    #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;
    font-weight: 400; }
    @media only screen and (max-width: 767px) {
      #intro h1 {
        margin-bottom: 0px;
        font-size: 1.5em; } }
  #intro .intro__content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #intro .intro__content h1 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #intro .intro__content h1 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #intro .intro__content h1 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #intro .intro__content h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }
  #intro .intro__content.simple-header h1 {
    margin-bottom: 0px; }
    @media only screen and (max-width: 767px) {
      #intro .intro__content.simple-header h1 {
        margin-bottom: 0px; } }

.alert {
  border: 2px solid transparent;
  line-height: 22px;
  background: #ffffff !important;
  border-radius: 0px !important;
  position: relative;
  padding-right: 50px !important;
  font-size: 14px !important; }
  html[dir="rtl"] .alert {
    padding-right: 15px !important;
    padding-left: 50px !important;
    letter-spacing: 0; }
  .alert .close {
    position: absolute;
    top: 10px;
    right: 10px;
    outline: 0;
    border: 0;
    border-radius: 50%;
    padding: 0 !important;
    width: 26px;
    height: 26px;
    color: #1d1d1d; }
  .alert.alert-danger {
    color: #bf3334;
    border-color: #bf3334; }
  .alert a {
    color: #fff;
    text-decoration: underline; }
  .alert i {
    margin-right: 5px; }

.navigation-wrapper {
  margin-top: 30px; }
  .navigation-wrapper .results-block-pagi {
    text-align: right;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 12px; }
    @media only screen and (max-width: 767px) {
      .navigation-wrapper .results-block-pagi {
        padding-top: 10px;
        text-align: center; } }

#footer {
  position: relative;
  z-index: 100;
  background: #F7F7F7;
  margin: 80px 0 0 0; }
  @media only screen and (max-width: 991.98px) {
    #footer {
      margin: 40px 0 0 0; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #footer {
      text-align: center; }
      html[dir="rtl"] #footer {
        text-align: center;
        letter-spacing: 0; } }
  @media only screen and (max-width: 767.98px) {
    #footer {
      text-align: center;
      padding-right: 0;
      padding-left: 0; }
      html[dir="rtl"] #footer {
        text-align: center;
        letter-spacing: 0; } }
  #footer .footer-container {
    margin: 0 auto;
    margin: auto;
    width: 1600px;
    padding-right: 14rem;
    padding-left: 14rem;
    max-width: 100%; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #footer .footer-container {
        padding-right: 8rem;
        padding-left: 8rem; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #footer .footer-container {
        padding-right: 6rem;
        padding-left: 6rem; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #footer .footer-container {
        padding-right: 3rem;
        padding-left: 3rem; } }
    @media only screen and (max-width: 767.98px) {
      #footer .footer-container {
        padding-right: 1.5rem;
        padding-left: 1.5rem; } }
    #footer .footer-container .footer-top {
      border-bottom: 1px solid rgba(41, 89, 211, 0.5);
      padding: 30px 0;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media only screen and (max-width: 767.98px) {
        #footer .footer-container .footer-top {
          flex-direction: column;
          gap: 30px; } }
      @media only screen and (max-width: 991.98px) {
        #footer .footer-container .footer-top {
          padding-bottom: 50px; } }
    #footer .footer-container .footer-links {
      -moz-column-gap: 24px;
      column-gap: 24px;
      display: grid;
      row-gap: 50px;
      transition: opacity .3s ease-out;
      width: 100%;
      padding: 40px 0; }
      @media only screen and (min-width: 992px) {
        #footer .footer-container .footer-links {
          grid-template-columns: repeat(4, 1fr); } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #footer .footer-container .footer-links {
          grid-template-columns: repeat(2, 1fr); } }
      @media only screen and (max-width: 991.98px) {
        #footer .footer-container .footer-links {
          grid-template-columns: 1fr;
          gap: 0;
          padding-top: 0;
          padding-bottom: 50px; } }
      #footer .footer-container .footer-links .col-links .col-title {
        text-align: left;
        font: normal normal 600 16px/1.1 "Poppins", sans-serif;
        letter-spacing: 1.12px;
        color: #121212;
        opacity: 1;
        margin-bottom: 12px;
        position: relative; }
        html[dir="rtl"] #footer .footer-container .footer-links .col-links .col-title {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (min-width: 992px) {
          #footer .footer-container .footer-links .col-links .col-title {
            pointer-events: none; } }
        @media only screen and (max-width: 991.98px) {
          #footer .footer-container .footer-links .col-links .col-title {
            margin-bottom: 1px;
            padding: 25px 15px;
            border-bottom: 1px solid rgba(41, 89, 211, 0.5); }
            #footer .footer-container .footer-links .col-links .col-title:not(.content-title):after {
              font-family: "Font Awesome 5 Pro";
              content: "\f067";
              position: absolute;
              right: 15px;
              font-size: 15px;
              font-weight: 300;
              color: #121212; }
              html[dir="rtl"] #footer .footer-container .footer-links .col-links .col-title:not(.content-title):after {
                right: unset;
                left: 15px;
                letter-spacing: 0; }
            #footer .footer-container .footer-links .col-links .col-title:not(.content-title).active:after {
              content: "\f068"; } }
      @media only screen and (min-width: 992px) {
        #footer .footer-container .footer-links .col-links .content-wrapper {
          display: block !important; } }
      @media only screen and (max-width: 991.98px) {
        #footer .footer-container .footer-links .col-links .content-wrapper {
          padding: 0 15px 20px;
          display: none; } }
      @media only screen and (max-width: 991.98px) {
        #footer .footer-container .footer-links .col-links .col-links {
          margin-top: 15px; } }
      #footer .footer-container .footer-links .col-links .col-links form {
        margin: 15px 0; }
        #footer .footer-container .footer-links .col-links .col-links form a {
          display: flex !important;
          align-items: center;
          justify-content: start;
          gap: 10px;
          font-weight: 500 !important;
          margin: 0px !important;
          max-width: 100%;
          text-align: left;
          font: normal normal 400 14px/2 "Cairo", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          text-transform: capitalize;
          opacity: 1;
          transition: all ease-in-out 0.5s;
          display: block;
          width: max-content;
          max-width: 100%; }
          html[dir="rtl"] #footer .footer-container .footer-links .col-links .col-links form a {
            text-align: right;
            letter-spacing: 0;
            font-family: "Poppins", sans-serif !important;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            #footer .footer-container .footer-links .col-links .col-links form a:hover {
              transition: all ease-in-out 0.5s;
              color: #2959D3; }
              #footer .footer-container .footer-links .col-links .col-links form a:hover svg {
                transition: all ease-in-out 0.5s; }
                #footer .footer-container .footer-links .col-links .col-links form a:hover svg path {
                  fill: #2959D3; } }
          #footer .footer-container .footer-links .col-links .col-links form a svg {
            display: block;
            width: 20px;
            height: 20px; }
            #footer .footer-container .footer-links .col-links .col-links form a svg path {
              fill: #333333; }
      #footer .footer-container .footer-links .col-links .col-links p span,
      #footer .footer-container .footer-links .col-links .col-links a span {
        text-align: left;
        font: normal normal 400 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #333333;
        text-transform: capitalize;
        opacity: 1;
        transition: all ease-in-out 0.5s;
        display: block;
        width: max-content;
        max-width: 100%; }
        html[dir="rtl"] #footer .footer-container .footer-links .col-links .col-links p span, html[dir="rtl"]
        #footer .footer-container .footer-links .col-links .col-links a span {
          text-align: right;
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0; }
      #footer .footer-container .footer-links .col-links .col-links p strong {
        display: block; }
      @media only screen and (min-width: 992px) {
        #footer .footer-container .footer-links .col-links .col-links a:hover {
          transition: all ease-in-out 0.5s; }
          #footer .footer-container .footer-links .col-links .col-links a:hover span {
            color: #2959D3;
            transform: translateX(10px);
            transition: all ease-in-out 0.5s; } }
    #footer .footer-container .footer-col {
      padding: 0; }
      @media only screen and (max-width: 767.98px) {
        #footer .footer-container .footer-col {
          border-bottom: 1px solid #E6E6E6; } }
      #footer .footer-container .footer-col.col-logo {
        order: 1; }
        @media only screen and (min-width: 992px) {
          #footer .footer-container .footer-col.col-logo {
            grid-row: 1 / 4; } }
        #footer .footer-container .footer-col.col-logo .content {
          margin-bottom: 45px; }
          @media only screen and (max-width: 991.98px) {
            #footer .footer-container .footer-col.col-logo .content {
              margin-bottom: 0px; } }
        #footer .footer-container .footer-col.col-logo .content-wrapper {
          display: block !important; }
      #footer .footer-container .footer-col.col-text {
        order: 2; }
        @media only screen and (min-width: 992px) {
          #footer .footer-container .footer-col.col-text {
            grid-column: 2 / 4;
            grid-row: 1 / 2; } }
        #footer .footer-container .footer-col.col-text .content {
          margin-bottom: 45px; }
          @media only screen and (max-width: 991.98px) {
            #footer .footer-container .footer-col.col-text .content {
              margin-bottom: 0px; } }
        #footer .footer-container .footer-col.col-text .content-wrapper {
          display: block !important; }
      #footer .footer-container .footer-col.col-info {
        order: 5; }
        @media only screen and (min-width: 992px) {
          #footer .footer-container .footer-col.col-info {
            grid-column: 3 / 4;
            grid-row: 3 / 4; } }
        #footer .footer-container .footer-col.col-info .content {
          margin-bottom: 45px; }
          @media only screen and (max-width: 991.98px) {
            #footer .footer-container .footer-col.col-info .content {
              margin-bottom: 0px; } }
      #footer .footer-container .footer-col .content .logo {
        display: block; }
        #footer .footer-container .footer-col .content .logo img {
          width: 120px;
          display: block;
          margin: 0;
          height: auto; }
          @media only screen and (max-width: 991.98px) {
            #footer .footer-container .footer-col .content .logo img {
              margin: auto; } }
      #footer .footer-container .footer-col .content .description {
        text-align: left;
        font: normal normal 400 25px/1.6 "Poppins", sans-serif;
        letter-spacing: 1.75px;
        color: #E6E6E6;
        margin: 0 0 20px 0;
        width: 640px;
        max-width: 100%;
        text-transform: uppercase; }
        html[dir="rtl"] #footer .footer-container .footer-col .content .description {
          text-align: right;
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #footer .footer-container .footer-col .content .description {
            font-size: 22px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #footer .footer-container .footer-col .content .description {
            font-size: 19px; } }
        @media only screen and (max-width: 991.98px) {
          #footer .footer-container .footer-col .content .description {
            width: 100%;
            margin: 10px 0 20px;
            font-size: 16px;
            text-align: center; }
            html[dir="rtl"] #footer .footer-container .footer-col .content .description {
              text-align: center;
              letter-spacing: 0; } }
        @media only screen and (max-width: 767.98px) {
          #footer .footer-container .footer-col .content .description br {
            display: none; } }
  #footer #newsletter {
    width: 500px;
    max-width: 100%; }
    @media only screen and (max-width: 991.98px) {
      #footer #newsletter {
        width: 370px; } }
    #footer #newsletter .input-group {
      width: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid rgba(41, 89, 211, 0.5);
      border-radius: 5px; }
      #footer #newsletter .input-group input {
        background: #fff;
        width: 100%;
        border: none;
        line-height: 1.42857;
        outline: none;
        padding: 14px 20px;
        color: #333333;
        font-size: 15px;
        font-weight: 500; }
        #footer #newsletter .input-group input::placeholder {
          color: #333333;
          opacity: 0.7; }
      #footer #newsletter .input-group .input-group-btn .btn {
        margin: 0;
        background: #2959D3;
        border-color: #2959D3;
        border-radius: 0 5px 5px 0; }
        @media only screen and (min-width: 992px) {
          #footer #newsletter .input-group .input-group-btn .btn:hover {
            background: #8fd2ee;
            border-color: #8fd2ee;
            transform: translateY(0px) !important; } }
  #footer .apps-section {
    margin: 25px 0 0 0; }
    #footer .apps-section .apps-links {
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 7px;
      max-width: 100%; }
      #footer .apps-section .apps-links img {
        height: 45px;
        width: auto; }
  #footer .fsocials {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 1rem; }
    #footer .fsocials li {
      transition: all ease-in-out 0.5s;
      opacity: 0.85; }
      #footer .fsocials li a {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all ease-in-out 0.5s;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #2959d3; }
        #footer .fsocials li a svg {
          height: 17px;
          width: auto; }
  #footer .footer-bottom {
    border: none !important;
    border-top: 1px solid #262626;
    background: #2959D3; }
    #footer .footer-bottom .main-info {
      margin: auto;
      width: 1600px;
      padding-right: 14rem;
      padding-left: 14rem;
      max-width: 100%;
      padding-top: 18px;
      padding-bottom: 18px;
      display: grid;
      row-gap: 20px; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #footer .footer-bottom .main-info {
          padding-right: 8rem;
          padding-left: 8rem; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #footer .footer-bottom .main-info {
          padding-right: 6rem;
          padding-left: 6rem; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #footer .footer-bottom .main-info {
          padding-right: 3rem;
          padding-left: 3rem; } }
      @media only screen and (max-width: 767.98px) {
        #footer .footer-bottom .main-info {
          padding-right: 1.5rem;
          padding-left: 1.5rem; } }
      @media only screen and (min-width: 1200px) {
        #footer .footer-bottom .main-info {
          grid-template-columns: 1fr auto 1fr;
          justify-content: space-between;
          justify-items: unset;
          align-items: center;
          row-gap: 8px; } }
      #footer .footer-bottom .main-info .copyrights {
        display: flex;
        gap: 10px;
        align-items: center; }
        @media only screen and (max-width: 1199.98px) {
          #footer .footer-bottom .main-info .copyrights {
            flex-direction: column;
            row-gap: 25px;
            text-align: center; } }
        #footer .footer-bottom .main-info .copyrights img {
          width: 70px;
          height: auto; }
      #footer .footer-bottom .main-info .payment .payment-logos-wrapper {
        display: flex;
        align-items: center;
        justify-content: start;
        flex-wrap: wrap;
        gap: 5px; }
        @media only screen and (max-width: 1199.98px) {
          #footer .footer-bottom .main-info .payment .payment-logos-wrapper {
            justify-content: center; } }
        #footer .footer-bottom .main-info .payment .payment-logos-wrapper img {
          aspect-ratio: 1.53/1;
          width: 40px; }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #footer .footer-bottom .main-info .payment .payment-logos-wrapper img {
              width: 36px; } }
          @media only screen and (max-width: 767.98px) {
            #footer .footer-bottom .main-info .payment .payment-logos-wrapper img {
              width: 30px; } }
      #footer .footer-bottom .main-info .text {
        text-align: left;
        font: normal normal 400 14px/1.5 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #fff;
        text-decoration: none; }
        @media only screen and (max-width: 1199.98px) {
          #footer .footer-bottom .main-info .text {
            text-align: center; } }
        #footer .footer-bottom .main-info .text a {
          color: #fff; }
        @media only screen and (max-width: 1199.98px) {
          #footer .footer-bottom .main-info .text span {
            display: block; } }
        html[dir="rtl"] #footer .footer-bottom .main-info .text {
          text-align: right;
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0;
          letter-spacing: 0; }
          @media only screen and (max-width: 1199.98px) {
            html[dir="rtl"] #footer .footer-bottom .main-info .text {
              text-align: center; } }
      #footer .footer-bottom .main-info .powered {
        display: flex;
        align-items: center;
        justify-content: end; }
        @media only screen and (max-width: 1199.98px) {
          #footer .footer-bottom .main-info .powered {
            justify-content: center; } }
        #footer .footer-bottom .main-info .powered a {
          text-align: left;
          font: normal normal 14px/1.5 "Poppins", sans-serif;
          letter-spacing: 0;
          color: #fff;
          text-decoration: none; }
          #footer .footer-bottom .main-info .powered a span {
            text-decoration: underline; }
        #footer .footer-bottom .main-info .powered .dot {
          color: #fff;
          margin: 0 10px; }

/*==================================
=   bottom nav-section       =
==================================*/
.bottom-navigation {
  position: sticky;
  left: 0px;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: auto;
  background: #2959D3;
  padding: 10px 1.5rem;
  box-shadow: 0px 5px 10px #2959D3;
  z-index: 1004; }
  @media only screen and (min-width: 1200px) {
    .bottom-navigation {
      display: none; } }
  .bottom-navigation .nav-item {
    flex-grow: 1;
    padding: 0px 3px;
    cursor: pointer;
    transition: all 0.2s ease-out;
    width: 20%; }
    @media only screen and (max-width: 350px) {
      .bottom-navigation .nav-item {
        padding: 0px 7px; } }
    .bottom-navigation .nav-item .nav-text {
      margin: auto;
      transition: all 0.3s ease;
      display: block;
      text-align: center;
      font: normal normal 400 10px/19px "Poppins", sans-serif;
      letter-spacing: 00;
      color: #fff;
      opacity: 1; }
      @media only screen and (max-width: 350px) {
        .bottom-navigation .nav-item .nav-text {
          font-size: 8px; } }
    .bottom-navigation .nav-item .cart-icon {
      position: relative;
      display: block; }
      .bottom-navigation .nav-item .cart-icon .count {
        align-items: center;
        background: #FFDE58;
        border-radius: 100px;
        color: #fff;
        display: flex;
        font-size: 9px;
        font-weight: 700;
        justify-content: center;
        line-height: 1px;
        padding-top: 1px;
        position: absolute;
        text-align: center;
        text-decoration: none;
        height: 15px;
        left: 51%;
        top: -5.5px;
        width: 15px; }
        html[dir="rtl"] .bottom-navigation .nav-item .cart-icon .count {
          right: 51%;
          left: unset;
          letter-spacing: 0; }
    .bottom-navigation .nav-item svg {
      width: auto;
      height: 15px;
      margin: 0px auto 5px;
      display: block; }
      @media only screen and (max-width: 500px) {
        .bottom-navigation .nav-item svg {
          height: 16px;
          width: 16px; } }
    .bottom-navigation .nav-item #form-language a {
      margin: auto;
      transition: all 0.3s ease;
      display: block;
      text-align: center;
      font: normal normal 400 11px/19px "Poppins", sans-serif;
      letter-spacing: 0.16px;
      color: #000000;
      opacity: 1; }
      .bottom-navigation .nav-item #form-language a:not(.showLanguage) {
        display: none; }
      @media only screen and (max-width: 350px) {
        .bottom-navigation .nav-item #form-language a {
          font-size: 8px; } }
      .bottom-navigation .nav-item #form-language a img {
        width: 16px;
        display: none; }
      html[dir="rtl"] .bottom-navigation .nav-item #form-language a {
        letter-spacing: 0;
        font-family: "Cairo", sans-serif;
        letter-spacing: 0; }
      .bottom-navigation .nav-item #form-language a.en-gb {
        font-family: "Poppins", sans-serif; }
      .bottom-navigation .nav-item #form-language a.ar {
        font-family: "Cairo", sans-serif; }

/* */
.cookie-bar {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  background: rgba(15, 15, 15, 0.4);
  display: flex;
  align-items: end;
  justify-content: start;
  padding: 50px; }
  @media only screen and (max-width: 991.98px) {
    .cookie-bar {
      justify-content: center;
      padding: 25px 15px; } }
  .cookie-bar--active {
    z-index: 9999;
    opacity: 1; }
    .cookie-bar--active .cookie-bar-wrapper {
      transition: all ease-in-out 0.5s;
      transform: scale(1) !important; }
  .cookie-bar .cookie-bar-wrapper {
    transform: scale(0);
    border-radius: 10px;
    width: 370px;
    max-width: calc(100% - 30px);
    background: #FAFAFA;
    overflow: hidden; }
    .cookie-bar .cookie-bar-wrapper .content {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      align-items: center;
      background: #fff;
      padding: 20px 15px;
      gap: 20px;
      border: 1px solid #333333;
      box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.8); }
      @media only screen and (max-width: 1199.98px) {
        .cookie-bar .cookie-bar-wrapper .content {
          flex-direction: column; } }
      .cookie-bar .cookie-bar-wrapper .content p {
        text-align: left;
        font: normal normal 400 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #121212;
        opacity: 1; }
        html[dir="rtl"] .cookie-bar .cookie-bar-wrapper .content p {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          .cookie-bar .cookie-bar-wrapper .content p {
            font-size: 13px;
            line-height: 1.5; } }
        .cookie-bar .cookie-bar-wrapper .content p a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          .cookie-bar .cookie-bar-wrapper .content p a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            .cookie-bar .cookie-bar-wrapper .content p a:hover:after {
              width: 100%; } }
          html[dir="rtl"] .cookie-bar .cookie-bar-wrapper .content p a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            .cookie-bar .cookie-bar-wrapper .content p a:hover {
              color: #8fd2ee; } }
      .cookie-bar .cookie-bar-wrapper .content #cookie-understand {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        width: 100%; }
        @media only screen and (max-width: 767.98px) {
          .cookie-bar .cookie-bar-wrapper .content #cookie-understand {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          .cookie-bar .cookie-bar-wrapper .content #cookie-understand:hover {
            border-color: #8fd2ee; }
            .cookie-bar .cookie-bar-wrapper .content #cookie-understand:hover input,
            .cookie-bar .cookie-bar-wrapper .content #cookie-understand:hover span {
              color: #fff; }
            .cookie-bar .cookie-bar-wrapper .content #cookie-understand:hover .icon svg path {
              fill: #fff; } }
        .cookie-bar .cookie-bar-wrapper .content #cookie-understand input,
        .cookie-bar .cookie-bar-wrapper .content #cookie-understand span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        .cookie-bar .cookie-bar-wrapper .content #cookie-understand .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          .cookie-bar .cookie-bar-wrapper .content #cookie-understand .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            .cookie-bar .cookie-bar-wrapper .content #cookie-understand .icon svg path {
              fill: #2959D3; }
        .cookie-bar .cookie-bar-wrapper .content #cookie-understand .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            .cookie-bar .cookie-bar-wrapper .content #cookie-understand .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            .cookie-bar .cookie-bar-wrapper .content #cookie-understand .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            .cookie-bar .cookie-bar-wrapper .content #cookie-understand .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }

#iosInstallPrompt .a2hs-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9000; }

#iosInstallPrompt .a2hs-popup {
  position: fixed;
  bottom: 10px;
  width: calc(100% - 20px);
  left: 10px;
  right: 10px;
  border-radius: 10px;
  background: #f9f9f9;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  z-index: 9001;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.25);
  text-align: left; }
  #iosInstallPrompt .a2hs-popup .a2hs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 0 0 10px 0; }
    #iosInstallPrompt .a2hs-popup .a2hs-header h2 {
      text-align: left;
      font: normal normal 400 20px/1 -apple-system, BlinkMacSystemFont, sans-serif;
      letter-spacing: 0px;
      color: #333333;
      opacity: 1; }
      html[dir="rtl"] #iosInstallPrompt .a2hs-popup .a2hs-header h2 {
        font-family: "Cairo", sans-serif !important;
        letter-spacing: 0;
        text-align: right;
        letter-spacing: 0; }
    #iosInstallPrompt .a2hs-popup .a2hs-header button {
      background: none;
      border: none;
      color: #007AFF;
      font-size: 16px;
      cursor: pointer; }

#iosInstallPrompt p {
  margin: 20px 0;
  font: normal normal 400 15px/20px -apple-system, BlinkMacSystemFont, sans-serif; }

#iosInstallPrompt ol {
  font-size: 15px;
  margin: 10px 0; }
  #iosInstallPrompt ol li {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
    font: normal normal 400 15px/20px -apple-system, BlinkMacSystemFont, sans-serif; }
    #iosInstallPrompt ol li svg {
      width: 25px;
      height: 25px;
      display: block;
      min-width: 25px; }

.whatsapp-sticky {
  position: fixed;
  bottom: 120px;
  right: 24px;
  z-index: 101;
  display: block; }
  html[dir="rtl"] .whatsapp-sticky {
    left: 24px;
    right: unset;
    letter-spacing: 0; }
  @media only screen and (max-width: 767px) {
    .whatsapp-sticky {
      bottom: 75px;
      right: 15px; }
      html[dir="rtl"] .whatsapp-sticky {
        left: 15px;
        right: unset;
        letter-spacing: 0; } }
  .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: 991.98px) {
  .col-info-wrapper {
    max-width: 100%; } }

/*===================================
=            Message Bar           =
===================================*/
#header-notifications {
  background: #8fd2ee;
  overflow: hidden;
  width: 100%;
  height: 50px; }
  @media only screen and (max-width: 1199.98px) {
    #header-notifications {
      height: 66px; } }
  #header-notifications .single-notification {
    height: 50px;
    overflow: hidden; }
    @media only screen and (max-width: 1199.98px) {
      #header-notifications .single-notification {
        height: 66px; } }
    #header-notifications .single-notification .wrapper {
      margin: auto;
      width: 1600px;
      padding-right: 14rem;
      padding-left: 14rem;
      max-width: 100%;
      padding-top: 13px;
      padding-bottom: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      height: 50px; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #header-notifications .single-notification .wrapper {
          padding-right: 8rem;
          padding-left: 8rem; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #header-notifications .single-notification .wrapper {
          padding-right: 6rem;
          padding-left: 6rem; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #header-notifications .single-notification .wrapper {
          padding-right: 3rem;
          padding-left: 3rem; } }
      @media only screen and (max-width: 767.98px) {
        #header-notifications .single-notification .wrapper {
          padding-right: 1.5rem;
          padding-left: 1.5rem; } }
      @media only screen and (max-width: 1199.98px) {
        #header-notifications .single-notification .wrapper {
          justify-content: space-between;
          height: 66px; } }
      #header-notifications .single-notification .wrapper .description {
        text-align: left;
        font: normal normal 600 12px/20px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical; }
        html[dir="rtl"] #header-notifications .single-notification .wrapper .description {
          font-family: "Cairo", sans-serif;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #header-notifications .single-notification .wrapper .description {
            font-size: 12px; } }
      #header-notifications .single-notification .wrapper .link-btn {
        background-color: #75A5D6;
        width: max-content;
        padding: 0 15px;
        font: normal normal 700 12px/28px "Poppins", sans-serif;
        letter-spacing: 0.3px;
        color: #FFFFFF;
        opacity: 1;
        min-width: 100px;
        transition: all 0.25s ease-in-out;
        height: 28px;
        text-transform: capitalize;
        text-align: center;
        color: #FFFFFF;
        opacity: 1;
        border-radius: 5px; }
        html[dir="rtl"] #header-notifications .single-notification .wrapper .link-btn {
          font-family: "Cairo", sans-serif;
          letter-spacing: 0;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #header-notifications .single-notification .wrapper .link-btn {
            font-size: 10px; } }
        @media only screen and (min-width: 992px) {
          #header-notifications .single-notification .wrapper .link-btn:hover {
            background: #ffffff;
            color: #000000;
            transition: all 0.25s ease-in-out; } }

/*===================================
=               Header              =
===================================*/
.header-socialBar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2959D3;
  padding: 0;
  position: relative;
  z-index: 91031;
  margin: auto;
  width: 1600px;
  padding-right: 14rem;
  padding-left: 14rem;
  max-width: 100%; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .header-socialBar {
      padding-right: 8rem;
      padding-left: 8rem; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .header-socialBar {
      padding-right: 6rem;
      padding-left: 6rem; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .header-socialBar {
      padding-right: 3rem;
      padding-left: 3rem; } }
  @media only screen and (max-width: 767.98px) {
    .header-socialBar {
      padding-right: 1.5rem;
      padding-left: 1.5rem; } }
  .header-socialBar .hs.lhs-wrapper {
    display: flex; }
    .header-socialBar .hs.lhs-wrapper .lhs-links {
      display: flex;
      gap: 15px; }
      @media only screen and (max-width: 767.98px) {
        .header-socialBar .hs.lhs-wrapper .lhs-links {
          gap: 10px; } }
      .header-socialBar .hs.lhs-wrapper .lhs-links li {
        display: flex; }
        .header-socialBar .hs.lhs-wrapper .lhs-links li a.lhs-link-item {
          text-align: left;
          font: normal normal 400 13px/20px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #fff;
          opacity: 1;
          padding: 4px;
          cursor: pointer;
          text-decoration: none; }
          html[dir="rtl"] .header-socialBar .hs.lhs-wrapper .lhs-links li a.lhs-link-item {
            letter-spacing: 0;
            font-family: "Poppins", sans-serif;
            letter-spacing: 0; }
          .header-socialBar .hs.lhs-wrapper .lhs-links li a.lhs-link-item span.text {
            position: relative; }
            .header-socialBar .hs.lhs-wrapper .lhs-links li a.lhs-link-item span.text:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
          @media only screen and (min-width: 992px) {
            .header-socialBar .hs.lhs-wrapper .lhs-links li a.lhs-link-item:hover span.text {
              color: #8fd2ee; }
              .header-socialBar .hs.lhs-wrapper .lhs-links li a.lhs-link-item:hover span.text:after {
                width: 100%; } }
  .header-socialBar .hs.rhs-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px; }
    .header-socialBar .hs.rhs-wrapper .fsocials {
      display: flex;
      align-items: center;
      justify-content: start;
      flex-wrap: wrap;
      gap: 1rem; }
      @media only screen and (max-width: 767.98px) {
        .header-socialBar .hs.rhs-wrapper .fsocials {
          display: none; } }
      .header-socialBar .hs.rhs-wrapper .fsocials li {
        transition: all ease-in-out 0.5s;
        opacity: 0.85; }
        .header-socialBar .hs.rhs-wrapper .fsocials li a {
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all ease-in-out 0.5s;
          width: 20px;
          height: 20px; }
          .header-socialBar .hs.rhs-wrapper .fsocials li a svg {
            height: 17px;
            width: auto; }
    .header-socialBar .hs.rhs-wrapper .ship-wraper .btn-default {
      padding: 0 !important;
      min-width: 80px;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: none !important;
      background-color: transparent !important;
      box-shadow: none !important; }
      .header-socialBar .hs.rhs-wrapper .ship-wraper .btn-default span:not(.fa) {
        font: normal normal normal 13px/25px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1; }
    .header-socialBar .hs.rhs-wrapper .ship-wraper .dropdown-menu {
      right: 0 !important;
      left: unset !important;
      min-width: max-content !important; }

#navigation-bar {
  z-index: 999;
  position: sticky;
  top: 0px;
  background: #2959D3;
  transition: all ease-in-out 0.5s; }
  #navigation-bar .header-wrapper {
    display: block;
    width: 100%;
    height: 100%; }
    #navigation-bar .header-wrapper .top-menu {
      height: 100%; }
      #navigation-bar .header-wrapper .top-menu .menu {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        height: 100%;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
        list-style: none;
        gap: 10px; }
        #navigation-bar .header-wrapper .top-menu .menu li {
          height: 100%;
          display: flex;
          align-items: center; }
          #navigation-bar .header-wrapper .top-menu .menu li a {
            display: flex;
            align-items: center;
            gap: 5px;
            flex-wrap: wrap;
            color: #2959D3;
            color: #fff;
            padding: 5px 7px;
            border-radius: 5px;
            text-align: center;
            font: normal normal 400 13px/23px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: white;
            opacity: 1;
            transition: all ease-in-out; }
            #navigation-bar .header-wrapper .top-menu .menu li a.lang-link {
              font-family: "Cairo", sans-serif !important;
              font-weight: 500 !important;
              margin: 0px !important; }
              html[dir="rtl"] #navigation-bar .header-wrapper .top-menu .menu li a.lang-link {
                font-family: "Poppins", sans-serif !important;
                letter-spacing: 0; }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              #navigation-bar .header-wrapper .top-menu .menu li a span {
                display: none;
                opacity: 0;
                visibility: hidden; } }
            @media only screen and (max-width: 767px) {
              #navigation-bar .header-wrapper .top-menu .menu li a span {
                display: none;
                opacity: 0;
                visibility: hidden; } }
            #navigation-bar .header-wrapper .top-menu .menu li a:hover {
              background-color: #8fd2ee;
              transition: all ease-in-out; }
    #navigation-bar .header-wrapper .top-bar {
      background-color: #2959D3; }
      #navigation-bar .header-wrapper .top-bar .top-bar-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 35px;
        width: 100%; }
        #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency {
          padding: 0px; }
          #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .open > .btn-default.dropdown-toggle {
            background-color: transparent; }
          #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .btn-default {
            max-width: 230px;
            border: 0;
            padding: 5px 7px;
            position: relative;
            bottom: 0px;
            background-color: transparent !important;
            font: normal normal 400 16px/23px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: white;
            border-radius: 5px; }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .btn-default {
                background-color: transparent; } }
            @media only screen and (max-width: 767px) {
              #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .btn-default {
                background-color: transparent; } }
            #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .btn-default:hover {
              background-color: #8fd2ee !important; }
            #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .btn-default:focus {
              outline: none !important; }
              @media only screen and (min-width: 768px) and (max-width: 992px) {
                #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .btn-default:focus {
                  background-color: transparent;
                  color: #fff; } }
              @media only screen and (max-width: 767px) {
                #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .btn-default:focus {
                  background-color: transparent;
                  color: #fff; } }
          #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .flagstrap {
            width: initial;
            margin-left: 0px;
            transition: all ease-in-out 0.5s; }
            #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .flagstrap.show .caret {
              opacity: 0 !important;
              transition: all ease-in-out 0.5s; }
          #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .dropdown-menu {
            border-top: 0px;
            border-bottom: 0px;
            border-left: 0px;
            border-right: 0px;
            padding: 0;
            width: 100%;
            overflow-x: visible !important;
            border-radius: 3px;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
            webkit-animation-name: fadeIn;
            animation-name: fadeIn;
            -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
            -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
            transform: translateY(100%) !important;
            right: 0px !important;
            bottom: -5px !important;
            top: unset !important;
            left: unset !important;
            min-width: 120px !important; }
            #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .dropdown-menu:before {
              content: "";
              position: absolute;
              top: -10px;
              right: 10px;
              background: url(../img/ico/drop-arrow.png) 0 0 no-repeat;
              width: 1.6875rem;
              height: 0.6875rem; }
            #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .dropdown-menu li {
              border-bottom: 1px solid #f2f2f2;
              display: block !important;
              margin-left: 0px !important;
              margin-right: 0px !important; }
              #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .dropdown-menu li a {
                display: block !important;
                font-size: 15px !important;
                color: #000 !important;
                padding: 17px 20px 15px 20px; }
                @media only screen and (min-width: 768px) and (max-width: 992px) {
                  #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .dropdown-menu li a {
                    color: #000; } }
                @media only screen and (max-width: 767px) {
                  #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .dropdown-menu li a {
                    color: #000; } }
                #navigation-bar .header-wrapper .top-bar .top-bar-wrapper .language-currency .currency .ship-wraper .dropdown-menu li a:hover {
                  cursor: pointer; }
    #navigation-bar .header-wrapper #main-header-bar {
      background-color: #2959D3; }
      #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: height 0.2s ease;
        z-index: 1;
        padding: 10px 0;
        gap: 45px; }
        @media only screen and (min-width: 1551px) {
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper {
            gap: 40px; } }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper {
            gap: 35px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper {
            gap: 22px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper {
            gap: 25px; } }
        @media only screen and (max-width: 767px) {
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper {
            gap: 15px; } }
        @media only screen and (max-width: 991.98px) {
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper #logo {
            width: 80px;
            /* Fixed width */
            flex-shrink: 0;
            text-align: center; } }
        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper #logo a {
          display: block; }
        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper #logo img {
          width: 80px;
          height: auto; }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper #logo img {
              width: 75px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper #logo img {
              width: 70px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper #logo img {
              width: 65px; } }
          @media only screen and (max-width: 767.98px) {
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper #logo img {
              width: 60px; } }
        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .menu-button {
          display: flex;
          align-items: center;
          gap: 15px; }
          @media only screen and (min-width: 992px) {
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .menu-button {
              display: none; } }
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .menu-button .mobile-hs svg {
            height: 19px;
            margin: 0;
            min-width: 16px;
            width: auto;
            stroke: #ffffff; }
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .menu-button .mobile-hs.search-btn svg path {
            fill: #fff; }
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .menu-button #header-menu-toggle {
            background: none;
            border-style: none;
            box-shadow: none;
            text-transform: none;
            padding: 0px !important; }
        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group {
          display: flex;
          align-items: center;
          justify-content: flex-end; }
          @media only screen and (max-width: 991.98px) {
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group {
              display: none;
              opacity: 0;
              visibility: hidden; } }
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group .top-menu.secondary-menu {
            justify-content: flex-end; }
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group .top-menu.secondary-menu .menu {
              gap: 45px; }
              @media only screen and (min-width: 1551px) {
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group .top-menu.secondary-menu .menu {
                  gap: 40px; } }
              @media only screen and (min-width: 1200px) and (max-width: 1550px) {
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group .top-menu.secondary-menu .menu {
                  gap: 35px; } }
              @media only screen and (min-width: 992px) and (max-width: 1199px) {
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group .top-menu.secondary-menu .menu {
                  gap: 22px; } }
              @media only screen and (min-width: 768px) and (max-width: 992px) {
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group .top-menu.secondary-menu .menu {
                  gap: 25px; } }
              @media only screen and (max-width: 767px) {
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group .top-menu.secondary-menu .menu {
                  gap: 15px; } }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .header-links-group .top-menu.secondary-menu .menu li a {
                gap: 10px; }
        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links {
          display: flex;
          height: 100%;
          list-style: none;
          justify-content: flex-end;
          padding: 0 16px;
          gap: 2rem; }
          html[dir="rtl"] #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links {
            padding: 0 16px;
            letter-spacing: 0; }
          @media only screen and (max-width: 767.98px) {
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links {
              gap: 15px; } }
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li {
            display: flex; }
            @media only screen and (max-width: 1199.98px) {
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li:not(.show-mobile) {
                display: none; } }
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .rhs-item-wrapper {
              align-content: center;
              align-items: center;
              cursor: pointer;
              display: flex;
              flex-direction: column;
              gap: 8px;
              text-align: center;
              text-decoration: none;
              background: transparent;
              outline: none;
              border: none; }
              @media only screen and (max-width: 767.98px) {
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .rhs-item-wrapper {
                  width: auto; } }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .rhs-item-wrapper svg {
                height: 18px;
                margin: 0;
                min-width: 16px;
                width: auto; }
                @media only screen and (max-width: 1199.98px) {
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .rhs-item-wrapper svg {
                    height: 17px;
                    width: auto; } }
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.cart-link-wrapper {
              position: relative; }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.cart-link-wrapper a {
                display: none; }
                @media only screen and (max-width: 1199.98px) {
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.cart-link-wrapper a {
                    display: block;
                    z-index: 1;
                    position: absolute;
                    width: 100%;
                    height: 100%; } }
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item {
              cursor: pointer;
              width: auto; }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper {
                align-items: center;
                display: flex;
                justify-content: center;
                transition: transform .1s ease;
                gap: 7px; }
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper .cart-icon {
                  height: 25px;
                  position: relative; }
                  @media only screen and (max-width: 1199.98px) {
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper .cart-icon {
                      height: 17px; } }
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper .cart-icon svg {
                    height: 100%;
                    width: auto; }
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper .cart-icon .count {
                    align-items: center;
                    background: #8fd2ee;
                    border-radius: 100px;
                    color: #fff;
                    display: flex;
                    font-size: 9px;
                    font-weight: 700;
                    justify-content: center;
                    line-height: 1px;
                    padding-top: 1px;
                    position: absolute;
                    text-align: center;
                    text-decoration: none;
                    height: 19px;
                    right: -9.5px;
                    top: -9.5px;
                    width: 19px; }
                    html[dir="rtl"] #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper .cart-icon .count {
                      right: unset;
                      left: -9.5px;
                      letter-spacing: 0; }
                @media only screen and (max-width: 1199.98px) {
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper .cart-data {
                    display: none; } }
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper .cart-data .cart {
                  display: block; }
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .cart-item .cart-item-wrapper .cart-data .price {
                  display: block;
                  margin: 5px 0 0 0;
                  opacity: 1;
                  font-weight: bold; }
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .title {
              display: initial;
              height: 1em;
              transition: opacity .1s ease-out;
              text-transform: capitalize;
              text-align: center;
              font: normal normal 400 11px/15px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #fff;
              opacity: 1;
              opacity: 0.9; }
              html[dir="rtl"] #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .title {
                letter-spacing: 0;
                font-family: "Cairo", sans-serif;
                letter-spacing: 0; }
              @media only screen and (max-width: 1199.98px) {
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .title:not(.price) {
                  display: none; } }
              @media only screen and (max-width: 1199.98px) {
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .title {
                  display: none; } }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .title.cart {
                padding-top: 8px;
                height: 20px; }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li .title.price {
                height: 12px;
                margin-top: 2px; }
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper {
              position: relative; }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper:hover .language-dropdown {
                visibility: visible;
                opacity: 1;
                z-index: 2;
                transform: translateY(0%); }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown {
                position: absolute;
                left: 0;
                top: 95%;
                background: #ffffff;
                min-width: 100%;
                width: max-content;
                padding: 0;
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
                visibility: hidden;
                opacity: 0;
                z-index: -1;
                transform: translateY(1em);
                transition: all 0.25s 0s, visibility 0s, z-index 0s, opacity 0.15s 0s; }
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown:after {
                  position: absolute;
                  left: 0;
                  bottom: 80%;
                  height: 100%;
                  background-color: transparent;
                  content: ""; }
                html[dir="rtl"] #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown {
                  left: unset;
                  right: 0;
                  letter-spacing: 0; }
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown form {
                  display: flex;
                  flex-direction: column; }
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown form a {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    transition: opacity .1s ease-out;
                    text-align: center;
                    font: normal normal 700 11px/45px "Poppins", sans-serif;
                    letter-spacing: 0.22px;
                    color: #000000;
                    opacity: 1;
                    transition: all ease-in-out 0.5;
                    padding: 0 10px !important; }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown form a img {
                      width: 16px; }
                    html[dir="rtl"] #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown form a {
                      letter-spacing: 0;
                      font-family: "Cairo", sans-serif;
                      letter-spacing: 0; }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown form a.en-gb {
                      font-family: "Poppins", sans-serif; }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown form a.ar {
                      font-family: "Cairo", sans-serif; }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.language-wrapper .language-dropdown form a:hover {
                      color: #ffffff;
                      background: #8fd2ee;
                      transition: all ease-in-out 0.5; }
            #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link {
              position: relative; }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link:hover .wishlist-tooltip {
                display: block;
                top: 100%;
                opacity: .9;
                transform: translate(-50%, 0);
                transition: all ease-in-out 0.5s;
                pointer-events: initial; }
              #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip {
                pointer-events: none;
                opacity: 0;
                transform: translate(-50%, 50px);
                transition: all ease-in-out 0.5s;
                position: absolute;
                left: 50%;
                top: 100%;
                display: block;
                padding: 15px 0 0 0; }
                #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content {
                  background: #fff;
                  width: 200px;
                  border-radius: 12px;
                  box-shadow: 0px 3px 6px #00000029;
                  padding: 11px 17px;
                  position: relative; }
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content:before {
                    content: '';
                    border: 5px solid transparent;
                    /* opinion 4 */
                    z-index: 1001;
                    /* absurdity 1 */
                    font-size: .9em;
                    /* opinion 3 */
                    line-height: 1;
                    user-select: none;
                    pointer-events: none;
                    position: absolute;
                    left: 50%;
                    top: -10px;
                    transform: translateX(-50%);
                    bottom: 100%;
                    border-top-width: 0;
                    border-bottom-color: white; }
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .text {
                    text-align: left;
                    font: normal normal 600 14px/2 "Poppins", sans-serif;
                    letter-spacing: 0px;
                    color: #333333;
                    opacity: 1;
                    margin: 0 0 10px 0;
                    font-size: 12px; }
                    html[dir="rtl"] #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .text {
                      letter-spacing: 0;
                      font-family: "Cairo", sans-serif !important;
                      text-align: right;
                      letter-spacing: 0; }
                    @media only screen and (max-width: 991.98px) {
                      #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .text {
                        font-size: 13px;
                        line-height: 1.5; } }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .text a {
                      font-family: inherit;
                      line-height: inherit;
                      font-size: inherit;
                      font-weight: inherit;
                      color: #2959D3;
                      display: inline-block;
                      position: relative;
                      transition: all ease-in-out 0.5s; }
                      #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .text a:after {
                        border-top: 1px solid #8fd2ee;
                        content: "";
                        display: block;
                        height: 0;
                        transition: width .3s ease-out;
                        width: 0; }
                      @media only screen and (min-width: 992px) {
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .text a:hover:after {
                          width: 100%; } }
                      html[dir="rtl"] #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .text a {
                        direction: ltr;
                        letter-spacing: 0; }
                      @media only screen and (min-width: 992px) {
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .text a:hover {
                          color: #8fd2ee; } }
                  #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn {
                    position: relative;
                    background: #fff;
                    cursor: pointer;
                    width: max-content;
                    text-align: center;
                    border-radius: 8px;
                    transition: 400ms;
                    text-decoration: none;
                    z-index: 90;
                    overflow: hidden;
                    border: 1px solid #2959D3;
                    display: block;
                    width: max-content;
                    border-radius: 15px; }
                    @media only screen and (max-width: 767.98px) {
                      #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn {
                        width: 100%; } }
                    @media only screen and (min-width: 992px) {
                      #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn:hover {
                        border-color: #8fd2ee; }
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn:hover input,
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn:hover span {
                          color: #fff; }
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn:hover .icon svg path {
                          fill: #fff; } }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn input,
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn span {
                      width: 100%;
                      position: relative;
                      z-index: 9;
                      padding: 16px 18px;
                      text-align: center;
                      font: normal normal 600 15px/1.4 "Poppins", sans-serif;
                      letter-spacing: 0px;
                      color: #2959D3;
                      text-transform: none;
                      opacity: 1;
                      display: block;
                      margin: 0;
                      border: none;
                      background: transparent; }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn .icon {
                      display: flex;
                      align-items: center;
                      justify-content: space-between;
                      gap: 13px; }
                      #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn .icon svg {
                        width: 7px;
                        display: block;
                        height: auto; }
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn .icon svg path {
                          fill: #2959D3; }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn .circle {
                      background-color: #8fd2ee;
                      border-radius: 1000px;
                      position: absolute;
                      left: 0;
                      top: 0;
                      width: 0px;
                      height: 0px;
                      margin-left: 0px;
                      margin-top: 0px;
                      pointer-events: none;
                      /*animation-timing-function: ease-in-out; */
                      opacity: 0; }
                      @media only screen and (max-width: 991.98px) {
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn .circle {
                          display: none; } }
                      @media only screen and (min-width: 992px) {
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn .circle.explode-circle {
                          animation: explode 0.5s forwards; } }
                      @media only screen and (min-width: 992px) {
                        #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn .circle.desplode-circle {
                          animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }
                    #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper .rhs-links li.wishlist-link .wishlist-tooltip-content .link-btn span {
                      font-size: 12px;
                      font-weight: 300;
                      padding: 7px 12px; }
        @media only screen and (max-width: 991.98px) {
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .menu-button,
          #navigation-bar .header-wrapper #main-header-bar .main-header-wrapper .rhs-wrapper {
            flex: 1;
            /* Equal width */ } }

/*===================================
=           sidebar-cart-block      =
===================================*/
body.show-quick-cart {
  overflow: hidden !important;
  height: 100% !important;
  transition: all ease-in-out 1s 0.4s; }
  body.show-quick-cart #sidebar-cart-block {
    right: 0;
    visibility: visible;
    transition: all ease-in-out 1s; }
    html[dir="rtl"] body.show-quick-cart #sidebar-cart-block {
      left: 0 !important;
      letter-spacing: 0; }
    body.show-quick-cart #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product {
      opacity: 1;
      transform: translateY(0px);
      transition: all ease-in-out 1s;
      transition-delay: 0.25s; }
    body.show-quick-cart #sidebar-cart-block #cart-body #cart-items-wrapper .empty .icon {
      opacity: 1;
      transform: translateY(0px);
      transition: all ease-in-out 1s;
      transition-delay: 0.25s; }
    body.show-quick-cart #sidebar-cart-block #cart-body #cart-items-wrapper .empty .main-text {
      opacity: 1;
      transform: translateY(0px);
      transition: all ease-in-out 1s;
      transition-delay: 0.35s; }
    body.show-quick-cart #sidebar-cart-block #cart-body #cart-items-wrapper .empty .categories {
      opacity: 1;
      transform: translateY(0px);
      transition: all ease-in-out 1s;
      transition-delay: 0.45s; }

#sidebar-cart-block {
  background: #fff;
  position: fixed;
  display: block;
  width: 450px;
  height: var(--doc-height);
  z-index: 9999999;
  top: 0;
  right: -450px;
  box-shadow: -10px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.5s ease-in-out;
  transition: all ease-in-out 1s;
  max-width: 100%; }
  html[dir="rtl"] #sidebar-cart-block {
    left: -450px !important;
    right: unset !important;
    letter-spacing: 0; }
  #sidebar-cart-block #cart-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 100%; }
    #sidebar-cart-block #cart-body header {
      background-color: #2959D3;
      padding: 15px;
      position: relative;
      width: 100%; }
      #sidebar-cart-block #cart-body header .title {
        display: block;
        text-align: left;
        font: normal normal 400 22px/27px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1; }
        html[dir="rtl"] #sidebar-cart-block #cart-body header .title {
          text-align: right;
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #sidebar-cart-block #cart-body header .title {
            font-size: 20px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #sidebar-cart-block #cart-body header .title {
            font-size: 18px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #sidebar-cart-block #cart-body header .title {
            font-size: 17px; } }
        @media only screen and (max-width: 767px) {
          #sidebar-cart-block #cart-body header .title {
            font-size: 17px; } }
        #sidebar-cart-block #cart-body header .title p {
          font: normal normal 400 15px/27px "Poppins", sans-serif;
          margin-left: 10px;
          display: inline-block; }
          html[dir="rtl"] #sidebar-cart-block #cart-body header .title p {
            margin-left: 0px;
            margin-right: 10px;
            font-family: "Cairo", sans-serif !important;
            letter-spacing: 0; }
      #sidebar-cart-block #cart-body header .close-quick-cart-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #fff;
        font-size: 24px;
        z-index: 9;
        margin-top: -5px; }
        html[dir="rtl"] #sidebar-cart-block #cart-body header .close-quick-cart-btn {
          left: 15px;
          right: unset !important;
          letter-spacing: 0; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #sidebar-cart-block #cart-body header .close-quick-cart-btn {
            font-size: 24px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #sidebar-cart-block #cart-body header .close-quick-cart-btn {
            font-size: 23px; } }
        @media only screen and (min-width: 240px) and (max-width: phons) {
          #sidebar-cart-block #cart-body header .close-quick-cart-btn {
            font-size: 22px; } }
        @media only screen and (min-width: 240px) and (max-width: 409px) {
          #sidebar-cart-block #cart-body header .close-quick-cart-btn {
            font-size: 20px; } }
        #sidebar-cart-block #cart-body header .close-quick-cart-btn:hover {
          color: #8fd2ee; }
    #sidebar-cart-block #cart-body #cart-items-wrapper {
      padding: 15px;
      width: 100%;
      flex-grow: 1;
      overflow: auto; }
      #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product {
        padding-bottom: 20px;
        border-bottom: 1px solid #f1f1f1;
        margin-bottom: 20px;
        opacity: 0;
        transform: translateY(60px);
        transition: all ease-in-out 0.5s; }
        #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product:last-of-type {
          padding-bottom: 0px;
          border-bottom: 0px solid #f1f1f1;
          margin-bottom: 0px; }
        #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row {
          display: flex;
          align-items: top;
          justify-content: space-between;
          gap: 45px;
          margin-bottom: 15px; }
          @media only screen and (min-width: 1551px) {
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row {
              gap: 40px; } }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row {
              gap: 35px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row {
              gap: 22px; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row {
              gap: 25px; } }
          @media only screen and (max-width: 767px) {
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row {
              gap: 15px; } }
          #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-image a {
            display: block;
            width: 75px;
            height: 75px; }
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-image a img {
              width: 100%; }
          #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info {
            flex-grow: 1; }
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description {
              display: flex;
              justify-content: space-between;
              flex-direction: column;
              height: 100%;
              max-width: 85%; }
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description .price-per-item {
                text-align: left;
                font: normal normal 400 12px/21px "Poppins", sans-serif;
                letter-spacing: 0px;
                color: #000000;
                opacity: 1; }
                html[dir="rtl"] #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description .price-per-item {
                  font-family: "Cairo", sans-serif !important;
                  text-align: right;
                  letter-spacing: 0; }
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                text-align: left;
                font: normal normal 400 14px/21px "Poppins", sans-serif;
                letter-spacing: 0px;
                color: #000000;
                opacity: 1; }
                html[dir="rtl"] #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                  font-family: "Cairo", sans-serif !important;
                  text-align: right;
                  letter-spacing: 0; }
                @media only screen and (min-width: 768px) and (max-width: 992px) {
                  #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                    font-size: 15px;
                    line-height: 20px; } }
                @media only screen and (max-width: 767px) {
                  #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                    font-size: 14px;
                    line-height: 23px; } }
                @media only screen and (min-width: 240px) and (max-width: 409px) {
                  #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                    font-size: 13px;
                    line-height: 21px; } }
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-info .description .title a {
                  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-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-total-price span {
            width: auto;
            width: max-content;
            text-align: center;
            font: normal normal 400 16px/19px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #000000;
            opacity: 1;
            display: block; }
            html[dir="rtl"] #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .top-row .product-total-price span {
              font-family: "Cairo", sans-serif !important;
              letter-spacing: 0; }
        #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row {
          display: flex;
          align-items: top;
          justify-content: space-between; }
          #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .actions {
            display: flex;
            align-items: top;
            justify-content: space-between;
            gap: 45px; }
            @media only screen and (min-width: 1551px) {
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .actions {
                gap: 40px; } }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .actions {
                gap: 35px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199px) {
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .actions {
                gap: 22px; } }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .actions {
                gap: 25px; } }
            @media only screen and (max-width: 767px) {
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .actions {
                gap: 15px; } }
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .actions button {
              margin: 0;
              padding: 0;
              outline: none;
              border: 0;
              background-color: transparent;
              text-decoration: underline;
              font: normal normal 400 11px/21px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #000000;
              opacity: 1; }
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .actions button:hover {
                color: #8fd2ee; }
          #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper {
            border-radius: 16px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            padding: 3px 5px;
            transition: all ease-in-out 0.5s;
            border: 1px solid #e5e5e5; }
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
              width: 50px;
              height: 26px;
              position: relative;
              font-family: "Poppins", sans-serif;
              font-weight: 400;
              color: #121212 !important;
              text-align: center;
              -webkit-appearance: none;
              border: 0px;
              background-color: transparent; }
              @media only screen and (min-width: 1200px) and (max-width: 1550px) {
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
                  height: 22px; } }
              @media only screen and (min-width: 992px) and (max-width: 1199px) {
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
                  height: 20px; } }
              @media only screen and (min-width: 768px) and (max-width: 992px) {
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
                  height: 19px; } }
              @media only screen and (max-width: 767px) {
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
                  height: 18px;
                  font-size: 16px; } }
            #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
              width: 26px;
              height: 26px;
              position: relative;
              color: #121212 !important;
              line-height: 26px;
              font-size: 21px;
              align-items: center;
              border-radius: 50%;
              text-align: center;
              cursor: pointer;
              transition: all ease-in-out 0.5s; }
              #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a:hover {
                color: #35aca5;
                transition: all ease-in-out 0.5s; }
              @media only screen and (min-width: 1200px) and (max-width: 1550px) {
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
                  width: 22px;
                  height: 22px;
                  line-height: 22px; } }
              @media only screen and (min-width: 992px) and (max-width: 1199px) {
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
                  width: 20px;
                  height: 20px;
                  line-height: 20px; } }
              @media only screen and (min-width: 768px) and (max-width: 992px) {
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
                  width: 19px;
                  height: 19px;
                  line-height: 19px;
                  font-size: 18px; } }
              @media only screen and (max-width: 767px) {
                #sidebar-cart-block #cart-body #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
                  width: 19px;
                  height: 19px;
                  line-height: 19px;
                  font-size: 18px; } }
      #sidebar-cart-block #cart-body #cart-items-wrapper .empty {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        width: 100%;
        height: 100%; }
        @media only screen and (max-width: 767px) {
          #sidebar-cart-block #cart-body #cart-items-wrapper .empty {
            gap: 15px; } }
        #sidebar-cart-block #cart-body #cart-items-wrapper .empty .icon {
          text-align: center;
          opacity: 0;
          transform: translateY(60px);
          transition: all ease-in-out 0.5s; }
          #sidebar-cart-block #cart-body #cart-items-wrapper .empty .icon svg {
            width: 100px;
            height: auto; }
            @media only screen and (max-width: 767px) {
              #sidebar-cart-block #cart-body #cart-items-wrapper .empty .icon svg {
                width: 80px; } }
        #sidebar-cart-block #cart-body #cart-items-wrapper .empty .main-text {
          opacity: 0;
          transform: translateY(60px);
          transition: all ease-in-out 0.5s; }
          #sidebar-cart-block #cart-body #cart-items-wrapper .empty .main-text .title {
            text-align: center;
            font: normal normal 400 18px/27px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #000000;
            opacity: 1;
            margin-bottom: 5px; }
          #sidebar-cart-block #cart-body #cart-items-wrapper .empty .main-text .description {
            text-align: center;
            font: normal normal 400 14px/27px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #000000;
            opacity: 1; }
        #sidebar-cart-block #cart-body #cart-items-wrapper .empty .categories {
          text-align: center;
          opacity: 0;
          transform: translateY(60px);
          transition: all ease-in-out 0.5s; }
          #sidebar-cart-block #cart-body #cart-items-wrapper .empty .categories .title {
            text-align: center;
            font: normal normal 400 12px/21px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #000000;
            opacity: 1; }
          #sidebar-cart-block #cart-body #cart-items-wrapper .empty .categories .links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            max-width: 80%;
            margin: 25px auto; }
            #sidebar-cart-block #cart-body #cart-items-wrapper .empty .categories .links .link {
              font: normal normal 400 10px/19px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #000000;
              opacity: 1;
              padding: 10px 20px;
              border: 1px solid #000000;
              opacity: 1;
              min-width: 150px;
              border-radius: 25px; }
              #sidebar-cart-block #cart-body #cart-items-wrapper .empty .categories .links .link:hover {
                background-color: #8fd2ee;
                border-color: #8fd2ee;
                color: #fff;
                transition: all ease-in-out 0.5s; }
    #sidebar-cart-block #cart-body footer {
      display: block;
      width: 100%;
      z-index: 9;
      background-color: #fff; }
      #sidebar-cart-block #cart-body footer #display-price .price-row {
        padding: 15px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center; }
        #sidebar-cart-block #cart-body footer #display-price .price-row:last-of-type {
          border-top: 4px solid #f1f1f2;
          padding-bottom: 0px !important; }
          #sidebar-cart-block #cart-body footer #display-price .price-row:last-of-type .price {
            font: normal normal 400 18px/21px "Poppins", sans-serif; }
        #sidebar-cart-block #cart-body footer #display-price .price-row .price,
        #sidebar-cart-block #cart-body footer #display-price .price-row .text {
          text-align: left;
          font: normal normal 400 14px/21px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #000000;
          opacity: 1; }
      #sidebar-cart-block #cart-body footer #buttons-block {
        padding: 15px; }
        #sidebar-cart-block #cart-body footer #buttons-block button {
          font: normal normal 500 16px/55px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #ffffff;
          opacity: 1;
          transition: 0.25s ease-in-out;
          text-align: center;
          width: 257px;
          max-width: 100%;
          display: block;
          height: 55px;
          line-height: 55px;
          background-color: #2959D3;
          text-transform: none;
          border-radius: 17px;
          padding: 0px;
          border: none;
          width: 100% !important;
          background-color: #8fd2ee; }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #sidebar-cart-block #cart-body footer #buttons-block button {
              height: 50px;
              line-height: 50px;
              font-size: 15px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            #sidebar-cart-block #cart-body footer #buttons-block button {
              height: 50px;
              line-height: 50px;
              font-size: 14px; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #sidebar-cart-block #cart-body footer #buttons-block button {
              height: 50px;
              line-height: 50px;
              font-size: 13px; } }
          @media only screen and (max-width: 767px) {
            #sidebar-cart-block #cart-body footer #buttons-block button {
              height: 50px;
              line-height: 50px;
              font-size: 13px; } }
          #sidebar-cart-block #cart-body footer #buttons-block button:hover {
            background: #8fd2ee;
            text-decoration: none; }
          #sidebar-cart-block #cart-body footer #buttons-block button:hover {
            background-color: #2959D3; }
        #sidebar-cart-block #cart-body footer #buttons-block a {
          font: normal normal 500 16px/55px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #ffffff;
          opacity: 1;
          transition: 0.25s ease-in-out;
          text-align: center;
          width: 257px;
          max-width: 100%;
          display: block;
          height: 55px;
          line-height: 55px;
          background-color: #2959D3;
          text-transform: none;
          border-radius: 17px;
          padding: 0px;
          border: none;
          width: 100% !important;
          background-color: #2959D3; }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #sidebar-cart-block #cart-body footer #buttons-block a {
              height: 50px;
              line-height: 50px;
              font-size: 15px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            #sidebar-cart-block #cart-body footer #buttons-block a {
              height: 50px;
              line-height: 50px;
              font-size: 14px; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #sidebar-cart-block #cart-body footer #buttons-block a {
              height: 50px;
              line-height: 50px;
              font-size: 13px; } }
          @media only screen and (max-width: 767px) {
            #sidebar-cart-block #cart-body footer #buttons-block a {
              height: 50px;
              line-height: 50px;
              font-size: 13px; } }
          #sidebar-cart-block #cart-body footer #buttons-block a:hover {
            background: #8fd2ee;
            text-decoration: none; }
          #sidebar-cart-block #cart-body footer #buttons-block a:hover {
            background-color: #8fd2ee; }

/*===================================
=         scrollbar Styling         =
===================================*/
/* width */
::-webkit-scrollbar {
  width: 5px; }

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; }

/* Handle */
::-webkit-scrollbar-thumb {
  background: #2959D3; }

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2959D3; }

/* scroll bar */
/* Loaded Styles */
.loaded .preloader-wrapper {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out; }

.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 111110000;
  background-color: white; }
  .preloader-wrapper img {
    position: absolute;
    max-width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 375px; }

/*===================================
=           Desktop Dropdown        =
===================================*/
#desktop-menu-trigger .desktop-menu-wrapper {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 260px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18); }
  html[dir="rtl"] #desktop-menu-trigger .desktop-menu-wrapper {
    left: unset  !important;
    right: 0 !important;
    text-align: right;
    letter-spacing: 0; }
  #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    padding: 2px 0px; }
    #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item {
      width: 100%;
      text-align: left;
      position: unset; }
      html[dir="rtl"] #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item {
        text-align: right;
        letter-spacing: 0; }
      #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu {
        display: none;
        position: absolute;
        top: 0;
        left: 100%;
        height: 100%;
        padding-top: 0;
        width: auto;
        transform: translate3d(0, 0, 0);
        transition: all 0s ease-out;
        min-width: 200px;
        width: 50vw;
        transform: none;
        opacity: 1;
        transition: all ease-in-out 0.5s;
        background-color: #edf8f8; }
        html[dir="rtl"] #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu {
          left: unset;
          right: 100%;
          letter-spacing: 0; }
        #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper {
          display: flex;
          flex-wrap: wrap;
          padding: 15px 25px; }
          #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item {
            padding: 5px;
            width: calc(100% / 3 - 0.01px); }
            #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item .catalog-title {
              text-align: left;
              font: normal normal 500 14px/21px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #000000;
              opacity: 1;
              margin-bottom: 5px; }
              html[dir="rtl"] #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item .catalog-title {
                text-align: right;
                font-family: "Cairo", sans-serif;
                letter-spacing: 0; }
              #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item .catalog-title:hover {
                color: #8fd2ee; }
            #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item .subitems {
              margin: 5px 0px 15px; }
              #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item .subitems .menu-img img {
                display: block;
                width: 100%;
                height: auto;
                aspect-ratio: 1.4 / 1;
                object-fit: cover; }
              #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item .subitems .subitem a {
                text-align: left;
                font: normal normal 400 12px/25px "Poppins", sans-serif;
                letter-spacing: 0px;
                color: #3c3c3e;
                opacity: 1; }
                html[dir="rtl"] #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item .subitems .subitem a {
                  text-align: right;
                  font-family: "Cairo", sans-serif;
                  letter-spacing: 0; }
                #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item .sub-dropdown-menu .module-body-wrapper .module-item .subitems .subitem a:hover {
                  color: #8fd2ee; }
      #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item.open .sub-dropdown-menu {
        display: block; }
      #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item a {
        width: 100%;
        display: block;
        gap: 0 !important;
        padding: 2px 0px !important; }
        #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item a:hover {
          background-color: transparent !important; }
          #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item a:hover .links-text {
            border-color: #2959D3 !important; }
        #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item a .links-text {
          font: normal normal 400 12px/34px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #3c3c3e;
          opacity: 1;
          padding: 2px 15px;
          border-left: 3px solid transparent;
          width: 100%;
          display: block;
          text-align: left;
          overflow: hidden;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          -webkit-line-clamp: 1;
          display: -webkit-box;
          -webkit-box-orient: vertical; }
          html[dir="rtl"] #desktop-menu-trigger .desktop-menu-wrapper .desktop-menu .flyout-menu-item a .links-text {
            text-align: right;
            font-family: "Cairo", sans-serif;
            border-left: 0 !important;
            border-right: 3px solid transparent;
            letter-spacing: 0; }

#desktop-menu-trigger.open .desktop-menu-wrapper {
  display: block; }

#mobile-menu::before {
  display: none; }

#mobile-menu .mobile-menu-header {
  background: #ffffff;
  height: 80px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0px 23px; }

#mobile-menu .mobile-menu-body {
  background: #FDFDFD;
  flex-grow: 1;
  border-top: 1px solid #E5E5E5;
  overflow: auto; }
  #mobile-menu .mobile-menu-body ul#mobile-navigation {
    position: relative;
    top: 0;
    padding: 0px 23px;
    width: 100%; }
    #mobile-menu .mobile-menu-body ul#mobile-navigation:after {
      display: none; }
    #mobile-menu .mobile-menu-body ul#mobile-navigation:last-of-type {
      display: block;
      left: 0; }
    #mobile-menu .mobile-menu-body ul#mobile-navigation .nav-item {
      border-bottom: 1px solid #E5E5E5;
      float: none !important; }
      #mobile-menu .mobile-menu-body ul#mobile-navigation .nav-item.form-language * {
        font-family: "Cairo", sans-serif; }
        html[dir="rtl"] #mobile-menu .mobile-menu-body ul#mobile-navigation .nav-item.form-language * {
          font-family: "Poppins", sans-serif;
          letter-spacing: 0; }
      #mobile-menu .mobile-menu-body ul#mobile-navigation .nav-item.mm--open > .mob-nav-link {
        color: #2959D3; }
        #mobile-menu .mobile-menu-body ul#mobile-navigation .nav-item.mm--open > .mob-nav-link:after {
          color: #2959D3; }

#mobile-menu .mobile-menu-footer {
  padding: 28px 23px;
  background: #ffffff;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none; }
  #mobile-menu .mobile-menu-footer .rhs .account a,
  #mobile-menu .mobile-menu-footer .lhs .account a {
    display: flex;
    gap: 12px;
    align-items: center; }
    #mobile-menu .mobile-menu-footer .rhs .account a svg,
    #mobile-menu .mobile-menu-footer .lhs .account a svg {
      width: 17px;
      height: auto; }
    #mobile-menu .mobile-menu-footer .rhs .account a .title,
    #mobile-menu .mobile-menu-footer .lhs .account a .title {
      font: normal normal 600 14px/20px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #2959D3;
      text-transform: capitalize;
      opacity: 1; }
  #mobile-menu .mobile-menu-footer .rhs .fsocials {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
    display: none; }
    #mobile-menu .mobile-menu-footer .rhs .fsocials div {
      transition: all ease-in-out 0.5s; }
      #mobile-menu .mobile-menu-footer .rhs .fsocials div a {
        display: block; }
        #mobile-menu .mobile-menu-footer .rhs .fsocials div a svg {
          height: 16px;
          width: auto;
          display: block; }
          #mobile-menu .mobile-menu-footer .rhs .fsocials div a svg path {
            fill: #2959D3; }
            #mobile-menu .mobile-menu-footer .rhs .fsocials div a svg path#Path_2086 {
              fill: none !important; }
      #mobile-menu .mobile-menu-footer .rhs .fsocials div:hover {
        transform: scale(1.15);
        opacity: 1;
        transition: all ease-in-out 0.5s; }

.pagination-results {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  margin: 0; }
  html[dir="rtl"] .pagination-results {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0; }
  .pagination-results:before, .pagination-results:after {
    display: none; }
  .pagination-results > div {
    width: auto;
    padding: 0;
    margin: 0;
    padding-inline-start: 0;
    padding-inline-end: 0; }

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin: auto;
  border-radius: 4px; }
  .pagination > li {
    max-width: 50px;
    transition: all .08s ease-out;
    position: relative;
    display: inline-flex !important; }
    .pagination > li > a,
    .pagination > li > span {
      border: none !important;
      line-height: 1;
      padding: 0;
      transition: all .05s ease-out;
      border-radius: inherit;
      width: 2.5em;
      height: 2.5em;
      color: #121212;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 13px;
      line-height: 1.4;
      background: #EEEFF1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: calc(var(--pagination-gap, 0px) / 2) !important; }
      html[dir="rtl"] .pagination > li > a, html[dir="rtl"]
      .pagination > li > span {
        font-family: "Cairo", sans-serif;
        letter-spacing: 0; }
  .pagination > li > a:hover, .pagination > li > a:focus,
  .pagination > li > span:hover,
  .pagination > li > span:focus {
    color: #fff;
    background-color: #8fd2ee;
    border-color: #8fd2ee; }
  .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus,
  .pagination > .active > span,
  .pagination > .active > span:hover,
  .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #2959D3;
    border-color: #2959D3;
    cursor: default; }
  .pagination > .disabled > span,
  .pagination > .disabled > span:hover,
  .pagination > .disabled > span:focus,
  .pagination > .disabled > a,
  .pagination > .disabled > a:hover,
  .pagination > .disabled > a:focus {
    color: #999999;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed; }

.page-header {
  padding: 22px 0;
  background: #F7F7F7;
  position: relative;
  position: relative;
  margin: 0 0 30px 0; }
  .page-header .page-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; }
    .page-header .page-info .breadcrumb {
      position: relative;
      display: flex;
      align-items: center;
      order: -1;
      padding-top: var(--breadcrumbs-top-padding, 0);
      padding-bottom: var(--breadcrumbs-bottom-padding, 0);
      --min-height: auto;
      min-height: var(--min-height);
      padding: 8px 0;
      font-size: 0.8em;
      display: flex;
      align-items: center;
      justify-content: start;
      column-gap: 5px;
      flex-wrap: wrap; }
      .page-header .page-info .breadcrumb > li {
        display: flex;
        align-items: baseline;
        max-width: 200px; }
        .page-header .page-info .breadcrumb > li a {
          text-align: left;
          font: normal normal 400 12px/17px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #121212;
          width: 100%;
          color: inherit;
          overflow: hidden;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          -webkit-line-clamp: 1;
          display: -webkit-box;
          -webkit-box-orient: vertical; }
          .page-header .page-info .breadcrumb > li a:hover {
            color: #2959D3; }
          html[dir="rtl"] .page-header .page-info .breadcrumb > li a {
            font-family: "Cairo", sans-serif;
            letter-spacing: 0;
            letter-spacing: 0; }
        .page-header .page-info .breadcrumb > li + li:before {
          content: "/";
          color: inherit;
          padding-right: 5px;
          font-family: "Font Awesome 5 Pro";
          font-size: 13px; }
          html[dir="rtl"] .page-header .page-info .breadcrumb > li + li:before {
            content: "\/";
            padding-right: 0;
            padding-left: 5px;
            letter-spacing: 0; }
      .page-header .page-info .breadcrumb > .active {
        color: #999999; }
    .page-header .page-info .title {
      text-align: left;
      font: normal normal 600 32px/1.3 "Poppins", sans-serif;
      letter-spacing: 0;
      color: #333333;
      transition: all ease-in-out 0.5s;
      border-width: 0;
      white-space: normal;
      overflow: initial;
      text-overflow: initial;
      -webkit-line-clamp: initial;
      -webkit-line-clamp: 2; }
      html[dir="rtl"] .page-header .page-info .title {
        font-family: "Cairo", sans-serif !important;
        letter-spacing: 0;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        .page-header .page-info .title {
          font-size: 29px;
          letter-spacing: 0px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        .page-header .page-info .title {
          font-size: 26px;
          letter-spacing: 0px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .page-header .page-info .title {
          font-size: 24px;
          letter-spacing: 0px; } }
      @media only screen and (max-width: 767.98px) {
        .page-header .page-info .title {
          font-size: 21px;
          letter-spacing: 0px; } }

@media only screen and (max-width: 991.98px) {
  #filter-column {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    background-color: white;
    width: 100vw;
    height: var(--doc-height);
    padding: 0px;
    transform: translateX(-100%);
    transition: all ease-in-out 0.5s;
    display: flex;
    flex-direction: column; }
    html[dir="rtl"] #filter-column {
      transform: translateX(100%);
      left: unset;
      right: 0;
      letter-spacing: 0; }
      html[dir="rtl"] #filter-column.active {
        transform: translateX(0%); }
    #filter-column.active {
      transform: translateX(0%);
      transition: all ease-in-out 0.5s; } }

#filter-column .module-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media only screen and (min-width: 992px) {
    #filter-column .module-title {
      display: none; } }
  @media only screen and (max-width: 991.98px) {
    #filter-column .module-title {
      padding: 17px 15px 0 15px; } }
  #filter-column .module-title .close-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (min-width: 992px) {
      #filter-column .module-title .close-btn {
        display: none; } }
    #filter-column .module-title .close-btn svg {
      width: 100%;
      height: auto;
      display: block; }
  #filter-column .module-title .title {
    text-align: left;
    font: normal normal normal 20px/25px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #121212;
    opacity: 1; }
  #filter-column .module-title .btn-reset {
    text-align: left;
    font: normal normal 700 16px/27px "Poppins", sans-serif;
    letter-spacing: -0.54px;
    color: #BB261A;
    opacity: 1;
    border: none;
    outline: none;
    background-color: transparent; }
    html[dir="rtl"] #filter-column .module-title .btn-reset {
      font-family: "Cairo", sans-serif;
      text-align: right;
      letter-spacing: 0px;
      letter-spacing: 0; }
    @media only screen and (max-width: 991.98px) {
      #filter-column .module-title .btn-reset {
        text-align: right;
        font: normal normal 400 14px/24px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #000000;
        opacity: 1;
        width: 115px; }
        html[dir="rtl"] #filter-column .module-title .btn-reset {
          font-family: "Cairo", sans-serif;
          text-align: left;
          letter-spacing: 0px;
          letter-spacing: 0; } }

#filter-column .module-body {
  margin-top: 25px; }
  @media only screen and (min-width: 992px) {
    #filter-column .module-body {
      margin-top: 0px; } }
  @media only screen and (max-width: 991.98px) {
    #filter-column .module-body {
      overflow: auto;
      flex-grow: 1;
      margin: 15px; } }
  #filter-column .module-body .panel-group {
    margin: 0; }
    @media only screen and (max-width: 991.98px) {
      #filter-column .module-body .panel-group {
        padding: 0 7px 0 0; }
        html[dir="rtl"] #filter-column .module-body .panel-group {
          padding: 0 0 0 7px;
          letter-spacing: 0; } }
    #filter-column .module-body .panel-group .filter-row {
      margin-bottom: 20px;
      padding-top: 20px; }
      #filter-column .module-body .panel-group .filter-row .filter-row-heading {
        cursor: pointer; }
        #filter-column .module-body .panel-group .filter-row .filter-row-heading .top {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 8px;
          position: relative; }
          #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .name {
            text-align: left;
            font: normal normal 400 14px/16px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #333333;
            opacity: 1;
            display: flex;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
            position: relative; }
            html[dir="rtl"] #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .name {
              font-family: "Cairo", sans-serif;
              text-align: right;
              letter-spacing: 0; }
            @media only screen and (max-width: 991.98px) {
              #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .name {
                font-size: 16px; } }
          #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset {
            text-align: left;
            font: normal normal 400 14px/2 "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #333333;
            opacity: 1;
            text-decoration: underline;
            font-weight: 400;
            cursor: pointer;
            transition: all ease-in-out 0.5s; }
            html[dir="rtl"] #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset {
              letter-spacing: 0;
              font-family: "Cairo", sans-serif !important;
              text-align: right;
              letter-spacing: 0; }
            @media only screen and (max-width: 991.98px) {
              #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset {
                font-size: 13px;
                line-height: 1.5; } }
            #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset a {
              font-family: inherit;
              line-height: inherit;
              font-size: inherit;
              font-weight: inherit;
              color: #2959D3;
              display: inline-block;
              position: relative;
              transition: all ease-in-out 0.5s; }
              #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset a:after {
                border-top: 1px solid #8fd2ee;
                content: "";
                display: block;
                height: 0;
                transition: width .3s ease-out;
                width: 0; }
              @media only screen and (min-width: 992px) {
                #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset a:hover:after {
                  width: 100%; } }
              html[dir="rtl"] #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset a {
                direction: ltr;
                letter-spacing: 0; }
              @media only screen and (min-width: 992px) {
                #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset a:hover {
                  color: #8fd2ee; } }
            #filter-column .module-body .panel-group .filter-row .filter-row-heading .top .reset:hover {
              color: #8fd2ee;
              transition: all ease-in-out 0.5s; }
          #filter-column .module-body .panel-group .filter-row .filter-row-heading .top:after {
            font-family: "Font Awesome 5 Pro";
            content: "\f077";
            font-size: 12px;
            font-weight: 500;
            color: #333333;
            transition: all ease-in-out 0.5s; }
        #filter-column .module-body .panel-group .filter-row .filter-row-heading .bottom {
          display: none; }
          #filter-column .module-body .panel-group .filter-row .filter-row-heading .bottom .values {
            position: relative; }
            #filter-column .module-body .panel-group .filter-row .filter-row-heading .bottom .values .values-wrapper {
              display: flex;
              gap: 5px;
              max-width: calc(100% - 35px);
              overflow: hidden;
              padding: 5px 0px 10px; }
              #filter-column .module-body .panel-group .filter-row .filter-row-heading .bottom .values .values-wrapper span {
                text-align: left;
                font: normal normal 400 12px/18px "Poppins", sans-serif;
                letter-spacing: 0px;
                color: #121212;
                text-transform: capitalize;
                opacity: 1;
                width: max-content; }
                html[dir="rtl"] #filter-column .module-body .panel-group .filter-row .filter-row-heading .bottom .values .values-wrapper span {
                  font-family: "Cairo", sans-serif;
                  text-align: right;
                  letter-spacing: 0px;
                  letter-spacing: 0; }
                html[dir="rtl"] #filter-column .module-body .panel-group .filter-row .filter-row-heading .bottom .values .values-wrapper span {
                  font-family: "Cairo", sans-serif;
                  text-align: right;
                  letter-spacing: 0px;
                  letter-spacing: 0; }
                #filter-column .module-body .panel-group .filter-row .filter-row-heading .bottom .values .values-wrapper span + span {
                  display: flex; }
                  #filter-column .module-body .panel-group .filter-row .filter-row-heading .bottom .values .values-wrapper span + span:before {
                    content: ", ";
                    color: inherit;
                    font-size: 10px; }
        #filter-column .module-body .panel-group .filter-row .filter-row-heading.closed .top:after {
          content: "\f078";
          transition: all ease-in-out 0.5s; }
      #filter-column .module-body .panel-group .filter-row .panel-body {
        padding: 15px 0 0 0; }
        #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm {
          margin: 10px 0; }
          #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input {
            width: 100%;
            display: flex;
            margin: 0 0 15px; }
            #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .separator {
              width: 60px;
              display: flex;
              font-size: 19px;
              align-items: center;
              justify-content: center; }
            #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field {
              display: flex;
              width: 100%;
              height: 45px;
              align-items: center;
              gap: 10px; }
              #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field span {
                font-size: 14px;
                width: auto;
                display: block;
                min-width: 35px;
                font-family: "Poppins", sans-serif;
                text-transform: capitalize;
                color: #333333; }
              #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input {
                -webkit-appearance: none;
                width: 100%;
                display: block;
                height: 55px;
                line-height: 55px;
                padding: 0 20px;
                text-align: left;
                font: normal normal 400 15px/28px "Poppins", sans-serif;
                letter-spacing: 0px;
                color: #121212;
                text-transform: none;
                opacity: 1;
                border-radius: 0px !important;
                border: 1px solid #f1f1f1;
                background: white !important;
                border-radius: 6px !important;
                box-shadow: none;
                outline: none;
                text-align: center;
                margin-bottom: 0 !important;
                -webkit-appearance: none;
                padding: 5px; }
                html[dir="rtl"] #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input {
                  font-family: "Cairo", sans-serif !important;
                  text-align: right;
                  letter-spacing: 0; }
                #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input:focus {
                  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
                #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input.placeholder {
                  color: #888888; }
                #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input:-moz-placeholder {
                  color: #888888; }
                #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input::-moz-placeholder {
                  color: #888888; }
                #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input:-ms-input-placeholder {
                  color: #888888; }
                #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input::-webkit-input-placeholder {
                  color: #888888; }
                @media only screen and (min-width: 1200px) and (max-width: 1550px) {
                  #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input {
                    height: 50px;
                    line-height: 50px;
                    font-size: 14px; } }
                @media only screen and (min-width: 992px) and (max-width: 1199px) {
                  #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input {
                    height: 50px;
                    line-height: 50px;
                    font-size: 13px; } }
                @media only screen and (min-width: 768px) and (max-width: 992px) {
                  #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input {
                    height: 50px;
                    line-height: 50px;
                    font-size: 13px;
                    padding: 0px 15px; } }
                @media only screen and (max-width: 767px) {
                  #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-input .field input {
                    height: 50px;
                    line-height: 50px;
                    font-size: 12px;
                    padding: 0px 15px; } }
          #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom {
            position: relative;
            height: 15px;
            padding: 5px 0;
            max-width: calc(100% - 10px);
            margin: auto; }
            #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom .slider {
              height: 5px;
              position: relative;
              background: #ddd;
              border-radius: 5px; }
              html[dir="rtl"] #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom .slider {
                transform: rotate(180deg);
                letter-spacing: 0; }
              #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom .slider .progress {
                height: 100%;
                left: 0;
                right: 0;
                position: absolute;
                border-radius: 5px;
                background: #8fd2ee; }
            #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom .range-input input {
              position: absolute;
              width: 100%;
              height: 5px;
              top: 4px;
              background: none;
              pointer-events: none;
              -webkit-appearance: none;
              -moz-appearance: none; }
              #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom .range-input input#price_min {
                right: 0; }
              #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom .range-input input#price_max {
                left: 0; }
              #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom .range-input input::-webkit-slider-thumb {
                height: 17px;
                width: 17px;
                border-radius: 50%;
                background: #8fd2ee;
                pointer-events: auto;
                -webkit-appearance: none;
                box-shadow: 0 0 6px rgba(0, 0, 0, 0.05); }
              #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm .price-bottom .range-input input::-moz-range-thumb {
                height: 17px;
                width: 17px;
                border: none;
                border-radius: 50%;
                background: #8fd2ee;
                pointer-events: auto;
                -moz-appearance: none;
                box-shadow: 0 0 6px rgba(0, 0, 0, 0.05); }
          #filter-column .module-body .panel-group .filter-row .panel-body #priceFilterForm button {
            display: none; }
        #filter-column .module-body .panel-group .filter-row .panel-body #progressContainer {
          height: 20px;
          background-color: #f0f0f0;
          border-radius: 5px;
          position: relative; }
          #filter-column .module-body .panel-group .filter-row .panel-body #progressContainer #progressBar {
            height: 100%;
            background-color: #4caf50;
            border-radius: 5px;
            transition: width 0.4s ease; }
        #filter-column .module-body .panel-group .filter-row .panel-body .filter-checkbox {
          overflow-y: auto; }
          @media only screen and (min-width: 992px) {
            #filter-column .module-body .panel-group .filter-row .panel-body .filter-checkbox {
              max-height: 175px; } }
          #filter-column .module-body .panel-group .filter-row .panel-body .filter-checkbox .control {
            display: flex;
            justify-content: space-between;
            align-items: center; }
            @media only screen and (max-width: 991.98px) {
              #filter-column .module-body .panel-group .filter-row .panel-body .filter-checkbox .control {
                font-size: 15px; } }
            #filter-column .module-body .panel-group .filter-row .panel-body .filter-checkbox .control small {
              width: 15px;
              text-align: center; }
      #filter-column .module-body .panel-group .filter-row .switch-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        position: relative;
        cursor: pointer;
        justify-content: space-between; }
        #filter-column .module-body .panel-group .filter-row .switch-item-text {
          text-align: left;
          font: normal normal 400 15px/19px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          opacity: 1;
          display: flex;
          justify-content: space-between;
          gap: 10px;
          position: relative; }
          html[dir="rtl"] #filter-column .module-body .panel-group .filter-row .switch-item-text {
            font-family: "Cairo", sans-serif;
            text-align: right;
            letter-spacing: 0; }
        #filter-column .module-body .panel-group .filter-row .switch-item-input {
          display: none; }
        #filter-column .module-body .panel-group .filter-row .switch-item-mark {
          width: 48px;
          height: 24px;
          position: relative; }
          #filter-column .module-body .panel-group .filter-row .switch-item-mark.active:after {
            background-color: #fff;
            left: 26px; }
          #filter-column .module-body .panel-group .filter-row .switch-item-mark.active:before {
            background-color: #8fd2ee; }
          #filter-column .module-body .panel-group .filter-row .switch-item-mark:not(.active):after {
            background-color: #fff; }
          #filter-column .module-body .panel-group .filter-row .switch-item-mark:not(.active):before {
            background-color: #E4E3E3; }
          #filter-column .module-body .panel-group .filter-row .switch-item-mark:before {
            content: "";
            display: block;
            height: 24px;
            width: 48px;
            border-radius: 12px;
            top: 0;
            left: 0;
            position: absolute;
            transition: background-color .3s; }
          #filter-column .module-body .panel-group .filter-row .switch-item-mark:after {
            content: "";
            display: block;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            top: 2px;
            left: 2px;
            position: absolute;
            transition: left .3s; }

#filter-column .module-bottom {
  padding: 25px 15px;
  border-top: 1px solid #E6E6E6;
  display: flex;
  gap: 10px; }
  #filter-column .module-bottom .btn-reset {
    position: relative;
    background: #fff;
    cursor: pointer;
    width: max-content;
    text-align: center;
    border-radius: 8px;
    transition: 400ms;
    text-decoration: none;
    z-index: 90;
    overflow: hidden;
    border: 1px solid #2959D3; }
    @media only screen and (max-width: 767.98px) {
      #filter-column .module-bottom .btn-reset {
        width: 100%; } }
    @media only screen and (min-width: 992px) {
      #filter-column .module-bottom .btn-reset:hover {
        border-color: #8fd2ee; }
        #filter-column .module-bottom .btn-reset:hover input,
        #filter-column .module-bottom .btn-reset:hover span {
          color: #fff; }
        #filter-column .module-bottom .btn-reset:hover .icon svg path {
          fill: #fff; } }
    #filter-column .module-bottom .btn-reset input,
    #filter-column .module-bottom .btn-reset span {
      width: 100%;
      position: relative;
      z-index: 9;
      padding: 16px 18px;
      text-align: center;
      font: normal normal 600 15px/1.4 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #2959D3;
      text-transform: none;
      opacity: 1;
      display: block;
      margin: 0;
      border: none;
      background: transparent; }
    #filter-column .module-bottom .btn-reset .icon {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 13px; }
      #filter-column .module-bottom .btn-reset .icon svg {
        width: 7px;
        display: block;
        height: auto; }
        #filter-column .module-bottom .btn-reset .icon svg path {
          fill: #2959D3; }
    #filter-column .module-bottom .btn-reset .circle {
      background-color: #8fd2ee;
      border-radius: 1000px;
      position: absolute;
      left: 0;
      top: 0;
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      pointer-events: none;
      /*animation-timing-function: ease-in-out; */
      opacity: 0; }
      @media only screen and (max-width: 991.98px) {
        #filter-column .module-bottom .btn-reset .circle {
          display: none; } }
      @media only screen and (min-width: 992px) {
        #filter-column .module-bottom .btn-reset .circle.explode-circle {
          animation: explode 0.5s forwards; } }
      @media only screen and (min-width: 992px) {
        #filter-column .module-bottom .btn-reset .circle.desplode-circle {
          animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }
    @media only screen and (min-width: 992px) {
      #filter-column .module-bottom .btn-reset {
        display: none; } }
    @media only screen and (max-width: 991.98px) {
      #filter-column .module-bottom .btn-reset {
        margin: 0 auto;
        display: block; }
        #filter-column .module-bottom .btn-reset span {
          padding: 13px 18px; } }
  #filter-column .module-bottom .close-filter {
    position: relative;
    background: #333333;
    cursor: pointer;
    width: max-content;
    text-align: center;
    border-radius: 8px;
    transition: 400ms;
    text-decoration: none;
    z-index: 90;
    overflow: hidden;
    border: 1px solid #2959D3;
    display: block;
    margin: 0 auto; }
    @media only screen and (max-width: 767.98px) {
      #filter-column .module-bottom .close-filter {
        width: 100%; } }
    @media only screen and (min-width: 992px) {
      #filter-column .module-bottom .close-filter:hover {
        border-color: #8fd2ee; }
        #filter-column .module-bottom .close-filter:hover input,
        #filter-column .module-bottom .close-filter:hover span {
          color: #fff; }
        #filter-column .module-bottom .close-filter:hover .icon svg path {
          fill: #fff; } }
    #filter-column .module-bottom .close-filter input,
    #filter-column .module-bottom .close-filter span {
      width: 100%;
      position: relative;
      z-index: 9;
      padding: 16px 18px;
      text-align: center;
      font: normal normal 600 15px/1.4 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #fff;
      text-transform: none;
      opacity: 1;
      display: block;
      margin: 0;
      border: none;
      background: transparent; }
    #filter-column .module-bottom .close-filter .icon {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 13px; }
      #filter-column .module-bottom .close-filter .icon svg {
        width: 7px;
        display: block;
        height: auto; }
        #filter-column .module-bottom .close-filter .icon svg path {
          fill: #fff; }
    #filter-column .module-bottom .close-filter .circle {
      background-color: #8fd2ee;
      border-radius: 1000px;
      position: absolute;
      left: 0;
      top: 0;
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      pointer-events: none;
      /*animation-timing-function: ease-in-out; */
      opacity: 0; }
      @media only screen and (max-width: 991.98px) {
        #filter-column .module-bottom .close-filter .circle {
          display: none; } }
      @media only screen and (min-width: 992px) {
        #filter-column .module-bottom .close-filter .circle.explode-circle {
          animation: explode 0.5s forwards; } }
      @media only screen and (min-width: 992px) {
        #filter-column .module-bottom .close-filter .circle.desplode-circle {
          animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }
    @media only screen and (min-width: 992px) {
      #filter-column .module-bottom .close-filter {
        display: none; } }
    @media only screen and (max-width: 991.98px) {
      #filter-column .module-bottom .close-filter {
        width: 50%;
        margin: 0 0 0 auto; }
        #filter-column .module-bottom .close-filter span {
          padding: 13px 18px; } }

.single-product {
  padding: 15px 10px; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .single-product {
      padding: 15px 8px; } }
  @media only screen and (max-width: 767.98px) {
    .single-product {
      padding: 15px 7px; } }

.product-card {
  position: relative;
  padding: 0;
  opacity: 1;
  transition: all ease-in-out 0.5s;
  border: 1px solid #e2e2e2; }
  html[dir="rtl"] .product-card {
    direction: rtl;
    letter-spacing: 0; }
  .product-card .top-part {
    position: relative;
    overflow: hidden; }
    .product-card .top-part .image {
      position: relative;
      display: block;
      margin: 0;
      width: 100%;
      overflow: hidden;
      background: #fff;
      position: relative; }
      .product-card .top-part .image img {
        max-width: 100%;
        max-height: 100%;
        margin-left: auto;
        margin-right: auto;
        background: #fff;
        transition: all ease-in-out 0.5s;
        display: block;
        height: auto;
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: contain; }
        .product-card .top-part .image img.image-primary {
          position: relative;
          z-index: 2; }
        .product-card .top-part .image img.image-secondary {
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          z-index: 3;
          overflow: hidden;
          opacity: 0;
          pointer-events: none; }
    .product-card .top-part .time_special {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      z-index: 2;
      width: max-content;
      max-width: 100%;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition: all ease-in-out 0.5s;
      display: none; }
      html[dir="rtl"] .product-card .top-part .time_special {
        right: 0;
        left: unset;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        .product-card .top-part .time_special {
          gap: 3px; } }
      .product-card .top-part .time_special .box-time-date {
        background: #2959D3;
        color: #fff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        margin: 0;
        font-size: 10px;
        min-width: 40px;
        min-height: 40px; }
        @media only screen and (max-width: 991.98px) {
          .product-card .top-part .time_special .box-time-date {
            min-width: 30px;
            min-height: 32px;
            font-size: 7px;
            gap: 3px; } }
        .product-card .top-part .time_special .box-time-date span {
          color: #fff;
          margin: 0;
          letter-spacing: 0 !important;
          font-size: 13px; }
          @media only screen and (max-width: 991.98px) {
            .product-card .top-part .time_special .box-time-date span {
              font-size: 10px; } }
    .product-card .top-part .discount {
      position: absolute;
      z-index: 5;
      top: 0;
      right: 0;
      margin: 8px;
      border-radius: 4px;
      background: #E02B2B;
      padding: 8px;
      text-align: center;
      font: normal normal 600 11px/11px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #fff;
      opacity: 1;
      min-width: 30px;
      display: block;
      width: max-content; }
      html[dir="rtl"] .product-card .top-part .discount {
        text-align: right;
        font-family: "Cairo", sans-serif;
        letter-spacing: 0;
        left: 0;
        right: unset;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        .product-card .top-part .discount {
          font-size: 11px; } }
    .product-card .top-part .badge-wrapper {
      position: absolute;
      z-index: 5;
      top: 0;
      left: 0;
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: 5px;
      padding: 8px; }
      html[dir="rtl"] .product-card .top-part .badge-wrapper {
        right: 0;
        left: unset;
        letter-spacing: 0; }
      .product-card .top-part .badge-wrapper .badge {
        display: -webkit-box;
        display: -ms-flexbox;
        background: #2959D3;
        padding: 8px 13px;
        border-radius: 4px; }
        .product-card .top-part .badge-wrapper .badge.out_badge {
          color: #fff;
          background-color: #818181; }
        .product-card .top-part .badge-wrapper .badge i {
          text-align: center;
          font: normal normal 600 11px/11px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #fff;
          opacity: 1;
          min-width: 30px;
          display: block; }
          html[dir="rtl"] .product-card .top-part .badge-wrapper .badge i {
            text-align: center;
            font-family: "Cairo", sans-serif;
            letter-spacing: 0;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            .product-card .top-part .badge-wrapper .badge i {
              font-size: 11px; } }
    .product-card .top-part .btn-quickview {
      position: absolute;
      z-index: 5;
      bottom: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      margin: 8px;
      background: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 4px;
      width: 37px;
      height: 37px;
      visibility: hidden;
      opacity: 0; }
      .product-card .top-part .btn-quickview i {
        color: #333333;
        font-size: 14px; }
      html[dir="rtl"] .product-card .top-part .btn-quickview {
        left: 0;
        right: unset;
        letter-spacing: 0; }
    .product-card .top-part .featured-link {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 2; }
  .product-card .bottom-part {
    padding: 12px;
    position: relative; }
    @media only screen and (max-width: 767.98px) {
      .product-card .bottom-part {
        padding: 12px 6px; } }
    .product-card .bottom-part .product-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      min-height: 23px; }
      @media only screen and (max-width: 767.98px) {
        .product-card .bottom-part .product-categories {
          margin: 0 0 10px 0; } }
      .product-card .bottom-part .product-categories .list {
        flex: 1; }
        .product-card .bottom-part .product-categories .list-wrapper {
          display: flex;
          flex-wrap: wrap;
          margin: 0 0 5px 0;
          color: inherit;
          overflow: hidden;
          -o-text-overflow: ellipsis;
          text-overflow: ellipsis;
          -webkit-line-clamp: 1;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          align-items: center; }
          .product-card .bottom-part .product-categories .list-wrapper a {
            text-align: left;
            font: normal normal 400 12px/16px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #727272;
            opacity: 1;
            transition: all ease-in-out 0.5s; }
            html[dir="rtl"] .product-card .bottom-part .product-categories .list-wrapper a {
              text-align: right;
              font-family: "Cairo", sans-serif;
              letter-spacing: 0; }
            @media only screen and (max-width: 767.98px) {
              .product-card .bottom-part .product-categories .list-wrapper a {
                font-size: 10px; } }
            @media only screen and (min-width: 992px) {
              .product-card .bottom-part .product-categories .list-wrapper a:hover {
                color: #2959D3;
                transition: all ease-in-out 0.5s; } }
      .product-card .bottom-part .product-categories .box {
        flex: 0;
        min-width: 70px; }
        .product-card .bottom-part .product-categories .box span {
          border: 1px solid #e2e2e2;
          padding: 6px 8px;
          border-radius: 4px;
          color: #727272;
          font: normal normal 400 12px/12px "Poppins", sans-serif;
          text-align: center;
          display: inline-block; }
          html[dir="rtl"] .product-card .bottom-part .product-categories .box span {
            text-align: center;
            font-family: "Cairo", sans-serif;
            letter-spacing: 0; }
    .product-card .bottom-part .title {
      text-align: left;
      font: normal normal 700 13px/19px "Poppins", sans-serif;
      min-height: calc(19px * 3);
      letter-spacing: 0px;
      color: #333333;
      text-transform: capitalize;
      opacity: 1;
      margin: 10px 0; }
      html[dir="rtl"] .product-card .bottom-part .title {
        text-align: right;
        font-family: "Cairo", sans-serif;
        letter-spacing: 0; }
      @media only screen and (max-width: 767.98px) {
        .product-card .bottom-part .title {
          font-size: 12px;
          line-height: 16px;
          min-height: calc(16px * 3); } }
      .product-card .bottom-part .title a {
        color: inherit;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        font-family: inherit;
        line-height: inherit;
        font-size: inherit; }
        @media only screen and (max-width: 991.98px) {
          .product-card .bottom-part .title a {
            -webkit-line-clamp: 2; } }
    .product-card .bottom-part .model {
      text-align: left;
      font: normal normal 400 14px/1 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #121212;
      opacity: 1;
      transition: all ease-in-out 0.5s;
      display: none; }
      html[dir="rtl"] .product-card .bottom-part .model {
        text-align: right;
        font-family: "Cairo", sans-serif;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        .product-card .bottom-part .model {
          font-size: 12px; } }
    .product-card .bottom-part .price-wrapper {
      overflow: hidden;
      position: relative;
      margin: 5px 0 0 0; }
      @media only screen and (max-width: 767.98px) {
        .product-card .bottom-part .price-wrapper {
          margin: 10px 0 0 0; } }
      .product-card .bottom-part .price-wrapper .price {
        text-align: center;
        display: flex;
        flex-direction: row-reverse;
        justify-content: start;
        align-self: start;
        align-items: center;
        gap: 10px;
        -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 .bottom-part .price-wrapper .price span {
          text-align: left;
          font: normal normal 500 14px/1 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #696973;
          opacity: 1; }
          html[dir="rtl"] .product-card .bottom-part .price-wrapper .price span {
            text-align: right;
            font-family: "Cairo", sans-serif;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            .product-card .bottom-part .price-wrapper .price span {
              font-size: 12px; } }
          .product-card .bottom-part .price-wrapper .price span.price-new, .product-card .bottom-part .price-wrapper .price span.price-word {
            color: #696973; }
          .product-card .bottom-part .price-wrapper .price span.price-old {
            color: #E02B2B;
            text-decoration: line-through; }
    .product-card .bottom-part .controll-btns {
      margin: 15px 0 0 0;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .product-card .bottom-part .controll-btns .buttons-list {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 5px; }
        .product-card .bottom-part .controll-btns .buttons-list .btn {
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 5px;
          background: #fff;
          border: 1px solid #e2e2e2;
          border-radius: 4px;
          width: 37px;
          height: 37px;
          width: 37px;
          height: 37px; }
          @media only screen and (max-width: 991.98px) {
            .product-card .bottom-part .controll-btns .buttons-list .btn {
              width: 33px;
              height: 33px; } }
          .product-card .bottom-part .controll-btns .buttons-list .btn.btn-compare {
            display: none !important; }
          .product-card .bottom-part .controll-btns .buttons-list .btn i {
            color: #333333;
            font-size: 14px; }
            @media only screen and (max-width: 991.98px) {
              .product-card .bottom-part .controll-btns .buttons-list .btn i {
                font-size: 12px; } }
            .product-card .bottom-part .controll-btns .buttons-list .btn i.fas.fa-heart {
              color: #2959D3; }
      .product-card .bottom-part .controll-btns .add-btn {
        position: relative; }
        .product-card .bottom-part .controll-btns .add-btn .add-to-cart {
          border-bottom: 1px solid #e2e2e2;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          width: 100%;
          padding: 8px 0;
          color: #333333;
          text-align: left;
          font: normal normal 500 14px/14px "Poppins", sans-serif;
          letter-spacing: 0px;
          text-transform: capitalize;
          opacity: 1; }
          @media only screen and (min-width: 992px) {
            .product-card .bottom-part .controll-btns .add-btn .add-to-cart:not(.disabled):hover {
              color: #2959D3;
              transition: all ease-in-out 0.5s; } }
          .product-card .bottom-part .controll-btns .add-btn .add-to-cart.disabled {
            cursor: not-allowed;
            opacity: 0.234; }
          html[dir="rtl"] .product-card .bottom-part .controll-btns .add-btn .add-to-cart {
            text-align: right;
            font-family: "Cairo", sans-serif;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            .product-card .bottom-part .controll-btns .add-btn .add-to-cart {
              font-size: 12px;
              line-height: 18px; } }
  @media only screen and (min-width: 992px) {
    .product-card:hover {
      cursor: pointer; }
      .product-card:hover .top-part {
        transition: all ease-in-out 0.5s; }
        .product-card:hover .top-part .image img {
          transform: scale(1.02);
          transition: all ease-in-out 0.5s; }
          .product-card:hover .top-part .image img.image-secondary {
            opacity: 1; }
        .product-card:hover .top-part .image .time_special {
          left: -100px;
          transform: translateY(-50%);
          transition: all ease-in-out 0.5s; }
          html[dir="rtl"] .product-card:hover .top-part .image .time_special {
            right: -100px;
            left: unset;
            letter-spacing: 0; }
        .product-card:hover .top-part .btn-quickview {
          opacity: 1;
          visibility: visible; } }

.shimmer {
  position: relative;
  overflow: hidden;
  background: #eee !important;
  color: transparent !important; }
  .shimmer > * {
    opacity: 0;
    color: transparent !important; }
  .shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 1.2s infinite;
    z-index: 99; }

@keyframes shimmer {
  100% {
    left: 100%; } }

.products-filter {
  background-color: #fff;
  margin: 32px auto;
  padding: 12px;
  border: 1px solid #1e1f201f;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  .products-filter .grid-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; }
    .products-filter .grid-list .view-btn {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: transparent;
      outline: none; }
    .products-filter .grid-list .compare-btn {
      font: normal normal 400 14px/2 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #333333; }
      .products-filter .grid-list .compare-btn i {
        padding: 0 10px; }
  .products-filter .select-group {
    display: flex;
    margin-inline-start: auto; }
    .products-filter .select-group .input-group {
      display: inline-flex;
      align-items: center;
      height: auto; }
      .products-filter .select-group .input-group .input-group-addon {
        width: auto;
        display: flex;
        align-items: center;
        border-radius: 0;
        height: 100%;
        margin-bottom: 0;
        padding: 5px 10px;
        font-size: 12px;
        line-height: 1.5; }
      .products-filter .select-group .input-group .form-control {
        width: max-content; }
    .products-filter .select-group .sort-by {
      margin: 0 10px; }
      .products-filter .select-group .sort-by .form-control {
        width: auto;
        min-width: 50px; }

.products-slider {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  margin: auto;
  width: 1600px;
  padding-right: 14rem;
  padding-left: 14rem;
  max-width: 100%; }
  @media only screen and (max-width: 991.98px) {
    .products-slider {
      padding-top: 20px;
      padding-bottom: 20px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .products-slider {
      padding-right: 8rem;
      padding-left: 8rem; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .products-slider {
      padding-right: 6rem;
      padding-left: 6rem; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .products-slider {
      padding-right: 3rem;
      padding-left: 3rem; } }
  @media only screen and (max-width: 767.98px) {
    .products-slider {
      padding-right: 1.5rem;
      padding-left: 1.5rem; } }
  .products-slider-wrapper .section-data {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 0 10px; }
    .products-slider-wrapper .section-data-title {
      max-width: 30%; }
      @media only screen and (max-width: 991.98px) {
        .products-slider-wrapper .section-data-title {
          max-width: 100%;
          order: 1; } }
      .products-slider-wrapper .section-data-title h3 {
        text-align: left;
        font: normal normal 600 32px/1.3 "Poppins", sans-serif;
        letter-spacing: 0;
        color: #333333;
        margin: 0 !important; }
        html[dir="rtl"] .products-slider-wrapper .section-data-title h3 {
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          .products-slider-wrapper .section-data-title h3 {
            font-size: 29px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          .products-slider-wrapper .section-data-title h3 {
            font-size: 26px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          .products-slider-wrapper .section-data-title h3 {
            font-size: 24px;
            letter-spacing: 0px; } }
        @media only screen and (max-width: 767.98px) {
          .products-slider-wrapper .section-data-title h3 {
            font-size: 21px;
            letter-spacing: 0px; } }
    .products-slider-wrapper .section-data-url {
      margin: 0 0 0 auto; }
      html[dir="rtl"] .products-slider-wrapper .section-data-url {
        margin: 0 auto 0 0;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        .products-slider-wrapper .section-data-url {
          display: none; } }
      .products-slider-wrapper .section-data-url .linkBtn {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        margin: auto; }
        @media only screen and (max-width: 767.98px) {
          .products-slider-wrapper .section-data-url .linkBtn {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          .products-slider-wrapper .section-data-url .linkBtn:hover {
            border-color: #8fd2ee; }
            .products-slider-wrapper .section-data-url .linkBtn:hover input,
            .products-slider-wrapper .section-data-url .linkBtn:hover span {
              color: #fff; }
            .products-slider-wrapper .section-data-url .linkBtn:hover .icon svg path {
              fill: #fff; } }
        .products-slider-wrapper .section-data-url .linkBtn input,
        .products-slider-wrapper .section-data-url .linkBtn span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        .products-slider-wrapper .section-data-url .linkBtn .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          .products-slider-wrapper .section-data-url .linkBtn .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            .products-slider-wrapper .section-data-url .linkBtn .icon svg path {
              fill: #2959D3; }
        .products-slider-wrapper .section-data-url .linkBtn .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            .products-slider-wrapper .section-data-url .linkBtn .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            .products-slider-wrapper .section-data-url .linkBtn .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            .products-slider-wrapper .section-data-url .linkBtn .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }
  .products-slider-wrapper .section-slider {
    z-index: 2;
    position: relative;
    overflow: hidden; }
    .products-slider-wrapper .section-slider .flickitySlider {
      margin: 0 -10px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .products-slider-wrapper .section-slider .flickitySlider {
          margin: 0 -8px; } }
      @media only screen and (max-width: 767.98px) {
        .products-slider-wrapper .section-slider .flickitySlider {
          margin: 0 -7px; } }
      .products-slider-wrapper .section-slider .flickitySlider .carousel-cell {
        width: calc(100% / 6); }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          .products-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 5); } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          .products-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 4); } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          .products-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 3); } }
        @media only screen and (max-width: 767.98px) {
          .products-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 2); } }
        @media only screen and (max-width: 575.98px) {
          .products-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 2); } }
    .products-slider-wrapper .section-slider .flickitySlider-bar {
      width: 50%; }
      @media only screen and (max-width: 991.98px) {
        .products-slider-wrapper .section-slider .flickitySlider-bar {
          width: 100%; } }
    .products-slider-wrapper .section-slider .flickity-button {
      display: none !important; }
  .products-slider-wrapper .section-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 35px 0 0 0; }
    @media only screen and (min-width: 992px) {
      .products-slider-wrapper .section-bottom {
        display: none; } }
    .products-slider-wrapper .section-bottom-url {
      margin: 0 auto; }
      .products-slider-wrapper .section-bottom-url .linkBtn {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        margin: auto; }
        @media only screen and (max-width: 767.98px) {
          .products-slider-wrapper .section-bottom-url .linkBtn {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          .products-slider-wrapper .section-bottom-url .linkBtn:hover {
            border-color: #8fd2ee; }
            .products-slider-wrapper .section-bottom-url .linkBtn:hover input,
            .products-slider-wrapper .section-bottom-url .linkBtn:hover span {
              color: #fff; }
            .products-slider-wrapper .section-bottom-url .linkBtn:hover .icon svg path {
              fill: #fff; } }
        .products-slider-wrapper .section-bottom-url .linkBtn input,
        .products-slider-wrapper .section-bottom-url .linkBtn span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        .products-slider-wrapper .section-bottom-url .linkBtn .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          .products-slider-wrapper .section-bottom-url .linkBtn .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            .products-slider-wrapper .section-bottom-url .linkBtn .icon svg path {
              fill: #2959D3; }
        .products-slider-wrapper .section-bottom-url .linkBtn .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            .products-slider-wrapper .section-bottom-url .linkBtn .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            .products-slider-wrapper .section-bottom-url .linkBtn .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            .products-slider-wrapper .section-bottom-url .linkBtn .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }

.cards-slider {
  padding-top: 30px;
  padding-bottom: 30px;
  margin: auto;
  width: 1600px;
  padding-right: 14rem;
  padding-left: 14rem;
  max-width: 100%; }
  @media only screen and (max-width: 991.98px) {
    .cards-slider {
      padding-top: 20px;
      padding-bottom: 20px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .cards-slider {
      padding-right: 8rem;
      padding-left: 8rem; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .cards-slider {
      padding-right: 6rem;
      padding-left: 6rem; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .cards-slider {
      padding-right: 3rem;
      padding-left: 3rem; } }
  @media only screen and (max-width: 767.98px) {
    .cards-slider {
      padding-right: 1.5rem;
      padding-left: 1.5rem; } }
  .cards-slider-wrapper .section-data {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 0 10px; }
    .cards-slider-wrapper .section-data-title {
      max-width: 30%; }
      @media only screen and (max-width: 991.98px) {
        .cards-slider-wrapper .section-data-title {
          max-width: 100%;
          order: 1; } }
      .cards-slider-wrapper .section-data-title h3 {
        text-align: left;
        font: normal normal 600 32px/1.3 "Poppins", sans-serif;
        letter-spacing: 0;
        color: #333333;
        margin: 0 !important; }
        html[dir="rtl"] .cards-slider-wrapper .section-data-title h3 {
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          .cards-slider-wrapper .section-data-title h3 {
            font-size: 29px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          .cards-slider-wrapper .section-data-title h3 {
            font-size: 26px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          .cards-slider-wrapper .section-data-title h3 {
            font-size: 24px;
            letter-spacing: 0px; } }
        @media only screen and (max-width: 767.98px) {
          .cards-slider-wrapper .section-data-title h3 {
            font-size: 21px;
            letter-spacing: 0px; } }
  .cards-slider-wrapper .section-slider {
    z-index: 2;
    position: relative;
    overflow: hidden; }
    .cards-slider-wrapper .section-slider .flickitySlider {
      margin: 0 -10px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .cards-slider-wrapper .section-slider .flickitySlider {
          margin: 0 -8px; } }
      @media only screen and (max-width: 767.98px) {
        .cards-slider-wrapper .section-slider .flickitySlider {
          margin: 0 -7px; } }
      .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell {
        width: 40%; }
        @media only screen and (max-width: 991.98px) {
          .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: 80%; } }
        .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item {
          padding: 15px 10px; }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item {
              padding: 15px 8px; } }
          @media only screen and (max-width: 767.98px) {
            .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item {
              padding: 15px 7px; } }
          .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-inner {
            position: relative;
            padding: 0;
            display: block;
            opacity: 1;
            transition: all ease-in-out 0.5s;
            border: 1px solid #e2e2e2;
            border-radius: 4px;
            overflow: hidden; }
            html[dir="rtl"] .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-inner {
              direction: rtl;
              letter-spacing: 0; }
            .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-inner figure {
              display: block;
              margin: 0;
              position: relative;
              display: block;
              margin: 0;
              width: 100%;
              overflow: hidden;
              background: #fff;
              position: relative; }
              .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-inner figure img {
                max-width: 100%;
                max-height: 100%;
                margin-left: auto;
                margin-right: auto;
                background: #fff;
                transition: all ease-in-out 0.5s;
                display: block;
                height: auto;
                width: 100%;
                aspect-ratio: 131/75; }
          .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content {
            padding: 12px;
            position: relative;
            background: #fff; }
            @media only screen and (max-width: 767.98px) {
              .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content {
                padding: 12px 6px; } }
            .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .title {
              text-align: left;
              font: normal normal 700 15px/22px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #333333;
              text-transform: capitalize;
              opacity: 1;
              margin: 0 0 5px 0; }
              html[dir="rtl"] .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .title {
                text-align: right;
                font-family: "Cairo", sans-serif;
                letter-spacing: 0; }
              @media only screen and (min-width: 768px) and (max-width: 991.98px) {
                .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .title {
                  font-size: 14px;
                  line-height: 18px;
                  min-height: 36px; } }
              @media only screen and (max-width: 767.98px) {
                .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .title {
                  font-size: 12px;
                  line-height: 16px;
                  min-height: 32px; } }
            .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .expert {
              text-align: left;
              font: normal normal 400 14px/1 "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #121212;
              opacity: 1;
              transition: all ease-in-out 0.5s; }
              html[dir="rtl"] .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .expert {
                text-align: right;
                font-family: "Cairo", sans-serif;
                letter-spacing: 0; }
              @media only screen and (max-width: 991.98px) {
                .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .expert {
                  font-size: 12px; } }
          @media only screen and (min-width: 992px) {
            .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover {
              cursor: pointer; }
              .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover .card-item-inner {
                transition: all ease-in-out 0.5s; }
                .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover .card-item-inner figure img {
                  transform: scale(1.02);
                  transition: all ease-in-out 0.5s; }
              .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover .card-item-content {
                transition: all ease-in-out 0.5s; }
                .cards-slider-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover .card-item-content .title {
                  color: #2959D3;
                  transition: all ease-in-out 0.5s; } }
    .cards-slider-wrapper .section-slider .flickitySlider-bar {
      width: 50%; }
      @media only screen and (max-width: 991.98px) {
        .cards-slider-wrapper .section-slider .flickitySlider-bar {
          width: 100%; } }
    .cards-slider-wrapper .section-slider .flickity-button {
      display: none !important; }
  .cards-slider-wrapper .section-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 35px 0 0 0; }
    @media only screen and (min-width: 992px) {
      .cards-slider-wrapper .section-bottom {
        display: none; } }
    .cards-slider-wrapper .section-bottom-url {
      margin: 0 auto; }
      .cards-slider-wrapper .section-bottom-url .linkBtn {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        margin: auto; }
        @media only screen and (max-width: 767.98px) {
          .cards-slider-wrapper .section-bottom-url .linkBtn {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          .cards-slider-wrapper .section-bottom-url .linkBtn:hover {
            border-color: #8fd2ee; }
            .cards-slider-wrapper .section-bottom-url .linkBtn:hover input,
            .cards-slider-wrapper .section-bottom-url .linkBtn:hover span {
              color: #fff; }
            .cards-slider-wrapper .section-bottom-url .linkBtn:hover .icon svg path {
              fill: #fff; } }
        .cards-slider-wrapper .section-bottom-url .linkBtn input,
        .cards-slider-wrapper .section-bottom-url .linkBtn span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        .cards-slider-wrapper .section-bottom-url .linkBtn .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          .cards-slider-wrapper .section-bottom-url .linkBtn .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            .cards-slider-wrapper .section-bottom-url .linkBtn .icon svg path {
              fill: #2959D3; }
        .cards-slider-wrapper .section-bottom-url .linkBtn .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            .cards-slider-wrapper .section-bottom-url .linkBtn .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            .cards-slider-wrapper .section-bottom-url .linkBtn .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            .cards-slider-wrapper .section-bottom-url .linkBtn .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }

.cards-slider2 {
  padding-top: 30px;
  padding-bottom: 30px;
  margin: auto;
  width: 1600px;
  padding-right: 14rem;
  padding-left: 14rem;
  max-width: 100%; }
  @media only screen and (max-width: 991.98px) {
    .cards-slider2 {
      padding-top: 20px;
      padding-bottom: 20px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .cards-slider2 {
      padding-right: 8rem;
      padding-left: 8rem; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .cards-slider2 {
      padding-right: 6rem;
      padding-left: 6rem; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .cards-slider2 {
      padding-right: 3rem;
      padding-left: 3rem; } }
  @media only screen and (max-width: 767.98px) {
    .cards-slider2 {
      padding-right: 1.5rem;
      padding-left: 1.5rem; } }
  .cards-slider2-wrapper .section-data {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 0 10px; }
    .cards-slider2-wrapper .section-data-title {
      max-width: 30%; }
      @media only screen and (max-width: 991.98px) {
        .cards-slider2-wrapper .section-data-title {
          max-width: 100%;
          order: 1; } }
      .cards-slider2-wrapper .section-data-title h3 {
        text-align: left;
        font: normal normal 600 32px/1.3 "Poppins", sans-serif;
        letter-spacing: 0;
        color: #333333;
        margin: 0 !important; }
        html[dir="rtl"] .cards-slider2-wrapper .section-data-title h3 {
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          .cards-slider2-wrapper .section-data-title h3 {
            font-size: 29px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          .cards-slider2-wrapper .section-data-title h3 {
            font-size: 26px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          .cards-slider2-wrapper .section-data-title h3 {
            font-size: 24px;
            letter-spacing: 0px; } }
        @media only screen and (max-width: 767.98px) {
          .cards-slider2-wrapper .section-data-title h3 {
            font-size: 21px;
            letter-spacing: 0px; } }
  .cards-slider2-wrapper .section-slider {
    z-index: 2;
    position: relative;
    overflow: hidden; }
    .cards-slider2-wrapper .section-slider .flickitySlider {
      margin: 0 -10px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .cards-slider2-wrapper .section-slider .flickitySlider {
          margin: 0 -8px; } }
      @media only screen and (max-width: 767.98px) {
        .cards-slider2-wrapper .section-slider .flickitySlider {
          margin: 0 -7px; } }
      .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell {
        width: calc(100% / 6); }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 5); } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 4); } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 3); } }
        @media only screen and (max-width: 767.98px) {
          .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 3); } }
        @media only screen and (max-width: 575.98px) {
          .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 2); } }
        .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item {
          padding: 15px 10px; }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item {
              padding: 15px 8px; } }
          @media only screen and (max-width: 767.98px) {
            .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item {
              padding: 15px 7px; } }
          .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-inner {
            position: relative;
            padding: 0;
            display: block;
            opacity: 1;
            transition: all ease-in-out 0.5s;
            border-radius: 4px;
            overflow: hidden; }
            html[dir="rtl"] .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-inner {
              direction: rtl;
              letter-spacing: 0; }
            .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-inner figure {
              display: block;
              margin: 0;
              position: relative;
              display: block;
              margin: 0;
              width: 100%;
              overflow: hidden;
              background: #fff;
              position: relative;
              border: 1px solid #e2e2e2; }
              .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-inner figure img {
                max-width: 100%;
                max-height: 100%;
                margin-left: auto;
                margin-right: auto;
                background: #fff;
                transition: all ease-in-out 0.5s;
                display: block;
                height: auto;
                width: 100%;
                aspect-ratio: 1/1;
                object-fit: contain;
                padding: 15px; }
          .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content {
            padding: 12px;
            position: relative;
            background: #fff; }
            @media only screen and (max-width: 767.98px) {
              .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content {
                padding: 12px 6px; } }
            .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .title {
              text-align: center;
              font: normal normal 700 15px/22px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #333333;
              text-transform: capitalize;
              opacity: 1;
              margin: 0 0 5px 0; }
              html[dir="rtl"] .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .title {
                text-align: center;
                font-family: "Cairo", sans-serif;
                letter-spacing: 0; }
              @media only screen and (min-width: 768px) and (max-width: 991.98px) {
                .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .title {
                  font-size: 14px;
                  line-height: 18px;
                  min-height: 36px; } }
              @media only screen and (max-width: 767.98px) {
                .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .title {
                  font-size: 12px;
                  line-height: 16px;
                  min-height: 32px; } }
            .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .expert {
              text-align: center;
              font: normal normal 400 13px/1.3 "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #121212;
              opacity: 1;
              transition: all ease-in-out 0.5s; }
              html[dir="rtl"] .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .expert {
                text-align: center;
                font-family: "Cairo", sans-serif;
                letter-spacing: 0; }
              @media only screen and (max-width: 991.98px) {
                .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item-content .expert {
                  font-size: 12px; } }
          @media only screen and (min-width: 992px) {
            .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover {
              cursor: pointer; }
              .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover .card-item-inner {
                transition: all ease-in-out 0.5s; }
                .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover .card-item-inner figure img {
                  transform: scale(1.02);
                  transition: all ease-in-out 0.5s; }
              .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover .card-item-content {
                transition: all ease-in-out 0.5s; }
                .cards-slider2-wrapper .section-slider .flickitySlider .carousel-cell .card-item:hover .card-item-content .title {
                  color: #2959D3;
                  transition: all ease-in-out 0.5s; } }
    .cards-slider2-wrapper .section-slider .flickitySlider-bar {
      width: 50%; }
      @media only screen and (max-width: 991.98px) {
        .cards-slider2-wrapper .section-slider .flickitySlider-bar {
          width: 100%; } }
    .cards-slider2-wrapper .section-slider .flickity-button {
      display: none !important; }
  .cards-slider2-wrapper .section-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 35px 0 0 0; }
    @media only screen and (min-width: 992px) {
      .cards-slider2-wrapper .section-bottom {
        display: none; } }
    .cards-slider2-wrapper .section-bottom-url {
      margin: 0 auto; }
      .cards-slider2-wrapper .section-bottom-url .linkBtn {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        margin: auto; }
        @media only screen and (max-width: 767.98px) {
          .cards-slider2-wrapper .section-bottom-url .linkBtn {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          .cards-slider2-wrapper .section-bottom-url .linkBtn:hover {
            border-color: #8fd2ee; }
            .cards-slider2-wrapper .section-bottom-url .linkBtn:hover input,
            .cards-slider2-wrapper .section-bottom-url .linkBtn:hover span {
              color: #fff; }
            .cards-slider2-wrapper .section-bottom-url .linkBtn:hover .icon svg path {
              fill: #fff; } }
        .cards-slider2-wrapper .section-bottom-url .linkBtn input,
        .cards-slider2-wrapper .section-bottom-url .linkBtn span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        .cards-slider2-wrapper .section-bottom-url .linkBtn .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          .cards-slider2-wrapper .section-bottom-url .linkBtn .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            .cards-slider2-wrapper .section-bottom-url .linkBtn .icon svg path {
              fill: #2959D3; }
        .cards-slider2-wrapper .section-bottom-url .linkBtn .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            .cards-slider2-wrapper .section-bottom-url .linkBtn .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            .cards-slider2-wrapper .section-bottom-url .linkBtn .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            .cards-slider2-wrapper .section-bottom-url .linkBtn .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }

.categories-slider {
  padding-top: 30px;
  padding-bottom: 30px;
  margin: auto;
  width: 1600px;
  padding-right: 14rem;
  padding-left: 14rem;
  max-width: 100%; }
  @media only screen and (max-width: 991.98px) {
    .categories-slider {
      padding-top: 20px;
      padding-bottom: 20px; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .categories-slider {
      padding-right: 8rem;
      padding-left: 8rem; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .categories-slider {
      padding-right: 6rem;
      padding-left: 6rem; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .categories-slider {
      padding-right: 3rem;
      padding-left: 3rem; } }
  @media only screen and (max-width: 767.98px) {
    .categories-slider {
      padding-right: 1.5rem;
      padding-left: 1.5rem; } }
  .categories-slider-wrapper .section-data {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0 0 10px; }
    .categories-slider-wrapper .section-data-title {
      max-width: 30%; }
      @media only screen and (max-width: 991.98px) {
        .categories-slider-wrapper .section-data-title {
          max-width: 100%;
          order: 1; } }
      .categories-slider-wrapper .section-data-title h3 {
        text-align: left;
        font: normal normal 600 32px/1.3 "Poppins", sans-serif;
        letter-spacing: 0;
        color: #333333;
        margin: 0 !important; }
        html[dir="rtl"] .categories-slider-wrapper .section-data-title h3 {
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          .categories-slider-wrapper .section-data-title h3 {
            font-size: 29px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          .categories-slider-wrapper .section-data-title h3 {
            font-size: 26px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          .categories-slider-wrapper .section-data-title h3 {
            font-size: 24px;
            letter-spacing: 0px; } }
        @media only screen and (max-width: 767.98px) {
          .categories-slider-wrapper .section-data-title h3 {
            font-size: 21px;
            letter-spacing: 0px; } }
    .categories-slider-wrapper .section-data-url {
      margin: 0 0 0 auto; }
      html[dir="rtl"] .categories-slider-wrapper .section-data-url {
        margin: 0 auto 0 0;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        .categories-slider-wrapper .section-data-url {
          display: none; } }
      .categories-slider-wrapper .section-data-url .linkBtn {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        margin: auto; }
        @media only screen and (max-width: 767.98px) {
          .categories-slider-wrapper .section-data-url .linkBtn {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          .categories-slider-wrapper .section-data-url .linkBtn:hover {
            border-color: #8fd2ee; }
            .categories-slider-wrapper .section-data-url .linkBtn:hover input,
            .categories-slider-wrapper .section-data-url .linkBtn:hover span {
              color: #fff; }
            .categories-slider-wrapper .section-data-url .linkBtn:hover .icon svg path {
              fill: #fff; } }
        .categories-slider-wrapper .section-data-url .linkBtn input,
        .categories-slider-wrapper .section-data-url .linkBtn span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        .categories-slider-wrapper .section-data-url .linkBtn .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          .categories-slider-wrapper .section-data-url .linkBtn .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            .categories-slider-wrapper .section-data-url .linkBtn .icon svg path {
              fill: #2959D3; }
        .categories-slider-wrapper .section-data-url .linkBtn .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            .categories-slider-wrapper .section-data-url .linkBtn .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            .categories-slider-wrapper .section-data-url .linkBtn .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            .categories-slider-wrapper .section-data-url .linkBtn .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }
  .categories-slider-wrapper .section-slider {
    z-index: 2;
    position: relative;
    overflow: hidden; }
    .categories-slider-wrapper .section-slider .flickitySlider {
      margin: 0 -10px; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        .categories-slider-wrapper .section-slider .flickitySlider {
          margin: 0 -8px; } }
      @media only screen and (max-width: 767.98px) {
        .categories-slider-wrapper .section-slider .flickitySlider {
          margin: 0 -7px; } }
      .categories-slider-wrapper .section-slider .flickitySlider .carousel-cell {
        width: calc(100% / 6); }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          .categories-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 5); } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          .categories-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 4); } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          .categories-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 3); } }
        @media only screen and (max-width: 767.98px) {
          .categories-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 2); } }
        @media only screen and (max-width: 575.98px) {
          .categories-slider-wrapper .section-slider .flickitySlider .carousel-cell {
            width: calc(100% / 2); } }
    .categories-slider-wrapper .section-slider .flickitySlider-bar {
      width: 50%; }
      @media only screen and (max-width: 991.98px) {
        .categories-slider-wrapper .section-slider .flickitySlider-bar {
          width: 100%; } }
    .categories-slider-wrapper .section-slider .flickity-button {
      display: none !important; }
  .categories-slider-wrapper .section-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 35px 0 0 0; }
    @media only screen and (min-width: 992px) {
      .categories-slider-wrapper .section-bottom {
        display: none; } }
    .categories-slider-wrapper .section-bottom-url {
      margin: 0 auto; }
      .categories-slider-wrapper .section-bottom-url .linkBtn {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        margin: auto; }
        @media only screen and (max-width: 767.98px) {
          .categories-slider-wrapper .section-bottom-url .linkBtn {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          .categories-slider-wrapper .section-bottom-url .linkBtn:hover {
            border-color: #8fd2ee; }
            .categories-slider-wrapper .section-bottom-url .linkBtn:hover input,
            .categories-slider-wrapper .section-bottom-url .linkBtn:hover span {
              color: #fff; }
            .categories-slider-wrapper .section-bottom-url .linkBtn:hover .icon svg path {
              fill: #fff; } }
        .categories-slider-wrapper .section-bottom-url .linkBtn input,
        .categories-slider-wrapper .section-bottom-url .linkBtn span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        .categories-slider-wrapper .section-bottom-url .linkBtn .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          .categories-slider-wrapper .section-bottom-url .linkBtn .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            .categories-slider-wrapper .section-bottom-url .linkBtn .icon svg path {
              fill: #2959D3; }
        .categories-slider-wrapper .section-bottom-url .linkBtn .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            .categories-slider-wrapper .section-bottom-url .linkBtn .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            .categories-slider-wrapper .section-bottom-url .linkBtn .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            .categories-slider-wrapper .section-bottom-url .linkBtn .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }

.single-category {
  padding: 15px 10px; }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .single-category {
      padding: 15px 8px; } }
  @media only screen and (max-width: 767.98px) {
    .single-category {
      padding: 15px 7px; } }

.single-category .single-card {
  position: relative;
  overflow: hidden;
  display: block; }
  .single-category .single-card-wrapper {
    position: relative; }
    .single-category .single-card-wrapper .image {
      display: block;
      overflow: hidden;
      border: 1px solid #e2e2e2;
      border-radius: 4px; }
      .single-category .single-card-wrapper .image img {
        width: 100%;
        padding: 0px;
        margin: 0px;
        display: block;
        aspect-ratio: 1/1;
        height: auto;
        transition: all ease-in-out 0.5s; }
    .single-category .single-card-wrapper .content {
      background-color: rgba(255, 255, 255, 0.75);
      z-index: 2;
      margin: 15px 0 0 0;
      width: 100%; }
      .single-category .single-card-wrapper .content-title {
        text-align: center;
        font: normal normal 600 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #121212;
        opacity: 1; }
        html[dir="rtl"] .single-category .single-card-wrapper .content-title {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: center;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          .single-category .single-card-wrapper .content-title {
            font-size: 13px;
            line-height: 1.5; } }
        .single-category .single-card-wrapper .content-title a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          .single-category .single-card-wrapper .content-title a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            .single-category .single-card-wrapper .content-title a:hover:after {
              width: 100%; } }
          html[dir="rtl"] .single-category .single-card-wrapper .content-title a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            .single-category .single-card-wrapper .content-title a:hover {
              color: #8fd2ee; } }
    @media only screen and (min-width: 992px) {
      .single-category .single-card-wrapper:hover .image img {
        transform: scale(1.075);
        transition: all ease-in-out 0.5s; } }

#review-pop {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  background: rgba(15, 15, 15, 0.4);
  display: flex;
  align-items: center;
  justify-content: center; }
  #review-pop.active-review {
    z-index: 9999;
    opacity: 1; }
    #review-pop.active-review .review-wrapper {
      transition: all ease-in-out 0.5s;
      transform: scale(1); }
  #review-pop .review-wrapper {
    transform: scale(0);
    border-radius: 10px;
    width: 370px;
    max-width: calc(100% - 30px);
    background: #FAFAFA;
    overflow: hidden; }
    #review-pop .review-wrapper .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 25px 15px 0; }
      #review-pop .review-wrapper .header .title {
        text-align: left;
        font: normal normal 700 16px/23px "Poppins", sans-serif;
        letter-spacing: -0.54px;
        color: #000000;
        opacity: 1; }
      #review-pop .review-wrapper .header .close-review {
        cursor: pointer; }
        #review-pop .review-wrapper .header .close-review svg {
          width: 12px;
          height: 12px; }
    #review-pop .review-wrapper .alert {
      font: normal normal 600 13px/20px "Poppins", sans-serif;
      letter-spacing: 0px;
      opacity: 1;
      padding: 10px;
      margin: 10px; }
    #review-pop .review-wrapper .body {
      padding: 25px 15px 10px; }
      #review-pop .review-wrapper .body .rate-product {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
        height: 41px; }
        #review-pop .review-wrapper .body .rate-product .jq-star {
          cursor: pointer; }
          #review-pop .review-wrapper .body .rate-product .jq-star svg {
            width: 41px;
            height: 41px; }
        #review-pop .review-wrapper .body .rate-product .text {
          text-align: left;
          font: normal normal 400 13px/16px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #000000;
          opacity: 1; }
      #review-pop .review-wrapper .body .rate-value {
        text-align: center;
        font: normal normal 600 13px/20px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #000000;
        opacity: 1;
        margin-top: 20px; }
      #review-pop .review-wrapper .body .input-item {
        margin: 20px auto 0; }
        #review-pop .review-wrapper .body .input-item label {
          display: block;
          text-align: left;
          font: normal normal 500 14px/21px "Poppins", sans-serif;
          letter-spacing: 0.28px;
          color: #121212;
          opacity: 1;
          margin-bottom: 5px; }
          html[dir="rtl"] #review-pop .review-wrapper .body .input-item label {
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #review-pop .review-wrapper .body .input-item label {
              font-size: 13px; } }
          @media only screen and (max-width: 767px) {
            #review-pop .review-wrapper .body .input-item label {
              font-size: 12px; } }
        #review-pop .review-wrapper .body .input-item 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: #333333;
          border-radius: 0px !important;
          border: 1px solid #ebebeb;
          background: #fff;
          padding: 5px 15px;
          height: 200px;
          margin-bottom: 20px;
          height: 100px;
          margin: 0 auto; }
          html[dir="rtl"] #review-pop .review-wrapper .body .input-item textarea {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif;
            text-align: right;
            letter-spacing: 0; }
          #review-pop .review-wrapper .body .input-item textarea.placeholder {
            color: #cccccc; }
          #review-pop .review-wrapper .body .input-item textarea:-moz-placeholder {
            color: #cccccc; }
          #review-pop .review-wrapper .body .input-item textarea::-moz-placeholder {
            color: #cccccc; }
          #review-pop .review-wrapper .body .input-item textarea:-ms-input-placeholder {
            color: #cccccc; }
          #review-pop .review-wrapper .body .input-item textarea::-webkit-input-placeholder {
            color: #cccccc; }
    #review-pop .review-wrapper .button-wrapper {
      background: #ffffff;
      padding: 15px 15px 25px; }
      #review-pop .review-wrapper .button-wrapper #button-review {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        margin: auto;
        display: block; }
        @media only screen and (max-width: 767.98px) {
          #review-pop .review-wrapper .button-wrapper #button-review {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          #review-pop .review-wrapper .button-wrapper #button-review:hover {
            border-color: #8fd2ee; }
            #review-pop .review-wrapper .button-wrapper #button-review:hover input,
            #review-pop .review-wrapper .button-wrapper #button-review:hover span {
              color: #fff; }
            #review-pop .review-wrapper .button-wrapper #button-review:hover .icon svg path {
              fill: #fff; } }
        #review-pop .review-wrapper .button-wrapper #button-review input,
        #review-pop .review-wrapper .button-wrapper #button-review span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        #review-pop .review-wrapper .button-wrapper #button-review .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          #review-pop .review-wrapper .button-wrapper #button-review .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            #review-pop .review-wrapper .button-wrapper #button-review .icon svg path {
              fill: #2959D3; }
        #review-pop .review-wrapper .button-wrapper #button-review .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            #review-pop .review-wrapper .button-wrapper #button-review .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            #review-pop .review-wrapper .button-wrapper #button-review .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            #review-pop .review-wrapper .button-wrapper #button-review .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }

#notify_when_available {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  background: rgba(15, 15, 15, 0.4);
  display: flex;
  align-items: center;
  justify-content: center; }
  #notify_when_available.active-notify {
    z-index: 9999;
    opacity: 1; }
    #notify_when_available.active-notify .notify-wrapper {
      transition: all ease-in-out 0.5s;
      transform: scale(1); }
  #notify_when_available .notify-wrapper {
    transform: scale(0);
    border-radius: 10px;
    width: 370px;
    max-width: calc(100% - 30px);
    background: #FAFAFA;
    overflow: hidden;
    padding: 25px 0; }
    #notify_when_available .notify-wrapper .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 15px; }
      #notify_when_available .notify-wrapper .header .title {
        text-align: left;
        font: normal normal 700 16px/23px "Poppins", sans-serif;
        letter-spacing: -0.54px;
        color: #000000;
        opacity: 1; }
      #notify_when_available .notify-wrapper .header .close-notify {
        cursor: pointer; }
        #notify_when_available .notify-wrapper .header .close-notify svg {
          width: 12px;
          height: 12px; }
    #notify_when_available .notify-wrapper .body .pm-form {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 15px;
      margin: 25px 15px 0; }
      @media only screen and (max-width: 767.98px) {
        #notify_when_available .notify-wrapper .body .pm-form {
          flex-direction: column;
          gap: 10px; } }
      #notify_when_available .notify-wrapper .body .pm-form label {
        display: none; }
      #notify_when_available .notify-wrapper .body .pm-form input[type="email"] {
        -webkit-appearance: none;
        width: 100%;
        display: block;
        height: 55px;
        line-height: 55px;
        padding: 0 20px;
        text-align: left;
        font: normal normal 400 15px/28px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #121212;
        text-transform: none;
        opacity: 1;
        border-radius: 0px !important;
        border: 1px solid #f1f1f1;
        background: white !important;
        border-radius: 6px !important;
        box-shadow: none;
        outline: none;
        margin: 0; }
        html[dir="rtl"] #notify_when_available .notify-wrapper .body .pm-form input[type="email"] {
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        #notify_when_available .notify-wrapper .body .pm-form input[type="email"]:focus {
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
        #notify_when_available .notify-wrapper .body .pm-form input[type="email"].placeholder {
          color: #888888; }
        #notify_when_available .notify-wrapper .body .pm-form input[type="email"]:-moz-placeholder {
          color: #888888; }
        #notify_when_available .notify-wrapper .body .pm-form input[type="email"]::-moz-placeholder {
          color: #888888; }
        #notify_when_available .notify-wrapper .body .pm-form input[type="email"]:-ms-input-placeholder {
          color: #888888; }
        #notify_when_available .notify-wrapper .body .pm-form input[type="email"]::-webkit-input-placeholder {
          color: #888888; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #notify_when_available .notify-wrapper .body .pm-form input[type="email"] {
            height: 50px;
            line-height: 50px;
            font-size: 14px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #notify_when_available .notify-wrapper .body .pm-form input[type="email"] {
            height: 50px;
            line-height: 50px;
            font-size: 13px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #notify_when_available .notify-wrapper .body .pm-form input[type="email"] {
            height: 50px;
            line-height: 50px;
            font-size: 13px;
            padding: 0px 15px; } }
        @media only screen and (max-width: 767px) {
          #notify_when_available .notify-wrapper .body .pm-form input[type="email"] {
            height: 50px;
            line-height: 50px;
            font-size: 12px;
            padding: 0px 15px; } }
        @media only screen and (max-width: 767.98px) {
          #notify_when_available .notify-wrapper .body .pm-form input[type="email"] {
            text-align: center; }
            html[dir="rtl"] #notify_when_available .notify-wrapper .body .pm-form input[type="email"] {
              text-align: center;
              letter-spacing: 0; } }
      #notify_when_available .notify-wrapper .body .pm-form .notify-alert-danger {
        text-align: center;
        font: normal normal 400 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #333333;
        opacity: 1;
        color: #E02B2B;
        width: 100%; }
        html[dir="rtl"] #notify_when_available .notify-wrapper .body .pm-form .notify-alert-danger {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: center;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #notify_when_available .notify-wrapper .body .pm-form .notify-alert-danger {
            font-size: 13px;
            line-height: 1.5; } }
        #notify_when_available .notify-wrapper .body .pm-form .notify-alert-danger a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          #notify_when_available .notify-wrapper .body .pm-form .notify-alert-danger a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            #notify_when_available .notify-wrapper .body .pm-form .notify-alert-danger a:hover:after {
              width: 100%; } }
          html[dir="rtl"] #notify_when_available .notify-wrapper .body .pm-form .notify-alert-danger a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            #notify_when_available .notify-wrapper .body .pm-form .notify-alert-danger a:hover {
              color: #8fd2ee; } }
      #notify_when_available .notify-wrapper .body .pm-form .notify-btn {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        width: 100%;
        margin: 0; }
        @media only screen and (max-width: 767.98px) {
          #notify_when_available .notify-wrapper .body .pm-form .notify-btn {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          #notify_when_available .notify-wrapper .body .pm-form .notify-btn:hover {
            border-color: #8fd2ee; }
            #notify_when_available .notify-wrapper .body .pm-form .notify-btn:hover input,
            #notify_when_available .notify-wrapper .body .pm-form .notify-btn:hover span {
              color: #fff; }
            #notify_when_available .notify-wrapper .body .pm-form .notify-btn:hover .icon svg path {
              fill: #fff; } }
        #notify_when_available .notify-wrapper .body .pm-form .notify-btn input,
        #notify_when_available .notify-wrapper .body .pm-form .notify-btn span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        #notify_when_available .notify-wrapper .body .pm-form .notify-btn .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          #notify_when_available .notify-wrapper .body .pm-form .notify-btn .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            #notify_when_available .notify-wrapper .body .pm-form .notify-btn .icon svg path {
              fill: #2959D3; }
        #notify_when_available .notify-wrapper .body .pm-form .notify-btn .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            #notify_when_available .notify-wrapper .body .pm-form .notify-btn .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            #notify_when_available .notify-wrapper .body .pm-form .notify-btn .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            #notify_when_available .notify-wrapper .body .pm-form .notify-btn .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }

#sideMenu {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  opacity: 0;
  transition: all ease-in-out 0.5s;
  background: rgba(15, 15, 15, 0.4); }
  html[dir="rtl"] #sideMenu {
    right: unset;
    left: 0;
    letter-spacing: 0; }
  #sideMenu.active-search {
    z-index: 9999;
    opacity: 1; }
    #sideMenu.active-search #search-block-wrapper {
      transform: translateX(0%); }

#search-block-wrapper {
  width: 350px;
  background: #F7F6F6;
  transition: all ease-in-out 0.5s 0.1s;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  flex-grow: 1;
  max-width: 500px; }
  @media only screen and (max-width: 991.98px) {
    #search-block-wrapper {
      position: absolute;
      left: 0;
      right: 0;
      width: 100%;
      max-width: 100%;
      top: 100%;
      border-radius: 0 !important;
      padding: 10px 3rem;
      z-index: -2; }
      #search-block-wrapper:not(.active-search) {
        transform: translateY(-100%); } }
  @media only screen and (max-width: 767.98px) {
    #search-block-wrapper {
      padding: 10px 1.5rem; } }
  #search-block-wrapper #search-input {
    display: flex;
    gap: 10px;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 6px; }
    @media only screen and (min-width: 1200px) {
      #search-block-wrapper #search-input {
        padding: 5px 15px; } }
    @media only screen and (max-width: 1199.98px) {
      #search-block-wrapper #search-input {
        border-radius: 11px;
        padding: 0 7px;
        opacity: 1; } }
    #search-block-wrapper #search-input .close-btn,
    #search-block-wrapper #search-input .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: 16px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer; }
      #search-block-wrapper #search-input .close-btn input[type="submit"],
      #search-block-wrapper #search-input .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"] #search-block-wrapper #search-input .close-btn input[type="submit"], html[dir="rtl"]
        #search-block-wrapper #search-input .search-icon input[type="submit"] {
          right: 0;
          left: unset;
          letter-spacing: 0; }
      #search-block-wrapper #search-input .close-btn svg,
      #search-block-wrapper #search-input .search-icon svg {
        vertical-align: middle;
        fill: #121212;
        stroke: none;
        width: 15px;
        height: 15px; }
    #search-block-wrapper #search-input .close-btn {
      display: none; }
      #search-block-wrapper #search-input .close-btn svg {
        width: 10px;
        height: 10px; }
    #search-block-wrapper #search-input .textList {
      display: none; }
    #search-block-wrapper #search-input input[type="search"] {
      width: 100%;
      background: none;
      height: 40px;
      border: none !important;
      text-align: left;
      text-transform: none;
      padding: 6px 6px;
      text-align: left;
      font: normal normal 400 13px/28px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #333333;
      outline: none;
      box-shadow: none;
      opacity: 1;
      /* clears the 'X' from Chrome */ }
      #search-block-wrapper #search-input input[type="search"].placeholder {
        color: #333333; }
      #search-block-wrapper #search-input input[type="search"]:-moz-placeholder {
        color: #333333; }
      #search-block-wrapper #search-input input[type="search"]::-moz-placeholder {
        color: #333333; }
      #search-block-wrapper #search-input input[type="search"]:-ms-input-placeholder {
        color: #333333; }
      #search-block-wrapper #search-input input[type="search"]::-webkit-input-placeholder {
        color: #333333; }
      html[dir="rtl"] #search-block-wrapper #search-input input[type="search"] {
        text-align: right;
        font-family: "Cairo", sans-serif;
        letter-spacing: 0; }
      #search-block-wrapper #search-input input[type="search"]::-ms-clear {
        display: none;
        width: 0;
        height: 0; }
      #search-block-wrapper #search-input input[type="search"]::-ms-reveal {
        display: none;
        width: 0;
        height: 0; }
      #search-block-wrapper #search-input input[type="search"]::-webkit-search-decoration, #search-block-wrapper #search-input input[type="search"]::-webkit-search-cancel-button, #search-block-wrapper #search-input input[type="search"]::-webkit-search-results-button, #search-block-wrapper #search-input input[type="search"]::-webkit-search-results-decoration {
        display: none; }
    #search-block-wrapper #search-input .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: #fff;
      font: normal normal 400 15px/20px "Poppins", sans-serif;
      background: #121212;
      margin: 5px;
      border: none;
      transition: all ease-in-out 0.5s; }
      html[dir="rtl"] #search-block-wrapper #search-input .search-btn {
        font-family: "Cairo", sans-serif;
        letter-spacing: 0; }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #search-block-wrapper #search-input .search-btn {
          padding: 6px 5px;
          min-width: 80px; } }
      @media only screen and (max-width: 767.98px) {
        #search-block-wrapper #search-input .search-btn {
          padding: 6px 5px;
          min-width: 80px; } }
      #search-block-wrapper #search-input .search-btn:hover {
        color: #121212;
        transition: all ease-in-out 0.5s;
        background: #2959D3; }
  #search-block-wrapper #seacrh-body {
    height: max-content;
    overflow: auto;
    position: absolute;
    left: 0;
    top: calc(100% - 4px);
    right: 0; }
    #search-block-wrapper #seacrh-body .productsBox-wrapper {
      background: #fff;
      box-shadow: 0 0 0 3px rgba(29, 29, 29, 0.08);
      border: 0.6000000238418579px solid #E1E2E3;
      margin: auto;
      width: 1600px;
      padding-right: 14rem;
      padding-left: 14rem;
      max-width: 100%;
      padding-top: 25px !important;
      padding-bottom: 25px !important; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #search-block-wrapper #seacrh-body .productsBox-wrapper {
          padding-right: 8rem;
          padding-left: 8rem; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #search-block-wrapper #seacrh-body .productsBox-wrapper {
          padding-right: 6rem;
          padding-left: 6rem; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #search-block-wrapper #seacrh-body .productsBox-wrapper {
          padding-right: 3rem;
          padding-left: 3rem; } }
      @media only screen and (max-width: 767.98px) {
        #search-block-wrapper #seacrh-body .productsBox-wrapper {
          padding-right: 1.5rem;
          padding-left: 1.5rem; } }
      @media only screen and (min-width: 1200px) {
        #search-block-wrapper #seacrh-body .productsBox-wrapper {
          padding: 20px 10px !important; } }
      #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .products-wrapper {
        padding-bottom: 20px; }
      #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text {
        display: block;
        text-align: center;
        margin: 0 auto;
        position: relative; }
        #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text::after {
          content: "";
          width: 100%;
          height: 100px;
          position: absolute;
          bottom: 100%;
          right: 0;
          left: 0;
          background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), #fff); }
        #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results {
          position: relative;
          background: #fff;
          cursor: pointer;
          width: max-content;
          text-align: center;
          border-radius: 8px;
          transition: 400ms;
          text-decoration: none;
          z-index: 90;
          overflow: hidden;
          border: 1px solid #2959D3;
          display: block;
          margin: 0 auto; }
          @media only screen and (max-width: 767.98px) {
            #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results {
              width: 100%; } }
          @media only screen and (min-width: 992px) {
            #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results:hover {
              border-color: #8fd2ee; }
              #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results:hover input,
              #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results:hover span {
                color: #fff; }
              #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results:hover .icon svg path {
                fill: #fff; } }
          #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results input,
          #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results span {
            width: 100%;
            position: relative;
            z-index: 9;
            padding: 16px 18px;
            text-align: center;
            font: normal normal 600 15px/1.4 "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #2959D3;
            text-transform: none;
            opacity: 1;
            display: block;
            margin: 0;
            border: none;
            background: transparent; }
          #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results .icon {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 13px; }
            #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results .icon svg {
              width: 7px;
              display: block;
              height: auto; }
              #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results .icon svg path {
                fill: #2959D3; }
          #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results .circle {
            background-color: #8fd2ee;
            border-radius: 1000px;
            position: absolute;
            left: 0;
            top: 0;
            width: 0px;
            height: 0px;
            margin-left: 0px;
            margin-top: 0px;
            pointer-events: none;
            /*animation-timing-function: ease-in-out; */
            opacity: 0; }
            @media only screen and (max-width: 991.98px) {
              #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results .circle {
                display: none; } }
            @media only screen and (min-width: 992px) {
              #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results .circle.explode-circle {
                animation: explode 0.5s forwards; } }
            @media only screen and (min-width: 992px) {
              #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results .circle.desplode-circle {
                animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }
          #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .result-text .view-all-results span {
            font-size: 12px; }
      #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .loader-wrapper {
        position: absolute;
        width: 100%;
        height: 70vh;
        background: #ffffff;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center; }
        #search-block-wrapper #seacrh-body .productsBox-wrapper.live-search .loader-wrapper img {
          width: 20px; }
    #search-block-wrapper #seacrh-body .box-title {
      text-align: left;
      font: normal normal 600 12px/12px "Poppins", sans-serif;
      letter-spacing: .048px;
      color: #2959D3;
      opacity: 1;
      margin-bottom: 10px; }
      html[dir="rtl"] #search-block-wrapper #seacrh-body .box-title {
        font-family: "Cairo", sans-serif;
        letter-spacing: 0;
        text-align: right;
        letter-spacing: 0; }
    #search-block-wrapper #seacrh-body .products-wrapper {
      display: flex;
      flex-direction: column;
      gap: 0;
      overflow: auto;
      max-height: 55vh; }
      #search-block-wrapper #seacrh-body .products-wrapper .single-product {
        padding: 10px 10px 10px 0;
        border-bottom: 1px solid #E1E2E3;
        border: none; }
        html[dir="rtl"] #search-block-wrapper #seacrh-body .products-wrapper .single-product {
          padding: 10px 0 10px 25px;
          letter-spacing: 0; }
        #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row {
          display: flex;
          justify-content: space-between;
          gap: 15px; }
          #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-image a {
            display: block;
            display: block;
            width: 50px;
            height: 50px;
            border: 1px solid #ddd;
            border-radius: 6px;
            overflow: hidden; }
            #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-image a img {
              width: 100%;
              aspect-ratio: 1/1;
              object-fit: cover; }
          #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between; }
            #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description {
              display: flex;
              justify-content: space-between;
              gap: 10px; }
              #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .title {
                width: calc(100% - 10px);
                text-align: left;
                font: normal normal 600 12px/19px "Poppins", sans-serif;
                letter-spacing: 0;
                color: #333333;
                text-transform: capitalize;
                opacity: 1; }
                html[dir="rtl"] #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .title {
                  font-family: "Cairo", sans-serif;
                  text-align: right;
                  letter-spacing: 0px;
                  letter-spacing: 0; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .title a {
                  width: 100%;
                  color: inherit;
                  overflow: hidden;
                  -o-text-overflow: ellipsis;
                  text-overflow: ellipsis;
                  -webkit-line-clamp: 2;
                  display: -webkit-box;
                  -webkit-box-orient: vertical; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .title .options {
                  margin-top: 5px;
                  display: block; }
                  #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .title .options small {
                    text-align: left;
                    font: normal normal 600 12px/24px "Poppins", sans-serif;
                    letter-spacing: 0px;
                    color: #535353;
                    opacity: 1; }
                    #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .title .options small b {
                      text-transform: capitalize; }
                    html[dir="rtl"] #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .title .options small {
                      font-family: "Cairo", sans-serif;
                      text-align: right;
                      letter-spacing: 0px;
                      letter-spacing: 0; }
              #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .remove-item-cart {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 2px;
                outline: none;
                background-color: transparent;
                border: none;
                text-align: left;
                font: normal normal 700 9px/19px "Poppins", sans-serif;
                letter-spacing: 0px;
                color: #000000;
                opacity: 1;
                height: 19px; }
                html[dir="rtl"] #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .remove-item-cart {
                  font-family: "Cairo", sans-serif;
                  text-align: right;
                  letter-spacing: 0px;
                  letter-spacing: 0; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .remove-item-cart svg {
                  width: 10px;
                  height: auto;
                  display: block; }
              #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .add-to-cart {
                cursor: pointer;
                border-radius: 100px;
                font-size: 16px;
                font-weight: 700;
                transition: color .15s ease-out, background-color .15s ease-out, border-color .15s ease-out, transform .1s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 30px;
                height: 30px;
                width: 30px;
                height: 30px;
                min-width: 30px;
                min-height: 30px; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .add-to-cart:not(.disabled) {
                  background: #8fd2ee; }
                  #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .add-to-cart:not(.disabled):hover svg {
                    transform: scale(1.1);
                    transition: all ease-in-out 0.5s; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .add-to-cart.disabled {
                  background: #818181;
                  cursor: not-allowed; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .description .add-to-cart svg {
                  width: 55%;
                  height: auto;
                  display: block;
                  transition: all ease-in-out 0.5s; }
            #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .price {
              display: flex;
              align-items: center;
              justify-content: start;
              gap: 10px; }
              #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .price span {
                text-align: left;
                font: normal normal 600 12px/1.2 "Poppins", sans-serif;
                letter-spacing: -0.65px;
                color: #333333;
                opacity: 1; }
                html[dir="rtl"] #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .price span {
                  font-family: "Cairo", sans-serif;
                  text-align: right;
                  letter-spacing: 0px;
                  letter-spacing: 0; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .price span small {
                  color: inherit;
                  overflow: hidden;
                  -webkit-box-orient: vertical;
                  font-family: inherit;
                  line-height: inherit;
                  font-size: 13px; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .price span.price-old {
                  color: #E02B2B;
                  text-decoration: line-through; }
            #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row {
              display: flex;
              align-items: center;
              justify-content: start;
              gap: 15px; }
              #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .product-total-price span {
                width: auto;
                width: max-content;
                opacity: 1;
                display: block;
                text-align: left;
                font: normal normal 700 14px/33px "Poppins", sans-serif;
                letter-spacing: 0px;
                color: #000000; }
                html[dir="rtl"] #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .product-total-price span {
                  font-family: "Cairo", sans-serif;
                  text-align: right;
                  letter-spacing: 0px;
                  letter-spacing: 0; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .product-total-price span small {
                  font: normal normal 700 8px/33px "Poppins", sans-serif; }
                  html[dir="rtl"] #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .product-total-price span small {
                    font-family: "Cairo", sans-serif;
                    letter-spacing: 0; }
              #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .count-input .wrapper {
                border-radius: 16px;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: start;
                gap: 5px;
                position: relative;
                padding: 3px 5px;
                transition: all ease-in-out 0.5s; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .count-input .wrapper input {
                  width: 36px;
                  height: 26px;
                  position: relative;
                  font-family: "Poppins", sans-serif;
                  font-weight: 400;
                  color: #121212 !important;
                  text-align: center;
                  -webkit-appearance: none;
                  border: 0px;
                  background-color: transparent; }
                #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .count-input .wrapper a {
                  width: 28px;
                  height: 28px;
                  position: relative;
                  color: #121212 !important;
                  line-height: 28px;
                  font-size: 21px;
                  align-items: center;
                  border-radius: 50%;
                  text-align: center;
                  cursor: pointer;
                  transition: all ease-in-out 0.5s;
                  border: 1px solid #e5e5e5;
                  background: #EDEDEE; }
                  #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .count-input .wrapper a svg {
                    width: 15px; }
                  #search-block-wrapper #seacrh-body .products-wrapper .single-product .top-row .product-info .action-row .count-input .wrapper a:hover {
                    color: #35aca5;
                    transition: all ease-in-out 0.5s; }
    #search-block-wrapper #seacrh-body .empty-search {
      max-width: 210px;
      margin: auto; }
      #search-block-wrapper #seacrh-body .empty-search .icon-wrapper {
        margin: 25px auto 10px; }
        #search-block-wrapper #seacrh-body .empty-search .icon-wrapper svg {
          display: block;
          width: 40px;
          height: auto;
          margin: auto; }
      #search-block-wrapper #seacrh-body .empty-search .title {
        text-align: center;
        font: normal normal 700 13px/22px "Poppins", sans-serif;
        letter-spacing: 0.26px;
        color: #333333;
        opacity: 1; }
        html[dir="rtl"] #search-block-wrapper #seacrh-body .empty-search .title {
          font-family: "Cairo", sans-serif;
          letter-spacing: 0;
          text-align: center;
          letter-spacing: 0; }
      #search-block-wrapper #seacrh-body .empty-search .text {
        text-align: center;
        font: normal normal 400 13px/18px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #333333;
        opacity: 1; }
        html[dir="rtl"] #search-block-wrapper #seacrh-body .empty-search .text {
          font-family: "Cairo", sans-serif;
          letter-spacing: 0;
          text-align: center;
          letter-spacing: 0; }

.address-date {
  width: 420px;
  max-width: 100%;
  background: #F7F6F6;
  transition: all ease-in-out 0.5s 0.1s;
  position: relative;
  z-index: 2;
  padding: 0px 15px;
  border-radius: 8px; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .address-date {
      width: 300px; } }
  @media only screen and (max-width: 1199.98px) {
    .address-date {
      display: none; } }
  .address-date-wrapper {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .address-date-wrapper p {
      width: 100%;
      text-align: left;
      color: #121212;
      font: normal normal 400 13px/24px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #2959D3;
      opacity: 1;
      overflow: hidden;
      -o-text-overflow: ellipsis;
      text-overflow: ellipsis;
      -webkit-line-clamp: 1;
      display: -webkit-box;
      -webkit-box-orient: vertical; }
      .address-date-wrapper p.placeholder {
        color: #333333; }
      .address-date-wrapper p:-moz-placeholder {
        color: #333333; }
      .address-date-wrapper p::-moz-placeholder {
        color: #333333; }
      .address-date-wrapper p:-ms-input-placeholder {
        color: #333333; }
      .address-date-wrapper p::-webkit-input-placeholder {
        color: #333333; }
      html[dir="rtl"] .address-date-wrapper p {
        text-align: right;
        font-family: "Cairo", sans-serif;
        letter-spacing: 0; }

.popup-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; }
  .popup-wrapper .loading {
    z-index: 1402;
    display: none;
    position: absolute;
    display: flex;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999; }
    .popup-wrapper .loading .fa-spinner {
      align-self: center;
      color: #fff;
      font-size: 30px; }
  .popup-wrapper .popup-close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    font-size: 18px;
    background: #fff;
    z-index: 100;
    border-radius: 50%;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #121212; }
    .popup-wrapper .popup-close i {
      font-size: 14px; }
    @media only screen and (min-width: 992px) {
      .popup-wrapper .popup-close:hover {
        color: #fff;
        background: #121212; } }
  .popup-wrapper .popup-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .popup-wrapper .popup-body img {
      vertical-align: bottom; }
    .popup-wrapper .popup-body .product-thumb .btn-quickview {
      display: none !important; }
    .popup-wrapper .popup-body .grid-row::before {
      width: 100% !important; }

.popup-open .popup-wrapper {
  pointer-events: auto; }
  .popup-open .popup-wrapper .loading {
    display: block; }

.popup-open .popup-bg {
  opacity: 1; }

.popup-open .popup-container {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1); }

.popup-open.popup-iframe-loaded .popup-wrapper .loading {
  display: none; }

.popup-open.popup-iframe-loaded .popup-iframe .popup-container {
  opacity: 1;
  animation: animation 800ms 1; }

.popup-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .4s ease-out;
  z-index: 1401; }

.popup-container {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.75);
  transition: transform 350ms ease-out, opacity 150ms linear;
  will-change: transform;
  position: relative;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1403;
  width: 1100px; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .popup-container {
      width: 900px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .popup-container {
      width: 700px; } }
  @media only screen and (max-width: 767.98px) {
    .popup-container {
      width: 500px;
      max-width: calc(100% - 4rem); } }

.popup-iframe iframe {
  min-height: 100%; }

.popup-iframe .popup-container {
  opacity: 0; }

@keyframes animation {
  0% {
    transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  6.31% {
    transform: matrix3d(0.815, 0, 0, 0, 0, 0.815, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  12.51% {
    transform: matrix3d(0.886, 0, 0, 0, 0, 0.886, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  18.82% {
    transform: matrix3d(0.931, 0, 0, 0, 0, 0.931, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  25.03% {
    transform: matrix3d(0.959, 0, 0, 0, 0, 0.959, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  37.54% {
    transform: matrix3d(0.986, 0, 0, 0, 0, 0.986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  50.05% {
    transform: matrix3d(0.995, 0, 0, 0, 0, 0.995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  75.08% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); } }

.popup-header {
  position: relative;
  z-index: 2;
  border-top-right-radius: inherit;
  border-top-left-radius: inherit; }

.popup-inner-body {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-radius: inherit;
  height: 100%; }
  .popup-inner-body::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit; }
  .popup-inner-body > * {
    z-index: 1; }
  .popup-inner-body > .grid-rows {
    overflow-y: auto; }
  .popup-inner-body .popup-content,
  .popup-inner-body iframe,
  .popup-inner-body > .grid-rows {
    border-radius: inherit; }

.popup-content {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden; }
  .popup-content > p:last-of-type {
    margin: 0; }
  .popup-content img {
    height: auto; }
  .popup-content > .grid-rows {
    height: 100%; }
    .popup-content > .grid-rows > .grid-row {
      height: inherit; }
      .popup-content > .grid-rows > .grid-row > .grid-cols-wrapper {
        height: inherit; }

.popup-footer {
  text-align: center;
  position: relative;
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .popup-footer .btn + .btn {
    margin-inline-start: 10px; }
  .popup-footer:empty {
    display: none; }

.popup-dont-show {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 0; }
  .popup-dont-show input {
    float: left;
    margin: 0; }
  .popup-dont-show span {
    margin: 0 5px; }

.module-popup .popup-body > .popup-inner-body > .popup-content {
  overflow-y: auto; }

.popup {
  height: 100vh; }
  .popup::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    border-radius: inherit; }
  .popup body {
    max-width: 100vw;
    overflow-y: auto;
    overflow-x: hidden;
    background: none !important;
    margin: 0 !important;
    box-shadow: none; }
  .popup #content,
  .popup .site-wrapper > .container,
  .popup .site-wrapper > .container > .row {
    padding: 0 !important;
    background: none !important;
    margin: 0 !important;
    box-shadow: none; }
  .popup .module-blocks .module-body {
    height: unset; }
    .popup .module-blocks .module-body .block-content > iframe:only-child {
      float: left;
      border-radius: inherit; }
  .popup .global-wrapper {
    min-height: 100%;
    overflow-x: initial; }
  .popup .wrapper,
  .popup .boxed-layout .site-wrapper,
  .popup .site-wrapper,
  .popup .grid-cols-wrapper {
    max-width: 100%; }

/*==================================
=  mas-header       =
==================================*/
#home-slider {
  padding: 0;
  margin: 15px 0 0 0; }
  #home-slider .home-slider-wrapper {
    overflow: hidden;
    margin: auto;
    width: 1600px;
    padding-right: 14rem;
    padding-left: 14rem;
    max-width: 100%; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #home-slider .home-slider-wrapper {
        padding-right: 8rem;
        padding-left: 8rem; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #home-slider .home-slider-wrapper {
        padding-right: 6rem;
        padding-left: 6rem; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #home-slider .home-slider-wrapper {
        padding-right: 3rem;
        padding-left: 3rem; } }
    @media only screen and (max-width: 767.98px) {
      #home-slider .home-slider-wrapper {
        padding-right: 1.5rem;
        padding-left: 1.5rem; } }
    #home-slider .home-slider-wrapper .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px; }
      @media only screen and (min-width: 1200px) {
        #home-slider .home-slider-wrapper .grid {
          grid-template-columns: 2fr 1fr;
          gap: 10px; } }
      #home-slider .home-slider-wrapper .grid .grid-col {
        overflow: hidden;
        display: block; }
        #home-slider .home-slider-wrapper .grid .grid-col img {
          width: 100%;
          display: block;
          margin: 0;
          border-radius: 4px;
          overflow: hidden;
          aspect-ratio: 32/15;
          height: auto; }
        #home-slider .home-slider-wrapper .grid .grid-col:nth-of-type(1) {
          position: relative; }
          @media only screen and (min-width: 1200px) {
            #home-slider .home-slider-wrapper .grid .grid-col:nth-of-type(1) {
              grid-row: span 2; } }
          @media only screen and (max-width: 1199.98px) {
            #home-slider .home-slider-wrapper .grid .grid-col:nth-of-type(1) {
              grid-column: span 2; } }
    #home-slider .home-slider-wrapper .grid-col {
      overflow: hidden;
      border: 1px solid #e2e2e2;
      border-radius: 4px; }
    #home-slider .home-slider-wrapper .section-slider {
      aspect-ratio: 32 / 15;
      overflow: hidden;
      height: 100%; }
      #home-slider .home-slider-wrapper .section-slider .flickitySlider .carousel-cell {
        width: 100%; }
        #home-slider .home-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-cell-content .imageSide {
          width: 100%; }
          #home-slider .home-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-cell-content .imageSide picture {
            width: 100%;
            display: block;
            margin: 0; }
      #home-slider .home-slider-wrapper .section-slider .flickity-page-dots {
        width: max-content;
        display: flex;
        gap: 15px;
        position: absolute;
        bottom: 25px;
        margin: 15px auto 0;
        left: 50%;
        transform: translateX(-50%); }
        #home-slider .home-slider-wrapper .section-slider .flickity-page-dots .dot {
          margin: 0; }
      #home-slider .home-slider-wrapper .section-slider .flickity-button {
        border: 1px solid #2959D3;
        box-shadow: 0 0 0 1px rgba(41, 89, 211, 0.1);
        background: #2959D3 !important; }
        @media only screen and (max-width: 1199.98px) {
          #home-slider .home-slider-wrapper .section-slider .flickity-button {
            display: none !important; } }
        @media only screen and (max-width: 767.98px) {
          #home-slider .home-slider-wrapper .section-slider .flickity-button {
            transform: translate(0, -50%) !important; } }
        @media only screen and (min-width: 992px) {
          #home-slider .home-slider-wrapper .section-slider .flickity-button:hover {
            box-shadow: 0 0 0 1px #8fd2ee !important;
            border-color: #8fd2ee !important;
            background: #8fd2ee !important;
            transition: all ease-in-out 0.5s;
            cursor: pointer; }
            #home-slider .home-slider-wrapper .section-slider .flickity-button:hover svg {
              fill: #fff;
              transition: all ease-in-out 0.5s; } }
        #home-slider .home-slider-wrapper .section-slider .flickity-button.flickity-prev-next-button.next {
          right: 5rem; }
          @media only screen and (max-width: 767.98px) {
            #home-slider .home-slider-wrapper .section-slider .flickity-button.flickity-prev-next-button.next {
              right: 1.5rem; } }
        #home-slider .home-slider-wrapper .section-slider .flickity-button.flickity-prev-next-button.previous {
          left: 5rem; }
          @media only screen and (max-width: 767.98px) {
            #home-slider .home-slider-wrapper .section-slider .flickity-button.flickity-prev-next-button.previous {
              left: 1.5rem; } }

/*=====  End of mas-header ======*/
/*=====  End of Products Slider  ======*/
/*=====  End of  Slider Info Row  ======*/
/*==================================
=           More Arrow         =
==================================*/
.more-arrow {
  background-color: #2959D3;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  transition: all ease-in-out 0.5s; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .more-arrow {
      width: 25px;
      height: 25px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .more-arrow {
      width: 23px;
      height: 23px; } }
  @media only screen and (max-width: 767px) {
    .more-arrow {
      width: 21px;
      height: 21px; } }
  .more-arrow svg {
    width: 27px;
    height: 27px; }
    html[dir="rtl"] .more-arrow svg {
      transform: rotateY(-180deg);
      letter-spacing: 0; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .more-arrow svg {
        width: 25px;
        height: 25px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      .more-arrow svg {
        width: 23px;
        height: 23px; } }
    @media only screen and (max-width: 767px) {
      .more-arrow svg {
        width: 21px;
        height: 21px; } }

/*==================================
=            Cta Widget           =
==================================*/
.cta-widget {
  position: fixed;
  z-index: 101;
  background: #8fd2ee;
  color: #fff;
  -moz-transition: all 0.75s;
  -o-transition: all 0.75s;
  -webkit-transition: all 0.75s;
  transition: all 0.75s;
  box-sizing: border-box;
  border: 0 none;
  border-bottom: 0 !important;
  right: 0;
  top: 48%;
  bottom: auto;
  margin: -150px 0 0 0;
  margin-right: -230px;
  width: 230px; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .cta-widget {
      display: none !important; } }
  @media only screen and (max-width: 767px) {
    .cta-widget {
      display: none !important; } }
  html[dir="rtl"] .cta-widget {
    left: 0;
    right: unset;
    margin: -150px 0 0 0;
    margin-left: -230px;
    margin-right: 0px;
    letter-spacing: 0; }
  .cta-widget.is-enabled {
    display: block;
    visibility: visible; }
  .cta-widget.is-on {
    height: auto;
    margin-right: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22); }
    html[dir="rtl"] .cta-widget.is-on {
      margin-left: 0px;
      letter-spacing: 0; }
    .cta-widget.is-on .cta-widget_handle {
      box-shadow: none;
      bottom: calc(100% + 0px);
      right: calc(100% + 0px); }
      html[dir="rtl"] .cta-widget.is-on .cta-widget_handle {
        left: calc(100% + 0px);
        right: unset;
        top: calc(100% + 0px);
        bottom: unset;
        letter-spacing: 0; }
      .cta-widget.is-on .cta-widget_handle i.fa {
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        transform: rotate(-180deg);
        padding: 0 0 0 0.5em; }
  .cta-widget a {
    outline: none; }
    .cta-widget a:hover, .cta-widget a:focus {
      color: #fff; }
  .cta-widget .cta-widget_handle {
    position: absolute;
    white-space: nowrap;
    padding: 20px 30px;
    background: #8fd2ee;
    text-decoration: none !important;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26), 0 2px 10px 0 rgba(0, 0, 0, 0.22);
    outline: none !important;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    width: 100%;
    min-width: 297px;
    font: normal normal 400 18px/19px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #fff;
    transition: all ease-in-out 0.5s;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: bottom right;
    -moz-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    bottom: calc(100% + 0px);
    right: calc(100% + 0px); }
    .cta-widget .cta-widget_handle span {
      display: block; }
    .cta-widget .cta-widget_handle i {
      display: none; }
    @media only screen and (max-width: 767px) {
      .cta-widget .cta-widget_handle {
        padding: 15px;
        font-size: 15px;
        width: 55px;
        min-width: 55px;
        text-align: center; }
        .cta-widget .cta-widget_handle span {
          display: none; }
        .cta-widget .cta-widget_handle i {
          display: block;
          text-align: center;
          margin: auto;
          padding: 0px !important; } }
    html[dir="rtl"] .cta-widget .cta-widget_handle {
      left: calc(100% + 0px);
      right: unset;
      border-radius: 0 0 15px 15px;
      top: calc(100% + 0px);
      bottom: unset;
      -webkit-transform-origin: top left;
      -moz-transform-origin: top left;
      -ms-transform-origin: top left;
      letter-spacing: 0; }
    .cta-widget .cta-widget_handle:hover {
      background-color: #8fd2ee !important;
      transition: all ease-in-out 0.5s; }
    .cta-widget .cta-widget_handle:after {
      vertical-align: middle;
      padding: 0; }
    .cta-widget .cta-widget_handle i.fa {
      padding: 0 0.5em 0 0; }

/** body **/
.cta-widget_body {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.48);
  height: 297px;
  display: flex;
  flex-direction: column;
  justify-content: space-around; }
  html[dir="rtl"] .cta-widget_body {
    border-left: 0 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.48);
    letter-spacing: 0; }
  @media all and (max-width: 47.99em) {
    .cta-widget_body {
      border-radius: 0; } }
  .cta-widget_body .link {
    padding-left: 65px;
    margin-top: 25px;
    padding-right: 20px;
    position: relative; }
    html[dir="rtl"] .cta-widget_body .link {
      padding-right: 65px;
      padding-left: 20px;
      letter-spacing: 0; }
    .cta-widget_body .link:last-of-type {
      margin-bottom: 25px; }
    .cta-widget_body .link:hover svg path {
      fill: #2959D3;
      transition: all ease-in-out 0.5s; }
    .cta-widget_body .link:hover a,
    .cta-widget_body .link:hover span {
      color: #2959D3;
      transition: all ease-in-out 0.5s; }
    .cta-widget_body .link svg {
      position: absolute;
      left: 30px;
      top: 0px;
      width: 15px;
      height: auto; }
      html[dir="rtl"] .cta-widget_body .link svg {
        right: 30px;
        left: unset;
        letter-spacing: 0; }
      .cta-widget_body .link svg path {
        fill: #fff;
        transition: all ease-in-out 0.5s; }
    .cta-widget_body .link span {
      display: inline-block;
      margin-bottom: 7px;
      transition: all ease-in-out 0.5s;
      font: normal normal 500 10px/18px "Poppins", sans-serif;
      letter-spacing: 0.3px;
      color: #ffffff; }
      html[dir="rtl"] .cta-widget_body .link span {
        letter-spacing: 0px;
        letter-spacing: 0; }
    .cta-widget_body .link a {
      font: normal normal 400 10px/18px "Poppins", sans-serif;
      letter-spacing: 0.3px;
      color: #ffffff;
      transition: all ease-in-out 0.5s;
      display: block; }
      .cta-widget_body .link a[href^="https://api.wha"] {
        text-decoration: none !important; }
      .cta-widget_body .link a[href^="http"] {
        text-decoration: underline; }
      html[dir="rtl"] .cta-widget_body .link a {
        letter-spacing: 0; }
        html[dir="rtl"] .cta-widget_body .link a[href^="https://api.whatsapp"], html[dir="rtl"] .cta-widget_body .link a[href^="tel:"] {
          direction: ltr !important; }

.cta-widget_body ul + ul {
  border-top: 4px solid #2959D3; }

/** close **/
.cta-widget .cta-widget_close {
  position: absolute;
  top: 0rem;
  right: 0.25rem;
  color: #fff;
  outline: none;
  z-index: 100; }

/*=====  End of CTA WIDGET ======*/
#detailed-inner {
  margin: 20px auto 45px;
  display: flex;
  flex-direction: column;
  gap: 30px; }
  @media only screen and (max-width: 991.98px) {
    #detailed-inner {
      margin: 0 auto 45px; } }
  @media only screen and (max-width: 767.98px) {
    #detailed-inner {
      margin: 0 auto 45px; } }
  #detailed-inner #product-top-area {
    margin: auto;
    width: 1600px;
    padding-right: 14rem;
    padding-left: 14rem;
    max-width: 100%; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #detailed-inner #product-top-area {
        padding-right: 8rem;
        padding-left: 8rem; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #detailed-inner #product-top-area {
        padding-right: 6rem;
        padding-left: 6rem; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #detailed-inner #product-top-area {
        padding-right: 3rem;
        padding-left: 3rem; } }
    @media only screen and (max-width: 767.98px) {
      #detailed-inner #product-top-area {
        padding-right: 1.5rem;
        padding-left: 1.5rem; } }
    @media only screen and (min-width: 1200px) {
      #detailed-inner #product-top-area {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        /* 3 equal columns */
        gap: 30px;
        /* optional spacing */ } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #detailed-inner #product-top-area {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 equal columns */
        gap: 20px;
        /* optional spacing */ } }
    #detailed-inner #product-top-area .product-image {
      position: relative; }
      @media only screen and (min-width: 1200px) {
        #detailed-inner #product-top-area .product-image {
          grid-column: span 2; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #detailed-inner #product-top-area .product-image {
          grid-column: span 1; } }
      #detailed-inner #product-top-area .product-image .modelSize {
        position: absolute;
        z-index: 5;
        top: 450px;
        right: 20px; }
        @media only screen and (max-width: 767.98px) {
          #detailed-inner #product-top-area .product-image .modelSize {
            top: unset;
            bottom: 60px; } }
        #detailed-inner #product-top-area .product-image .modelSize span {
          padding: 8px 22px;
          background-color: rgba(255, 255, 255, 0.8);
          border-radius: 50px; }
        #detailed-inner #product-top-area .product-image .modelSize .select-wrapper {
          position: relative;
          /*style the items (options), including the selected item:*/
          /*style items (options):*/
          /*hide the items when the select box is closed:*/ }
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper select {
            display: none;
            /*hide original SELECT element:*/ }
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected {
            background-color: rgba(255, 255, 255, 0.8);
            position: relative;
            transition: all ease-in-out 0.5s;
            border-radius: 50px;
            width: 100%;
            /*point the arrow upwards when the select box is open (active):*/ }
            #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected:after {
              display: block !important;
              font-family: "Font Awesome 5 Pro";
              content: "\f078";
              font-size: 12px;
              font-weight: 500;
              color: #2959D3; }
            #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected.select-arrow-active:after {
              content: "\f077"; }
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div,
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected {
            text-align: left;
            font: normal normal 500 14px/2 "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #333333;
            opacity: 1;
            cursor: pointer;
            padding: 0; }
            html[dir="rtl"] #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div, html[dir="rtl"]
            #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected {
              letter-spacing: 0;
              font-family: "Cairo", sans-serif !important;
              text-align: right;
              letter-spacing: 0; }
            @media only screen and (max-width: 991.98px) {
              #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div,
              #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected {
                font-size: 13px;
                line-height: 1.5; } }
            #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div a,
            #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected a {
              font-family: inherit;
              line-height: inherit;
              font-size: inherit;
              font-weight: inherit;
              color: #2959D3;
              display: inline-block;
              position: relative;
              transition: all ease-in-out 0.5s; }
              #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div a:after,
              #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected a:after {
                border-top: 1px solid #8fd2ee;
                content: "";
                display: block;
                height: 0;
                transition: width .3s ease-out;
                width: 0; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div a:hover:after,
                #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected a:hover:after {
                  width: 100%; } }
              html[dir="rtl"] #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div a, html[dir="rtl"]
              #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected a {
                direction: ltr;
                letter-spacing: 0; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div a:hover,
                #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected a:hover {
                  color: #8fd2ee; } }
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-selected {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
            padding: 3px 22px; }
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.8);
            top: 100%;
            right: 0;
            left: 0;
            z-index: 99;
            max-height: 50vh;
            overflow: auto;
            width: 100%; }
            @media only screen and (max-width: 767.98px) {
              #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items {
                top: unset;
                bottom: 100%; } }
            #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div {
              padding: 7px 15px; }
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-hide {
            display: none; }
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .select-items div:hover,
          #detailed-inner #product-top-area .product-image .modelSize .select-wrapper .same-as-selected {
            background-color: #8fd2ee;
            color: #fff !important; }
      #detailed-inner #product-top-area .product-image .badge-wrapper {
        position: absolute;
        z-index: 5;
        top: 0;
        left: 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px; }
        html[dir="rtl"] #detailed-inner #product-top-area .product-image .badge-wrapper {
          right: 0;
          left: unset;
          letter-spacing: 0; }
        #detailed-inner #product-top-area .product-image .badge-wrapper .badge {
          display: -webkit-box;
          display: -ms-flexbox;
          background: #2959D3;
          padding: 5px 8px; }
          #detailed-inner #product-top-area .product-image .badge-wrapper .badge.out_badge {
            color: #fff;
            background-color: #818181; }
          #detailed-inner #product-top-area .product-image .badge-wrapper .badge i {
            text-align: center;
            font: normal normal 600 11px/1 "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #fff;
            opacity: 1;
            min-width: 30px;
            display: block; }
            html[dir="rtl"] #detailed-inner #product-top-area .product-image .badge-wrapper .badge i {
              text-align: center;
              font-family: "Cairo", sans-serif;
              letter-spacing: 0;
              letter-spacing: 0; }
            @media only screen and (max-width: 991.98px) {
              #detailed-inner #product-top-area .product-image .badge-wrapper .badge i {
                font-size: 11px; } }
      #detailed-inner #product-top-area .product-image .time_special {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 2;
        width: max-content;
        max-width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        transition: all ease-in-out 0.5s;
        display: none; }
        html[dir="rtl"] #detailed-inner #product-top-area .product-image .time_special {
          right: 0;
          left: unset;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #detailed-inner #product-top-area .product-image .time_special {
            gap: 3px; } }
        #detailed-inner #product-top-area .product-image .time_special .box-time-date {
          background: #2959D3;
          color: #fff;
          border: none;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-direction: column;
          gap: 5px;
          margin: 0;
          font-size: 10px;
          min-width: 40px;
          min-height: 40px; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-image .time_special .box-time-date {
              min-width: 30px;
              min-height: 32px;
              font-size: 7px;
              gap: 3px; } }
          #detailed-inner #product-top-area .product-image .time_special .box-time-date span {
            color: #fff;
            margin: 0;
            letter-spacing: 0 !important;
            font-size: 13px; }
            @media only screen and (max-width: 991.98px) {
              #detailed-inner #product-top-area .product-image .time_special .box-time-date span {
                font-size: 10px; } }
      #detailed-inner #product-top-area .product-image-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        overflow: hidden;
        flex-direction: row-reverse; }
        @media only screen and (max-width: 767.98px) {
          #detailed-inner #product-top-area .product-image-wrapper {
            flex-direction: column; } }
        #detailed-inner #product-top-area .product-image-wrapper .lhs {
          width: calc(100% - 80px);
          overflow: hidden; }
          @media only screen and (max-width: 767.98px) {
            #detailed-inner #product-top-area .product-image-wrapper .lhs {
              width: 100%; } }
        #detailed-inner #product-top-area .product-image-wrapper .rhs {
          width: 60px;
          overflow: hidden; }
          @media only screen and (max-width: 767.98px) {
            #detailed-inner #product-top-area .product-image-wrapper .rhs {
              width: 100%; } }
        #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav {
          margin: 0;
          width: calc(60px * 6); }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav {
              width: calc(60px * 3); } }
          @media only screen and (min-width: 768px) {
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav {
              transform: rotate(90deg) translate(70px, -100%);
              transform-origin: left top; } }
          @media only screen and (max-width: 767.98px) {
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav {
              width: calc(100% - 100px);
              margin: auto; } }
          #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-prev-next-button {
            width: 35px !important;
            height: 35px !important;
            display: block !important; }
            @media only screen and (min-width: 768px) {
              #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-prev-next-button {
                transform: translateY(-50%); } }
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-prev-next-button.previous {
              left: -50px !important; }
              @media only screen and (max-width: 767.98px) {
                #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-prev-next-button.previous {
                  left: -25px !important; } }
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-prev-next-button.next {
              right: -50px !important; }
              @media only screen and (max-width: 767.98px) {
                #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-prev-next-button.next {
                  right: -25px !important; } }
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-prev-next-button:disabled {
              opacity: 0.5 !important; }
          #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-slider {
            width: 100%; }
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-slider .carousel-cell {
              width: 60px;
              height: 60px;
              cursor: pointer; }
              @media only screen and (min-width: 768px) {
                #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-slider .carousel-cell {
                  transform: rotate(-90deg); } }
              #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-slider .carousel-cell.is-selected .single-image img {
                border-color: #2959D3; }
              #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-slider .carousel-cell .single-image {
                width: 100%;
                height: 100%;
                background: #fff;
                padding: 0 5px; }
                @media only screen and (min-width: 768px) {
                  #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-slider .carousel-cell .single-image {
                    transform: rotate(-90deg);
                    padding: 5px 0; } }
                #detailed-inner #product-top-area .product-image-wrapper .productCarousel-nav .flickity-slider .carousel-cell .single-image img {
                  display: block;
                  margin: 0;
                  width: 100%;
                  border-radius: 5px;
                  height: 100%;
                  object-fit: contain;
                  border: 1px solid #e2e2e2; }
        #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main {
          border: 1px solid #e2e2e2;
          width: 100%; }
          #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main .flickity-prev-next-button {
            transform: translateY(-50%);
            width: 35px !important;
            height: 35px !important;
            display: block !important; }
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main .flickity-prev-next-button.previous {
              left: 10px !important; }
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main .flickity-prev-next-button.next {
              right: 10px !important; }
          #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main .flickity-slider {
            width: 100%; }
            #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main .flickity-slider .carousel-cell {
              width: 100%; }
              #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main .flickity-slider .carousel-cell .single-image {
                aspect-ratio: 6/7;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%; }
                @media only screen and (max-width: 991.98px) {
                  #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main .flickity-slider .carousel-cell .single-image {
                    aspect-ratio: 6/9; } }
                #detailed-inner #product-top-area .product-image-wrapper .productCarousel-main .flickity-slider .carousel-cell .single-image img {
                  display: block;
                  object-fit: contain;
                  margin: 0;
                  width: 100%;
                  height: 100%;
                  max-width: 90%;
                  max-width: 90%; }
        @media only screen and (min-width: 992px) {
          #detailed-inner #product-top-area .product-image-wrapper .productImagesSlider {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* 2 equal columns */
            gap: 10px;
            /* optional spacing between columns */ } }
        #detailed-inner #product-top-area .product-image-wrapper .productImagesSlider .carousel-cell {
          width: 100%; }
          @media only screen and (min-width: 992px) {
            #detailed-inner #product-top-area .product-image-wrapper .productImagesSlider .carousel-cell {
              display: none; } }
          #detailed-inner #product-top-area .product-image-wrapper .productImagesSlider .carousel-cell .single-image {
            position: relative;
            overflow: hidden;
            display: block; }
            #detailed-inner #product-top-area .product-image-wrapper .productImagesSlider .carousel-cell .single-image img {
              width: 100%;
              padding: 0px;
              margin: 0px;
              display: block;
              aspect-ratio: 1/1;
              height: auto;
              transition: all ease-in-out 0.5s; }
        #detailed-inner #product-top-area .product-image-wrapper .flickitySlider-bar {
          width: calc(100% - (1.5rem * 2));
          margin: 20px auto 0; }
          @media only screen and (min-width: 992px) {
            #detailed-inner #product-top-area .product-image-wrapper .flickitySlider-bar {
              display: none; } }
        #detailed-inner #product-top-area .product-image-wrapper #homeCardsSlider-loadMore {
          margin: auto;
          display: block;
          width: 74px;
          height: 74px;
          transform: translateY(-50%);
          transition: all ease-in-out .5s;
          cursor: pointer; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-image-wrapper #homeCardsSlider-loadMore {
              display: none; } }
          @media only screen and (min-width: 992px) {
            #detailed-inner #product-top-area .product-image-wrapper #homeCardsSlider-loadMore:hover {
              transform: translateY(-40%);
              transition: all ease-in-out .5s; } }
          #detailed-inner #product-top-area .product-image-wrapper #homeCardsSlider-loadMore .loadMore-wrappper {
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 50%;
            box-shadow: 0px 3px 6px #00000029;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px; }
            #detailed-inner #product-top-area .product-image-wrapper #homeCardsSlider-loadMore .loadMore-wrappper .text {
              font: normal normal 600 14px/14px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #333333;
              opacity: 1; }
            #detailed-inner #product-top-area .product-image-wrapper #homeCardsSlider-loadMore .loadMore-wrappper .icon svg {
              width: 12px;
              display: block;
              height: auto; }
    #detailed-inner #product-top-area .product-rhs {
      overflow: hidden; }
      @media only screen and (max-width: 767.98px) {
        #detailed-inner #product-top-area .product-rhs {
          margin: 30px auto 0; } }
      @media only screen and (min-width: 1200px) {
        #detailed-inner #product-top-area .product-rhs {
          grid-column: span 2; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #detailed-inner #product-top-area .product-rhs {
          grid-column: span 1; } }
      #detailed-inner #product-top-area .product-rhs .product-message {
        min-height: 28px; }
        #detailed-inner #product-top-area .product-rhs .product-message .stock-alert {
          text-align: left;
          font: normal normal 600 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          opacity: 1;
          font-weight: 600; }
          html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .product-message .stock-alert {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-rhs .product-message .stock-alert {
              font-size: 13px;
              line-height: 1.5; } }
          #detailed-inner #product-top-area .product-rhs .product-message .stock-alert a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #detailed-inner #product-top-area .product-rhs .product-message .stock-alert a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .product-message .stock-alert a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .product-message .stock-alert a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .product-message .stock-alert a:hover {
                color: #8fd2ee; } }
      #detailed-inner #product-top-area .product-rhs .data-group {
        margin: 30px auto; }
        @media only screen and (max-width: 991.98px) {
          #detailed-inner #product-top-area .product-rhs .data-group {
            margin: 20px auto; } }
        #detailed-inner #product-top-area .product-rhs .data-group .product-categories {
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
          margin: 0 0 5px 0;
          min-height: 18px; }
          #detailed-inner #product-top-area .product-rhs .data-group .product-categories li a {
            text-align: left;
            font: normal normal 400 14px/18px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #727272;
            opacity: 1;
            transition: all ease-in-out 0.5s; }
            html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .data-group .product-categories li a {
              text-align: right;
              font-family: "Cairo", sans-serif;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .data-group .product-categories li a:hover {
                color: #2959D3;
                transition: all ease-in-out 0.5s; } }
        #detailed-inner #product-top-area .product-rhs .data-group .product-name {
          text-align: left;
          font: normal normal 600 32px/1.3 "Poppins", sans-serif;
          letter-spacing: 0;
          color: #333333;
          margin: 0px 0 15px; }
          html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .data-group .product-name {
            font-family: "Cairo", sans-serif !important;
            letter-spacing: 0;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #detailed-inner #product-top-area .product-rhs .data-group .product-name {
              font-size: 29px;
              letter-spacing: 0px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #detailed-inner #product-top-area .product-rhs .data-group .product-name {
              font-size: 26px;
              letter-spacing: 0px; } }
          @media only screen and (min-width: 768px) and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-rhs .data-group .product-name {
              font-size: 24px;
              letter-spacing: 0px; } }
          @media only screen and (max-width: 767.98px) {
            #detailed-inner #product-top-area .product-rhs .data-group .product-name {
              font-size: 21px;
              letter-spacing: 0px; } }
        #detailed-inner #product-top-area .product-rhs .data-group .model {
          text-align: left;
          font: normal normal 400 14px/1 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #121212;
          transition: all ease-in-out 0.5s; }
          html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .data-group .model {
            text-align: right;
            font-family: "Cairo", sans-serif;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-rhs .data-group .model {
              font-size: 14px; } }
      #detailed-inner #product-top-area .product-rhs .product-rate {
        margin: 25px 0 48px; }
        @media only screen and (max-width: 767.98px) {
          #detailed-inner #product-top-area .product-rhs .product-rate {
            margin: 25px 0; } }
        @media only screen and (max-width: 767.98px) {
          #detailed-inner #product-top-area .product-rhs .product-rate .rate-stars {
            justify-content: center !important; } }
      #detailed-inner #product-top-area .product-rhs .product-options h6 {
        text-align: left;
        font: normal normal 700 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #333333;
        opacity: 1;
        margin: 0 0 5px 0; }
        html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .product-options h6 {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #detailed-inner #product-top-area .product-rhs .product-options h6 {
            font-size: 13px;
            line-height: 1.5; } }
        #detailed-inner #product-top-area .product-rhs .product-options h6 a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          #detailed-inner #product-top-area .product-rhs .product-options h6 a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            #detailed-inner #product-top-area .product-rhs .product-options h6 a:hover:after {
              width: 100%; } }
          html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .product-options h6 a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            #detailed-inner #product-top-area .product-rhs .product-options h6 a:hover {
              color: #8fd2ee; } }
      #detailed-inner #product-top-area .product-rhs .product-options .selector-container {
        display: grid;
        grid-template-columns: max-content max-content;
        /* 3 equal columns */
        gap: 8px; }
        @media only screen and (max-width: 991.98px) {
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container {
            grid-template-columns: repeat(auto-fit, minmax(100px, max-content)); } }
        #detailed-inner #product-top-area .product-rhs .product-options .selector-container.type-Size, #detailed-inner #product-top-area .product-rhs .product-options .selector-container.type-9 {
          grid-template-columns: repeat(3, 1fr);
          /* 3 equal columns */
          gap: 8px; }
          @media only screen and (min-width: 1200px) and (max-width: 1380px) {
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.type-Size, #detailed-inner #product-top-area .product-rhs .product-options .selector-container.type-9 {
              grid-template-columns: repeat(2, 1fr); } }
          @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.type-Size, #detailed-inner #product-top-area .product-rhs .product-options .selector-container.type-9 {
              grid-template-columns: repeat(2, 1fr); } }
          @media only screen and (max-width: 767.98px) {
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.type-Size, #detailed-inner #product-top-area .product-rhs .product-options .selector-container.type-9 {
              grid-template-columns: repeat(2, 1fr); } }
        #detailed-inner #product-top-area .product-rhs .product-options .selector-container label {
          padding: 10px 10px;
          overflow: hidden;
          margin: 0; }
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label input:checked ~ .control__indicator,
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label input:hover ~ .control__indicator,
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label input:focus ~ .control__indicator {
            border-color: #2959D3 !important; }
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label span {
            text-align: center;
            font: normal normal 400 14px/22px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #121212;
            z-index: 3;
            position: relative;
            min-width: 80px;
            display: block; }
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label:not(.disabled) input:checked ~ span,
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label:not(.disabled) input:hover ~ span,
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label:not(.disabled) input:focus ~ span {
            color: #ffffff; }
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label .control__indicator {
            width: 100%;
            height: 100%;
            border: 1px solid #CFCFCF;
            border-radius: 0;
            background: #fff; }
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container label .control__indicator:after {
              background: #2959D3;
              border-radius: 0;
              width: calc(100% - 0px);
              height: calc(100% - 0px); }
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container label.disabled {
            border-color: #B5B5B5;
            cursor: not-allowed; }
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container label.disabled .control__indicator:after {
              display: none !important; }
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container label.disabled span {
              text-decoration: line-through;
              color: #B5B5B5; }
        #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection {
          grid-template-columns: repeat(auto-fit, minmax(50px, max-content)); }
          #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label {
            padding: 0; }
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label .img-thumbnail {
              border-radius: 50%;
              width: 43px;
              background: transparent;
              position: relative;
              display: block;
              border: none;
              margin: 6px;
              padding: 0; }
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label .wrapping-description {
              display: none; }
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label:not(.disabled) input:checked ~ span,
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label:not(.disabled) input:hover ~ span,
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label:not(.disabled) input:focus ~ span {
              color: #ffffff; }
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label .control__indicator {
              width: 100%;
              height: 100%;
              border: 1px solid transparent;
              border-radius: 50%;
              background: #fff; }
              #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label .control__indicator:after {
                background: transparent;
                border: 1px solid #707070;
                border-radius: 50%;
                width: calc(100% - 0px);
                height: calc(100% - 0px); }
            #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label.disabled {
              border-color: #B5B5B5;
              cursor: not-allowed; }
              #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label.disabled .control__indicator:after {
                display: none !important; }
              #detailed-inner #product-top-area .product-rhs .product-options .selector-container.radioImage-selection label.disabled span {
                text-decoration: line-through;
                color: #B5B5B5; }
      #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper {
        position: relative;
        /*style the items (options), including the selected item:*/
        /*style items (options):*/
        /*hide the items when the select box is closed:*/ }
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper select {
          display: none;
          /*hide original SELECT element:*/ }
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected {
          background-color: #fff;
          position: relative;
          transition: all ease-in-out 0.5s;
          border: 1px solid #707070;
          border-radius: 8px;
          width: 100%;
          /*point the arrow upwards when the select box is open (active):*/ }
          #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected:after {
            display: block !important;
            font-family: "Font Awesome 5 Pro";
            content: "\f078";
            font-size: 12px;
            font-weight: 500;
            color: #2959D3; }
          #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected.select-arrow-active:after {
            content: "\f077"; }
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div,
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected {
          text-align: left;
          font: normal normal 500 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          opacity: 1;
          cursor: pointer;
          padding: 0; }
          html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div, html[dir="rtl"]
          #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div,
            #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected {
              font-size: 13px;
              line-height: 1.5; } }
          #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div a,
          #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div a:after,
            #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div a:hover:after,
              #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div a, html[dir="rtl"]
            #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div a:hover,
              #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected a:hover {
                color: #8fd2ee; } }
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-selected {
          position: relative;
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 10px;
          width: 100%;
          padding: 5px 10px; }
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items {
          position: absolute;
          background-color: #fff;
          top: 100%;
          right: 0;
          left: 0;
          z-index: 99;
          border: 1px solid #8fd2ee;
          max-height: 50vh;
          overflow: auto;
          width: 100%; }
          #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div {
            padding: 7px 15px;
            justify-content: space-between;
            display: flex; }
            #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div small {
              color: #727272; }
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-hide {
          display: none; }
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div:hover,
        #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .same-as-selected {
          background-color: #8fd2ee;
          color: #fff !important; }
          #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .select-items div:hover *,
          #detailed-inner #product-top-area .product-rhs .product-options .select-wrapper .same-as-selected * {
            color: #fff !important; }
      #detailed-inner #product-top-area .product-rhs .product-options input[type="text"],
      #detailed-inner #product-top-area .product-rhs .product-options input[type="email"] {
        -webkit-appearance: none;
        width: 100%;
        display: block;
        height: 55px;
        line-height: 55px;
        padding: 0 20px;
        text-align: left;
        font: normal normal 400 15px/28px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #121212;
        text-transform: none;
        opacity: 1;
        border-radius: 0px !important;
        border: 1px solid #f1f1f1;
        background: white !important;
        border-radius: 6px !important;
        box-shadow: none;
        outline: none; }
        html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .product-options input[type="text"], html[dir="rtl"]
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"] {
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]:focus,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]:focus {
          box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"].placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"].placeholder {
          color: #888888; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]:-moz-placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]:-moz-placeholder {
          color: #888888; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]::-moz-placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]::-moz-placeholder {
          color: #888888; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]:-ms-input-placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]:-ms-input-placeholder {
          color: #888888; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]::-webkit-input-placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]::-webkit-input-placeholder {
          color: #888888; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #detailed-inner #product-top-area .product-rhs .product-options input[type="text"],
          #detailed-inner #product-top-area .product-rhs .product-options input[type="email"] {
            height: 50px;
            line-height: 50px;
            font-size: 14px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #detailed-inner #product-top-area .product-rhs .product-options input[type="text"],
          #detailed-inner #product-top-area .product-rhs .product-options input[type="email"] {
            height: 50px;
            line-height: 50px;
            font-size: 13px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #detailed-inner #product-top-area .product-rhs .product-options input[type="text"],
          #detailed-inner #product-top-area .product-rhs .product-options input[type="email"] {
            height: 50px;
            line-height: 50px;
            font-size: 13px;
            padding: 0px 15px; } }
        @media only screen and (max-width: 767px) {
          #detailed-inner #product-top-area .product-rhs .product-options input[type="text"],
          #detailed-inner #product-top-area .product-rhs .product-options input[type="email"] {
            height: 50px;
            line-height: 50px;
            font-size: 12px;
            padding: 0px 15px; } }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"].placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"].placeholder {
          color: transparent; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]:-moz-placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]:-moz-placeholder {
          color: transparent; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]::-moz-placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]::-moz-placeholder {
          color: transparent; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]:-ms-input-placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]:-ms-input-placeholder {
          color: transparent; }
        #detailed-inner #product-top-area .product-rhs .product-options input[type="text"]::-webkit-input-placeholder,
        #detailed-inner #product-top-area .product-rhs .product-options input[type="email"]::-webkit-input-placeholder {
          color: transparent; }
      #detailed-inner #product-top-area .product-rhs .product-options .text-danger {
        transform: none;
        margin: 15px 0 0 0; }
      #detailed-inner #product-top-area .product-rhs .product-options .additional-options,
      #detailed-inner #product-top-area .product-rhs .product-options #product-selector {
        margin: 0 0 35px 0; }
        #detailed-inner #product-top-area .product-rhs .product-options .additional-options.mb-10,
        #detailed-inner #product-top-area .product-rhs .product-options #product-selector.mb-10 {
          margin-bottom: 10px; }
      #detailed-inner #product-top-area .product-rhs .text-section {
        margin: 0 0 35px 0;
        width: 100%; }
        #detailed-inner #product-top-area .product-rhs .text-section-title {
          text-align: left;
          font: normal normal 700 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          opacity: 1;
          margin: 0 0 10px 0; }
          html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .text-section-title {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-rhs .text-section-title {
              font-size: 13px;
              line-height: 1.5; } }
          #detailed-inner #product-top-area .product-rhs .text-section-title a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #detailed-inner #product-top-area .product-rhs .text-section-title a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .text-section-title a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .text-section-title a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .text-section-title a:hover {
                color: #8fd2ee; } }
        #detailed-inner #product-top-area .product-rhs .text-section-description p:not(:last-of-type) {
          margin-bottom: 10px; }
        #detailed-inner #product-top-area .product-rhs .text-section-description * {
          text-align: left;
          font: normal normal 400 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          opacity: 1;
          line-height: 1.5; }
          html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .text-section-description * {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #product-top-area .product-rhs .text-section-description * {
              font-size: 13px;
              line-height: 1.5; } }
          #detailed-inner #product-top-area .product-rhs .text-section-description * a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #detailed-inner #product-top-area .product-rhs .text-section-description * a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .text-section-description * a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #detailed-inner #product-top-area .product-rhs .text-section-description * a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .text-section-description * a:hover {
                color: #8fd2ee; } }
        #detailed-inner #product-top-area .product-rhs .text-section .share {
          text-align: center;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          gap: 2rem;
          padding: 0;
          width: max-content; }
          #detailed-inner #product-top-area .product-rhs .text-section .share li div a {
            display: block;
            transition: all ease-in-out 0.5s; }
            #detailed-inner #product-top-area .product-rhs .text-section .share li div a svg {
              height: 18px;
              width: auto; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs .text-section .share li div a:hover {
                transform: scale(1.15);
                opacity: 1;
                transition: all ease-in-out 0.5s; } }
      #detailed-inner #product-top-area .product-rhs #product {
        width: 400px;
        max-width: 100%; }
      #detailed-inner #product-top-area .product-rhs #power-discount {
        display: none; }
      #detailed-inner #product-top-area .product-rhs #product .product-price {
        margin: 0 auto 50px; }
        #detailed-inner #product-top-area .product-rhs #product .product-price #power-price {
          display: flex !important;
          align-items: baseline;
          justify-content: start;
          width: 100%;
          gap: 15px; }
          #detailed-inner #product-top-area .product-rhs #product .product-price #power-price span {
            text-align: left;
            font: normal normal 400 30px/30px "Poppins", sans-serif;
            letter-spacing: 0;
            color: #333333; }
            html[dir="rtl"] #detailed-inner #product-top-area .product-rhs #product .product-price #power-price span {
              text-align: right;
              font-family: "Cairo", sans-serif;
              letter-spacing: 0;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
              #detailed-inner #product-top-area .product-rhs #product .product-price #power-price span {
                font-size: 25px;
                line-height: 25px; } }
            @media only screen and (max-width: 991.98px) {
              #detailed-inner #product-top-area .product-rhs #product .product-price #power-price span {
                font-size: 20px;
                line-height: 20px; } }
            #detailed-inner #product-top-area .product-rhs #product .product-price #power-price span.price-new, #detailed-inner #product-top-area .product-rhs #product .product-price #power-price span.price-word {
              color: #121212; }
            #detailed-inner #product-top-area .product-rhs #product .product-price #power-price span.price-old {
              color: #E02B2B;
              text-decoration: line-through; }
      #detailed-inner #product-top-area .product-rhs #count-add {
        display: flex;
        align-items: start;
        justify-content: start;
        flex-wrap: wrap;
        background-color: transparent;
        position: relative;
        gap: 15px;
        margin: 0 auto 35px;
        z-index: 2; }
        @media only screen and (max-width: 767.98px) {
          #detailed-inner #product-top-area .product-rhs #count-add {
            gap: 5px; } }
        #detailed-inner #product-top-area .product-rhs #count-add .count-add-box {
          position: relative;
          height: 100%;
          flex: 1; }
          #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input {
            position: relative;
            width: 100%;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-color: #fff;
            transform: rotateX(90deg);
            transition: all ease-in-out 0.3s; }
            #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper {
              display: flex;
              align-items: center;
              justify-content: center;
              width: 100%;
              border: 1px solid #e4e3e3;
              border-radius: 8px;
              gap: 5px;
              height: 100%; }
              #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input {
                flex-grow: 1;
                min-width: 44px;
                -webkit-appearance: none;
                height: 27px;
                background: none;
                text-align: center;
                font-size: 14px;
                font: normal normal 600 15px/21px "Poppins", sans-serif;
                letter-spacing: 0px;
                color: #121212 !important;
                border: none;
                text-shadow: none;
                outline: none; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input:disabled {
                  color: #121212 !important;
                  opacity: 1 !important; }
                html[dir="rtl"] #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input {
                  font-family: "Cairo", sans-serif;
                  letter-spacing: 0; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input.placeholder {
                  color: #121212 !important; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input:-moz-placeholder {
                  color: #121212 !important; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input::-moz-placeholder {
                  color: #121212 !important; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input:-ms-input-placeholder {
                  color: #121212 !important; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input::-webkit-input-placeholder {
                  color: #121212 !important; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper input:focus {
                  outline: none; }
              #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper .incr-btn {
                height: 100%;
                aspect-ratio: 1 / 1;
                padding: 8px;
                border-radius: 8px;
                border: 1px solid #ffffff;
                background-color: #ffffff;
                line-height: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper .incr-btn.disabled {
                  opacity: 0.1;
                  pointer-events: none;
                  cursor: none; }
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper .incr-btn svg {
                  vertical-align: middle;
                  stroke: none;
                  width: 13px;
                  height: auto;
                  display: block; }
                  #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper .incr-btn svg path {
                    fill: #121212;
                    stroke: #121212; }
                @media only screen and (min-width: 992px) {
                  #detailed-inner #product-top-area .product-rhs #count-add .count-add-box .count-input .wrapper .incr-btn:hover {
                    color: #8fd2ee; } }
          #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #button-cart {
            height: 45px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            transition: color .15s ease-out, background-color .15s ease-out, border-color .15s ease-out, transform .1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer; }
            #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #button-cart:not(.disabled) {
              background: #2959D3; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #button-cart:not(.disabled):hover {
                  background: #8fd2ee;
                  transition: all ease-in-out 0.5s; } }
            #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #button-cart.disabled {
              background: #818181;
              cursor: not-allowed; }
            #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #button-cart .icon {
              display: none; }
            #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #button-cart .text {
              text-align: left;
              font: normal normal 600 14px/16px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #fff; }
            #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #button-cart.disabled {
              cursor: not-allowed;
              background: #818181 !important; }
              #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #button-cart.disabled .text {
                transform: translateY(-9px); }
          #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #notify-available {
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transform: translateY(-22px);
            text-decoration: underline;
            font: normal normal 600 12px/18px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #fff;
            cursor: pointer; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #notify-available:hover .text {
                transform: scale(1.05);
                transition: all ease-in-out 0.5s; } }
            #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #notify-available .svg {
              width: 15px; }
              #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #notify-available .svg svg {
                width: 15px;
                height: auto;
                display: block; }
            #detailed-inner #product-top-area .product-rhs #count-add .count-add-box #notify-available span {
              padding: 0;
              width: max-content;
              transition: all ease-in-out 0.5s;
              font-size: 12px !important; }
        #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper {
          display: flex;
          align-items: center;
          justify-content: start;
          gap: 15px;
          width: 45px; }
          @media only screen and (max-width: 767.98px) {
            #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper {
              width: 45px; } }
          #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn {
            border: 1px solid #707070;
            border-radius: 8px;
            cursor: pointer;
            height: 45px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            cursor: pointer; }
            #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn .text {
              text-align: left;
              font: normal normal 600 14px/2 "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #121212;
              opacity: 1;
              font-size: 13px; }
              html[dir="rtl"] #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn .text {
                letter-spacing: 0;
                font-family: "Cairo", sans-serif !important;
                text-align: right;
                letter-spacing: 0; }
              @media only screen and (max-width: 991.98px) {
                #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn .text {
                  font-size: 13px;
                  line-height: 1.5; } }
              #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn .text a {
                font-family: inherit;
                line-height: inherit;
                font-size: inherit;
                font-weight: inherit;
                color: #2959D3;
                display: inline-block;
                position: relative;
                transition: all ease-in-out 0.5s; }
                #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn .text a:after {
                  border-top: 1px solid #8fd2ee;
                  content: "";
                  display: block;
                  height: 0;
                  transition: width .3s ease-out;
                  width: 0; }
                @media only screen and (min-width: 992px) {
                  #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn .text a:hover:after {
                    width: 100%; } }
                html[dir="rtl"] #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn .text a {
                  direction: ltr;
                  letter-spacing: 0; }
                @media only screen and (min-width: 992px) {
                  #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn .text a:hover {
                    color: #8fd2ee; } }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn:hover:not(.wishlist) {
                background: #8fd2ee;
                border-color: #8fd2ee;
                transition: all ease-in-out 0.5s; }
                #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn:hover:not(.wishlist) svg path {
                  fill: #fff;
                  transition: all ease-in-out 0.5s; } }
            #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn.wishlist .save-wrapper {
              position: relative;
              width: 19px;
              height: 19px;
              transform: scale(0.8); }
              #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn.wishlist .save-wrapper svg {
                height: auto;
                width: 100%;
                height: 100%;
                display: block;
                transition: all ease-in-out 0.5s;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%); }
                #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn.wishlist .save-wrapper svg.colored {
                  transform: translate(-50%, -50%) scale(0); }
            #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn.wishlist.selected .save-wrapper svg {
              transition: all ease-in-out 0.1s; }
              #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn.wishlist.selected .save-wrapper svg.colored {
                transform: translate(-50%, -50%) scale(1);
                transition: all ease-in-out 0.1s; }
              #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn.wishlist.selected .save-wrapper svg.outline {
                transform: translate(-50%, -50%) scale(0);
                transition: all ease-in-out 0.1s; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn.wishlist:hover .save-wrapper svg.colored {
                animation: pulse 1s 0.3s infinite; } }

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1); }
  30% {
    transform: translate(-50%, -50%) scale(1.42); }
  60% {
    transform: translate(-50%, -50%) scale(1); } }
            @media only screen and (max-width: 767.98px) {
              #detailed-inner #product-top-area .product-rhs #count-add .btns-wrapper .box-btn.wishlist .text {
                display: none; } }
  #detailed-inner .description-section {
    margin: auto;
    width: 1600px;
    padding-right: 14rem;
    padding-left: 14rem;
    max-width: 100%;
    margin: 50px auto 0; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #detailed-inner .description-section {
        padding-right: 8rem;
        padding-left: 8rem; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #detailed-inner .description-section {
        padding-right: 6rem;
        padding-left: 6rem; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #detailed-inner .description-section {
        padding-right: 3rem;
        padding-left: 3rem; } }
    @media only screen and (max-width: 767.98px) {
      #detailed-inner .description-section {
        padding-right: 1.5rem;
        padding-left: 1.5rem; } }
    #detailed-inner .description-section-title {
      text-align: left;
      font: normal normal 600 32px/1.3 "Poppins", sans-serif;
      letter-spacing: 0;
      color: #333333; }
      html[dir="rtl"] #detailed-inner .description-section-title {
        font-family: "Cairo", sans-serif !important;
        letter-spacing: 0;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #detailed-inner .description-section-title {
          font-size: 29px;
          letter-spacing: 0px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #detailed-inner .description-section-title {
          font-size: 26px;
          letter-spacing: 0px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #detailed-inner .description-section-title {
          font-size: 24px;
          letter-spacing: 0px; } }
      @media only screen and (max-width: 767.98px) {
        #detailed-inner .description-section-title {
          font-size: 21px;
          letter-spacing: 0px; } }
    #detailed-inner .description-section-content {
      margin: 35px 0 0 0 !important; }
      #detailed-inner .description-section-content * {
        font-family: "Poppins", sans-serif !important;
        letter-spacing: 0;
        color: #333333;
        line-height: 1.5; }
        #detailed-inner .description-section-content * p {
          margin: 0 0 15px 0; }
        #detailed-inner .description-section-content * strong {
          margin: 0 0 15px 0;
          font-weight: 700;
          color: #121212; }
      #detailed-inner .description-section-content img {
        height: auto;
        margin: 30px auto;
        max-width: 100%; }
      #detailed-inner .description-section-content iframe {
        aspect-ratio: 5 / 3;
        width: 1000px;
        height: auto;
        margin: 30px auto;
        display: block;
        max-width: 100%; }
  #detailed-inner #info-section {
    margin: 0;
    margin: auto;
    width: 1600px;
    padding-right: 14rem;
    padding-left: 14rem;
    max-width: 100%; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #detailed-inner #info-section {
        padding-right: 8rem;
        padding-left: 8rem; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #detailed-inner #info-section {
        padding-right: 6rem;
        padding-left: 6rem; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #detailed-inner #info-section {
        padding-right: 3rem;
        padding-left: 3rem; } }
    @media only screen and (max-width: 767.98px) {
      #detailed-inner #info-section {
        padding-right: 1.5rem;
        padding-left: 1.5rem; } }
    #detailed-inner #info-section .content {
      display: flex;
      align-items: start;
      justify-content: space-between;
      flex-direction: column;
      gap: 50px; }
      @media only screen and (max-width: 991.98px) {
        #detailed-inner #info-section .content {
          width: 100%;
          gap: 0px; } }
      #detailed-inner #info-section .content .descirption-col {
        width: 100%; }
        @media only screen and (max-width: 991.98px) {
          #detailed-inner #info-section .content .descirption-col {
            width: 100%; } }
        @media only screen and (max-width: 991.98px) {
          #detailed-inner #info-section .content .descirption-col:last-of-type {
            border-bottom: 1px solid #EFEFEF; } }
        #detailed-inner #info-section .content .descirption-col .descirptionCol-title {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 20px 0;
          border-bottom: 1px solid #EFEFEF; }
          #detailed-inner #info-section .content .descirption-col .descirptionCol-title.active i {
            transform: rotateX(180deg); }
          #detailed-inner #info-section .content .descirption-col .descirptionCol-title span {
            text-align: left;
            font: normal normal normal 14px/19px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #121212;
            flex-grow: 1;
            margin: 0; }
          #detailed-inner #info-section .content .descirption-col .descirptionCol-title i {
            font-size: 12px; }
        #detailed-inner #info-section .content .descirption-col .descirptionCol-text {
          padding-bottom: 15px;
          display: none;
          text-align: left;
          font: normal normal 400 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #121212;
          opacity: 1; }
          #detailed-inner #info-section .content .descirption-col .descirptionCol-text-content {
            padding: 20px 0; }
            @media only screen and (min-width: 1200px) {
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text-content {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                /* 3 equal columns */
                gap: 20px;
                /* optional spacing */ } }
          html[dir="rtl"] #detailed-inner #info-section .content .descirption-col .descirptionCol-text {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #info-section .content .descirption-col .descirptionCol-text {
              font-size: 13px;
              line-height: 1.5; } }
          #detailed-inner #info-section .content .descirption-col .descirptionCol-text a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #detailed-inner #info-section .content .descirption-col .descirptionCol-text a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #detailed-inner #info-section .content .descirption-col .descirptionCol-text a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text a:hover {
                color: #8fd2ee; } }
          #detailed-inner #info-section .content .descirption-col .descirptionCol-text p {
            text-align: left;
            font: normal normal 400 14px/2 "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #121212;
            opacity: 1; }
            html[dir="rtl"] #detailed-inner #info-section .content .descirption-col .descirptionCol-text p {
              letter-spacing: 0;
              font-family: "Cairo", sans-serif !important;
              text-align: right;
              letter-spacing: 0; }
            @media only screen and (max-width: 991.98px) {
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text p {
                font-size: 13px;
                line-height: 1.5; } }
            #detailed-inner #info-section .content .descirption-col .descirptionCol-text p a {
              font-family: inherit;
              line-height: inherit;
              font-size: inherit;
              font-weight: inherit;
              color: #2959D3;
              display: inline-block;
              position: relative;
              transition: all ease-in-out 0.5s; }
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text p a:after {
                border-top: 1px solid #8fd2ee;
                content: "";
                display: block;
                height: 0;
                transition: width .3s ease-out;
                width: 0; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #info-section .content .descirption-col .descirptionCol-text p a:hover:after {
                  width: 100%; } }
              html[dir="rtl"] #detailed-inner #info-section .content .descirption-col .descirptionCol-text p a {
                direction: ltr;
                letter-spacing: 0; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #info-section .content .descirption-col .descirptionCol-text p a:hover {
                  color: #8fd2ee; } }
          @media only screen and (min-width: 576px) {
            #detailed-inner #info-section .content .descirption-col .descirptionCol-text.col-2 {
              column-count: 2; } }
          #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification {
            display: flex;
            align-items: start;
            justify-content: start;
            gap: 10px; }
            #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .icon {
              display: none; }
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .icon img {
                width: 65px;
                height: 65px;
                border-radius: 50%; }
                @media only screen and (max-width: 991.98px) {
                  #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .icon img {
                    width: 55px;
                    height: 55px; } }
            #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-title {
              text-align: left;
              font: normal normal 700 14px/2 "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #333333;
              opacity: 1;
              text-transform: uppercase;
              margin: 0;
              display: block; }
              html[dir="rtl"] #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-title {
                letter-spacing: 0;
                font-family: "Cairo", sans-serif !important;
                text-align: right;
                letter-spacing: 0; }
              @media only screen and (max-width: 991.98px) {
                #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-title {
                  font-size: 13px;
                  line-height: 1.5; } }
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-title a {
                font-family: inherit;
                line-height: inherit;
                font-size: inherit;
                font-weight: inherit;
                color: #2959D3;
                display: inline-block;
                position: relative;
                transition: all ease-in-out 0.5s; }
                #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-title a:after {
                  border-top: 1px solid #8fd2ee;
                  content: "";
                  display: block;
                  height: 0;
                  transition: width .3s ease-out;
                  width: 0; }
                @media only screen and (min-width: 992px) {
                  #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-title a:hover:after {
                    width: 100%; } }
                html[dir="rtl"] #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-title a {
                  direction: ltr;
                  letter-spacing: 0; }
                @media only screen and (min-width: 992px) {
                  #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-title a:hover {
                    color: #8fd2ee; } }
            #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description {
              text-align: left;
              font: normal normal 400 14px/2 "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #333333;
              opacity: 1; }
              html[dir="rtl"] #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description {
                letter-spacing: 0;
                font-family: "Cairo", sans-serif !important;
                text-align: right;
                letter-spacing: 0; }
              @media only screen and (max-width: 991.98px) {
                #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description {
                  font-size: 13px;
                  line-height: 1.5; } }
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description a {
                font-family: inherit;
                line-height: inherit;
                font-size: inherit;
                font-weight: inherit;
                color: #2959D3;
                display: inline-block;
                position: relative;
                transition: all ease-in-out 0.5s; }
                #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description a:after {
                  border-top: 1px solid #8fd2ee;
                  content: "";
                  display: block;
                  height: 0;
                  transition: width .3s ease-out;
                  width: 0; }
                @media only screen and (min-width: 992px) {
                  #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description a:hover:after {
                    width: 100%; } }
                html[dir="rtl"] #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description a {
                  direction: ltr;
                  letter-spacing: 0; }
                @media only screen and (min-width: 992px) {
                  #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description a:hover {
                    color: #8fd2ee; } }
              #detailed-inner #info-section .content .descirption-col .descirptionCol-text .single-specification .data .data-description ul {
                list-style: disc;
                list-style-position: inside; }
  #detailed-inner #review {
    margin: 0;
    margin: auto;
    width: 1600px;
    padding-right: 14rem;
    padding-left: 14rem;
    max-width: 100%; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #detailed-inner #review {
        padding-right: 8rem;
        padding-left: 8rem; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #detailed-inner #review {
        padding-right: 6rem;
        padding-left: 6rem; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #detailed-inner #review {
        padding-right: 3rem;
        padding-left: 3rem; } }
    @media only screen and (max-width: 767.98px) {
      #detailed-inner #review {
        padding-right: 1.5rem;
        padding-left: 1.5rem; } }
    #detailed-inner #review .review-head .top {
      display: flex;
      align-items: center;
      justify-content: start;
      gap: 50px; }
      #detailed-inner #review .review-head .top .reviewsText {
        text-align: left;
        font: normal normal 600 32px/1.3 "Poppins", sans-serif;
        letter-spacing: 0;
        color: #333333;
        margin: 0 !important; }
        html[dir="rtl"] #detailed-inner #review .review-head .top .reviewsText {
          font-family: "Cairo", sans-serif !important;
          letter-spacing: 0;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #detailed-inner #review .review-head .top .reviewsText {
            font-size: 29px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
          #detailed-inner #review .review-head .top .reviewsText {
            font-size: 26px;
            letter-spacing: 0px; } }
        @media only screen and (min-width: 768px) and (max-width: 991.98px) {
          #detailed-inner #review .review-head .top .reviewsText {
            font-size: 24px;
            letter-spacing: 0px; } }
        @media only screen and (max-width: 767.98px) {
          #detailed-inner #review .review-head .top .reviewsText {
            font-size: 21px;
            letter-spacing: 0px; } }
        html[dir="rtl"] #detailed-inner #review .review-head .top .reviewsText {
          text-align: right;
          letter-spacing: 0; }
      #detailed-inner #review .review-head .top .rate-btn {
        position: relative;
        background: #fff;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        width: 265px;
        margin: 0; }
        @media only screen and (max-width: 767.98px) {
          #detailed-inner #review .review-head .top .rate-btn {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          #detailed-inner #review .review-head .top .rate-btn:hover {
            border-color: #8fd2ee; }
            #detailed-inner #review .review-head .top .rate-btn:hover input,
            #detailed-inner #review .review-head .top .rate-btn:hover span {
              color: #fff; }
            #detailed-inner #review .review-head .top .rate-btn:hover .icon svg path {
              fill: #fff; } }
        #detailed-inner #review .review-head .top .rate-btn input,
        #detailed-inner #review .review-head .top .rate-btn span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #2959D3;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        #detailed-inner #review .review-head .top .rate-btn .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          #detailed-inner #review .review-head .top .rate-btn .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            #detailed-inner #review .review-head .top .rate-btn .icon svg path {
              fill: #2959D3; }
        #detailed-inner #review .review-head .top .rate-btn .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #review .review-head .top .rate-btn .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            #detailed-inner #review .review-head .top .rate-btn .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            #detailed-inner #review .review-head .top .rate-btn .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }
    #detailed-inner #review .review-head .bottom {
      margin: 25px 0 50px; }
    #detailed-inner #review .review-content .review-list {
      width: 90%; }
      @media only screen and (max-width: 767.98px) {
        #detailed-inner #review .review-content .review-list {
          width: 100%; } }
      #detailed-inner #review .review-content .review-list .single-review {
        margin-bottom: 35px; }
        #detailed-inner #review .review-content .review-list .single-review .review-content .top {
          display: flex;
          align-items: center;
          justify-content: space-between; }
          @media only screen and (max-width: 767.98px) {
            #detailed-inner #review .review-content .review-list .single-review .review-content .top {
              gap: 15px; } }
          #detailed-inner #review .review-content .review-list .single-review .review-content .top .author {
            text-align: left;
            font: normal normal 700 14px/2 "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #333333;
            opacity: 1; }
            html[dir="rtl"] #detailed-inner #review .review-content .review-list .single-review .review-content .top .author {
              letter-spacing: 0;
              font-family: "Cairo", sans-serif !important;
              text-align: right;
              letter-spacing: 0; }
            @media only screen and (max-width: 991.98px) {
              #detailed-inner #review .review-content .review-list .single-review .review-content .top .author {
                font-size: 13px;
                line-height: 1.5; } }
            #detailed-inner #review .review-content .review-list .single-review .review-content .top .author a {
              font-family: inherit;
              line-height: inherit;
              font-size: inherit;
              font-weight: inherit;
              color: #2959D3;
              display: inline-block;
              position: relative;
              transition: all ease-in-out 0.5s; }
              #detailed-inner #review .review-content .review-list .single-review .review-content .top .author a:after {
                border-top: 1px solid #8fd2ee;
                content: "";
                display: block;
                height: 0;
                transition: width .3s ease-out;
                width: 0; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #review .review-content .review-list .single-review .review-content .top .author a:hover:after {
                  width: 100%; } }
              html[dir="rtl"] #detailed-inner #review .review-content .review-list .single-review .review-content .top .author a {
                direction: ltr;
                letter-spacing: 0; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #review .review-content .review-list .single-review .review-content .top .author a:hover {
                  color: #8fd2ee; } }
          #detailed-inner #review .review-content .review-list .single-review .review-content .top .date {
            text-align: left;
            font: normal normal 700 14px/2 "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #333333;
            opacity: 1; }
            html[dir="rtl"] #detailed-inner #review .review-content .review-list .single-review .review-content .top .date {
              letter-spacing: 0;
              font-family: "Cairo", sans-serif !important;
              text-align: right;
              letter-spacing: 0; }
            @media only screen and (max-width: 991.98px) {
              #detailed-inner #review .review-content .review-list .single-review .review-content .top .date {
                font-size: 13px;
                line-height: 1.5; } }
            #detailed-inner #review .review-content .review-list .single-review .review-content .top .date a {
              font-family: inherit;
              line-height: inherit;
              font-size: inherit;
              font-weight: inherit;
              color: #2959D3;
              display: inline-block;
              position: relative;
              transition: all ease-in-out 0.5s; }
              #detailed-inner #review .review-content .review-list .single-review .review-content .top .date a:after {
                border-top: 1px solid #8fd2ee;
                content: "";
                display: block;
                height: 0;
                transition: width .3s ease-out;
                width: 0; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #review .review-content .review-list .single-review .review-content .top .date a:hover:after {
                  width: 100%; } }
              html[dir="rtl"] #detailed-inner #review .review-content .review-list .single-review .review-content .top .date a {
                direction: ltr;
                letter-spacing: 0; }
              @media only screen and (min-width: 992px) {
                #detailed-inner #review .review-content .review-list .single-review .review-content .top .date a:hover {
                  color: #8fd2ee; } }
        #detailed-inner #review .review-content .review-list .single-review .review-content .rating {
          margin: 5px auto 15px; }
        #detailed-inner #review .review-content .review-list .single-review .review-content .text {
          max-width: 70%;
          text-align: left;
          font: normal normal 400 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          opacity: 1; }
          html[dir="rtl"] #detailed-inner #review .review-content .review-list .single-review .review-content .text {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #detailed-inner #review .review-content .review-list .single-review .review-content .text {
              font-size: 13px;
              line-height: 1.5; } }
          #detailed-inner #review .review-content .review-list .single-review .review-content .text a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #detailed-inner #review .review-content .review-list .single-review .review-content .text a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #review .review-content .review-list .single-review .review-content .text a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #detailed-inner #review .review-content .review-list .single-review .review-content .text a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #detailed-inner #review .review-content .review-list .single-review .review-content .text a:hover {
                color: #8fd2ee; } }
          @media only screen and (max-width: 767.98px) {
            #detailed-inner #review .review-content .review-list .single-review .review-content .text {
              max-width: 100%; } }
  #detailed-inner .rate-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    cursor: pointer;
    z-index: 5; }
    #detailed-inner .rate-stars .text {
      text-align: left;
      font: normal normal 600 14px/2 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #333333;
      opacity: 1; }
      html[dir="rtl"] #detailed-inner .rate-stars .text {
        letter-spacing: 0;
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        #detailed-inner .rate-stars .text {
          font-size: 13px;
          line-height: 1.5; } }
      #detailed-inner .rate-stars .text a {
        font-family: inherit;
        line-height: inherit;
        font-size: inherit;
        font-weight: inherit;
        color: #2959D3;
        display: inline-block;
        position: relative;
        transition: all ease-in-out 0.5s; }
        #detailed-inner .rate-stars .text a:after {
          border-top: 1px solid #8fd2ee;
          content: "";
          display: block;
          height: 0;
          transition: width .3s ease-out;
          width: 0; }
        @media only screen and (min-width: 992px) {
          #detailed-inner .rate-stars .text a:hover:after {
            width: 100%; } }
        html[dir="rtl"] #detailed-inner .rate-stars .text a {
          direction: ltr;
          letter-spacing: 0; }
        @media only screen and (min-width: 992px) {
          #detailed-inner .rate-stars .text a:hover {
            color: #8fd2ee; } }
    #detailed-inner .rate-stars.active-reviewCounter #reviewCounter {
      visibility: visible;
      opacity: 1;
      z-index: 999;
      transform: translateY(0%); }
    @media only screen and (min-width: 992px) {
      #detailed-inner .rate-stars:hover #reviewCounter {
        visibility: visible;
        opacity: 1;
        z-index: 2;
        transform: translateY(0%); } }
    #detailed-inner .rate-stars #reviewCounter {
      position: absolute;
      left: 0;
      top: calc(100% + 0px);
      background: #FFFFFF;
      box-shadow: 0px 3px 20px #00000012;
      border: 1px solid #E5E5E5;
      width: 360px;
      z-index: 99;
      max-width: calc(100vw - 30px);
      visibility: hidden;
      opacity: 0;
      z-index: -1;
      transform: translateY(1em);
      transition: all 0.25s 0s, visibility 0s, z-index 0s, opacity 0.15s 0s; }
      html[dir="rtl"] #detailed-inner .rate-stars #reviewCounter {
        left: unset;
        right: 0;
        letter-spacing: 0; }
      #detailed-inner .rate-stars #reviewCounter .rate-title {
        text-align: left;
        font: normal normal 700 21px/23px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #000000;
        opacity: 1;
        margin-bottom: 20px; }
        html[dir="rtl"] #detailed-inner .rate-stars #reviewCounter .rate-title {
          text-align: right;
          font-family: "Cairo", sans-serif;
          letter-spacing: 0;
          letter-spacing: 0; }
      #detailed-inner .rate-stars #reviewCounter #rate-info {
        position: relative;
        padding: 33px 25px; }
        #detailed-inner .rate-stars #reviewCounter #rate-info .arrow-up {
          width: 0;
          height: 0;
          border-left: 15px solid transparent;
          border-right: 15px solid transparent;
          border-bottom: 15px solid #ffffff;
          position: absolute;
          left: 15px;
          top: -0%;
          transform: translateY(-100%); }
          html[dir="rtl"] #detailed-inner .rate-stars #reviewCounter #rate-info .arrow-up {
            left: unset;
            right: 15px;
            letter-spacing: 0; }
        #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper {
          display: flex;
          flex-wrap: wrap;
          gap: 12px;
          flex-direction: column; }
          #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px; }
            #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .side div {
              font: normal normal 600 13px/15px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #000000;
              opacity: 1;
              display: flex;
              align-items: center;
              gap: 3px; }
              #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .side div svg {
                width: 11px;
                height: 11px; }
            #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle {
              flex-grow: 1; }
              #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container {
                width: 100%;
                background-color: #f2eee8;
                text-align: center;
                color: white;
                border-radius: 5px; }
                #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar {
                  height: 6px;
                  background-color: #8fd2ee; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-0 {
                    width: 0px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-1 {
                    width: 10px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-2 {
                    width: 20px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-3 {
                    width: 30px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-4 {
                    width: 40px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-5 {
                    width: 50px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-6 {
                    width: 60px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-7 {
                    width: 70px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-8 {
                    width: 80px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-9 {
                    width: 90px; }
                  #detailed-inner .rate-stars #reviewCounter #rate-info #rate-wrapper .rate-row .middle .bar-container .bar.bar-10 {
                    width: 100px; }
  #detailed-inner .display-product-rating {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
    height: 30px; }
    #detailed-inner .display-product-rating .jq-star svg {
      width: 25px;
      height: 25px; }
  #detailed-inner .products-slider-wrapper .section-slider {
    overflow: visible !important; }
    #detailed-inner .products-slider-wrapper .section-slider .flickity-viewport {
      overflow: visible !important; }

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  opacity: 1 !important;
  visibility: visible !important; }

.zm-viewer img {
  transform: scale(1.5);
  transform-origin: 0 0; }

/*==================================
=            Listing               =
==================================*/
#listing-area #product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 25px; }
  @media only screen and (min-width: 992px) {
    #listing-area #product-list {
      row-gap: 50px; } }
  #listing-area #product-list .product-list-sort {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  #listing-area #product-list .col-md-lhs {
    width: 100%; }
    @media only screen and (min-width: 992px) {
      #listing-area #product-list .col-md-lhs {
        width: 250px !important; } }
    @media only screen and (max-width: 991.98px) {
      #listing-area #product-list .col-md-lhs .category-column {
        display: none; } }
    #listing-area #product-list .col-md-lhs .category-column .back-category {
      display: flex;
      align-items: center;
      gap: 15px;
      margin: 0 0 50px 0; }
      #listing-area #product-list .col-md-lhs .category-column .back-category .icon svg {
        display: block;
        width: 15px;
        height: auto; }
        #listing-area #product-list .col-md-lhs .category-column .back-category .icon svg path {
          fill: #333333; }
      #listing-area #product-list .col-md-lhs .category-column .back-category .text {
        text-align: left;
        font: normal normal 500 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #333333;
        opacity: 1;
        transition: all ease-in-out 0.5s; }
        html[dir="rtl"] #listing-area #product-list .col-md-lhs .category-column .back-category .text {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #listing-area #product-list .col-md-lhs .category-column .back-category .text {
            font-size: 13px;
            line-height: 1.5; } }
        #listing-area #product-list .col-md-lhs .category-column .back-category .text a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          #listing-area #product-list .col-md-lhs .category-column .back-category .text a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .col-md-lhs .category-column .back-category .text a:hover:after {
              width: 100%; } }
          html[dir="rtl"] #listing-area #product-list .col-md-lhs .category-column .back-category .text a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .col-md-lhs .category-column .back-category .text a:hover {
              color: #8fd2ee; } }
      #listing-area #product-list .col-md-lhs .category-column .back-category:hover .text {
        color: #2959D3;
        transition: all ease-in-out 0.5s; }
      #listing-area #product-list .col-md-lhs .category-column .back-category:hover .icon svg {
        transform: translateX(-5px);
        transition: all ease-in-out 0.5s; }
        #listing-area #product-list .col-md-lhs .category-column .back-category:hover .icon svg path {
          fill: #2959D3; }
    #listing-area #product-list .col-md-lhs .category-column-title {
      flex-grow: 1;
      text-align: left;
      font: normal normal 400 24px/1.5 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #333333;
      opacity: 1; }
      html[dir="rtl"] #listing-area #product-list .col-md-lhs .category-column-title {
        font-family: "Cairo", sans-serif;
        letter-spacing: 0;
        text-align: right;
        letter-spacing: 0; }
    #listing-area #product-list .col-md-lhs .category-column-list {
      border-top: 1px solid #E4E3E3;
      border-bottom: 1px solid #E4E3E3;
      margin: 15px 0 30px;
      padding: 20px 0;
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      gap: 10px; }
      #listing-area #product-list .col-md-lhs .category-column-list a {
        text-align: left;
        font: normal normal 500 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #837e7f;
        opacity: 1;
        font-size: 15px;
        transition: all ease-in-out 0.5s; }
        html[dir="rtl"] #listing-area #product-list .col-md-lhs .category-column-list a {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #listing-area #product-list .col-md-lhs .category-column-list a {
            font-size: 13px;
            line-height: 1.5; } }
        #listing-area #product-list .col-md-lhs .category-column-list a a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          #listing-area #product-list .col-md-lhs .category-column-list a a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .col-md-lhs .category-column-list a a:hover:after {
              width: 100%; } }
          html[dir="rtl"] #listing-area #product-list .col-md-lhs .category-column-list a a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .col-md-lhs .category-column-list a a:hover {
              color: #8fd2ee; } }
        #listing-area #product-list .col-md-lhs .category-column-list a:hover {
          color: #2959D3;
          transition: all ease-in-out 0.5s; }
          #listing-area #product-list .col-md-lhs .category-column-list a:hover svg {
            transform: translateX(5px);
            transition: all ease-in-out 0.5s; }
            #listing-area #product-list .col-md-lhs .category-column-list a:hover svg path {
              fill: #2959D3; }
  #listing-area #product-list .col-md-rhs {
    width: 100%; }
    @media only screen and (min-width: 992px) {
      #listing-area #product-list .col-md-rhs {
        width: calc(100% - 290px) !important; }
        #listing-area #product-list .col-md-rhs.full {
          width: 100% !important; } }
    #listing-area #product-list .col-md-rhs .product-sort-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 0 auto 20px; }
      #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text {
        text-align: left;
        font: normal normal 400 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #333333;
        opacity: 1; }
        html[dir="rtl"] #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text {
            font-size: 13px;
            line-height: 1.5; } }
        #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text a:hover:after {
              width: 100%; } }
          html[dir="rtl"] #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text a:hover {
              color: #8fd2ee; } }
        @media only screen and (max-width: 991.98px) {
          #listing-area #product-list .col-md-rhs .product-sort-row .lhs .pagination-text {
            display: none; } }
      #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 10;
        gap: 10px; }
        #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .input-group-addon {
          text-align: left;
          font: normal normal 500 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          opacity: 1; }
          html[dir="rtl"] #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .input-group-addon {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .input-group-addon {
              font-size: 13px;
              line-height: 1.5; } }
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .input-group-addon a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .input-group-addon a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .input-group-addon a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .input-group-addon a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .input-group-addon a:hover {
                color: #8fd2ee; } }
        #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper {
          position: relative;
          /*style the items (options), including the selected item:*/
          /*style items (options):*/
          /*hide the items when the select box is closed:*/ }
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper select {
            display: none;
            /*hide original SELECT element:*/ }
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected {
            background-color: #fff;
            position: relative;
            transition: all ease-in-out 0.5s;
            border: 1px solid #fff;
            width: max-content;
            /*point the arrow upwards when the select box is open (active):*/ }
            #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected:after {
              display: block !important;
              font-family: "Font Awesome 5 Pro";
              content: "\f078";
              font-size: 12px;
              font-weight: 500;
              color: #2959D3; }
            #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected.select-arrow-active:after {
              content: "\f077"; }
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div,
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected {
            text-align: left;
            font: normal normal 500 14px/2 "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #333333;
            opacity: 1;
            cursor: pointer;
            padding: 0; }
            html[dir="rtl"] #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div, html[dir="rtl"]
            #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected {
              letter-spacing: 0;
              font-family: "Cairo", sans-serif !important;
              text-align: right;
              letter-spacing: 0; }
            @media only screen and (max-width: 991.98px) {
              #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div,
              #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected {
                font-size: 13px;
                line-height: 1.5; } }
            #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div a,
            #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected a {
              font-family: inherit;
              line-height: inherit;
              font-size: inherit;
              font-weight: inherit;
              color: #2959D3;
              display: inline-block;
              position: relative;
              transition: all ease-in-out 0.5s; }
              #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div a:after,
              #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected a:after {
                border-top: 1px solid #8fd2ee;
                content: "";
                display: block;
                height: 0;
                transition: width .3s ease-out;
                width: 0; }
              @media only screen and (min-width: 992px) {
                #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div a:hover:after,
                #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected a:hover:after {
                  width: 100%; } }
              html[dir="rtl"] #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div a, html[dir="rtl"]
              #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected a {
                direction: ltr;
                letter-spacing: 0; }
              @media only screen and (min-width: 992px) {
                #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div a:hover,
                #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected a:hover {
                  color: #8fd2ee; } }
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-selected {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px; }
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items {
            position: absolute;
            background-color: #fff;
            top: 100%;
            right: 0;
            z-index: 99;
            border: 1px solid #8fd2ee;
            max-height: 50vh;
            overflow: auto;
            width: max-content; }
            html[dir="rtl"] #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items {
              left: 0;
              right: unset;
              letter-spacing: 0; }
            #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div {
              padding: 7px 15px; }
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-hide {
            display: none; }
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .select-items div:hover,
          #listing-area #product-list .col-md-rhs .product-sort-row .rhs .sort-filter .select-wrapper .same-as-selected {
            background-color: #8fd2ee;
            color: #fff !important; }
  #listing-area #product-list .scroll-row {
    text-align: center;
    width: 100%;
    display: none !important; }
    #listing-area #product-list .scroll-row .content {
      margin: 25px auto 50px;
      width: 300px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      gap: 25px; }
      #listing-area #product-list .scroll-row .content .load-text {
        text-align: center;
        font: normal normal 400 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #333333;
        opacity: 1; }
        html[dir="rtl"] #listing-area #product-list .scroll-row .content .load-text {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: center;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #listing-area #product-list .scroll-row .content .load-text {
            font-size: 13px;
            line-height: 1.5; } }
        #listing-area #product-list .scroll-row .content .load-text a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          #listing-area #product-list .scroll-row .content .load-text a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .scroll-row .content .load-text a:hover:after {
              width: 100%; } }
          html[dir="rtl"] #listing-area #product-list .scroll-row .content .load-text a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .scroll-row .content .load-text a:hover {
              color: #8fd2ee; } }
      #listing-area #product-list .scroll-row .content .progress {
        display: block;
        margin: 0 auto;
        background: #D8D8D8;
        width: 100%;
        height: 5px;
        position: relative; }
        #listing-area #product-list .scroll-row .content .progress .bar {
          transition: all ease-in-out 0.5s;
          width: 50px;
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          height: 5px;
          background: #8fd2ee; }
          html[dir="rtl"] #listing-area #product-list .scroll-row .content .progress .bar {
            left: unset;
            right: 0;
            letter-spacing: 0; }
      #listing-area #product-list .scroll-row .content .load-more {
        position: relative;
        background: #2959D3;
        cursor: pointer;
        width: max-content;
        text-align: center;
        border-radius: 8px;
        transition: 400ms;
        text-decoration: none;
        z-index: 90;
        overflow: hidden;
        border: 1px solid #2959D3;
        display: block;
        margin: 0 auto; }
        @media only screen and (max-width: 767.98px) {
          #listing-area #product-list .scroll-row .content .load-more {
            width: 100%; } }
        @media only screen and (min-width: 992px) {
          #listing-area #product-list .scroll-row .content .load-more:hover {
            border-color: #8fd2ee; }
            #listing-area #product-list .scroll-row .content .load-more:hover input,
            #listing-area #product-list .scroll-row .content .load-more:hover span {
              color: #fff; }
            #listing-area #product-list .scroll-row .content .load-more:hover .icon svg path {
              fill: #fff; } }
        #listing-area #product-list .scroll-row .content .load-more input,
        #listing-area #product-list .scroll-row .content .load-more span {
          width: 100%;
          position: relative;
          z-index: 9;
          padding: 16px 18px;
          text-align: center;
          font: normal normal 600 15px/1.4 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #fff;
          text-transform: none;
          opacity: 1;
          display: block;
          margin: 0;
          border: none;
          background: transparent; }
        #listing-area #product-list .scroll-row .content .load-more .icon {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 13px; }
          #listing-area #product-list .scroll-row .content .load-more .icon svg {
            width: 7px;
            display: block;
            height: auto; }
            #listing-area #product-list .scroll-row .content .load-more .icon svg path {
              fill: #fff; }
        #listing-area #product-list .scroll-row .content .load-more .circle {
          background-color: #8fd2ee;
          border-radius: 1000px;
          position: absolute;
          left: 0;
          top: 0;
          width: 0px;
          height: 0px;
          margin-left: 0px;
          margin-top: 0px;
          pointer-events: none;
          /*animation-timing-function: ease-in-out; */
          opacity: 0; }
          @media only screen and (max-width: 991.98px) {
            #listing-area #product-list .scroll-row .content .load-more .circle {
              display: none; } }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .scroll-row .content .load-more .circle.explode-circle {
              animation: explode 0.5s forwards; } }
          @media only screen and (min-width: 992px) {
            #listing-area #product-list .scroll-row .content .load-more .circle.desplode-circle {
              animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }
  #listing-area #product-list .pagination-row {
    width: 100%;
    border-top: 1px solid #E6E6E6;
    padding: 15px 0 0 0;
    display: block !important; }
    @media only screen and (min-width: 992px) {
      #listing-area #product-list .pagination-row.full {
        width: 100% !important; } }

.mobile-filter-trigger {
  display: flex;
  align-items: center;
  overflow: hidden; }
  @media only screen and (min-width: 992px) {
    .mobile-filter-trigger {
      display: none; } }
  .mobile-filter-trigger .triger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 9px 15px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #121212; }
    .mobile-filter-trigger .triger-btn span {
      text-align: center;
      font: normal normal 400 14px/2 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #121212;
      opacity: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px; }
      html[dir="rtl"] .mobile-filter-trigger .triger-btn span {
        letter-spacing: 0;
        font-family: "Cairo", sans-serif !important;
        text-align: center;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        .mobile-filter-trigger .triger-btn span {
          font-size: 13px;
          line-height: 1.5; } }
      .mobile-filter-trigger .triger-btn span a {
        font-family: inherit;
        line-height: inherit;
        font-size: inherit;
        font-weight: inherit;
        color: #2959D3;
        display: inline-block;
        position: relative;
        transition: all ease-in-out 0.5s; }
        .mobile-filter-trigger .triger-btn span a:after {
          border-top: 1px solid #8fd2ee;
          content: "";
          display: block;
          height: 0;
          transition: width .3s ease-out;
          width: 0; }
        @media only screen and (min-width: 992px) {
          .mobile-filter-trigger .triger-btn span a:hover:after {
            width: 100%; } }
        html[dir="rtl"] .mobile-filter-trigger .triger-btn span a {
          direction: ltr;
          letter-spacing: 0; }
        @media only screen and (min-width: 992px) {
          .mobile-filter-trigger .triger-btn span a:hover {
            color: #8fd2ee; } }
      .mobile-filter-trigger .triger-btn span svg {
        width: 15px;
        height: auto; }

.mobile-filter-trigger.bkp {
  position: fixed;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  display: flex;
  align-items: center;
  width: 300PX;
  overflow: hidden; }
  @media only screen and (min-width: 992px) {
    .mobile-filter-trigger.bkp {
      display: none; } }
  .mobile-filter-trigger.bkp .triger-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2959D3;
    padding: 10px 15px;
    width: 100%;
    border-radius: 7px; }
    .mobile-filter-trigger.bkp .triger-btn span {
      text-align: center;
      font: normal normal 700 14px/2 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #fff;
      opacity: 1; }
      html[dir="rtl"] .mobile-filter-trigger.bkp .triger-btn span {
        letter-spacing: 0;
        font-family: "Cairo", sans-serif !important;
        text-align: center;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        .mobile-filter-trigger.bkp .triger-btn span {
          font-size: 13px;
          line-height: 1.5; } }
      .mobile-filter-trigger.bkp .triger-btn span a {
        font-family: inherit;
        line-height: inherit;
        font-size: inherit;
        font-weight: inherit;
        color: #2959D3;
        display: inline-block;
        position: relative;
        transition: all ease-in-out 0.5s; }
        .mobile-filter-trigger.bkp .triger-btn span a:after {
          border-top: 1px solid #8fd2ee;
          content: "";
          display: block;
          height: 0;
          transition: width .3s ease-out;
          width: 0; }
        @media only screen and (min-width: 992px) {
          .mobile-filter-trigger.bkp .triger-btn span a:hover:after {
            width: 100%; } }
        html[dir="rtl"] .mobile-filter-trigger.bkp .triger-btn span a {
          direction: ltr;
          letter-spacing: 0; }
        @media only screen and (min-width: 992px) {
          .mobile-filter-trigger.bkp .triger-btn span a:hover {
            color: #8fd2ee; } }
      @media only screen and (max-width: 991.98px) {
        .mobile-filter-trigger.bkp .triger-btn span {
          font-size: 16px; } }

.empty-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 37.32px;
  text-align: center;
  letter-spacing: 0px;
  color: #121212;
  opacity: 1;
  margin: 45px auto 15px; }
  html[dir="rtl"] .empty-title {
    font-family: "Cairo", sans-serif;
    font-weight: 600;
    letter-spacing: 0; }
  .empty-title.accept-header {
    margin-bottom: 0px; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .empty-title {
      font-size: 18px;
      line-height: 36px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    .empty-title {
      font-size: 17px;
      line-height: 35px;
      margin: 30px 0px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    .empty-title {
      font-size: 16px;
      line-height: 34px;
      margin: 30px 0px; } }
  @media only screen and (min-width: 240px) and (max-width: sm) {
    .empty-title {
      font-size: 16px;
      line-height: 33px;
      margin-top: 30px; } }

#sort-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  background: #fff;
  padding: 25px 25px 0 25px;
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
  z-index: 9999;
  border: 1px solid #E5E5E5;
  transform: translateY(100%);
  transition: all ease-in-out 0.5s; }
  #sort-mobile.active-sort-mobile {
    transform: translateY(0%);
    transition: all ease-in-out 0.5s; }
  #sort-mobile .sort-title {
    text-align: left;
    font: normal normal 700 14px/27px "Poppins", sans-serif;
    letter-spacing: 0.28px;
    color: #121212;
    opacity: 1; }
  #sort-mobile .options-wrapper {
    gap: 0px !important; }
    #sort-mobile .options-wrapper label {
      padding: 0 !important;
      margin: 0 !important;
      border-bottom: 1px solid #E5E5E5; }
      #sort-mobile .options-wrapper label span {
        text-align: center;
        font: normal normal 400 14px/50px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #121212;
        opacity: 1;
        display: block;
        padding: 5px 0 !important; }
      #sort-mobile .options-wrapper label input:checked ~ span,
      #sort-mobile .options-wrapper label input:hover ~ span,
      #sort-mobile .options-wrapper label input:focus ~ span {
        font: normal normal 700 17px/50px "Poppins", sans-serif; }
      #sort-mobile .options-wrapper label .control__indicator {
        opacity: 0; }

#features-slider {
  padding: 30px 0; }
  @media only screen and (max-width: 991.98px) {
    #features-slider {
      padding: 20px 0;
      min-height: 250px; } }
  #features-slider .features-slider-wrapper {
    margin: auto;
    width: 1600px;
    padding-right: 14rem;
    padding-left: 14rem;
    max-width: 100%; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #features-slider .features-slider-wrapper {
        padding-right: 8rem;
        padding-left: 8rem; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #features-slider .features-slider-wrapper {
        padding-right: 6rem;
        padding-left: 6rem; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #features-slider .features-slider-wrapper {
        padding-right: 3rem;
        padding-left: 3rem; } }
    @media only screen and (max-width: 767.98px) {
      #features-slider .features-slider-wrapper {
        padding-right: 1.5rem;
        padding-left: 1.5rem; } }
    #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell {
      width: 25%; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell {
          width: 25%; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell {
          width: 33.33%; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell {
          width: 50%; } }
      @media only screen and (max-width: 767.98px) {
        #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell {
          width: 100%; } }
      #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell:not(:last-of-type) .single-icon {
        border-right: 1px solid #DCDCDC; }
        html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell:not(:last-of-type) .single-icon {
          border-right: 0;
          border-left: 1px solid #DCDCDC;
          letter-spacing: 0; }
      #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon {
        padding: 0 25px;
        display: flex;
        align-items: start;
        justify-content: space-between;
        gap: 20px; }
        #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .icon {
          width: 49px;
          height: 49px; }
          #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .icon img {
            width: 49px;
            height: 49px;
            display: block; }
        #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title {
          text-align: left;
          font: normal normal 600 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          opacity: 1;
          margin: 0 0 7px 0; }
          html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title {
              font-size: 13px;
              line-height: 1.5; } }
          #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title a:hover {
                color: #8fd2ee; } }
          html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .title {
            font-weight: bold;
            letter-spacing: 0; }
        #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .sub-title {
          text-align: left;
          font: normal normal 400 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #333333;
          opacity: 1; }
          html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .sub-title {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .sub-title {
              font-size: 13px;
              line-height: 1.5; } }
          #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .sub-title a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .sub-title a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .sub-title a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .sub-title a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #features-slider .features-slider-wrapper .section-slider .flickitySlider .carousel-cell .single-icon .content .sub-title a:hover {
                color: #8fd2ee; } }
    @media only screen and (min-width: 1200px) {
      #features-slider .features-slider-wrapper .section-slider .flickitySlider .flickity-button {
        display: none; } }
    #features-slider .features-slider-wrapper .section-slider .buttons-row {
      margin: 25px auto 0;
      width: 140px;
      border-radius: 100px;
      background: #2959D3;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media only screen and (min-width: 1200px) {
        #features-slider .features-slider-wrapper .section-slider .buttons-row {
          display: none; } }
      #features-slider .features-slider-wrapper .section-slider .buttons-row .button {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center; }
        html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .buttons-row .button {
          transform: rotateY(180deg);
          letter-spacing: 0; }
      #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination {
        gap: 2px;
        text-align: center;
        font: normal normal 400 14px/2 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1; }
        html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination {
          letter-spacing: 0;
          font-family: "Cairo", sans-serif !important;
          text-align: center;
          letter-spacing: 0; }
        @media only screen and (max-width: 991.98px) {
          #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination {
            font-size: 13px;
            line-height: 1.5; } }
        #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination a {
          font-family: inherit;
          line-height: inherit;
          font-size: inherit;
          font-weight: inherit;
          color: #2959D3;
          display: inline-block;
          position: relative;
          transition: all ease-in-out 0.5s; }
          #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination a:after {
            border-top: 1px solid #8fd2ee;
            content: "";
            display: block;
            height: 0;
            transition: width .3s ease-out;
            width: 0; }
          @media only screen and (min-width: 992px) {
            #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination a:hover:after {
              width: 100%; } }
          html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination a {
            direction: ltr;
            letter-spacing: 0; }
          @media only screen and (min-width: 992px) {
            #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination a:hover {
              color: #8fd2ee; } }
        html[dir="rtl"] #features-slider .features-slider-wrapper .section-slider .buttons-row .pagination {
          flex-direction: row-reverse;
          letter-spacing: 0; }

#products-listing-row {
  display: grid;
  row-gap: 20px;
  column-gap: 20px;
  transition: opacity .3s ease-out;
  position: relative;
  z-index: 2;
  width: 100%; }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #products-listing-row {
      row-gap: 20px;
      column-gap: 20px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #products-listing-row {
      row-gap: 20px;
      column-gap: 20px; } }
  @media only screen and (max-width: 767.98px) {
    #products-listing-row {
      row-gap: 20px;
      column-gap: 15px; } }
  @media only screen and (min-width: 1551px) {
    #products-listing-row.col-3 {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #products-listing-row.col-3 {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #products-listing-row.col-3 {
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #products-listing-row.col-3 {
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (min-width: 1551px) {
    #products-listing-row.col-4 {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #products-listing-row.col-4 {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #products-listing-row.col-4 {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #products-listing-row.col-4 {
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (min-width: 1551px) {
    #products-listing-row.col-5 {
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #products-listing-row.col-5 {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #products-listing-row.col-5 {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #products-listing-row.col-5 {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media only screen and (max-width: 767.98px) {
    #products-listing-row {
      grid-template-columns: 1fr 1fr; } }
  #products-listing-row .single-product {
    padding: 0; }
  #products-listing-row .full-width {
    grid-column: 1 / -1;
    margin: 10vh 0; }
  #products-listing-row .no-result .empty-search {
    max-width: 100%;
    width: 500px;
    margin: auto; }
    #products-listing-row .no-result .empty-search .icon-wrapper {
      margin: 25px auto 10px; }
      #products-listing-row .no-result .empty-search .icon-wrapper svg {
        display: block;
        width: 80px;
        height: auto;
        margin: auto; }
    #products-listing-row .no-result .empty-search .title {
      text-align: center;
      font: normal normal 600 32px/1.3 "Poppins", sans-serif;
      letter-spacing: 0;
      color: #333333;
      margin: 0px 0 20px; }
      html[dir="rtl"] #products-listing-row .no-result .empty-search .title {
        font-family: "Cairo", sans-serif !important;
        letter-spacing: 0;
        text-align: center;
        letter-spacing: 0; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #products-listing-row .no-result .empty-search .title {
          font-size: 29px;
          letter-spacing: 0px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
        #products-listing-row .no-result .empty-search .title {
          font-size: 26px;
          letter-spacing: 0px; } }
      @media only screen and (min-width: 768px) and (max-width: 991.98px) {
        #products-listing-row .no-result .empty-search .title {
          font-size: 24px;
          letter-spacing: 0px; } }
      @media only screen and (max-width: 767.98px) {
        #products-listing-row .no-result .empty-search .title {
          font-size: 21px;
          letter-spacing: 0px; } }
    #products-listing-row .no-result .empty-search .text {
      text-align: center;
      font: normal normal 400 14px/2 "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #333333;
      opacity: 1; }
      html[dir="rtl"] #products-listing-row .no-result .empty-search .text {
        letter-spacing: 0;
        font-family: "Cairo", sans-serif !important;
        text-align: center;
        letter-spacing: 0; }
      @media only screen and (max-width: 991.98px) {
        #products-listing-row .no-result .empty-search .text {
          font-size: 13px;
          line-height: 1.5; } }
      #products-listing-row .no-result .empty-search .text a {
        font-family: inherit;
        line-height: inherit;
        font-size: inherit;
        font-weight: inherit;
        color: #2959D3;
        display: inline-block;
        position: relative;
        transition: all ease-in-out 0.5s; }
        #products-listing-row .no-result .empty-search .text a:after {
          border-top: 1px solid #8fd2ee;
          content: "";
          display: block;
          height: 0;
          transition: width .3s ease-out;
          width: 0; }
        @media only screen and (min-width: 992px) {
          #products-listing-row .no-result .empty-search .text a:hover:after {
            width: 100%; } }
        html[dir="rtl"] #products-listing-row .no-result .empty-search .text a {
          direction: ltr;
          letter-spacing: 0; }
        @media only screen and (min-width: 992px) {
          #products-listing-row .no-result .empty-search .text a:hover {
            color: #8fd2ee; } }

#faq-page .page-title h1 {
  text-align: left;
  font: normal normal 600 32px/1.3 "Poppins", sans-serif;
  letter-spacing: 0;
  color: #333333; }
  html[dir="rtl"] #faq-page .page-title h1 {
    font-family: "Cairo", sans-serif !important;
    letter-spacing: 0;
    text-align: right;
    letter-spacing: 0; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #faq-page .page-title h1 {
      font-size: 29px;
      letter-spacing: 0px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #faq-page .page-title h1 {
      font-size: 26px;
      letter-spacing: 0px; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #faq-page .page-title h1 {
      font-size: 24px;
      letter-spacing: 0px; } }
  @media only screen and (max-width: 767.98px) {
    #faq-page .page-title h1 {
      font-size: 21px;
      letter-spacing: 0px; } }

#faq-page .container .faq-container {
  padding: 25px 15px;
  margin: 20px auto;
  width: 800px;
  max-width: 100%; }
  #faq-page .container .faq-container #faq-accordion {
    margin: 20px auto 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    #faq-page .container .faq-container #faq-accordion .single-faq {
      width: 100%;
      border-bottom: 1px solid #eeeeee; }
      #faq-page .container .faq-container #faq-accordion .single-faq h3 {
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: left;
        cursor: pointer;
        font: normal normal 600 18px/25px "Poppins", sans-serif;
        color: #121212;
        opacity: 1;
        letter-spacing: 0.05em;
        display: flex;
        gap: 5px;
        position: relative;
        justify-content: space-between; }
        html[dir="rtl"] #faq-page .container .faq-container #faq-accordion .single-faq h3 {
          font-family: "Cairo", sans-serif;
          letter-spacing: 0;
          text-align: right;
          letter-spacing: 0; }
        #faq-page .container .faq-container #faq-accordion .single-faq h3 span {
          display: none; }
        #faq-page .container .faq-container #faq-accordion .single-faq h3::after {
          font-family: "Font Awesome 5 Pro";
          font-weight: 300;
          display: block;
          font-size: inherit;
          color: #121212;
          content: "\f078";
          transition: 0.25s ease-in-out; }
        #faq-page .container .faq-container #faq-accordion .single-faq h3.active {
          color: #2959D3; }
          #faq-page .container .faq-container #faq-accordion .single-faq h3.active:after {
            content: "\f077";
            color: #2959D3; }
      #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion {
        border: 0;
        border-bottom: 1px solid #eeeeee;
        padding: 0;
        background: none;
        display: none; }
        #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion ul li,
        #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion p {
          padding: 0 0 20px 0;
          text-align: left;
          font: normal normal 400 14px/2 "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #121212;
          opacity: 1; }
          html[dir="rtl"] #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion ul li, html[dir="rtl"]
          #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion p {
            letter-spacing: 0;
            font-family: "Cairo", sans-serif !important;
            text-align: right;
            letter-spacing: 0; }
          @media only screen and (max-width: 991.98px) {
            #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion ul li,
            #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion p {
              font-size: 13px;
              line-height: 1.5; } }
          #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion ul li a,
          #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion p a {
            font-family: inherit;
            line-height: inherit;
            font-size: inherit;
            font-weight: inherit;
            color: #2959D3;
            display: inline-block;
            position: relative;
            transition: all ease-in-out 0.5s; }
            #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion ul li a:after,
            #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion p a:after {
              border-top: 1px solid #8fd2ee;
              content: "";
              display: block;
              height: 0;
              transition: width .3s ease-out;
              width: 0; }
            @media only screen and (min-width: 992px) {
              #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion ul li a:hover:after,
              #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion p a:hover:after {
                width: 100%; } }
            html[dir="rtl"] #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion ul li a, html[dir="rtl"]
            #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion p a {
              direction: ltr;
              letter-spacing: 0; }
            @media only screen and (min-width: 992px) {
              #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion ul li a:hover,
              #faq-page .container .faq-container #faq-accordion .single-faq .faq-content-accordion p a:hover {
                color: #8fd2ee; } }

#wishlist {
  padding-bottom: 120px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #wishlist {
      padding-bottom: 80px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #wishlist {
      padding-bottom: 70px; } }
  @media only screen and (max-width: 767px) {
    #wishlist {
      padding-bottom: 60px; } }
  #wishlist h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    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: 1199px) {
      #wishlist h2 {
        font-size: 28px;
        margin-bottom: 25px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #wishlist h2 {
        font-size: 24px;
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      #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: 400;
      font-size: 17px;
      letter-spacing: 0;
      line-height: 23px;
      text-align: left;
      color: #626262;
      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: 1199px) {
        #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: 1199px) {
          #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: 1199px) {
          #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: 1199px) {
          #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: 1199px) {
        #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: 1199px) {
          #wishlist table td .product-image {
            width: 150px;
            width: auto !important; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #wishlist table td .product-image {
            width: 250px;
            width: auto !important; } }
        #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: 992px) {
            #wishlist table td .product-image img {
              width: 170px; } }
          @media only screen and (max-width: 767px) {
            #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: 1199px) {
          #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-weight: 400;
          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: 1199px) {
            #wishlist table td .product-name a {
              font-size: 16px;
              line-height: 25px; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #wishlist table td .product-name a {
              font-size: 15px;
              line-height: 25px;
              text-align: center; } }
          @media only screen and (max-width: 767px) {
            #wishlist table td .product-name a {
              font-size: 14px;
              line-height: 27px;
              text-align: center; } }
          #wishlist table td .product-name a:hover {
            color: #8fd2ee; }
      #wishlist table td.product-price {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        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: 1199px) {
          #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: 400;
        font-size: 20px;
        letter-spacing: 0.04em;
        text-align: center;
        color: #999999;
        color: #8fd2ee; }
        @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: 1199px) {
          #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;
          font-family: "Poppins", sans-serif;
          font-weight: 600;
          letter-spacing: 0.06em;
          transition: 0.25s ease-in-out;
          display: inline-block;
          height: 50px;
          line-height: 50px;
          background-color: #4e4e4e;
          color: #fff;
          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: 1199px) {
            #wishlist table td.add-to-cart button {
              width: 160px; } }
          @media only screen and (max-width: 767px) {
            #wishlist table td.add-to-cart button {
              font-size: 14px; } }
          #wishlist table td.add-to-cart button:hover {
            background-color: #8fd2ee; }
          #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: 1199px) {
          #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; } }
          #wishlist table td.remove button:hover i {
            color: #8fd2ee; }
    @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; } }

#about-content {
  margin: 5px auto 35px; }
  @media (min-width: 768px) {
    #about-content {
      padding-bottom: 60px; } }
  #about-content h2,
  #about-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative;
    margin-top: 0px;
    margin-bottom: 25px;
    text-align: left; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #about-content h2,
      #about-content h3 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #about-content h2,
      #about-content h3 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #about-content h2,
      #about-content h3 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #about-content h2,
      #about-content h3 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }
    html[dir="rtl"] #about-content h2, html[dir="rtl"]
    #about-content h3 {
      text-align: right;
      letter-spacing: 0; }
  #about-content p {
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #121212;
    align-self: center;
    text-align: left;
    max-width: 90%; }
    html[dir="rtl"] #about-content p {
      font-family: "Cairo", sans-serif;
      font-weight: 400;
      letter-spacing: 0px;
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #about-content p {
        font-size: 15px;
        line-height: 23px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #about-content p {
        font-size: 14px;
        line-height: 22px; } }
    @media only screen and (max-width: 767px) {
      #about-content p {
        font-size: 13px;
        line-height: 20px; } }
    @media only screen and (max-width: 767px) {
      #about-content p {
        max-width: 100%; } }
    #about-content p:last-child {
      margin-bottom: 0; }
  #about-content .sub {
    margin-left: 5%; }
  #about-content ul {
    text-align: left;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #121212;
    align-self: center;
    max-width: 90%; }
    html[dir="rtl"] #about-content ul {
      font-family: "Cairo", sans-serif;
      font-weight: 400;
      letter-spacing: 0px;
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #about-content ul {
        font-size: 15px;
        line-height: 23px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #about-content ul {
        font-size: 14px;
        line-height: 22px; } }
    @media only screen and (max-width: 767px) {
      #about-content ul {
        font-size: 13px;
        line-height: 20px; } }
    @media only screen and (max-width: 767px) {
      #about-content ul {
        max-width: 100%; } }
    #about-content ul li {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 25px;
      color: #121212;
      align-self: center;
      margin-bottom: 10px;
      text-align: left; }
      html[dir="rtl"] #about-content ul li {
        font-family: "Cairo", sans-serif;
        font-weight: 400;
        letter-spacing: 0px;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #about-content ul li {
          font-size: 15px;
          line-height: 23px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #about-content ul li {
          font-size: 14px;
          line-height: 22px; } }
      @media only screen and (max-width: 767px) {
        #about-content ul li {
          font-size: 13px;
          line-height: 20px; } }
  #about-content .about-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    gap: 50px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #about-content .about-wrapper {
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 40px; } }
    @media only screen and (max-width: 767px) {
      #about-content .about-wrapper {
        margin-bottom: 30px;
        gap: 30px;
        flex-wrap: wrap; } }
    #about-content .about-wrapper:nth-child(even) .image-holder {
      order: 2; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #about-content .about-wrapper:nth-child(even) .image-holder {
          order: 2; } }
      @media only screen and (max-width: 767px) {
        #about-content .about-wrapper:nth-child(even) .image-holder {
          order: 2; } }
    #about-content .about-wrapper .image-holder {
      width: calc(50% - 25px); }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #about-content .about-wrapper .image-holder {
          width: 100%;
          order: 2; } }
      @media only screen and (max-width: 767px) {
        #about-content .about-wrapper .image-holder {
          width: 100%;
          order: 2; } }
      #about-content .about-wrapper .image-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    #about-content .about-wrapper .content-block {
      width: calc(50% - 25px);
      align-self: center; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #about-content .about-wrapper .content-block {
          width: 100%; } }
      @media only screen and (max-width: 767px) {
        #about-content .about-wrapper .content-block {
          width: 100%; } }
  #about-content .policy-page .sectionWrapper {
    margin-bottom: 100px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #about-content .policy-page .sectionWrapper {
        margin-bottom: 40px; } }
    @media only screen and (max-width: 767px) {
      #about-content .policy-page .sectionWrapper {
        margin-bottom: 30px; } }
  #about-content .policy-page a {
    color: #2959D3; }
    #about-content .policy-page a:hover {
      color: #8fd2ee; }

#news {
  margin: 50px auto; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #news {
      margin: 40px auto; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #news {
      margin: 30px auto; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #news {
      margin: 25px auto; } }
  @media only screen and (max-width: 767px) {
    #news {
      margin: 20px auto; } }
  #news h3 {
    text-align: center;
    font: normal normal 300 40px/50px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #a9a373;
    opacity: 1; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #news h3 {
        font-size: 35px;
        line-height: 50px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #news h3 {
        font-size: 30px;
        line-height: 45px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #news h3 {
        font-size: 25px;
        line-height: 40px; } }
    @media only screen and (max-width: 767px) {
      #news h3 {
        font-size: 21px;
        line-height: 35px;
        margin: 0px auto; } }
    #news h3.text-center {
      text-align: center !important; }
  #news .news-slider {
    margin: 15px auto; }
    #news .news-slider .carousel-cell {
      width: calc(50% - 20px);
      padding-right: 20px; }
      html[dir="rtl"] #news .news-slider .carousel-cell {
        padding-left: 20px;
        padding-right: 0px;
        letter-spacing: 0; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #news .news-slider .carousel-cell {
          width: calc(50% - 20px); } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #news .news-slider .carousel-cell {
          width: calc(50% - 20px); } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #news .news-slider .carousel-cell {
          width: calc(90% - 20px); } }
      @media only screen and (max-width: 767px) {
        #news .news-slider .carousel-cell {
          width: calc(90% - 20px); } }
      #news .news-slider .carousel-cell .blogs-item {
        border-bottom: 5px solid transparent;
        margin-bottom: 60px; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #news .news-slider .carousel-cell .blogs-item {
            margin-bottom: 10px; } }
        @media only screen and (max-width: 767px) {
          #news .news-slider .carousel-cell .blogs-item {
            margin-bottom: 10px; } }
        #news .news-slider .carousel-cell .blogs-item .blogs-item-inner {
          -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
          -webkit-transition-property: box-shadow, border-bottom-color;
          transition-property: box-shadow, border-bottom-color;
          -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
          position: relative;
          cursor: pointer;
          display: block;
          border: 1px solid #efefef;
          border-top-left-radius: 36px;
          border-top-right-radius: 36px;
          overflow: hidden; }
          @media only screen and (min-width: 1200px) and (max-width: 1550px) {
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner {
              border-top-left-radius: 30px;
              border-top-right-radius: 30px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner {
              border-top-left-radius: 25px;
              border-top-right-radius: 25px; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner {
              border-top-left-radius: 20px;
              border-top-right-radius: 20px; } }
          @media only screen and (max-width: 767px) {
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner {
              border-top-left-radius: 10px;
              border-top-right-radius: 10px; } }
          @media only screen and (max-width: 767px) {
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner {
              box-shadow: 0px 3px 6px #00000029; } }
          #news .news-slider .carousel-cell .blogs-item .blogs-item-inner figure {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: #fff;
            border-radius: 36px; }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #news .news-slider .carousel-cell .blogs-item .blogs-item-inner figure {
                border-radius: 30px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199px) {
              #news .news-slider .carousel-cell .blogs-item .blogs-item-inner figure {
                border-radius: 25px; } }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              #news .news-slider .carousel-cell .blogs-item .blogs-item-inner figure {
                border-radius: 20px; } }
            @media only screen and (max-width: 767px) {
              #news .news-slider .carousel-cell .blogs-item .blogs-item-inner figure {
                border-radius: 0px; } }
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner figure::before {
              position: absolute;
              top: 0;
              left: -175%;
              z-index: 2;
              display: block;
              content: "";
              width: 50%;
              height: 100%;
              background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
              background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
              -webkit-transform: skewX(-25deg);
              transform: skewX(-25deg); }

@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner figure img {
              width: 100%;
              object-fit: cover;
              transition: all ease-in-out 0.5s; }
              @media only screen and (max-width: 767px) {
                #news .news-slider .carousel-cell .blogs-item .blogs-item-inner figure img {
                  height: 152px; } }
          #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content {
            background-color: #fff;
            max-width: 95%;
            margin: auto;
            padding: 5px 0px 25px;
            display: block;
            text-decoration: none; }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content {
                padding: 7px 0px 0px; } }
            @media only screen and (max-width: 767px) {
              #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content {
                padding: 7px 0px 0px; } }
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header {
              width: 100%;
              display: block; }
              #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .title {
                color: #121212;
                position: relative;
                font-size: 17px;
                font-family: "Poppins", sans-serif;
                font-weight: 600;
                letter-spacing: 0em;
                line-height: 28px;
                transition: all ease-in-out 0.5s;
                text-transform: none;
                overflow: hidden;
                -o-text-overflow: ellipsis;
                text-overflow: ellipsis;
                -webkit-line-clamp: 1;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                margin: 15px 0px 0px; }
                html[dir="rtl"] #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .title {
                  font-family: "Cairo", sans-serif;
                  font-weight: 700;
                  letter-spacing: 0px;
                  text-align: right;
                  letter-spacing: 0; }
                #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .title::after {
                  display: none; }
                @media only screen and (min-width: 1200px) and (max-width: 1550px) {
                  #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .title {
                    font-size: 18px;
                    line-height: 25px;
                    min-height: 50px; } }
                @media only screen and (min-width: 992px) and (max-width: 1199px) {
                  #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .title {
                    font-size: 15px;
                    line-height: 20px; } }
                @media only screen and (min-width: 768px) and (max-width: 992px) {
                  #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .title {
                    font-size: 14px;
                    line-height: 18px;
                    max-width: 100%;
                    margin: 10px auto 5px 0px;
                    min-height: 30px; } }
                @media only screen and (max-width: 767px) {
                  #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .title {
                    font-size: 13px;
                    line-height: 17px;
                    max-width: 100%;
                    margin: 10px auto 5px 0px; } }
              #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert {
                width: max-content;
                margin: 12px 0px 0px;
                padding: 0px 0px;
                max-width: calc(100% - 85px);
                position: relative; }
                @media only screen and (min-width: 768px) and (max-width: 992px) {
                  #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert {
                    margin: 10px 0px 15px; } }
                @media only screen and (max-width: 767px) {
                  #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert {
                    margin: 10px 0px 15px; } }
                #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert .more-arrow {
                  position: absolute;
                  right: -10px;
                  top: 50%;
                  transform: translate(100%, -50%); }
                  html[dir="rtl"] #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert .more-arrow {
                    left: -10px;
                    right: unset;
                    transform: translate(-100%, -50%);
                    letter-spacing: 0; }
                #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert span {
                  font-family: "Poppins", sans-serif;
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 25px;
                  color: #383838;
                  align-self: center;
                  overflow: hidden;
                  -o-text-overflow: ellipsis;
                  text-overflow: ellipsis;
                  -webkit-line-clamp: 1;
                  display: -webkit-box;
                  -webkit-box-orient: vertical; }
                  html[dir="rtl"] #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert span {
                    font-family: "Cairo", sans-serif;
                    font-weight: 700;
                    letter-spacing: 0px;
                    text-align: right;
                    letter-spacing: 0; }
                  @media only screen and (min-width: 992px) and (max-width: 1199px) {
                    #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert span {
                      font-size: 15px;
                      line-height: 20px; } }
                  @media only screen and (min-width: 768px) and (max-width: 992px) {
                    #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert span {
                      font-size: 14px;
                      line-height: 16px; } }
                  @media only screen and (max-width: 767px) {
                    #news .news-slider .carousel-cell .blogs-item .blogs-item-inner .blogs-item-content .blogs-header .expert span {
                      font-size: 13px;
                      line-height: 14px; } }
          #news .news-slider .carousel-cell .blogs-item .blogs-item-inner:hover figure::before {
            -webkit-animation: shine 0.75s;
            animation: shine 0.75s; }
          #news .news-slider .carousel-cell .blogs-item .blogs-item-inner:hover figure img {
            transform: scale(1.1);
            transition: all ease-in-out 0.5s; }
          #news .news-slider .carousel-cell .blogs-item .blogs-item-inner:hover .title {
            color: #8fd2ee;
            transition: all ease-in-out 0.5s; }
          #news .news-slider .carousel-cell .blogs-item .blogs-item-inner:hover .blogs-item-content {
            transition: all ease-in-out 0.5s; }
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner:hover .blogs-item-content .title {
              color: #8fd2ee !important;
              transition: all ease-in-out 0.5s; }
            #news .news-slider .carousel-cell .blogs-item .blogs-item-inner:hover .blogs-item-content .more-arrow svg #box {
              fill: #8fd2ee;
              transition: all ease-in-out 0.5s; }

#contact-page {
  padding-top: 20px;
  font-size: 16px; }
  @media screen and (min-width: 1025px) and (max-height: 767px) {
    #contact-page {
      padding-top: 15px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #contact-page {
      padding-top: 20px;
      font-size: 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #contact-page {
      padding-top: 20px;
      font-size: 14px; } }
  @media only screen and (max-width: 767px) {
    #contact-page {
      padding-top: 15px;
      font-size: 14px; } }
  #contact-page .contact-info .contact-content {
    margin-bottom: 70px; }
    #contact-page .contact-info .contact-content h3 {
      font-family: "Poppins", sans-serif;
      font-size: 28px;
      letter-spacing: 0em;
      line-height: 50px;
      font-weight: 600;
      text-align: center;
      color: #292929;
      position: relative;
      margin-top: 0px;
      margin-bottom: 25px;
      text-align: left; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #contact-page .contact-info .contact-content h3 {
          font-size: 22px;
          line-height: 45px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #contact-page .contact-info .contact-content h3 {
          font-size: 20px;
          line-height: 40px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #contact-page .contact-info .contact-content h3 {
          margin-bottom: 0px;
          font-size: 18px;
          line-height: 35px;
          margin-bottom: 10px;
          padding-left: 0%; } }
      @media only screen and (max-width: 767px) {
        #contact-page .contact-info .contact-content h3 {
          font-size: 18px;
          line-height: 30px;
          margin-bottom: 15px; } }
      html[dir="rtl"] #contact-page .contact-info .contact-content h3 {
        text-align: right;
        letter-spacing: 0; }
    #contact-page .contact-info .contact-content p {
      margin-bottom: 15px;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 25px;
      color: #121212;
      align-self: center; }
      html[dir="rtl"] #contact-page .contact-info .contact-content p {
        font-family: "Cairo", sans-serif;
        font-weight: 400;
        letter-spacing: 0px;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #contact-page .contact-info .contact-content p {
          font-size: 15px;
          line-height: 23px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #contact-page .contact-info .contact-content p {
          font-size: 14px;
          line-height: 22px; } }
      @media only screen and (max-width: 767px) {
        #contact-page .contact-info .contact-content p {
          font-size: 13px;
          line-height: 20px; } }
      #contact-page .contact-info .contact-content p:last-child {
        margin-bottom: 0; }
      #contact-page .contact-info .contact-content p strong {
        display: block;
        text-transform: capitalize; }
      #contact-page .contact-info .contact-content p a {
        color: inherit;
        direction: ltr;
        display: inline-block; }
        #contact-page .contact-info .contact-content p a:hover {
          color: #8fd2ee;
          text-decoration: none; }
    #contact-page .contact-info .contact-content h4 {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 1.42em;
      letter-spacing: 0.06em;
      color: #4c4c4c;
      margin-top: 0px;
      margin-bottom: 25px; }
    #contact-page .contact-info .contact-content address {
      font-style: normal;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
      font-size: 16px !important;
      letter-spacing: 0.02em;
      line-height: 25px !important;
      text-align: left !important;
      color: #4c4c4c !important; }
    #contact-page .contact-info .contact-content a.directions {
      margin-top: 20px;
      display: inline-block;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 17px;
      letter-spacing: 0.04em;
      text-align: left;
      color: #4c4c4c !important;
      border-bottom: 1px solid #4c4c4c;
      padding-bottom: 3px; }
      #contact-page .contact-info .contact-content a.directions:hover {
        color: #8fd2ee;
        border-color: #8fd2ee; }
  #contact-page .contact-info .contact-socials {
    margin-top: 35px; }
    #contact-page .contact-info .contact-socials h4 {
      font-size: 1.313em;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      color: #343538;
      margin-bottom: 10px; }
    #contact-page .contact-info .contact-socials .share {
      display: inline-block;
      vertical-align: middle;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 17px;
      color: #999999; }
      #contact-page .contact-info .contact-socials .share li {
        display: inline-block;
        vertical-align: middle;
        margin-right: 20px; }
        #contact-page .contact-info .contact-socials .share li:last-child {
          margin-right: 0; }
        #contact-page .contact-info .contact-socials .share li a:hover i {
          color: #8fd2ee; }
        #contact-page .contact-info .contact-socials .share li a i {
          font-size: 26px;
          color: #ababab; }
  #contact-page .contact-info .more-block h4 {
    font-size: 1.313em;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #343538;
    letter-spacing: 0.06em;
    margin-bottom: 25px;
    margin-top: 80px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #contact-page .contact-info .more-block h4 {
        margin-top: 70px; } }
    @media only screen and (max-width: 767px) {
      #contact-page .contact-info .more-block h4 {
        margin-top: 50px; } }
  #contact-page .contact-info .more-block ul li a {
    display: block;
    padding-top: 7px;
    padding-bottom: 7px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 16px !important;
    letter-spacing: 0.02em;
    line-height: 25px !important;
    text-align: left !important;
    color: #4c4c4c !important; }
    #contact-page .contact-info .more-block ul li a:hover {
      text-decoration: none;
      color: #8fd2ee; }
  #contact-page .contact-form {
    margin-bottom: 75px; }
    @media only screen and (max-width: 767px) {
      #contact-page .contact-form {
        margin-top: 40px; } }
    #contact-page .contact-form h6 {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 1.42em;
      letter-spacing: 0.06em;
      color: #4c4c4c;
      margin-top: 0px;
      margin-bottom: 25px; }
      #contact-page .contact-form h6:nth-of-type(even) {
        margin-top: 45px; }
        @media only screen and (max-width: 767px) {
          #contact-page .contact-form h6:nth-of-type(even) {
            margin-top: 30px; } }
    #contact-page .contact-form .input-wrapper {
      position: relative;
      margin-bottom: 20px;
      padding-bottom: 0px; }
      #contact-page .contact-form .input-wrapper.has-error {
        padding-bottom: 10px; }
      #contact-page .contact-form .input-wrapper .text-danger {
        position: absolute;
        bottom: -12px;
        font-size: 12px;
        font-family: "Poppins", sans-serif;
        font-weight: 500; }
    #contact-page .contact-form .bootstrap-select {
      width: 100%;
      -webkit-appearance: none; }
      #contact-page .contact-form .bootstrap-select .btn {
        width: 100%;
        height: 55px;
        background: #fff;
        border: 1px solid #e1e1e1;
        padding-left: 30px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 1em;
        margin-bottom: 15px;
        -webkit-appearance: none;
        border-radius: 0; }
        #contact-page .contact-form .bootstrap-select .btn:focus {
          outline: none !important; }
    #contact-page .contact-form label {
      display: block;
      text-align: left;
      font: normal normal 500 14px/21px "Poppins", sans-serif;
      letter-spacing: 0.28px;
      color: #121212;
      opacity: 1;
      margin-bottom: 5px; }
      html[dir="rtl"] #contact-page .contact-form label {
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #contact-page .contact-form label {
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #contact-page .contact-form label {
          font-size: 12px; } }
    #contact-page .contact-form input[type="text"],
    #contact-page .contact-form input[type="tel"],
    #contact-page .contact-form input[type="email"],
    #contact-page .contact-form input[type="password"] {
      -webkit-appearance: none;
      width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      padding: 0 20px;
      text-align: left;
      font: normal normal 400 15px/28px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #121212;
      text-transform: none;
      opacity: 1;
      border-radius: 0px !important;
      border: 1px solid #f1f1f1;
      background: white !important;
      border-radius: 6px !important;
      box-shadow: none;
      outline: none; }
      html[dir="rtl"] #contact-page .contact-form input[type="text"], html[dir="rtl"]
      #contact-page .contact-form input[type="tel"], html[dir="rtl"]
      #contact-page .contact-form input[type="email"], html[dir="rtl"]
      #contact-page .contact-form input[type="password"] {
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      #contact-page .contact-form input[type="text"]:focus,
      #contact-page .contact-form input[type="tel"]:focus,
      #contact-page .contact-form input[type="email"]:focus,
      #contact-page .contact-form input[type="password"]:focus {
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
      #contact-page .contact-form input[type="text"].placeholder,
      #contact-page .contact-form input[type="tel"].placeholder,
      #contact-page .contact-form input[type="email"].placeholder,
      #contact-page .contact-form input[type="password"].placeholder {
        color: #888888; }
      #contact-page .contact-form input[type="text"]:-moz-placeholder,
      #contact-page .contact-form input[type="tel"]:-moz-placeholder,
      #contact-page .contact-form input[type="email"]:-moz-placeholder,
      #contact-page .contact-form input[type="password"]:-moz-placeholder {
        color: #888888; }
      #contact-page .contact-form input[type="text"]::-moz-placeholder,
      #contact-page .contact-form input[type="tel"]::-moz-placeholder,
      #contact-page .contact-form input[type="email"]::-moz-placeholder,
      #contact-page .contact-form input[type="password"]::-moz-placeholder {
        color: #888888; }
      #contact-page .contact-form input[type="text"]:-ms-input-placeholder,
      #contact-page .contact-form input[type="tel"]:-ms-input-placeholder,
      #contact-page .contact-form input[type="email"]:-ms-input-placeholder,
      #contact-page .contact-form input[type="password"]:-ms-input-placeholder {
        color: #888888; }
      #contact-page .contact-form input[type="text"]::-webkit-input-placeholder,
      #contact-page .contact-form input[type="tel"]::-webkit-input-placeholder,
      #contact-page .contact-form input[type="email"]::-webkit-input-placeholder,
      #contact-page .contact-form input[type="password"]::-webkit-input-placeholder {
        color: #888888; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #contact-page .contact-form input[type="text"],
        #contact-page .contact-form input[type="tel"],
        #contact-page .contact-form input[type="email"],
        #contact-page .contact-form input[type="password"] {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #contact-page .contact-form input[type="text"],
        #contact-page .contact-form input[type="tel"],
        #contact-page .contact-form input[type="email"],
        #contact-page .contact-form input[type="password"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #contact-page .contact-form input[type="text"],
        #contact-page .contact-form input[type="tel"],
        #contact-page .contact-form input[type="email"],
        #contact-page .contact-form input[type="password"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px;
          padding: 0px 15px; } }
      @media only screen and (max-width: 767px) {
        #contact-page .contact-form input[type="text"],
        #contact-page .contact-form input[type="tel"],
        #contact-page .contact-form input[type="email"],
        #contact-page .contact-form input[type="password"] {
          height: 50px;
          line-height: 50px;
          font-size: 12px;
          padding: 0px 15px; } }
    #contact-page .contact-form textarea {
      -webkit-appearance: none;
      width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      padding: 0 20px;
      text-align: left;
      font: normal normal 400 15px/28px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #121212;
      text-transform: none;
      opacity: 1;
      border-radius: 0px !important;
      border: 1px solid #f1f1f1;
      background: white !important;
      border-radius: 6px !important;
      box-shadow: none;
      outline: none;
      height: 200px !important; }
      html[dir="rtl"] #contact-page .contact-form textarea {
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      #contact-page .contact-form textarea:focus {
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
      #contact-page .contact-form textarea.placeholder {
        color: #888888; }
      #contact-page .contact-form textarea:-moz-placeholder {
        color: #888888; }
      #contact-page .contact-form textarea::-moz-placeholder {
        color: #888888; }
      #contact-page .contact-form textarea:-ms-input-placeholder {
        color: #888888; }
      #contact-page .contact-form textarea::-webkit-input-placeholder {
        color: #888888; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #contact-page .contact-form textarea {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #contact-page .contact-form textarea {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #contact-page .contact-form textarea {
          height: 50px;
          line-height: 50px;
          font-size: 13px;
          padding: 0px 15px; } }
      @media only screen and (max-width: 767px) {
        #contact-page .contact-form textarea {
          height: 50px;
          line-height: 50px;
          font-size: 12px;
          padding: 0px 15px; } }
    #contact-page .contact-form button[type="submit"] {
      font: normal normal 500 16px/55px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #ffffff;
      opacity: 1;
      transition: 0.25s ease-in-out;
      text-align: center;
      width: 257px;
      max-width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      background-color: #2959D3;
      text-transform: none;
      border-radius: 17px;
      padding: 0px;
      border: none;
      margin-top: 20px; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #contact-page .contact-form button[type="submit"] {
          height: 50px;
          line-height: 50px;
          font-size: 15px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #contact-page .contact-form button[type="submit"] {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #contact-page .contact-form button[type="submit"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #contact-page .contact-form button[type="submit"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      #contact-page .contact-form button[type="submit"]:hover {
        background: #8fd2ee;
        text-decoration: none; }

.iframe-wrapper {
  margin-top: 50px;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Change if needed */ }
  .iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0; }

.contact-page-header {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 2.62em;
  padding-bottom: 35px;
  letter-spacing: 0.06em;
  color: #4c4c4c; }
  @media screen and (min-width: 1025px) and (max-height: 767px) {
    .contact-page-header {
      padding-top: 70px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-page-header {
      padding-top: 70px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .contact-page-header {
      padding-top: 45px;
      font-size: 30px;
      padding-bottom: 30px; } }
  @media only screen and (max-width: 767px) {
    .contact-page-header {
      padding-top: 35px;
      font-size: 25px;
      padding-bottom: 20px; } }

#account-intro {
  font-size: 16px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #account-intro {
      font-size: 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #account-intro {
      font-size: 15px; } }
  @media only screen and (max-width: 767px) {
    #account-intro {
      padding-top: 30px; } }
  #account-intro h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative;
    text-align: left; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #account-intro h1 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-intro h1 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-intro h1 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #account-intro h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }

/*================================================
                registe and login         
================================================*/
#account-login {
  margin: 0px auto 150px; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #account-login {
      margin-bottom: 120; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #account-login {
      margin-bottom: 90px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #account-login {
      margin-bottom: 60px; } }
  @media only screen and (max-width: 767px) {
    #account-login {
      margin-bottom: 30px; } }
  #account-login h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative;
    margin: 15px 0px;
    text-align: left; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #account-login h1 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login h1 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login h1 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #account-login h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }
    html[dir="rtl"] #account-login h1 {
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login h1 {
        margin-bottom: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login h1 {
        margin-bottom: 15px; } }
    @media only screen and (max-width: 767px) {
      #account-login h1 {
        margin-bottom: 10px; } }
  @media only screen and (max-width: 767px) {
    #account-login .login-block {
      margin-bottom: 50px; } }
  #account-login .login-block label {
    display: block;
    text-align: left;
    font: normal normal 500 14px/21px "Poppins", sans-serif;
    letter-spacing: 0.28px;
    color: #121212;
    opacity: 1;
    margin-bottom: 5px;
    margin-top: 30px; }
    html[dir="rtl"] #account-login .login-block label {
      font-family: "Cairo", sans-serif !important;
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block label {
        font-size: 13px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block label {
        font-size: 12px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block label {
        margin-top: 30px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block label {
        margin-top: 20px; } }
  #account-login .login-block input[type="text"],
  #account-login .login-block input[type="tel"],
  #account-login .login-block input[type="email"],
  #account-login .login-block input[type="password"] {
    -webkit-appearance: none;
    width: 100%;
    display: block;
    height: 55px;
    line-height: 55px;
    padding: 0 20px;
    text-align: left;
    font: normal normal 400 15px/28px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #121212;
    text-transform: none;
    opacity: 1;
    border-radius: 0px !important;
    border: 1px solid #f1f1f1;
    background: white !important;
    border-radius: 6px !important;
    box-shadow: none;
    outline: none; }
    html[dir="rtl"] #account-login .login-block input[type="text"], html[dir="rtl"]
    #account-login .login-block input[type="tel"], html[dir="rtl"]
    #account-login .login-block input[type="email"], html[dir="rtl"]
    #account-login .login-block input[type="password"] {
      font-family: "Cairo", sans-serif !important;
      text-align: right;
      letter-spacing: 0; }
    #account-login .login-block input[type="text"]:focus,
    #account-login .login-block input[type="tel"]:focus,
    #account-login .login-block input[type="email"]:focus,
    #account-login .login-block input[type="password"]:focus {
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
    #account-login .login-block input[type="text"].placeholder,
    #account-login .login-block input[type="tel"].placeholder,
    #account-login .login-block input[type="email"].placeholder,
    #account-login .login-block input[type="password"].placeholder {
      color: #888888; }
    #account-login .login-block input[type="text"]:-moz-placeholder,
    #account-login .login-block input[type="tel"]:-moz-placeholder,
    #account-login .login-block input[type="email"]:-moz-placeholder,
    #account-login .login-block input[type="password"]:-moz-placeholder {
      color: #888888; }
    #account-login .login-block input[type="text"]::-moz-placeholder,
    #account-login .login-block input[type="tel"]::-moz-placeholder,
    #account-login .login-block input[type="email"]::-moz-placeholder,
    #account-login .login-block input[type="password"]::-moz-placeholder {
      color: #888888; }
    #account-login .login-block input[type="text"]:-ms-input-placeholder,
    #account-login .login-block input[type="tel"]:-ms-input-placeholder,
    #account-login .login-block input[type="email"]:-ms-input-placeholder,
    #account-login .login-block input[type="password"]:-ms-input-placeholder {
      color: #888888; }
    #account-login .login-block input[type="text"]::-webkit-input-placeholder,
    #account-login .login-block input[type="tel"]::-webkit-input-placeholder,
    #account-login .login-block input[type="email"]::-webkit-input-placeholder,
    #account-login .login-block input[type="password"]::-webkit-input-placeholder {
      color: #888888; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #account-login .login-block input[type="text"],
      #account-login .login-block input[type="tel"],
      #account-login .login-block input[type="email"],
      #account-login .login-block input[type="password"] {
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login .login-block input[type="text"],
      #account-login .login-block input[type="tel"],
      #account-login .login-block input[type="email"],
      #account-login .login-block input[type="password"] {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block input[type="text"],
      #account-login .login-block input[type="tel"],
      #account-login .login-block input[type="email"],
      #account-login .login-block input[type="password"] {
        height: 50px;
        line-height: 50px;
        font-size: 13px;
        padding: 0px 15px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block input[type="text"],
      #account-login .login-block input[type="tel"],
      #account-login .login-block input[type="email"],
      #account-login .login-block input[type="password"] {
        height: 50px;
        line-height: 50px;
        font-size: 12px;
        padding: 0px 15px; } }
  #account-login .login-block footer {
    padding-top: 7px;
    padding-bottom: 0px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block footer {
        padding-top: 20px;
        padding-bottom: 0px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block footer {
        padding-top: 5px;
        padding-bottom: 5px; } }
    #account-login .login-block footer .btn-forget {
      display: block;
      text-align: right;
      font: normal normal 500 14px/21px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #2d2f3c;
      opacity: 1;
      cursor: pointer; }
      #account-login .login-block footer .btn-forget:hover {
        text-decoration: none;
        color: #8fd2ee; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #account-login .login-block footer .btn-forget {
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #account-login .login-block footer .btn-forget {
          margin-bottom: 5px;
          font-size: 12px; } }
  #account-login .login-block input[type="submit"] {
    font: normal normal 500 16px/55px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
    transition: 0.25s ease-in-out;
    text-align: center;
    width: 257px;
    max-width: 100%;
    display: block;
    height: 55px;
    line-height: 55px;
    background-color: #2959D3;
    text-transform: none;
    border-radius: 17px;
    padding: 0px;
    border: none;
    border: none; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #account-login .login-block input[type="submit"] {
        height: 50px;
        line-height: 50px;
        font-size: 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login .login-block input[type="submit"] {
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block input[type="submit"] {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block input[type="submit"] {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    #account-login .login-block input[type="submit"]:hover {
      background: #8fd2ee;
      text-decoration: none; }
  #account-login .login-block h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: left; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #account-login .login-block h1 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login .login-block h1 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block h1 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login .login-block h1 {
        margin-bottom: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block h1 {
        margin-bottom: 15px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block h1 {
        margin-bottom: 10px; } }
  #account-login .login-block p {
    margin-bottom: 15px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: left;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 30px;
    color: #413f47;
    margin-left: auto;
    margin-right: auto; }
    html[dir="rtl"] #account-login .login-block p {
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #account-login .login-block p {
        font-size: 14px;
        line-height: 28px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login .login-block p {
        font-size: 14px;
        line-height: 26px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block p {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 20px; } }
  #account-login .login-block button {
    margin-top: 20px;
    font: normal normal 500 16px/55px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
    transition: 0.25s ease-in-out;
    text-align: center;
    width: 257px;
    max-width: 100%;
    display: block;
    height: 55px;
    line-height: 55px;
    background-color: #2959D3;
    text-transform: none;
    border-radius: 17px;
    padding: 0px;
    border: none; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #account-login .login-block button {
        height: 50px;
        line-height: 50px;
        font-size: 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login .login-block button {
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block button {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block button {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    #account-login .login-block button:hover {
      background: #8fd2ee;
      text-decoration: none; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block button {
        margin: auto;
        display: block; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block button {
        margin: auto;
        display: block; } }
  #account-login .login-block.forgot-password h4 {
    margin-bottom: 25px; }
  #account-login .login-block.forgot-password input[type="email"] {
    -webkit-appearance: none;
    width: 100%;
    display: block;
    height: 55px;
    line-height: 55px;
    padding: 0 20px;
    text-align: left;
    font: normal normal 400 15px/28px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #121212;
    text-transform: none;
    opacity: 1;
    border-radius: 0px !important;
    border: 1px solid #f1f1f1;
    background: white !important;
    border-radius: 6px !important;
    box-shadow: none;
    outline: none;
    margin-bottom: 25px; }
    html[dir="rtl"] #account-login .login-block.forgot-password input[type="email"] {
      font-family: "Cairo", sans-serif !important;
      text-align: right;
      letter-spacing: 0; }
    #account-login .login-block.forgot-password input[type="email"]:focus {
      box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
    #account-login .login-block.forgot-password input[type="email"].placeholder {
      color: #888888; }
    #account-login .login-block.forgot-password input[type="email"]:-moz-placeholder {
      color: #888888; }
    #account-login .login-block.forgot-password input[type="email"]::-moz-placeholder {
      color: #888888; }
    #account-login .login-block.forgot-password input[type="email"]:-ms-input-placeholder {
      color: #888888; }
    #account-login .login-block.forgot-password input[type="email"]::-webkit-input-placeholder {
      color: #888888; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #account-login .login-block.forgot-password input[type="email"] {
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #account-login .login-block.forgot-password input[type="email"] {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #account-login .login-block.forgot-password input[type="email"] {
        height: 50px;
        line-height: 50px;
        font-size: 13px;
        padding: 0px 15px; } }
    @media only screen and (max-width: 767px) {
      #account-login .login-block.forgot-password input[type="email"] {
        height: 50px;
        line-height: 50px;
        font-size: 12px;
        padding: 0px 15px; } }

#dashboard-intro {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #4c4c4c; }
  @media screen and (min-width: 1025px) and (max-height: 767px) {
    #dashboard-intro {
      padding-top: 60px;
      padding-bottom: 60px;
      font-size: 15px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #dashboard-intro {
      padding-top: 60px;
      padding-bottom: 60px;
      font-size: 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #dashboard-intro {
      padding-top: 60px;
      padding-bottom: 60px;
      font-size: 14px; } }
  @media only screen and (max-width: 767px) {
    #dashboard-intro {
      padding-top: 50px;
      padding-bottom: 50px; } }
  #dashboard-intro.small-header {
    padding-bottom: 20px;
    padding-top: 20px; }
    @media screen and (min-width: 1025px) and (max-height: 767px) {
      #dashboard-intro.small-header {
        padding-bottom: 20px;
        padding-top: 20px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-intro.small-header {
        padding-bottom: 20px;
        padding-top: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-intro.small-header {
        padding-bottom: 20px;
        padding-top: 20px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-intro.small-header {
        padding-bottom: 20px;
        padding-top: 20px; } }
  #dashboard-intro h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative;
    margin-bottom: 0px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #dashboard-intro h1 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-intro h1 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-intro h1 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #dashboard-intro h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }

#dashboard-page {
  line-height: 29px;
  font-size: 16px;
  padding-bottom: 80px;
  margin-top: 10px; }
  #dashboard-page.register {
    margin-top: 0px !important; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #dashboard-page {
      padding-bottom: 70px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #dashboard-page {
      padding-bottom: 60px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #dashboard-page {
      padding-bottom: 45px; } }
  @media only screen and (max-width: 767px) {
    #dashboard-page {
      padding-bottom: 40px; } }
  #dashboard-page h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative;
    margin-bottom: 25px;
    margin-top: 15px;
    text-align: left; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #dashboard-page h1 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page h1 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page h1 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page h1 {
        margin-bottom: 25px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page h1 {
        margin-bottom: 20px; } }
  #dashboard-page .taa {
    margin-bottom: 0px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    text-align: left;
    font-weight: 300;
    font-size: 17px;
    letter-spacing: 0.01em;
    line-height: 30px;
    font-weight: 300;
    color: #372718;
    align-self: center;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #dashboard-page .taa {
        font-size: 16px;
        line-height: 22px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .taa {
        font-size: 15px;
        line-height: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .taa {
        font-size: 14px;
        line-height: 24px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .taa {
        font-size: 13px;
        line-height: 22px; } }
    #dashboard-page .taa a {
      color: #2959D3;
      font-family: "Poppins", sans-serif;
      font-weight: 500; }
      #dashboard-page .taa a:hover {
        color: #8fd2ee; }
  #dashboard-page .alert-block {
    margin-bottom: 35px;
    position: relative;
    border: 2px solid rgba(112, 112, 112, 0.1); }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .alert-block {
        margin-bottom: 25px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .alert-block {
        margin-bottom: 25px;
        border-color: transparent; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .alert-block {
        margin-bottom: 20px;
        border-color: transparent; } }
    #dashboard-page .alert-block .alert-ico {
      width: 90px;
      position: absolute;
      height: 100%; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .alert-block .alert-ico {
          width: 40px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .alert-block .alert-ico {
          width: 40px; } }
      #dashboard-page .alert-block .alert-ico i {
        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%);
        font-size: 25px;
        color: #73c74a;
        top: 50%; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .alert-block .alert-ico i {
            font-size: 20px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .alert-block .alert-ico i {
            font-size: 20px; } }
    #dashboard-page .alert-block i {
      position: absolute; }
    #dashboard-page .alert-block .alert-content {
      margin-left: 90px;
      border-left: 2px solid rgba(112, 112, 112, 0.1);
      padding: 15px 25px; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .alert-block .alert-content {
          margin-left: 40px;
          border-color: transparent;
          padding: 15px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .alert-block .alert-content {
          margin-left: 40px;
          border-color: transparent;
          padding: 15px; } }
      #dashboard-page .alert-block .alert-content p {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0.01em;
        line-height: 30px;
        color: #414141;
        font-style: normal;
        text-decoration: none; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #dashboard-page .alert-block .alert-content p {
            font-size: 15px;
            line-height: 28px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #dashboard-page .alert-block .alert-content p {
            font-size: 14px;
            line-height: 24px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .alert-block .alert-content p {
            font-size: 13px;
            line-height: 22px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .alert-block .alert-content p {
            font-size: 12px;
            line-height: 20px; }
            #dashboard-page .alert-block .alert-content p a {
              color: #414141; }
              #dashboard-page .alert-block .alert-content p a:hover {
                color: #8fd2ee; } }
  #dashboard-page .dash-sidebar {
    background: #f8f8f8;
    padding: 25px 15px;
    margin-right: 50px;
    max-width: 300px;
    width: 300px;
    border-radius: 6px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #dashboard-page .dash-sidebar {
        padding: 20px 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dash-sidebar {
        margin-right: 0px;
        padding: 20px;
        max-width: 270px;
        width: 270px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dash-sidebar {
        margin-right: 0px;
        padding: 15px;
        max-width: 100%;
        width: 100%; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dash-sidebar {
        margin-right: 0px;
        padding: 15px;
        margin-top: 15px;
        max-width: 100%;
        width: 100%; } }
    #dashboard-page .dash-sidebar ul li a {
      display: block;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      color: #121212;
      font-size: 16px;
      padding: 12px 15px;
      position: relative;
      margin-top: 7px;
      margin-bottom: 7px;
      border: 2px solid transparent;
      border-radius: 6px; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #dashboard-page .dash-sidebar ul li a {
          font-size: 15px;
          padding: 10px 15px;
          margin: 5px 0px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #dashboard-page .dash-sidebar ul li a {
          margin: 5px 0px;
          padding: 10px 15px;
          font-size: 14px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dash-sidebar ul li a {
          padding: 7px 10px;
          margin: 3px 0px;
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dash-sidebar ul li a {
          padding: 7px 10px;
          margin: 2px 0px;
          font-size: 12px; } }
      #dashboard-page .dash-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 6 Free";
        font-weight: bold;
        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; }
      #dashboard-page .dash-sidebar ul li a:hover {
        text-decoration: none;
        border-color: #2959D3;
        color: #2959D3; }
        #dashboard-page .dash-sidebar ul li a:hover:after {
          opacity: 1; }
    #dashboard-page .dash-sidebar ul li.active a {
      border-color: #2959D3;
      color: #2959D3; }
      #dashboard-page .dash-sidebar ul li.active a:after {
        opacity: 1; }
  #dashboard-page .dashboard-content .account-form {
    padding-top: 0px; }
    #dashboard-page .dashboard-content .account-form header {
      margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .account-form {
        padding-bottom: 50px; } }
    #dashboard-page .dashboard-content .account-form .row:first-of-type label {
      display: block;
      text-align: left;
      font: normal normal 500 14px/21px "Poppins", sans-serif;
      letter-spacing: 0.28px;
      color: #121212;
      opacity: 1;
      margin-bottom: 5px; }
      html[dir="rtl"] #dashboard-page .dashboard-content .account-form .row:first-of-type label {
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .account-form .row:first-of-type label {
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .account-form .row:first-of-type label {
          font-size: 12px; } }
      @media only screen and (min-width: 1551px) {
        #dashboard-page .dashboard-content .account-form .row:first-of-type label {
          margin-top: 0px; } }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #dashboard-page .dashboard-content .account-form .row:first-of-type label {
          margin-top: 0px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #dashboard-page .dashboard-content .account-form .row:first-of-type label {
          margin-top: 0px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .account-form .row:first-of-type .col-md-6:first-of-type label {
        margin-top: 0px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .account-form .row:first-of-type .col-md-6:first-of-type label {
        margin-top: 0px; } }
    #dashboard-page .dashboard-content .account-form .input-group.date {
      position: relative; }
      #dashboard-page .dashboard-content .account-form .input-group.date .input-group-btn {
        top: 0;
        position: absolute;
        right: 0px; }
        #dashboard-page .dashboard-content .account-form .input-group.date .input-group-btn .btn {
          height: 55px;
          line-height: 55px;
          background: #fff;
          border: 0;
          padding: 0;
          border-radius: 0;
          width: 55px;
          border: 1px solid #e1e1e1; }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #dashboard-page .dashboard-content .account-form .input-group.date .input-group-btn .btn {
              height: 60px;
              line-height: 60px;
              width: 60px; } }
          @media only screen and (max-width: 767px) {
            #dashboard-page .dashboard-content .account-form .input-group.date .input-group-btn .btn {
              height: 56px;
              line-height: 56px;
              width: 56px; } }
    #dashboard-page .dashboard-content .account-form h6 {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 1.375em;
      letter-spacing: 0.01em;
      line-height: 1.4;
      color: #343538;
      margin-bottom: 35px; }
    #dashboard-page .dashboard-content .account-form label {
      display: block;
      text-align: left;
      font: normal normal 500 14px/21px "Poppins", sans-serif;
      letter-spacing: 0.28px;
      color: #121212;
      opacity: 1;
      margin-bottom: 5px;
      margin-top: 20px; }
      html[dir="rtl"] #dashboard-page .dashboard-content .account-form label {
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .account-form label {
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .account-form label {
          font-size: 12px; } }
    #dashboard-page .dashboard-content .account-form .reg-agree {
      margin-top: 20px; }
      #dashboard-page .dashboard-content .account-form .reg-agree label {
        display: block;
        text-align: left;
        font: normal normal 500 14px/21px "Poppins", sans-serif;
        letter-spacing: 0.28px;
        color: #121212;
        opacity: 1;
        margin-bottom: 5px; }
        html[dir="rtl"] #dashboard-page .dashboard-content .account-form .reg-agree label {
          font-family: "Cairo", sans-serif !important;
          text-align: right;
          letter-spacing: 0; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .account-form .reg-agree label {
            font-size: 13px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .account-form .reg-agree label {
            font-size: 12px; } }
      #dashboard-page .dashboard-content .account-form .reg-agree a {
        display: inline-block !important;
        text-decoration: underline;
        color: #000;
        z-index: 99;
        position: relative; }
        #dashboard-page .dashboard-content .account-form .reg-agree a b {
          font-weight: 300; }
    #dashboard-page .dashboard-content .account-form .reg-agree button[type="submit"] {
      display: block !important;
      margin-top: 35px; }
    #dashboard-page .dashboard-content .account-form p {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 1em;
      letter-spacing: 0.01em;
      line-height: 1.8;
      color: #414141;
      font-style: normal; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .account-form p {
          font-size: 0.925em !important; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .account-form p {
          font-size: 0.925em !important; } }
      #dashboard-page .dashboard-content .account-form p a {
        color: #414141; }
        #dashboard-page .dashboard-content .account-form p a:hover {
          color: #8fd2ee; }
    #dashboard-page .dashboard-content .account-form input[type="text"],
    #dashboard-page .dashboard-content .account-form input[type="tel"],
    #dashboard-page .dashboard-content .account-form input[type="email"],
    #dashboard-page .dashboard-content .account-form input[type="password"] {
      -webkit-appearance: none;
      width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      padding: 0 20px;
      text-align: left;
      font: normal normal 400 15px/28px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #121212;
      text-transform: none;
      opacity: 1;
      border-radius: 0px !important;
      border: 1px solid #f1f1f1;
      background: white !important;
      border-radius: 6px !important;
      box-shadow: none;
      outline: none; }
      html[dir="rtl"] #dashboard-page .dashboard-content .account-form input[type="text"], html[dir="rtl"]
      #dashboard-page .dashboard-content .account-form input[type="tel"], html[dir="rtl"]
      #dashboard-page .dashboard-content .account-form input[type="email"], html[dir="rtl"]
      #dashboard-page .dashboard-content .account-form input[type="password"] {
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      #dashboard-page .dashboard-content .account-form input[type="text"]:focus,
      #dashboard-page .dashboard-content .account-form input[type="tel"]:focus,
      #dashboard-page .dashboard-content .account-form input[type="email"]:focus,
      #dashboard-page .dashboard-content .account-form input[type="password"]:focus {
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
      #dashboard-page .dashboard-content .account-form input[type="text"].placeholder,
      #dashboard-page .dashboard-content .account-form input[type="tel"].placeholder,
      #dashboard-page .dashboard-content .account-form input[type="email"].placeholder,
      #dashboard-page .dashboard-content .account-form input[type="password"].placeholder {
        color: #888888; }
      #dashboard-page .dashboard-content .account-form input[type="text"]:-moz-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="tel"]:-moz-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="email"]:-moz-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="password"]:-moz-placeholder {
        color: #888888; }
      #dashboard-page .dashboard-content .account-form input[type="text"]::-moz-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="tel"]::-moz-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="email"]::-moz-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="password"]::-moz-placeholder {
        color: #888888; }
      #dashboard-page .dashboard-content .account-form input[type="text"]:-ms-input-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="tel"]:-ms-input-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="email"]:-ms-input-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="password"]:-ms-input-placeholder {
        color: #888888; }
      #dashboard-page .dashboard-content .account-form input[type="text"]::-webkit-input-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="tel"]::-webkit-input-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="email"]::-webkit-input-placeholder,
      #dashboard-page .dashboard-content .account-form input[type="password"]::-webkit-input-placeholder {
        color: #888888; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #dashboard-page .dashboard-content .account-form input[type="text"],
        #dashboard-page .dashboard-content .account-form input[type="tel"],
        #dashboard-page .dashboard-content .account-form input[type="email"],
        #dashboard-page .dashboard-content .account-form input[type="password"] {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #dashboard-page .dashboard-content .account-form input[type="text"],
        #dashboard-page .dashboard-content .account-form input[type="tel"],
        #dashboard-page .dashboard-content .account-form input[type="email"],
        #dashboard-page .dashboard-content .account-form input[type="password"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .account-form input[type="text"],
        #dashboard-page .dashboard-content .account-form input[type="tel"],
        #dashboard-page .dashboard-content .account-form input[type="email"],
        #dashboard-page .dashboard-content .account-form input[type="password"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px;
          padding: 0px 15px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .account-form input[type="text"],
        #dashboard-page .dashboard-content .account-form input[type="tel"],
        #dashboard-page .dashboard-content .account-form input[type="email"],
        #dashboard-page .dashboard-content .account-form input[type="password"] {
          height: 50px;
          line-height: 50px;
          font-size: 12px;
          padding: 0px 15px; } }
      #dashboard-page .dashboard-content .account-form input[type="text"].error,
      #dashboard-page .dashboard-content .account-form input[type="tel"].error,
      #dashboard-page .dashboard-content .account-form input[type="email"].error,
      #dashboard-page .dashboard-content .account-form input[type="password"].error {
        border-color: #a23d39; }
    #dashboard-page .dashboard-content .account-form .def-addr .col-sm-5,
    #dashboard-page .dashboard-content .account-form .def-addr .col-md-6 {
      width: 100% !important; }
    #dashboard-page .dashboard-content .account-form .def-addr .radio-inline {
      display: inline-block !important; }
    #dashboard-page .dashboard-content .account-form button[type="submit"] {
      font: normal normal 500 16px/55px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #ffffff;
      opacity: 1;
      transition: 0.25s ease-in-out;
      text-align: center;
      width: 257px;
      max-width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      background-color: #2959D3;
      text-transform: none;
      border-radius: 17px;
      padding: 0px;
      border: none;
      margin-top: 35px;
      max-width: 300px; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #dashboard-page .dashboard-content .account-form button[type="submit"] {
          height: 50px;
          line-height: 50px;
          font-size: 15px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #dashboard-page .dashboard-content .account-form button[type="submit"] {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .account-form button[type="submit"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .account-form button[type="submit"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      #dashboard-page .dashboard-content .account-form button[type="submit"]:hover {
        background: #8fd2ee;
        text-decoration: none; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .account-form button[type="submit"] {
          margin: 25px auto 0px;
          display: block;
          min-width: 190px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .account-form button[type="submit"] {
          margin: 25px auto 0px;
          display: block;
          min-width: 190px; } }
    #dashboard-page .dashboard-content .account-form .bootstrap-select {
      width: 100%;
      position: relative;
      margin-bottom: 15px; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .account-form .bootstrap-select {
          margin-bottom: 20px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .account-form .bootstrap-select {
          margin-bottom: 20px; } }
      #dashboard-page .dashboard-content .account-form .bootstrap-select:focus {
        outline: 0;
        background: #fff; }
      #dashboard-page .dashboard-content .account-form .bootstrap-select:hover {
        background: #fff; }
      #dashboard-page .dashboard-content .account-form .bootstrap-select .btn {
        width: 100%;
        height: 55px;
        line-height: 41px;
        background: #fff;
        border: 1px solid #e1e1e1;
        padding-left: 30px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 1em;
        border-radius: 0; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .account-form .bootstrap-select .btn {
            height: 60px;
            line-height: 60px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .account-form .bootstrap-select .btn {
            height: 56px;
            line-height: 56px; } }
        #dashboard-page .dashboard-content .account-form .bootstrap-select .btn:focus {
          outline: none !important;
          background: #fff;
          border: 1px solid #e1e1e1;
          box-shadow: none; }
        #dashboard-page .dashboard-content .account-form .bootstrap-select .btn:hover {
          background: #fff; }
      #dashboard-page .dashboard-content .account-form .bootstrap-select.open .caret {
        background: #fff;
        color: #8fd2ee; }
        #dashboard-page .dashboard-content .account-form .bootstrap-select.open .caret:after {
          color: #8fd2ee;
          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; }
          #dashboard-page .dashboard-content .account-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
            font-family: "Poppins", sans-serif;
            font-weight: 500; }
            @media only screen and (max-width: 767px) {
              #dashboard-page .dashboard-content .account-form .bootstrap-select.btn-group .dropdown-toggle .filter-option {
                bottom: 6px;
                position: relative; } }
      #dashboard-page .dashboard-content .account-form .bootstrap-select .caret {
        width: 55px;
        height: 49px;
        border: none;
        background: #fff;
        top: 2px;
        right: 0px;
        transition: 0.25s ease-in-out; }
        html[dir="rtl"] #dashboard-page .dashboard-content .account-form .bootstrap-select .caret {
          left: 0px;
          right: unset;
          letter-spacing: 0; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .account-form .bootstrap-select .caret {
            height: 58px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .account-form .bootstrap-select .caret {
            height: 54px; } }
        #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 6 Free";
          font-weight: bold;
          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-weight: 500;
          font-size: 1em;
          padding: 5px; }
          #dashboard-page .dashboard-content .account-form .bootstrap-select .dropdown-menu li a span {
            font-family: "Poppins", sans-serif;
            font-weight: 500; }
          #dashboard-page .dashboard-content .account-form .bootstrap-select .dropdown-menu li a:hover {
            color: #8fd2ee; }
  #dashboard-page .dashboard-content .nl-block label {
    display: block;
    text-align: left;
    font: normal normal 500 14px/21px "Poppins", sans-serif;
    letter-spacing: 0.28px;
    color: #121212;
    opacity: 1;
    margin-bottom: 5px; }
    html[dir="rtl"] #dashboard-page .dashboard-content .nl-block label {
      font-family: "Cairo", sans-serif !important;
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .nl-block label {
        font-size: 13px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .nl-block label {
        font-size: 12px; } }
  #dashboard-page .dashboard-content .nl-block button {
    font: normal normal 500 16px/55px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
    transition: 0.25s ease-in-out;
    text-align: center;
    width: 257px;
    max-width: 100%;
    display: block;
    height: 55px;
    line-height: 55px;
    background-color: #2959D3;
    text-transform: none;
    border-radius: 17px;
    padding: 0px;
    border: none;
    margin-top: 40px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #dashboard-page .dashboard-content .nl-block button {
        height: 50px;
        line-height: 50px;
        font-size: 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dashboard-content .nl-block button {
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .nl-block button {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .nl-block button {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    #dashboard-page .dashboard-content .nl-block button:hover {
      background: #8fd2ee;
      text-decoration: none; }
  #dashboard-page .dashboard-content .no-orders__alert {
    margin-bottom: 35px;
    border: 2px solid rgba(112, 112, 112, 0.1);
    position: relative; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dashboard-content .no-orders__alert {
        margin-bottom: 25px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .no-orders__alert {
        margin-bottom: 25px;
        border-color: transparent; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .no-orders__alert {
        margin-bottom: 20px;
        border-color: transparent; } }
    #dashboard-page .dashboard-content .no-orders__alert .alert-ico {
      width: 90px;
      position: absolute;
      height: 100%; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .no-orders__alert .alert-ico {
          width: 40px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .no-orders__alert .alert-ico {
          width: 40px; } }
      #dashboard-page .dashboard-content .no-orders__alert .alert-ico i {
        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%);
        font-size: 25px;
        color: #464442;
        top: 50%; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .no-orders__alert .alert-ico i {
            font-size: 20px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .no-orders__alert .alert-ico i {
            font-size: 20px; } }
    #dashboard-page .dashboard-content .no-orders__alert i {
      position: absolute; }
    #dashboard-page .dashboard-content .no-orders__alert .alert-content {
      margin-left: 90px;
      border-left: 2px solid rgba(112, 112, 112, 0.1);
      padding: 15px 25px; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .no-orders__alert .alert-content {
          margin-left: 40px;
          border-color: transparent;
          padding: 15px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .no-orders__alert .alert-content {
          margin-left: 40px;
          border-color: transparent;
          padding: 15px; } }
      #dashboard-page .dashboard-content .no-orders__alert .alert-content p {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0.01em;
        line-height: 30px;
        color: #414141;
        font-style: normal;
        text-decoration: none; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #dashboard-page .dashboard-content .no-orders__alert .alert-content p {
            font-size: 15px;
            line-height: 28px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #dashboard-page .dashboard-content .no-orders__alert .alert-content p {
            font-size: 14px;
            line-height: 24px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .no-orders__alert .alert-content p {
            font-size: 13px;
            line-height: 22px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .no-orders__alert .alert-content p {
            font-size: 12px;
            line-height: 20px; }
            #dashboard-page .dashboard-content .no-orders__alert .alert-content p a {
              color: #414141; }
              #dashboard-page .dashboard-content .no-orders__alert .alert-content p a:hover {
                color: #8fd2ee; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #dashboard-page .dashboard-content header {
      padding-top: 5px; } }
  @media only screen and (max-width: 767px) {
    #dashboard-page .dashboard-content header {
      padding-top: 0px; } }
  #dashboard-page .dashboard-content header h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.6em;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: #414141;
    border-bottom: 1px solid rgba(112, 112, 112, 0.34);
    margin-bottom: 25px;
    padding-bottom: 10px; }
    @media screen and (min-width: 1025px) and (max-height: 767px) {
      #dashboard-page .dashboard-content header h5 {
        margin-bottom: 20px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dashboard-content header h5 {
        margin-bottom: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content header h5 {
        margin-bottom: 20px;
        font-size: 0.85em; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content header h5 {
        margin-bottom: 20px;
        font-size: 0.85em; } }
  #dashboard-page .dashboard-content .orders-table {
    margin-top: 40px; }
    @media screen and (min-width: 1025px) and (max-height: 767px) {
      #dashboard-page .dashboard-content .orders-table {
        font-size: 14px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dashboard-content .orders-table {
        font-size: 14px;
        margin-top: 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .orders-table {
        font-size: 14px;
        margin-top: 15px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .orders-table {
        font-size: 14px;
        margin-top: 15px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .orders-table h3 {
        text-align: center;
        margin-top: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .orders-table tr {
        border: 1px solid #e5e5e5;
        padding: 10px;
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .orders-table tr {
        border: 1px solid #e5e5e5;
        padding: 10px;
        margin-bottom: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .orders-table .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; }
        #dashboard-page .dashboard-content .orders-table .table-responsive.table {
          border: none; } }
    #dashboard-page .dashboard-content .orders-table table {
      width: 100%;
      text-align: center; }
      #dashboard-page .dashboard-content .orders-table table th {
        text-align: center;
        background: #fcfaf8;
        vertical-align: middle;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        color: #121212;
        height: 70px;
        background-color: #f8f8f8; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .orders-table table th {
            height: 60px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .orders-table table th {
            height: 60px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .orders-table table th:nth-child(2) {
            width: 100px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .orders-table table th:nth-child(2) {
            width: 100px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .orders-table table th:nth-child(3) {
            width: 100px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .orders-table table th:nth-child(3) {
            width: 100px; } }
        #dashboard-page .dashboard-content .orders-table table th:nth-child(4) {
          width: auto; }
          @media screen and (min-width: 1025px) and (max-height: 767px) {
            #dashboard-page .dashboard-content .orders-table table th:nth-child(4) {
              width: auto; } }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            #dashboard-page .dashboard-content .orders-table table th:nth-child(4) {
              width: auto; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #dashboard-page .dashboard-content .orders-table table th:nth-child(4) {
              width: auto; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .orders-table table th:nth-child(5) {
            width: 120px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .orders-table table th:nth-child(5) {
            width: 120px; } }
        #dashboard-page .dashboard-content .orders-table table th:nth-child(6) {
          width: 90px; }
          @media screen and (min-width: 1025px) and (max-height: 767px) {
            #dashboard-page .dashboard-content .orders-table table th:nth-child(6) {
              width: 70px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            #dashboard-page .dashboard-content .orders-table table th:nth-child(6) {
              width: 70px; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #dashboard-page .dashboard-content .orders-table table th:nth-child(6) {
              width: 70px; } }
          @media only screen and (max-width: 767px) {
            #dashboard-page .dashboard-content .orders-table table th:nth-child(6) {
              width: 70px; } }
        #dashboard-page .dashboard-content .orders-table table th:first-child {
          width: 210px; }
          @media screen and (min-width: 1025px) and (max-height: 767px) {
            #dashboard-page .dashboard-content .orders-table table th:first-child {
              width: 150px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            #dashboard-page .dashboard-content .orders-table table th:first-child {
              width: 140px; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #dashboard-page .dashboard-content .orders-table table th:first-child {
              width: 140px; } }
          @media only screen and (max-width: 767px) {
            #dashboard-page .dashboard-content .orders-table table th:first-child {
              width: 140px; } }
        #dashboard-page .dashboard-content .orders-table table th:last-child {
          width: 90px; }
          @media screen and (min-width: 1025px) and (max-height: 767px) {
            #dashboard-page .dashboard-content .orders-table table th:last-child {
              width: 70px; } }
          @media only screen and (min-width: 992px) and (max-width: 1199px) {
            #dashboard-page .dashboard-content .orders-table table th:last-child {
              width: 70px; } }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #dashboard-page .dashboard-content .orders-table table th:last-child {
              width: 70px; } }
          @media only screen and (max-width: 767px) {
            #dashboard-page .dashboard-content .orders-table table th:last-child {
              width: 70px; } }
      @media (min-width: 992px) {
        #dashboard-page .dashboard-content .orders-table table tbody {
          border-left: 1px solid #e9e9e9;
          border-right: 1px solid #e9e9e9;
          border-bottom: 1px solid #e9e9e9; } }
      #dashboard-page .dashboard-content .orders-table table tbody tr td {
        vertical-align: middle;
        padding-top: 25px;
        padding-bottom: 25px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 12px;
        line-height: 14px;
        color: #4c4c4c;
        border-right: 1px solid #e6e6e6;
        padding-left: 5px;
        padding-right: 5px;
        text-align: center; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .orders-table table tbody tr td {
            font-size: 12px !important;
            line-height: 14px !important;
            padding: 10px 3px !important;
            border-bottom: 1px solid #e6e6e6 !important;
            text-align: right !important; }
            #dashboard-page .dashboard-content .orders-table table tbody tr td:last-of-type {
              border-bottom: 0px solid #e6e6e6 !important; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .orders-table table tbody tr td {
            font-size: 12px !important;
            line-height: 14px !important;
            padding: 10px 3px !important;
            border-bottom: 1px solid #e6e6e6 !important;
            text-align: right !important; }
            #dashboard-page .dashboard-content .orders-table table tbody tr td:last-of-type {
              border-bottom: 0px solid #e6e6e6 !important; } }
        #dashboard-page .dashboard-content .orders-table table tbody tr td .btn-action {
          margin-left: 5px;
          margin-right: 5px;
          opacity: 1;
          color: #8fd2ee !important; }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #dashboard-page .dashboard-content .orders-table table tbody tr td .btn-action {
              margin: 5px 0px 0px 0px;
              display: inline-block;
              width: 45%;
              text-align: center !important; }
              #dashboard-page .dashboard-content .orders-table table tbody tr td .btn-action i {
                font-size: 14px; } }
          @media only screen and (max-width: 767px) {
            #dashboard-page .dashboard-content .orders-table table tbody tr td .btn-action {
              display: inline-block;
              width: 45%;
              text-align: center !important; }
              #dashboard-page .dashboard-content .orders-table table tbody tr td .btn-action i {
                font-size: 14px; } }
          #dashboard-page .dashboard-content .orders-table table tbody tr td .btn-action:hover {
            opacity: 1; }
        #dashboard-page .dashboard-content .orders-table table tbody tr td .pdf-action {
          opacity: 0.22; }
          #dashboard-page .dashboard-content .orders-table table tbody tr td .pdf-action:hover {
            opacity: 1; }
  #dashboard-page .dashboard-content .aa-wrap p {
    margin-bottom: 25px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: right;
    font-size: 20.17px;
    letter-spacing: 0em;
    line-height: 30px;
    font-weight: 200;
    color: #707070;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #dashboard-page .dashboard-content .aa-wrap p {
        font-size: 18px;
        line-height: 25px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dashboard-content .aa-wrap p {
        font-size: 16px;
        line-height: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .aa-wrap p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .aa-wrap p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px; } }
  @media (min-width: 992px) {
    #dashboard-page .dashboard-content .aa-wrap {
      display: -ms-flexbox;
      display: -webkit-box;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px; } }
  #dashboard-page .dashboard-content h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.01em;
    line-height: 21px;
    color: #2959D3;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
    padding-bottom: 10px; }
    html[dir="rtl"] #dashboard-page .dashboard-content h4 {
      font-family: "Cairo", sans-serif !important;
      letter-spacing: 0;
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #dashboard-page .dashboard-content h4 {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 19px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dashboard-content h4 {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 17px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content h4 {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 16px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content h4 {
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 15px; } }
  #dashboard-page .dashboard-content .address-block {
    margin-bottom: 50px;
    min-height: 270px; }
    @media screen and (min-width: 1025px) and (max-height: 767px) {
      #dashboard-page .dashboard-content .address-block {
        margin-bottom: 50px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dashboard-content .address-block {
        margin-bottom: 50px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .address-block {
        margin-bottom: 45px;
        min-height: auto; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .address-block {
        margin-bottom: 45px;
        min-height: auto; } }
    @media (min-width: 992px) {
      #dashboard-page .dashboard-content .address-block.additional-address {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 15px;
        padding-right: 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .address-block .acc-nl-block {
        margin-top: 40px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .address-block .acc-nl-block {
        margin-top: 40px; } }
    #dashboard-page .dashboard-content .address-block header {
      position: relative; }
      #dashboard-page .dashboard-content .address-block header .btn-edit {
        position: absolute;
        right: 0px;
        bottom: 0px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 18px;
        letter-spacing: 0.01em;
        line-height: 38px;
        color: #292929;
        text-decoration: underline;
        transition: all ease-in-out 0.5s; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #dashboard-page .dashboard-content .address-block header .btn-edit {
            font-size: 16px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #dashboard-page .dashboard-content .address-block header .btn-edit {
            font-size: 14px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .address-block header .btn-edit {
            font-size: 13px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .address-block header .btn-edit {
            font-size: 11px; } }
        #dashboard-page .dashboard-content .address-block header .btn-edit:hover {
          text-decoration: none;
          color: #8fd2ee;
          transition: all ease-in-out 0.5s; }
    #dashboard-page .dashboard-content .address-block h5 {
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      margin-bottom: 15px;
      font-size: 18px;
      letter-spacing: 0.01em;
      line-height: 38px;
      color: #343538; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #dashboard-page .dashboard-content .address-block h5 {
          margin-bottom: 14px;
          font-size: 16px;
          line-height: 19px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #dashboard-page .dashboard-content .address-block h5 {
          margin-bottom: 13px;
          font-size: 14px;
          line-height: 17px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .address-block h5 {
          margin-bottom: 12px;
          font-size: 13px;
          line-height: 16px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .address-block h5 {
          margin-bottom: 10px;
          font-size: 12px;
          line-height: 15px; } }
    #dashboard-page .dashboard-content .address-block #other-address-wrapper {
      margin-bottom: 60px; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .address-block #other-address-wrapper {
          margin-bottom: 30px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .address-block #other-address-wrapper {
          margin-bottom: 30px; } }
    #dashboard-page .dashboard-content .address-block address,
    #dashboard-page .dashboard-content .address-block p {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 16px;
      letter-spacing: 0.01em;
      line-height: 30px;
      color: #414141;
      font-style: normal;
      text-decoration: none; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #dashboard-page .dashboard-content .address-block address,
        #dashboard-page .dashboard-content .address-block p {
          font-size: 15px;
          line-height: 28px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #dashboard-page .dashboard-content .address-block address,
        #dashboard-page .dashboard-content .address-block p {
          font-size: 14px;
          line-height: 24px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .address-block address,
        #dashboard-page .dashboard-content .address-block p {
          font-size: 13px;
          line-height: 22px;
          max-width: 85%; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .address-block address,
        #dashboard-page .dashboard-content .address-block p {
          font-size: 12px;
          line-height: 20px;
          max-width: 85%; } }
      #dashboard-page .dashboard-content .address-block address a,
      #dashboard-page .dashboard-content .address-block p a {
        color: #414141; }
        #dashboard-page .dashboard-content .address-block address a:hover,
        #dashboard-page .dashboard-content .address-block p a:hover {
          color: #8fd2ee; }
    #dashboard-page .dashboard-content .address-block .btn-changes {
      margin-top: 20px; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #dashboard-page .dashboard-content .address-block .btn-changes {
          margin-top: 10px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .address-block .btn-changes {
          margin-top: 5px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .address-block .btn-changes {
          margin-top: 5px; } }
      #dashboard-page .dashboard-content .address-block .btn-changes .btn-change {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        text-decoration: underline;
        font-size: 17px;
        letter-spacing: 0.01em;
        line-height: 37px;
        color: #343538;
        margin-top: 0px;
        display: inline-block;
        margin-right: 30px;
        font-weight: 400;
        position: relative;
        padding-right: 15px;
        transition: all ease-in-out 0.5s; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #dashboard-page .dashboard-content .address-block .btn-changes .btn-change {
            font-size: 16px;
            padding-right: 9px;
            line-height: 36px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #dashboard-page .dashboard-content .address-block .btn-changes .btn-change {
            font-size: 15px;
            padding-right: 9px;
            line-height: 35px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #dashboard-page .dashboard-content .address-block .btn-changes .btn-change {
            font-size: 13px;
            padding-right: 9px;
            line-height: 33px; } }
        @media only screen and (max-width: 767px) {
          #dashboard-page .dashboard-content .address-block .btn-changes .btn-change {
            font-size: 11px;
            padding-right: 9px;
            line-height: 31px; } }
        #dashboard-page .dashboard-content .address-block .btn-changes .btn-change:hover {
          text-decoration: none;
          color: #8fd2ee;
          transition: all ease-in-out 0.5s; }
    #dashboard-page .dashboard-content .address-block button[type="button"] {
      font: normal normal 500 16px/55px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #ffffff;
      opacity: 1;
      transition: 0.25s ease-in-out;
      text-align: center;
      width: 257px;
      max-width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      background-color: #2959D3;
      text-transform: none;
      border-radius: 17px;
      padding: 0px;
      border: none;
      padding-left: 40px;
      padding-right: 40px;
      margin-top: 0px; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #dashboard-page .dashboard-content .address-block button[type="button"] {
          height: 50px;
          line-height: 50px;
          font-size: 15px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #dashboard-page .dashboard-content .address-block button[type="button"] {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .address-block button[type="button"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .address-block button[type="button"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      #dashboard-page .dashboard-content .address-block button[type="button"]:hover {
        background: #8fd2ee;
        text-decoration: none; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #dashboard-page .dashboard-content .address-block button[type="button"] {
          margin-top: 10px; } }
      @media only screen and (max-width: 767px) {
        #dashboard-page .dashboard-content .address-block button[type="button"] {
          margin-top: 10px; } }
  #dashboard-page .dashboard-content .featured-box {
    max-width: 240px;
    margin-bottom: 25px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #dashboard-page .dashboard-content .featured-box {
        margin-bottom: 10px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #dashboard-page .dashboard-content .featured-box {
        margin-bottom: 5px; } }
    @media only screen and (max-width: 767px) {
      #dashboard-page .dashboard-content .featured-box {
        margin-bottom: 5px; } }

.no-orders__alert {
  margin-bottom: 35px;
  position: relative; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .no-orders__alert {
      margin-bottom: 25px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .no-orders__alert {
      margin-bottom: 25px; } }
  @media only screen and (max-width: 767px) {
    .no-orders__alert {
      margin-bottom: 20px; } }
  .no-orders__alert .alert-ico {
    width: 90px;
    position: absolute; }
    .no-orders__alert .alert-ico i {
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%);
      font-size: 30px;
      color: #464442;
      opacity: 0.62;
      top: 25px; }
  .no-orders__alert .alert-content {
    margin-left: 90px;
    padding-left: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 25px; }
    .no-orders__alert .alert-content p {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 1.25em;
      letter-spacing: 0.01em;
      line-height: 1.5;
      color: #7e7e7e; }

#dashboard-page .alert {
  margin-left: 15px;
  margin-right: 15px; }

h4.additional-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: #4c4c4c;
  border-bottom: 1px solid rgba(112, 112, 112, 0.34);
  margin-bottom: 40px;
  padding-bottom: 10px; }
  @media screen and (min-width: 1025px) and (max-height: 767px) {
    h4.additional-title {
      margin-bottom: 20px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    h4.additional-title {
      margin-bottom: 20px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    h4.additional-title {
      margin-bottom: 20px; } }
  @media only screen and (max-width: 767px) {
    h4.additional-title {
      margin-bottom: 20px; } }

#order-detailed-table {
  width: 100%;
  text-align: left;
  margin-bottom: 30px; }
  html[dir="rtl"] #order-detailed-table {
    text-align: right;
    letter-spacing: 0; }
  #order-detailed-table thead {
    border-bottom: 1px solid rgba(112, 112, 112, 0.34); }
    #order-detailed-table thead td {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-size: 18px;
      letter-spacing: 0.01em;
      line-height: 21px;
      color: #2959D3;
      margin-bottom: 25px;
      padding-bottom: 10px;
      text-align: left; }
      html[dir="rtl"] #order-detailed-table thead td {
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #order-detailed-table thead td {
          margin-bottom: 20px;
          font-size: 16px;
          line-height: 19px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #order-detailed-table thead td {
          margin-bottom: 20px;
          font-size: 14px;
          line-height: 17px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #order-detailed-table thead td {
          margin-bottom: 20px;
          font-size: 13px;
          line-height: 16px; } }
      @media only screen and (max-width: 767px) {
        #order-detailed-table thead td {
          margin-bottom: 20px;
          font-size: 12px;
          line-height: 15px; } }
  #order-detailed-table tbody td {
    padding-top: 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 30px;
    color: #414141;
    font-style: normal;
    text-decoration: none; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #order-detailed-table tbody td {
        font-size: 15px;
        line-height: 28px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #order-detailed-table tbody td {
        font-size: 14px;
        line-height: 24px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #order-detailed-table tbody td {
        font-size: 13px;
        line-height: 22px;
        max-width: 85%; } }
    @media only screen and (max-width: 767px) {
      #order-detailed-table tbody td {
        font-size: 12px;
        line-height: 20px;
        max-width: 85%; } }
    #order-detailed-table tbody td a {
      color: #414141; }
      #order-detailed-table tbody td a:hover {
        color: #8fd2ee; }

#history-summary {
  width: 100%; }
  #history-summary th {
    text-align: center;
    background: #fcfaf8;
    vertical-align: middle;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #121212;
    height: 70px;
    background-color: #f8f8f8;
    padding: 0px 15px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #history-summary th {
        height: 60px; } }
    @media only screen and (max-width: 767px) {
      #history-summary th {
        height: 60px; } }
    #history-summary th:first-child {
      width: 30%;
      text-align: left; }
      html[dir="rtl"] #history-summary th:first-child {
        text-align: right;
        letter-spacing: 0; }
  @media (min-width: 992px) {
    #history-summary tbody {
      border-left: 1px solid #e9e9e9;
      border-right: 1px solid #e9e9e9;
      border-bottom: 1px solid #e9e9e9; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #history-summary tbody tr {
      border: 1px solid #e5e5e5;
      padding: 10px;
      margin-bottom: 20px; } }
  @media only screen and (max-width: 767px) {
    #history-summary tbody tr {
      border: 1px solid #e5e5e5;
      padding: 10px;
      margin-bottom: 20px; } }
  #history-summary tbody tr td {
    vertical-align: middle;
    padding: 17px 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #4c4c4c;
    border-bottom: 1px solid #e6e6e6;
    text-align: center; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #history-summary tbody tr td {
        font-size: 14px;
        line-height: 18px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #history-summary tbody tr td {
        font-size: 13px;
        line-height: 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #history-summary tbody tr td {
        font-size: 12px !important;
        line-height: 14px !important;
        padding: 10px 3px !important;
        border-bottom: 1px solid #e6e6e6 !important;
        text-align: right !important; }
        #history-summary tbody tr td:last-of-type {
          border-bottom: 0px solid #e6e6e6 !important; } }
    @media only screen and (max-width: 767px) {
      #history-summary tbody tr td {
        font-size: 12px !important;
        line-height: 14px !important;
        padding: 10px 3px !important;
        border-bottom: 1px solid #e6e6e6 !important;
        text-align: right !important; }
        #history-summary tbody tr td:last-of-type {
          border-bottom: 0px solid #e6e6e6 !important; } }
    #history-summary tbody tr td .btn-action {
      margin-left: 5px;
      margin-right: 5px;
      opacity: 1;
      color: #8fd2ee !important; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #history-summary tbody tr td .btn-action {
          margin: 5px 0px 0px 0px;
          display: inline-block;
          width: 45%;
          text-align: center !important; }
          #history-summary tbody tr td .btn-action i {
            font-size: 14px; } }
      @media only screen and (max-width: 767px) {
        #history-summary tbody tr td .btn-action {
          display: inline-block;
          width: 45%;
          text-align: center !important; }
          #history-summary tbody tr td .btn-action i {
            font-size: 14px; } }
      #history-summary tbody tr td .btn-action:hover {
        opacity: 1; }
    #history-summary tbody tr td .pdf-action {
      opacity: 0.22; }
      #history-summary tbody tr td .pdf-action:hover {
        opacity: 1; }

#history-status {
  width: 100%; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #history-status {
      margin-bottom: 50px; } }
  @media only screen and (max-width: 767px) {
    #history-status {
      margin-bottom: 50px; } }
  #history-status th {
    text-align: center;
    background: #fcfaf8;
    vertical-align: middle;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #121212;
    height: 70px;
    background-color: #f8f8f8;
    text-align: left;
    padding: 0px 15px; }
    html[dir="rtl"] #history-status th {
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #history-status th {
        height: 60px; } }
    @media only screen and (max-width: 767px) {
      #history-status th {
        height: 60px; } }
    #history-status th:first-child {
      width: 30%;
      text-align: left; }
      html[dir="rtl"] #history-status th:first-child {
        text-align: right;
        letter-spacing: 0; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #history-status tbody tr {
      border: 1px solid #e5e5e5;
      padding: 10px;
      margin-bottom: 20px; } }
  @media only screen and (max-width: 767px) {
    #history-status tbody tr {
      border: 1px solid #e5e5e5;
      padding: 10px;
      margin-bottom: 20px; } }
  #history-status tbody tr td {
    vertical-align: middle;
    padding: 17px 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #4c4c4c;
    border-bottom: 1px solid #e6e6e6;
    text-align: left; }
    html[dir="rtl"] #history-status tbody tr td {
      text-align: right;
      letter-spacing: 0; }
    #history-status tbody tr td span {
      float: left; }
      @media (min-width: 768px) {
        #history-status tbody tr td span {
          display: none !important; } }
      html[dir="rtl"] #history-status tbody tr td span {
        float: right;
        letter-spacing: 0; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #history-status tbody tr td {
        font-size: 14px;
        line-height: 18px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #history-status tbody tr td {
        font-size: 13px;
        line-height: 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #history-status tbody tr td {
        font-size: 12px !important;
        line-height: 14px !important;
        padding: 10px 3px !important;
        border-bottom: 1px solid #e6e6e6 !important;
        text-align: right !important; }
        #history-status tbody tr td:last-of-type {
          border-bottom: 0px solid #e6e6e6 !important; } }
    @media only screen and (max-width: 767px) {
      #history-status tbody tr td {
        font-size: 12px !important;
        line-height: 14px !important;
        padding: 10px 3px !important;
        border-bottom: 1px solid #e6e6e6 !important;
        text-align: right !important; }
        #history-status tbody tr td:last-of-type {
          border-bottom: 0px solid #e6e6e6 !important; } }
    #history-status tbody tr td .btn-action {
      margin-left: 5px;
      margin-right: 5px;
      opacity: 1;
      color: #8fd2ee !important; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #history-status tbody tr td .btn-action {
          margin: 5px 0px 0px 0px;
          display: inline-block;
          width: 45%;
          text-align: center !important; }
          #history-status tbody tr td .btn-action i {
            font-size: 14px; } }
      @media only screen and (max-width: 767px) {
        #history-status tbody tr td .btn-action {
          display: inline-block;
          width: 45%;
          text-align: center !important; }
          #history-status tbody tr td .btn-action i {
            font-size: 14px; } }
      #history-status tbody tr td .btn-action:hover {
        opacity: 1; }
    #history-status tbody tr td .pdf-action {
      opacity: 0.22; }
      #history-status tbody tr td .pdf-action:hover {
        opacity: 1; }

#history-totals-order {
  width: 100%;
  margin-bottom: 70px;
  border: 0; }
  @media screen and (min-width: 1025px) and (max-height: 767px) {
    #history-totals-order {
      margin-bottom: 50px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #history-totals-order {
      margin-bottom: 50px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #history-totals-order {
      margin-bottom: 45px; } }
  @media only screen and (max-width: 767px) {
    #history-totals-order {
      margin-bottom: 45px; } }
  #history-totals-order tbody {
    border: 0 !important; }
  #history-totals-order td {
    vertical-align: middle;
    padding: 17px 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #4c4c4c;
    text-align: left; }
    html[dir="rtl"] #history-totals-order td {
      text-align: right;
      letter-spacing: 0; }
    #history-totals-order td:nth-of-type(even) {
      text-align: center; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #history-totals-order td {
        font-size: 14px;
        line-height: 18px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #history-totals-order td {
        font-size: 13px;
        line-height: 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #history-totals-order td {
        font-size: 12px !important;
        line-height: 14px !important;
        padding: 10px 3px !important;
        border-bottom: 1px solid #e6e6e6 !important;
        text-align: left !important; }
        html[dir="rtl"] #history-totals-order td {
          text-align: right !important;
          letter-spacing: 0; }
        #history-totals-order td:last-of-type {
          text-align: right !important; }
          html[dir="rtl"] #history-totals-order td:last-of-type {
            text-align: left !important;
            letter-spacing: 0; } }
    @media only screen and (max-width: 767px) {
      #history-totals-order td {
        font-size: 12px !important;
        line-height: 14px !important;
        padding: 10px 3px !important;
        border-bottom: 1px solid #e6e6e6 !important;
        text-align: left !important; }
        html[dir="rtl"] #history-totals-order td {
          text-align: right !important;
          letter-spacing: 0; }
        #history-totals-order td:last-of-type {
          text-align: right !important; }
          html[dir="rtl"] #history-totals-order td:last-of-type {
            text-align: left !important;
            letter-spacing: 0; } }

input#input-captcha {
  width: 50% !important;
  display: inline-block !important;
  margin-right: 30px !important; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    input#input-captcha {
      width: 100% !important;
      margin-bottom: 20px !important; } }
  @media only screen and (max-width: 767px) {
    input#input-captcha {
      width: 100% !important;
      margin-bottom: 20px !important; } }

#cart-inner {
  padding: 00px 0px 80px 0px; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #cart-inner {
      padding: 00px; } }
  @media only screen and (max-width: 767px) {
    #cart-inner {
      padding: 00px; } }
  #cart-inner #cart-items-wrapper {
    padding: 25px;
    width: 100%; }
    #cart-inner #cart-items-wrapper .products .single-product {
      padding-bottom: 20px;
      border-bottom: 1px solid #f1f1f1;
      margin-bottom: 20px; }
      #cart-inner #cart-items-wrapper .products .single-product:last-of-type {
        padding-bottom: 0px;
        border-bottom: 0px solid #f1f1f1;
        margin-bottom: 0px; }
      #cart-inner #cart-items-wrapper .products .single-product .top-row {
        display: flex;
        align-items: top;
        justify-content: space-between;
        gap: 15px;
        margin-bottom: 15px; }
        #cart-inner #cart-items-wrapper .products .single-product .top-row .product-image a {
          display: block;
          width: 75px;
          height: 75px; }
          #cart-inner #cart-items-wrapper .products .single-product .top-row .product-image a img {
            width: 100%; }
        #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info {
          flex-grow: 1; }
          #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description {
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            height: 100%;
            max-width: 85%; }
            #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .price-per-item {
              text-align: left;
              font: normal normal 400 12px/21px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #000000;
              opacity: 1; }
              html[dir="rtl"] #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .price-per-item {
                font-family: "Cairo", sans-serif !important;
                text-align: right;
                letter-spacing: 0; }
            #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
              text-align: left;
              font: normal normal 400 14px/21px "Poppins", sans-serif;
              letter-spacing: 0px;
              color: #000000;
              opacity: 1; }
              html[dir="rtl"] #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                font-family: "Cairo", sans-serif !important;
                text-align: right;
                letter-spacing: 0; }
              @media only screen and (min-width: 768px) and (max-width: 992px) {
                #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                  font-size: 15px;
                  line-height: 20px; } }
              @media only screen and (max-width: 767px) {
                #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                  font-size: 14px;
                  line-height: 23px; } }
              @media only screen and (min-width: 240px) and (max-width: 409px) {
                #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .title {
                  font-size: 13px;
                  line-height: 21px; } }
              #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .title a {
                width: 100%;
                color: inherit;
                overflow: hidden;
                -o-text-overflow: ellipsis;
                text-overflow: ellipsis;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical; }
                #cart-inner #cart-items-wrapper .products .single-product .top-row .product-info .description .title a .text-danger {
                  display: inline-block; }
        #cart-inner #cart-items-wrapper .products .single-product .top-row .product-total-price span {
          width: auto;
          width: max-content;
          text-align: center;
          font: normal normal 400 16px/19px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #000000;
          opacity: 1;
          display: block; }
          html[dir="rtl"] #cart-inner #cart-items-wrapper .products .single-product .top-row .product-total-price span {
            font-family: "Cairo", sans-serif !important;
            letter-spacing: 0; }
      #cart-inner #cart-items-wrapper .products .single-product .action-row {
        display: flex;
        align-items: top;
        justify-content: space-between; }
        #cart-inner #cart-items-wrapper .products .single-product .action-row .actions {
          display: flex;
          align-items: top;
          justify-content: space-between;
          gap: 15px; }
          #cart-inner #cart-items-wrapper .products .single-product .action-row .actions button {
            margin: 0;
            padding: 0;
            outline: none;
            border: 0;
            background-color: transparent;
            text-decoration: underline;
            font: normal normal 400 11px/21px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #000000;
            opacity: 1; }
            #cart-inner #cart-items-wrapper .products .single-product .action-row .actions button:hover {
              color: #8fd2ee; }
        #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper {
          border-radius: 16px;
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: space-between;
          position: relative;
          padding: 3px 5px;
          transition: all ease-in-out 0.5s;
          border: 1px solid #e5e5e5; }
          #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper.danger {
            border-color: red !important; }
            #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper.danger input {
              color: red !important; }
          #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
            width: 50px;
            height: 26px;
            position: relative;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            color: #121212 !important;
            text-align: center;
            -webkit-appearance: none;
            pointer-events: none;
            border: 0px;
            background-color: transparent; }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
                height: 22px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199px) {
              #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
                height: 20px; } }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
                height: 18px; } }
            @media only screen and (max-width: 767px) {
              #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper input {
                height: 16px; } }
          #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
            width: 26px;
            height: 26px;
            position: relative;
            color: #121212 !important;
            line-height: 26px;
            font-size: 21px;
            align-items: center;
            border-radius: 50%;
            text-align: center;
            cursor: pointer;
            transition: all ease-in-out 0.5s; }
            #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a:hover {
              color: #35aca5;
              transition: all ease-in-out 0.5s; }
            @media only screen and (min-width: 1200px) and (max-width: 1550px) {
              #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
                width: 22px;
                height: 22px;
                line-height: 22px; } }
            @media only screen and (min-width: 992px) and (max-width: 1199px) {
              #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
                width: 20px;
                height: 20px;
                line-height: 20px; } }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
                width: 18px;
                height: 18px;
                line-height: 18px; } }
            @media only screen and (max-width: 767px) {
              #cart-inner #cart-items-wrapper .products .single-product .action-row .count-input .wrapper a {
                width: 16px;
                height: 16px;
                font-size: 12px;
                line-height: 16px; } }
    #cart-inner #cart-items-wrapper .empty {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 35px;
      width: 100%;
      height: 100%; }
      #cart-inner #cart-items-wrapper .empty .icon {
        text-align: center;
        opacity: 0;
        transform: translateY(60px);
        transition: all ease-in-out 0.5s; }
      #cart-inner #cart-items-wrapper .empty .main-text {
        opacity: 0;
        transform: translateY(60px);
        transition: all ease-in-out 0.5s; }
        #cart-inner #cart-items-wrapper .empty .main-text .title {
          text-align: center;
          font: normal normal 400 18px/27px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #000000;
          opacity: 1;
          margin-bottom: 5px; }
        #cart-inner #cart-items-wrapper .empty .main-text .description {
          text-align: center;
          font: normal normal 400 14px/27px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #000000;
          opacity: 1; }
      #cart-inner #cart-items-wrapper .empty .categories {
        text-align: center;
        opacity: 0;
        transform: translateY(60px);
        transition: all ease-in-out 0.5s; }
        #cart-inner #cart-items-wrapper .empty .categories .title {
          text-align: center;
          font: normal normal 400 12px/21px "Poppins", sans-serif;
          letter-spacing: 0px;
          color: #000000;
          opacity: 1; }
        #cart-inner #cart-items-wrapper .empty .categories .links {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 25px;
          max-width: 80%;
          margin: 25px auto; }
          #cart-inner #cart-items-wrapper .empty .categories .links .link {
            font: normal normal 400 10px/19px "Poppins", sans-serif;
            letter-spacing: 0px;
            color: #000000;
            opacity: 1;
            padding: 10px 20px;
            border: 1px solid #000000;
            opacity: 1;
            min-width: 110px;
            border-radius: 25px; }
            #cart-inner #cart-items-wrapper .empty .categories .links .link:hover {
              background-color: #8fd2ee;
              border-color: #8fd2ee;
              color: #fff;
              transition: all ease-in-out 0.5s; }
  #cart-inner .intro h1 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative;
    margin-bottom: 25px;
    margin-top: 5px;
    text-align: left; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #cart-inner .intro h1 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #cart-inner .intro h1 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #cart-inner .intro h1 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #cart-inner .intro h1 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #cart-inner .intro h1 {
        margin-bottom: 20px;
        margin-top: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #cart-inner .intro h1 {
        margin-bottom: 15px;
        margin-top: 15px; } }
    @media only screen and (max-width: 767px) {
      #cart-inner .intro h1 {
        margin-bottom: 10px;
        margin-top: 10px; } }
  #cart-inner .intro p {
    font-family: "Futura Book";
    font-weight: 300;
    font-size: 22px;
    letter-spacing: 0.01em;
    line-height: 28px;
    text-align: left;
    color: #999999; }
  #cart-inner .intro .buttons-box {
    padding: 0px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #cart-inner .intro .buttons-box {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 30px; } }
    @media only screen and (max-width: 767px) {
      #cart-inner .intro .buttons-box {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 30px; } }
  #cart-inner .intro .action {
    text-align: right;
    margin-top: 15px;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #cart-inner .intro .action {
        flex-direction: column; } }
    @media only screen and (max-width: 767px) {
      #cart-inner .intro .action {
        flex-direction: column; } }
    #cart-inner .intro .action li {
      display: inline-block; }
      #cart-inner .intro .action li a {
        display: block;
        text-align: center;
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-weight: 300;
        font-size: 14px;
        height: 55px;
        line-height: 55px;
        letter-spacing: 0px;
        color: #ffffff;
        opacity: 1; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #cart-inner .intro .action li a {
            font-size: 13px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #cart-inner .intro .action li a {
            font-size: 12px; } }
        @media only screen and (max-width: 767px) {
          #cart-inner .intro .action li a {
            font-size: 12px; } }
        @media only screen and (max-width: 767px) {
          #cart-inner .intro .action li a {
            font-size: 12px; } }
    #cart-inner .intro .action li.continue {
      margin-left: 0;
      width: 49%; }
      @media only screen and (max-width: 767px) {
        #cart-inner .intro .action li.continue {
          width: 100%;
          margin: 5px auto; } }
      @media only screen and (max-width: 767px) {
        #cart-inner .intro .action li.continue {
          width: 100%;
          margin: 5px auto; } }
      #cart-inner .intro .action li.continue a {
        background: transparent;
        border: 2px solid #2959D3;
        letter-spacing: 0px;
        color: #2959D3;
        opacity: 1; }
        #cart-inner .intro .action li.continue a:hover {
          border: 2px solid #2959D3;
          background: #2959D3;
          color: white; }
    #cart-inner .intro .action li.checkout {
      margin-right: 0;
      width: 49%; }
      @media only screen and (max-width: 767px) {
        #cart-inner .intro .action li.checkout {
          width: 100%;
          margin: 5px auto; } }
      @media only screen and (max-width: 767px) {
        #cart-inner .intro .action li.checkout {
          width: 100%;
          margin: 5px auto; } }
      #cart-inner .intro .action li.checkout a {
        color: #fff;
        border: 2px solid #2959D3;
        background: #2959D3; }
        #cart-inner .intro .action li.checkout a:hover {
          border: 2px solid #4c4c4c;
          background: #4c4c4c; }
  #cart-inner table.cart {
    margin-top: 110px;
    width: 100%; }
    #cart-inner table.cart th {
      font-family: "Montserrat-Medium";
      font-weight: normal;
      font-size: 18px;
      line-height: 22px;
      text-align: center;
      padding-bottom: 20px;
      border-bottom: 2px solid #e5e5e5;
      padding-left: 15px;
      padding-right: 15px;
      letter-spacing: 0px;
      color: #4c4c4c;
      opacity: 1; }
    #cart-inner table.cart th.product-name {
      padding-left: 0px;
      text-align: left; }
    #cart-inner table.cart th.product-price {
      text-align: center;
      width: 220px; }
    #cart-inner table.cart th.quantity {
      text-align: center;
      width: 220px; }
    #cart-inner table.cart th.total {
      text-align: center;
      width: 280px; }
    #cart-inner table.cart th.remove {
      width: 100px; }
    #cart-inner table.cart td {
      padding-top: 28px;
      padding-bottom: 28px;
      vertical-align: middle;
      border-bottom: 1px solid #e5e5e5;
      padding-left: 0px;
      padding-right: 15px; }
      #cart-inner table.cart td .product-image {
        padding-left: 0px;
        width: 140px;
        display: inline-block;
        vertical-align: middle; }
        #cart-inner table.cart td .product-image a:hover img {
          -webkit-filter: grayscale(100%);
          filter: grayscale(100%); }
        #cart-inner table.cart td .product-image img {
          -webkit-transition: -webkit-filter 0.5s ease-in-out;
          transition: -webkit-filter 0.5s ease-in-out;
          -o-transition: filter 0.5s ease-in-out;
          transition: filter 0.5s ease-in-out;
          transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
          -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
          width: 114px; }
      #cart-inner table.cart td .product-name {
        display: inline-block;
        vertical-align: middle;
        width: 315px; }
        #cart-inner table.cart td .product-name a {
          font-family: "Montserrat-Regular";
          font-size: 21px;
          line-height: 28px;
          text-align: left;
          letter-spacing: 0.42px;
          color: #4c4c4c;
          opacity: 1; }
          #cart-inner table.cart td .product-name a small {
            font-family: "Futura Book"; }
          #cart-inner table.cart td .product-name a:hover {
            color: rgba(34, 34, 34, 0.7); }
    #cart-inner table.cart td.product-stock {
      font-family: "Montserrat-Medium";
      font-size: 18px;
      line-height: 22px;
      text-align: center;
      letter-spacing: 0px;
      color: #2f3432;
      opacity: 1; }
    #cart-inner table.cart td.product-price {
      font-family: "Montserrat-Medium";
      font-size: 18px;
      line-height: 22px;
      text-align: center;
      letter-spacing: 0px;
      color: #2f3432;
      opacity: 1; }
    #cart-inner table.cart td.quantity {
      text-align: center; }
      #cart-inner table.cart td.quantity input[type="text"] {
        font-family: "Brandon Grotesque Medium";
        font-weight: normal;
        font-size: 21px;
        text-align: center;
        color: #2c2c2c;
        border: 0;
        display: inline-block;
        width: 77px;
        height: 30px;
        vertical-align: middle;
        position: relative; }
      #cart-inner table.cart td.quantity .input-group {
        margin-top: 15px; }
      #cart-inner table.cart td.quantity .update {
        display: block;
        position: relative;
        top: 15px;
        font-family: "Brandon Grotesque Medium";
        font-size: 15px;
        letter-spacing: 0.12em;
        text-align: center;
        color: rgba(34, 34, 34, 0.7); }
        #cart-inner table.cart td.quantity .update:hover {
          color: rgba(34, 34, 34, 0.7); }
      #cart-inner table.cart td.quantity .btn {
        border: 0;
        padding: 0;
        background-color: transparent; }
        #cart-inner table.cart td.quantity .btn i {
          color: #a7a7a7;
          font-size: 30px; }
    #cart-inner table.cart td.add-to-cart {
      text-align: center;
      font-family: "Brandon Grotesque Medium";
      font-size: 18px;
      letter-spacing: 0.07em;
      color: #2c2c2c; }
      #cart-inner table.cart td.add-to-cart button {
        width: 185px;
        height: 57px;
        line-height: 54px;
        background: #2c2c2c;
        padding: 0;
        background-color: #2c2c2c;
        color: #fff;
        text-align: center;
        border: 0;
        font-family: "Futura Book";
        font-weight: 300;
        font-size: 15px;
        letter-spacing: 0.06em;
        -webkit-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out; }
        #cart-inner table.cart td.add-to-cart button:hover {
          background-color: rgba(34, 34, 34, 0.7); }
    #cart-inner table.cart td.remove {
      width: 135px;
      text-align: right; }
      #cart-inner table.cart td.remove button {
        background-color: transparent;
        border: 0;
        padding: 0;
        margin-right: 8px;
        -webkit-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out; }
        #cart-inner table.cart td.remove button i {
          font-size: 28px;
          color: #e5e5e5;
          cursor: pointer; }
        #cart-inner table.cart td.remove button:hover i {
          color: rgba(34, 34, 34, 0.7); }
  #cart-inner table.summary {
    margin-top: 5px;
    margin-left: auto;
    width: 100%; }
    #cart-inner table.summary td {
      padding-top: 25px;
      padding-bottom: 25px;
      border-bottom: 1px solid #d7d7d7;
      vertical-align: middle;
      opacity: 1; }
      @media only screen and (max-width: 767px) {
        #cart-inner table.summary td {
          padding-top: 12px;
          padding-bottom: 12px; } }
      #cart-inner table.summary td:first-of-type {
        font-weight: normal;
        text-align: left;
        padding-right: 10px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0px;
        color: #4c4c4c;
        opacity: 1; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #cart-inner table.summary td:first-of-type {
            font-size: 14px;
            padding-right: 5px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #cart-inner table.summary td:first-of-type {
            font-size: 13px;
            padding-right: 5px; } }
        @media only screen and (max-width: 767px) {
          #cart-inner table.summary td:first-of-type {
            font-size: 13px;
            padding-right: 5px; } }
      #cart-inner table.summary td:last-of-type {
        font-weight: normal;
        text-align: right;
        color: #2f3432;
        padding-left: 10px;
        width: 65% !important;
        opacity: 1 !important;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 17px;
        line-height: 22px;
        text-align: right;
        letter-spacing: 0px;
        color: #4c4c4c;
        opacity: 1; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #cart-inner table.summary td:last-of-type {
            font-size: 15px;
            padding-left: 5px; } }
        @media only screen and (max-width: 767px) {
          #cart-inner table.summary td:last-of-type {
            font-size: 14px;
            padding-left: 5px; } }
    #cart-inner table.summary tr:last-of-type td {
      border-bottom: none; }
    #cart-inner table.summary td.promo-code input[type="text"] {
      width: 100%;
      height: 43px;
      background: #fff;
      border: 1px solid #e5e5e5;
      display: inline-block;
      vertical-align: middle;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 13px;
      padding-left: 15px;
      padding-right: 15px;
      -webkit-transition: 0.25s ease-in-out;
      -o-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out;
      text-align: left;
      letter-spacing: 0.09px;
      color: #4c4c4c;
      opacity: 1;
      background: #ffffff 0% 0% no-repeat padding-box; }
      #cart-inner table.summary td.promo-code input[type="text"]::placeholder {
        color: #e5e5e5; }
      #cart-inner table.summary td.promo-code input[type="text"]:-ms-input-placeholder {
        color: #e5e5e5; }
      #cart-inner table.summary td.promo-code input[type="text"]::-ms-input-placeholder {
        color: #e5e5e5; }
      #cart-inner table.summary td.promo-code input[type="text"]:focus {
        outline: none;
        border-color: #2959D3 !important; }
    #cart-inner table.summary td.promo-code input[type="submit"] {
      display: inline-block;
      vertical-align: middle;
      width: 100%;
      height: 43px;
      border: 2px solid #2959D3;
      text-align: center;
      color: #fff;
      font-weight: normal;
      letter-spacing: 0.01em;
      -webkit-transition: 0.25s ease-in-out;
      -o-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out;
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      width: 100%;
      font-size: 14px;
      line-height: 18px;
      letter-spacing: 0px;
      color: #ffffff;
      opacity: 1;
      background: #2959D3; }
      #cart-inner table.summary td.promo-code input[type="submit"]:hover {
        background-color: #4c4c4c;
        border-color: #4c4c4c;
        color: #fff; }
  #cart-inner .cards {
    margin-top: 35px;
    text-align: center;
    max-width: 540px;
    margin-left: auto; }
    #cart-inner .cards li {
      display: inline-block;
      vertical-align: middle;
      margin-left: 3px;
      margin-right: 3px;
      zoom: 0.8; }
      #cart-inner .cards li i {
        background: url(../img/ico/cards.svg) no-repeat;
        display: inline-block;
        background-size: 976px 774px;
        vertical-align: middle; }
      #cart-inner .cards li i.svg-flat-visa {
        background-position: 26.8% 42.225%;
        width: 65px;
        height: 41px; }
      #cart-inner .cards li i.svg-flat-mastercard {
        background-position: 26.838% 31.7%;
        width: 65px;
        height: 41px; }
      #cart-inner .cards li i.svg-flat-amex {
        background-position: 67% 10.6%;
        width: 65px;
        height: 41px; }
      #cart-inner .cards li i.svg-single-jcb {
        background-position: 82% 71.1%;
        width: 65px;
        height: 41px; }
      #cart-inner .cards li i.svg-flat-maestro {
        background-position: 0 31.7%;
        width: 65px;
        height: 41px; }
      #cart-inner .cards li i.svg-flat-jcb {
        background-position: 26.839% 10.7%;
        width: 65px;
        height: 41px; }
      #cart-inner .cards li i.svg-visa-debit {
        background: url(../img/ico/visa-debit.svg) center center no-repeat;
        width: 60px;
        height: 41px;
        background-size: 60px 41px; }
      #cart-inner .cards li i.svg-flat-benefit {
        background: url(../img/ico/benefit-logo.svg) center center no-repeat;
        width: 45px;
        height: 52px;
        background-color: #fff;
        border-radius: 5px; }
  #cart-inner .image-we-accept {
    display: block; }
    #cart-inner .image-we-accept img {
      width: 100%;
      margin: 20px auto; }
  #cart-inner .cart-action {
    margin-top: 40px;
    text-align: center;
    max-width: 540px;
    margin: auto; }
    #cart-inner .cart-action li {
      display: inline-block;
      vertical-align: middle;
      margin-left: 10px;
      margin-right: 10px; }
    #cart-inner .cart-action a {
      margin-top: 20px;
      font: normal normal 500 16px/55px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #ffffff;
      opacity: 1;
      transition: 0.25s ease-in-out;
      text-align: center;
      width: 257px;
      max-width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      background-color: #2959D3;
      text-transform: none;
      border-radius: 17px;
      padding: 0px;
      border: none;
      letter-spacing: 0;
      font-size: 14px;
      background-color: #2959D3;
      width: 100%; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #cart-inner .cart-action a {
          height: 50px;
          line-height: 50px;
          font-size: 15px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #cart-inner .cart-action a {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #cart-inner .cart-action a {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #cart-inner .cart-action a {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      #cart-inner .cart-action a:hover {
        background: #8fd2ee;
        text-decoration: none; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #cart-inner .cart-action a {
          margin: auto;
          display: block; } }
      @media only screen and (max-width: 767px) {
        #cart-inner .cart-action a {
          margin: auto;
          display: block; } }
    #cart-inner .cart-action button {
      display: block;
      text-align: center;
      font-family: "Montserrat-Medium";
      font-weight: 300;
      font-size: 17px;
      letter-spacing: 0.08em;
      width: 315.46px;
      height: 60px;
      line-height: 60px;
      text-align: center;
      letter-spacing: 0px;
      color: #ffffff;
      opacity: 1;
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      width: 100%;
      background: #6799c8 0% 0% no-repeat padding-box;
      color: #fff;
      border: 2px solid #6799c8; }
      #cart-inner .cart-action button:hover {
        background-color: #d49978 !important;
        color: #fff !important;
        border-color: #d49978 !important; }
    #cart-inner .cart-action a.main-checkout {
      height: 90px;
      line-height: 30px; }
    #cart-inner .cart-action button.main-checkout {
      height: 90px;
      line-height: 30px; }
    #cart-inner .cart-action li.continue {
      margin-left: 0; }
      #cart-inner .cart-action li.continue a {
        background: transparent;
        border: 2px solid #c7c7c7;
        color: #999999; }
  #cart-inner #cart-form {
    overflow: hidden; }
  #cart-inner .cart-empty {
    text-align: center;
    margin-top: 150px;
    margin-bottom: 100px; }
    #cart-inner .cart-empty h3 {
      font-family: "Brandon Grotesque Medium";
      font-weight: normal;
      font-size: 39px;
      letter-spacing: 0em;
      line-height: 42px;
      text-align: center;
      color: #2c2c2c;
      margin-bottom: 25px; }
    #cart-inner .cart-empty p {
      font-family: "Futura Book";
      font-weight: 300;
      font-size: 24px;
      letter-spacing: 0.01em;
      line-height: 35px;
      color: #999999; }
      #cart-inner .cart-empty p a {
        color: #999999; }
        #cart-inner .cart-empty p a:hover {
          color: rgba(34, 34, 34, 0.7); }
    #cart-inner .cart-empty a.continue {
      margin-top: 60px;
      display: block;
      width: 282px;
      height: 69px;
      background: #2c2c2c;
      font-family: "Futura Book";
      font-weight: 300;
      font-size: 16px;
      letter-spacing: 0.08em;
      line-height: 69px;
      text-align: center;
      color: #fff;
      margin-left: auto;
      margin-right: auto; }
      #cart-inner .cart-empty a.continue:hover {
        background-color: rgba(34, 34, 34, 0.7); }
  #cart-inner .cart-success {
    text-align: center;
    max-width: 100%;
    width: 900px;
    margin: auto; }
    #cart-inner .cart-success .icon {
      margin-left: auto;
      margin-right: auto;
      max-width: 150px;
      width: 100%;
      margin-bottom: 40px; }
      #cart-inner .cart-success .icon svg {
        max-width: 100%;
        height: auto; }
    #cart-inner .cart-success img {
      margin-left: auto;
      margin-right: auto;
      max-width: 150px;
      width: 100%;
      margin-bottom: 40px; }
    #cart-inner .cart-success i {
      font-size: 130px;
      color: #0d792d;
      margin-bottom: 40px; }
    #cart-inner .cart-success h3 {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-size: 35px;
      line-height: 45px;
      text-align: center;
      color: #121212;
      letter-spacing: 0.2px;
      margin: 20px auto; }
      html[dir="rtl"] #cart-inner .cart-success h3 {
        font-family: "Cairo", sans-serif;
        letter-spacing: 0px;
        letter-spacing: 0; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #cart-inner .cart-success h3 {
          font-size: 32px;
          line-height: 42px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #cart-inner .cart-success h3 {
          font-size: 28px;
          line-height: 38px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #cart-inner .cart-success h3 {
          font-size: 24px;
          line-height: 34px; } }
      @media only screen and (max-width: 767px) {
        #cart-inner .cart-success h3 {
          font-size: 20px;
          line-height: 25px; } }
    #cart-inner .cart-success p {
      max-width: 80%;
      width: 350px;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      text-align: center;
      margin: 0px auto 15px;
      color: #121212;
      font: normal normal 400 15px/28px "Poppins", sans-serif; }
      #cart-inner .cart-success p span {
        font-weight: 500; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #cart-inner .cart-success p {
          font-size: 14px;
          line-height: 28px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #cart-inner .cart-success p {
          font-size: 14px;
          line-height: 26px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #cart-inner .cart-success p {
          font-size: 13px;
          line-height: 24px;
          margin-bottom: 20px; } }
      @media only screen and (max-width: 767px) {
        #cart-inner .cart-success p {
          font-size: 12px;
          line-height: 22px;
          margin-bottom: 20px; } }
      #cart-inner .cart-success p a {
        color: #8fd2ee; }
        #cart-inner .cart-success p a:hover {
          color: #2959D3; }
    #cart-inner .cart-success ul {
      list-style-type: disc;
      display: table;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
      padding-left: 20px;
      margin-bottom: 25px; }
      #cart-inner .cart-success ul li {
        font-family: "Futura Book";
        font-weight: 300;
        font-size: 24px;
        letter-spacing: 0.01em;
        line-height: 35px;
        color: #999999;
        width: 100%;
        max-width: 770px;
        margin-left: auto;
        margin-right: auto; }
        #cart-inner .cart-success ul li a {
          color: rgba(34, 34, 34, 0.7); }
          #cart-inner .cart-success ul li a:hover {
            color: #2c2c2c; }
    #cart-inner .cart-success a.continue {
      font: normal normal 500 16px/55px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #ffffff;
      opacity: 1;
      transition: 0.25s ease-in-out;
      text-align: center;
      width: 257px;
      max-width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      background-color: #2959D3;
      text-transform: none;
      border-radius: 17px;
      padding: 0px;
      border: none;
      margin: auto;
      display: 20px block; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #cart-inner .cart-success a.continue {
          height: 50px;
          line-height: 50px;
          font-size: 15px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #cart-inner .cart-success a.continue {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #cart-inner .cart-success a.continue {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #cart-inner .cart-success a.continue {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      #cart-inner .cart-success a.continue:hover {
        background: #8fd2ee;
        text-decoration: none; }

.checkout-box {
  background: #f3f3f5;
  padding: 30px 30px; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .checkout-box {
      padding: 30px 30px; } }
  @media only screen and (max-width: 767px) {
    .checkout-box {
      padding: 30px 30px; } }

.checkout-box .summary p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #4c4c4c;
  text-align: left;
  letter-spacing: 0px;
  opacity: 1;
  text-transform: none;
  font-size: 16px;
  line-height: 40px;
  text-align: left;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  height: 15px; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .checkout-box .summary p {
      font-size: 15px;
      line-height: 40px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .checkout-box .summary p {
      font-size: 15px;
      line-height: 40px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .checkout-box .summary p {
      font-size: 15px;
      line-height: 35px;
      height: 30px; } }
  @media only screen and (max-width: 767px) {
    .checkout-box .summary p {
      font-size: 14px;
      line-height: 30px;
      height: 30px; } }

#sidebar-wishlist-block #cart-wrapper #cart-slider-checkout {
  height: 100%;
  max-height: 65vh;
  overflow-y: auto;
  overflow-x: hidden; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item:focus {
    outline: 0; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .cart-box {
    margin-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    padding-bottom: 10px; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .row {
    height: 100%; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .col-md-7 {
    height: 100%;
    padding-left: 0; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .col-sm-7 {
    height: 100%;
    padding-left: 0; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .col-md-4 {
    height: 100%;
    padding-right: 0px !important;
    padding-left: 0px;
    width: 190px;
    height: 190px; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .col-sm-4 {
    height: 100%;
    padding-right: 0px !important;
    padding-left: 0px;
    width: 190px;
    height: 190px; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .product-description {
    padding-right: 25px;
    position: absolute;
    top: 0%;
    width: 100%; }
    #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .product-description span:nth-last-of-type(1) {
      display: block; }
    #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .product-description .product-details {
      margin-top: 30px; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .product-description .product-details {
          margin-top: 15px; } }
      @media only screen and (max-width: 767px) {
        #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .product-description .product-details {
          margin-top: 10px; } }
    #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .product-description .product-qty {
      font-family: "Montserrat-Regular";
      font-size: 18px;
      letter-spacing: 0.07em;
      line-height: 22px;
      text-align: left;
      float: left;
      letter-spacing: 0px;
      color: #d49978;
      opacity: 1;
      margin-right: 10px; }
    #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item .product-description .product-price {
      font-family: "Montserrat-Medium";
      font-size: 18px;
      letter-spacing: 0px;
      line-height: 22px;
      text-align: left;
      color: #2f3432;
      opacity: 1; }
  #sidebar-wishlist-block #cart-wrapper #cart-slider-checkout .item.slick-current .cart-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.7) !important; }

#cart-inner table.summary td.paragraph {
  border-bottom: none;
  width: 100%;
  padding: 0px; }

.main-checkout-row #cart-slider-checkout {
  margin-top: 60px; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .main-checkout-row #cart-slider-checkout {
      margin-top: 30px; } }
  @media only screen and (max-width: 767px) {
    .main-checkout-row #cart-slider-checkout {
      margin-top: 20px; } }
  @media (min-width: 992px) {
    .main-checkout-row #cart-slider-checkout {
      margin-right: 45px; } }
  .main-checkout-row #cart-slider-checkout .item:focus {
    outline: 0; }
  .main-checkout-row #cart-slider-checkout .item .cart-box {
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    padding-bottom: 15px; }
    .main-checkout-row #cart-slider-checkout .item .cart-box:last-of-type {
      border-bottom: none; }
    .main-checkout-row #cart-slider-checkout .item .cart-box .remove-item-cart {
      position: absolute;
      top: 15px;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 0px;
      color: #d8a5a2;
      background: none;
      border: none;
      font-size: 24px;
      padding: 0px;
      z-index: 5; }
      .main-checkout-row #cart-slider-checkout .item .cart-box .remove-item-cart:hover {
        cursor: pointer;
        color: rgba(34, 34, 34, 0.7); }
  .main-checkout-row #cart-slider-checkout .item .row {
    height: 100%;
    margin: 0px; }
  .main-checkout-row #cart-slider-checkout .item .col-md-8 {
    height: 100%;
    min-height: 145px;
    padding-left: 0;
    width: calc(100% - 200px) !important;
    height: 100%;
    padding-left: 20px;
    padding-right: 0px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .main-checkout-row #cart-slider-checkout .item .col-md-8 {
        width: calc(100% - 160px) !important; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .main-checkout-row #cart-slider-checkout .item .col-md-8 {
        width: calc(100% - 130px) !important;
        min-height: 120px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      .main-checkout-row #cart-slider-checkout .item .col-md-8 {
        width: 100% !important;
        min-height: 100px;
        padding-left: 0px;
        display: block;
        margin: auto; } }
    @media only screen and (max-width: 767px) {
      .main-checkout-row #cart-slider-checkout .item .col-md-8 {
        width: 100% !important;
        min-height: 90px;
        padding-left: 0px;
        display: block;
        margin: auto; } }
  .main-checkout-row #cart-slider-checkout .item .col-md-4 {
    height: 100%;
    padding-right: 0px !important;
    padding-left: 0px;
    width: 190px;
    height: 190px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .main-checkout-row #cart-slider-checkout .item .col-md-4 {
        width: 150px;
        height: 150px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .main-checkout-row #cart-slider-checkout .item .col-md-4 {
        width: 120px;
        height: 120px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      .main-checkout-row #cart-slider-checkout .item .col-md-4 {
        width: 160px;
        height: 160px;
        display: block;
        margin: auto; } }
    @media only screen and (max-width: 767px) {
      .main-checkout-row #cart-slider-checkout .item .col-md-4 {
        width: 150px;
        height: 150px;
        margin: auto; } }
  .main-checkout-row #cart-slider-checkout .item .image-holder {
    width: 100%; }
    .main-checkout-row #cart-slider-checkout .item .image-holder:hover img {
      opacity: 0.9; }
    .main-checkout-row #cart-slider-checkout .item .image-holder img {
      width: 100%; }
  .main-checkout-row #cart-slider-checkout .item .product-description {
    padding-right: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 190px;
    width: 100%; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      .main-checkout-row #cart-slider-checkout .item .product-description {
        min-height: 150px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .main-checkout-row #cart-slider-checkout .item .product-description {
        min-height: 120px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      .main-checkout-row #cart-slider-checkout .item .product-description {
        min-height: 90px;
        margin-top: 20px; } }
    @media only screen and (max-width: 767px) {
      .main-checkout-row #cart-slider-checkout .item .product-description {
        min-height: 90px;
        margin-top: 20px; } }
    .main-checkout-row #cart-slider-checkout .item .product-description span:nth-last-of-type(1) {
      display: block; }
    .main-checkout-row #cart-slider-checkout .item .product-description .product-title {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 19px;
      line-height: 25px;
      text-align: left;
      margin-bottom: 5px;
      letter-spacing: 0.38px;
      color: #413f47;
      display: block;
      opacity: 1;
      margin-bottom: 10px;
      padding-right: 30px; }
      .main-checkout-row #cart-slider-checkout .item .product-description .product-title a {
        color: inherit;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical; }
        .main-checkout-row #cart-slider-checkout .item .product-description .product-title a:hover {
          color: #4c4c4c; }
    .main-checkout-row #cart-slider-checkout .item .product-description .product-detailes .detailes {
      display: block;
      width: 100%;
      text-align: left;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 12px;
      letter-spacing: 0.01em;
      line-height: 20px;
      text-align: left;
      color: #626262; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        .main-checkout-row #cart-slider-checkout .item .product-description .product-detailes .detailes {
          font-size: 11px;
          line-height: 18px; } }
      @media only screen and (max-width: 767px) {
        .main-checkout-row #cart-slider-checkout .item .product-description .product-detailes .detailes {
          font-size: 10px;
          line-height: 17px; } }
    .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity {
      margin: 15px 0px 0px;
      width: 100%; }
      .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .product-price {
        opacity: 1;
        float: right;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 16px;
        line-height: 40px;
        text-align: left;
        color: #2959D3;
        font-weight: 500;
        display: block; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .product-price {
            font-size: 15px;
            line-height: 40px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .product-price {
            font-size: 15px;
            line-height: 40px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .product-price {
            font-size: 15px;
            line-height: 35px; } }
        @media only screen and (max-width: 767px) {
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .product-price {
            font-size: 14px;
            line-height: 30px; } }
      .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap {
        max-width: 120px;
        display: inline-block;
        vertical-align: middle;
        border: 1px solid #e5e5e5;
        padding: 0 15px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap {
            padding: 0 10px; } }
        @media only screen and (max-width: 767px) {
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap {
            padding: 0 10px; } }
        .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input {
          position: relative;
          display: inline-block;
          vertical-align: middle; }
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input input {
            -webkit-appearance: none;
            width: 80px;
            height: 40px;
            border: 0;
            background: none;
            text-align: center;
            font-family: "Poppins", sans-serif;
            pointer-events: none;
            font-weight: 400;
            font-size: 14px;
            color: #4c4c4c !important; }
            .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input input:focus {
              outline: none; }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input input {
                width: 65px;
                height: 35px;
                font-size: 13px; } }
            @media only screen and (max-width: 767px) {
              .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input input {
                width: 70px;
                height: 30px;
                font-size: 12px; } }
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn {
            display: block;
            position: absolute;
            width: 20px;
            height: 40px;
            font-size: 19px;
            font-weight: 300;
            text-align: center;
            line-height: 40px;
            top: 0;
            text-decoration: none;
            color: #4c4c4c; }
            @media only screen and (min-width: 768px) and (max-width: 992px) {
              .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn {
                height: 35px;
                line-height: 35px; } }
            @media only screen and (max-width: 767px) {
              .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn {
                height: 30px;
                line-height: 30px; } }
            .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn:first-child {
              right: auto;
              left: 0; }
            .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn:hover {
              color: #8fd2ee; }
            .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn.decrease {
              left: 0; }
            .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn.increase {
              right: 0; }
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn.decrease {
            left: 0; }
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input .incr-btn.increase {
            right: 0; }
        .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input.count-input-sm {
          max-width: 125px; }
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input.count-input-sm input {
            height: 36px; }
        .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input.count-input-lg {
          max-width: 200px; }
          .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .count-inp-wrap .count-input.count-input-lg input {
            height: 70px;
            border-radius: 3px; }
      .main-checkout-row #cart-slider-checkout .item .product-description .product-quantity .update-item-cart {
        border: 0;
        background-color: transparent;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0px;
        font-weight: 500;
        color: #2959D3;
        opacity: 1;
        width: 90px; }
  .main-checkout-row #cart-slider-checkout .item.slick-current .cart-box {
    border-bottom: 1px solid rgba(0, 0, 0, 0.7) !important; }

.main-checkout-row .payment-logos {
  margin: 30px auto 0; }
  .main-checkout-row .payment-logos-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px; }
    .main-checkout-row .payment-logos-wrapper img {
      aspect-ratio: 1.53/1;
      width: 40px; }
      @media only screen and (max-width: 767.98px) {
        .main-checkout-row .payment-logos-wrapper img {
          width: 30px; } }

#error-new {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 60px; }
  #error-new img {
    margin-left: auto;
    margin-right: auto;
    max-width: 150px;
    width: 100%;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      #error-new img {
        max-width: 100px; } }
  #error-new h3 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #error-new h3 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #error-new h3 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #error-new h3 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #error-new h3 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }
  #error-new p {
    margin-bottom: 15px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 30px;
    color: #413f47;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #error-new p {
        font-size: 14px;
        line-height: 28px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #error-new p {
        font-size: 14px;
        line-height: 26px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #error-new p {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      #error-new p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 20px; } }
    #error-new p a {
      color: rgba(34, 34, 34, 0.7); }
      #error-new p a:hover {
        color: #2c2c2c; }
  #error-new a.try {
    font: normal normal 500 16px/55px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
    transition: 0.25s ease-in-out;
    text-align: center;
    width: 257px;
    max-width: 100%;
    display: block;
    height: 55px;
    line-height: 55px;
    background-color: #2959D3;
    text-transform: none;
    border-radius: 17px;
    padding: 0px;
    border: none;
    display: block;
    margin: 40px auto 0px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #error-new a.try {
        height: 50px;
        line-height: 50px;
        font-size: 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #error-new a.try {
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #error-new a.try {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    @media only screen and (max-width: 767px) {
      #error-new a.try {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    #error-new a.try:hover {
      background: #8fd2ee;
      text-decoration: none; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #error-new a.try {
        margin: auto;
        display: block; } }
    @media only screen and (max-width: 767px) {
      #error-new a.try {
        margin: auto;
        display: block; } }
  #error-new small {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-weight: normal;
    color: #000;
    font-size: 14px;
    display: block;
    margin-top: 30px; }
    #error-new small a {
      color: #8fd2ee; }
      #error-new small a:hover {
        color: #8fd2ee; }

#failure {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px; }
  @media only screen and (max-width: 767px) {
    #failure {
      margin-top: 50px;
      margin-bottom: 50px; } }
  #failure i {
    font-size: 130px;
    color: #bf3334;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      #failure i {
        font-size: 80px;
        margin-bottom: 20px; } }
  #failure h3 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    letter-spacing: 0em;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    color: #292929;
    position: relative; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #failure h3 {
        font-size: 22px;
        line-height: 45px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #failure h3 {
        font-size: 20px;
        line-height: 40px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #failure h3 {
        margin-bottom: 0px;
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 10px;
        padding-left: 0%; } }
    @media only screen and (max-width: 767px) {
      #failure h3 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 15px; } }
  #failure p {
    margin-bottom: 15px;
    width: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 30px;
    color: #413f47;
    margin-left: auto;
    margin-right: auto; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #failure p {
        font-size: 14px;
        line-height: 28px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #failure p {
        font-size: 14px;
        line-height: 26px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #failure p {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      #failure p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 20px; } }
    #failure p a {
      color: rgba(34, 34, 34, 0.7); }
      #failure p a:hover {
        color: #2c2c2c; }
  #failure a.continue {
    margin-top: 20px;
    font: normal normal 500 16px/55px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
    transition: 0.25s ease-in-out;
    text-align: center;
    width: 257px;
    max-width: 100%;
    display: block;
    height: 55px;
    line-height: 55px;
    background-color: #2959D3;
    text-transform: none;
    border-radius: 17px;
    padding: 0px;
    border: none; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #failure a.continue {
        height: 50px;
        line-height: 50px;
        font-size: 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #failure a.continue {
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #failure a.continue {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    @media only screen and (max-width: 767px) {
      #failure a.continue {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    #failure a.continue:hover {
      background: #8fd2ee;
      text-decoration: none; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #failure a.continue {
        margin: auto;
        display: block; } }
    @media only screen and (max-width: 767px) {
      #failure a.continue {
        margin: auto;
        display: block; } }

#location-wrapper {
  padding-bottom: 100px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #location-wrapper {
      font-size: 15px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #location-wrapper {
      font-size: 14px; } }
  @media only screen and (max-width: 767px) {
    #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: 1199px) {
      #location-wrapper .location-results {
        padding: 30px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #location-wrapper .location-results {
        padding: 20px; } }
    @media only screen and (max-width: 767px) {
      #location-wrapper .location-results {
        padding: 20px;
        width: 100%;
        height: auto; } }
    #location-wrapper .location-results header {
      padding-bottom: 25px; }
      @media only screen and (max-width: 767px) {
        #location-wrapper .location-results header {
          padding-bottom: 20px; } }
      #location-wrapper .location-results header h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        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: 1199px) {
        #location-wrapper .location-results .filter-block {
          padding-bottom: 15px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #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: 400;
        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: 992px) {
        #location-wrapper .location-results .location-block {
          padding-left: 100px;
          padding-right: 15px; } }
      @media only screen and (max-width: 767px) {
        #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: #8fd2ee; }
      #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: 992px) {
          #location-wrapper .location-results .location-block img {
            left: 25px; } }
        @media only screen and (max-width: 767px) {
          #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: 400;
        font-size: 1em;
        line-height: 1.5;
        color: #343538;
        margin-bottom: 5px; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #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: 400;
        font-size: 1em;
        line-height: 1.5; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #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: #8fd2ee; }
      #location-wrapper .location-results .location-block h6 {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        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: 400;
        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: 400;
        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: #8fd2ee;
          text-decoration: none; }
  #location-wrapper .location-map {
    float: right;
    width: 50%; }
    @media only screen and (max-width: 767px) {
      #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: 992px) {
        #location-wrapper .location-map iframe {
          height: 900px; } }
      @media only screen and (max-width: 767px) {
        #location-wrapper .location-map iframe {
          height: 400px; } }

.location-intro h1 {
  margin-bottom: 0px !important; }

#checkout-checkout {
  padding-bottom: 80px; }
  #checkout-checkout #intro {
    padding-top: 50px;
    padding-bottom: 50px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #checkout-checkout #intro {
        padding-top: 30px;
        padding-bottom: 30px; } }
    @media only screen and (max-width: 767px) {
      #checkout-checkout #intro {
        padding-top: 20px;
        padding-bottom: 20px; } }
  #checkout-checkout #content .panel-heading {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-weight: 400;
    background: #2959D3;
    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: 767px) {
        #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: 767px) {
    #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-weight: 400;
    font-size: 15px; }
    @media only screen and (max-width: 767px) {
      #checkout-checkout #content .panel-body {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px; } }
    @media only screen and (max-width: 767px) {
      #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 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;
      font-weight: 400; }
      @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: 1199px) {
        #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;
        font-weight: 300; }
        #checkout-checkout #content .panel-body table tr td a:hover {
          color: #8fd2ee; }
    #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: 767px) {
        #checkout-checkout #content .panel-body legend,
        #checkout-checkout #content .panel-body h2 {
          font-size: 20px; } }
    #checkout-checkout #content .panel-body p {
      font: normal normal 400 14px/26px "Poppins", sans-serif !important;
      letter-spacing: 0em;
      color: #121212 !important; }
      #checkout-checkout #content .panel-body p strong {
        font-family: "Poppins", sans-serif;
        font-weight: 400 !important;
        color: #121212 !important; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #checkout-checkout #content .panel-body p {
          font-size: 13px !important;
          line-height: 25px !important; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #checkout-checkout #content .panel-body p {
          font-size: 13px !important;
          line-height: 25px !important; } }
      @media only screen and (max-width: 767px) {
        #checkout-checkout #content .panel-body p {
          font-size: 12px !important;
          line-height: 20px !important; } }
      #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;
      text-align: left;
      font: normal normal 500 14px/21px "Poppins", sans-serif;
      letter-spacing: 0.28px;
      color: #121212;
      opacity: 1;
      margin-bottom: 5px; }
      html[dir="rtl"] #checkout-checkout #content .panel-body label {
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #checkout-checkout #content .panel-body label {
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #checkout-checkout #content .panel-body label {
          font-size: 12px; } }
      #checkout-checkout #content .panel-body label a {
        color: #2959D3; }
        #checkout-checkout #content .panel-body label a:hover {
          color: #2959D3; }
    #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: 992px) {
        #checkout-checkout #content .panel-body .buttons {
          padding-top: 7px;
          padding-bottom: 7px; } }
      @media only screen and (max-width: 767px) {
        #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: #8fd2ee; }
          #checkout-checkout #content .panel-body .buttons label a:hover {
            color: #8fd2ee; }
      #checkout-checkout #content .panel-body .buttons input[type="submit"] {
        font: normal normal 500 16px/55px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #ffffff;
        opacity: 1;
        transition: 0.25s ease-in-out;
        text-align: center;
        width: 257px;
        max-width: 100%;
        display: block;
        height: 55px;
        line-height: 55px;
        background-color: #2959D3;
        text-transform: none;
        border-radius: 17px;
        padding: 0px;
        border: none;
        border: none; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #checkout-checkout #content .panel-body .buttons input[type="submit"] {
            height: 50px;
            line-height: 50px;
            font-size: 15px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #checkout-checkout #content .panel-body .buttons input[type="submit"] {
            height: 50px;
            line-height: 50px;
            font-size: 14px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #checkout-checkout #content .panel-body .buttons input[type="submit"] {
            height: 50px;
            line-height: 50px;
            font-size: 13px; } }
        @media only screen and (max-width: 767px) {
          #checkout-checkout #content .panel-body .buttons input[type="submit"] {
            height: 50px;
            line-height: 50px;
            font-size: 13px; } }
        #checkout-checkout #content .panel-body .buttons input[type="submit"]:hover {
          background: #8fd2ee;
          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-weight: 400;
      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: #8fd2ee;
        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%;
      display: block;
      height: 55px;
      line-height: 55px;
      padding: 0 20px;
      text-align: left;
      font: normal normal 400 15px/28px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #121212;
      text-transform: none;
      opacity: 1;
      border-radius: 0px !important;
      border: 1px solid #f1f1f1;
      background: white !important;
      border-radius: 6px !important;
      box-shadow: none;
      outline: none; }
      html[dir="rtl"] #checkout-checkout #content .panel-body input[type="text"], html[dir="rtl"] #checkout-checkout #content .panel-body input[type="tel"], html[dir="rtl"] #checkout-checkout #content .panel-body input[type="email"], html[dir="rtl"] #checkout-checkout #content .panel-body input[type="password"] {
        font-family: "Cairo", sans-serif !important;
        text-align: right;
        letter-spacing: 0; }
      #checkout-checkout #content .panel-body input[type="text"]:focus, #checkout-checkout #content .panel-body input[type="tel"]:focus, #checkout-checkout #content .panel-body input[type="email"]:focus, #checkout-checkout #content .panel-body input[type="password"]:focus {
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }
      #checkout-checkout #content .panel-body input[type="text"].placeholder, #checkout-checkout #content .panel-body input[type="tel"].placeholder, #checkout-checkout #content .panel-body input[type="email"].placeholder, #checkout-checkout #content .panel-body input[type="password"].placeholder {
        color: #888888; }
      #checkout-checkout #content .panel-body input[type="text"]:-moz-placeholder, #checkout-checkout #content .panel-body input[type="tel"]:-moz-placeholder, #checkout-checkout #content .panel-body input[type="email"]:-moz-placeholder, #checkout-checkout #content .panel-body input[type="password"]:-moz-placeholder {
        color: #888888; }
      #checkout-checkout #content .panel-body input[type="text"]::-moz-placeholder, #checkout-checkout #content .panel-body input[type="tel"]::-moz-placeholder, #checkout-checkout #content .panel-body input[type="email"]::-moz-placeholder, #checkout-checkout #content .panel-body input[type="password"]::-moz-placeholder {
        color: #888888; }
      #checkout-checkout #content .panel-body input[type="text"]:-ms-input-placeholder, #checkout-checkout #content .panel-body input[type="tel"]:-ms-input-placeholder, #checkout-checkout #content .panel-body input[type="email"]:-ms-input-placeholder, #checkout-checkout #content .panel-body input[type="password"]:-ms-input-placeholder {
        color: #888888; }
      #checkout-checkout #content .panel-body input[type="text"]::-webkit-input-placeholder, #checkout-checkout #content .panel-body input[type="tel"]::-webkit-input-placeholder, #checkout-checkout #content .panel-body input[type="email"]::-webkit-input-placeholder, #checkout-checkout #content .panel-body input[type="password"]::-webkit-input-placeholder {
        color: #888888; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #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"] {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #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"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #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"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px;
          padding: 0px 15px; } }
      @media only screen and (max-width: 767px) {
        #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"] {
          height: 50px;
          line-height: 50px;
          font-size: 12px;
          padding: 0px 15px; } }
    #checkout-checkout #content .panel-body input:focus {
      outline: 0;
      border: 1px solid #e1e1e1; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #checkout-checkout #content .panel-body input {
        height: 50px !important;
        line-height: 50px !important; } }
    @media only screen and (max-width: 767px) {
      #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 (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: 767px) {
      #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-weight: 400;
      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%;
      background: #fff;
      border: 1px solid #e1e1e1;
      padding: 0px 20px !important;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      -webkit-appearance: none;
      font-size: 1.1em;
      border-radius: 0;
      height: 55px;
      line-height: 55px;
      text-align: left;
      margin-bottom: 15px; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #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: 767px) {
        #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;
      font: normal normal 500 16px/55px "Poppins", sans-serif;
      letter-spacing: 0px;
      color: #ffffff;
      opacity: 1;
      transition: 0.25s ease-in-out;
      text-align: center;
      width: 257px;
      max-width: 100%;
      display: block;
      height: 55px;
      line-height: 55px;
      background-color: #2959D3;
      text-transform: none;
      border-radius: 17px;
      padding: 0px;
      border: none;
      border: none;
      width: 250px; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #checkout-checkout #content .panel-body input[type="button"] {
          height: 50px;
          line-height: 50px;
          font-size: 15px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #checkout-checkout #content .panel-body input[type="button"] {
          height: 50px;
          line-height: 50px;
          font-size: 14px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #checkout-checkout #content .panel-body input[type="button"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      @media only screen and (max-width: 767px) {
        #checkout-checkout #content .panel-body input[type="button"] {
          height: 50px;
          line-height: 50px;
          font-size: 13px; } }
      #checkout-checkout #content .panel-body input[type="button"]:hover {
        background: #8fd2ee;
        text-decoration: none; }
      @media only screen and (max-width: 767px) {
        #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-weight: 500;
      font-size: 11px; }
      @media (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: 767px) {
      #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: 767px) {
      #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: 767px) {
    #checkout-checkout #collapse-checkout-option .col-sm-6:last-child {
      margin-top: 40px; } }
  #checkout-checkout .bootstrap-select {
    width: 100%;
    position: relative;
    margin-bottom: 15px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #checkout-checkout .bootstrap-select {
        margin-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      #checkout-checkout .bootstrap-select {
        margin-bottom: 20px; } }
    #checkout-checkout .bootstrap-select:focus {
      outline: 0;
      background: #fff; }
    #checkout-checkout .bootstrap-select:hover {
      background: #fff; }
    #checkout-checkout .bootstrap-select .btn {
      width: 100%;
      height: 55px;
      line-height: 41px;
      background: #fff;
      border: 1px solid #e1e1e1;
      padding-left: 30px;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 1em;
      border-radius: 0; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #checkout-checkout .bootstrap-select .btn {
          height: 60px;
          line-height: 60px; } }
      @media only screen and (max-width: 767px) {
        #checkout-checkout .bootstrap-select .btn {
          height: 56px;
          line-height: 56px; } }
      #checkout-checkout .bootstrap-select .btn:focus {
        outline: none !important;
        background: #fff;
        border: 1px solid #e1e1e1;
        box-shadow: none; }
      #checkout-checkout .bootstrap-select .btn:hover {
        background: #fff; }
    #checkout-checkout .bootstrap-select.btn-group {
      width: 100%; }
      #checkout-checkout .bootstrap-select.btn-group .dropdown-toggle {
        box-shadow: none; }
        #checkout-checkout .bootstrap-select.btn-group .dropdown-toggle .filter-option {
          font-family: "Poppins", sans-serif;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            #checkout-checkout .bootstrap-select.btn-group .dropdown-toggle .filter-option {
              bottom: 6px;
              position: relative; } }
    #checkout-checkout .bootstrap-select .caret {
      width: 55px;
      height: 49px;
      border: none;
      background: #fff;
      top: 2px;
      right: 0px;
      transition: 0.25s ease-in-out; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #checkout-checkout .bootstrap-select .caret {
          height: 58px; } }
      @media only screen and (max-width: 767px) {
        #checkout-checkout .bootstrap-select .caret {
          height: 54px; } }
      #checkout-checkout .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 6 Free";
        font-weight: bold;
        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 .bootstrap-select .dropdown-menu {
      padding: 5px;
      box-shadow: none; }
      #checkout-checkout .bootstrap-select .dropdown-menu li a {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        font-size: 1em;
        padding: 5px; }
        #checkout-checkout .bootstrap-select .dropdown-menu li a span {
          font-family: "Poppins", sans-serif;
          font-weight: 500; }
        #checkout-checkout .bootstrap-select .dropdown-menu li a:hover {
          color: #8fd2ee; }
  #checkout-checkout .payment-option-box {
    padding: 25px 0px; }

.panel-group .panel + .panel {
  margin-top: 5px; }

@media only screen and (max-width: 767px) {
  #history-order-details {
    border: 0 !important; } }

@media only screen and (max-width: 767px) {
  #history-order-details tbody,
  #history-order-details tr,
  #history-order-details td {
    display: block !important; } }

@media only screen and (max-width: 767px) {
  #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: 767px) {
  #history-summary {
    display: block; } }

@media only screen and (max-width: 767px) {
  #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: 767px) {
  #history-summary thead {
    display: none; } }

@media only screen and (max-width: 767px) {
  #history-summary tbody {
    display: block;
    text-align: left; } }

@media only screen and (max-width: 767px) {
  #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: 767px) {
  #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: 767px) {
  #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: 400;
    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: 992px) {
      #history-totals td {
        padding: 7px 0px !important;
        font-size: 14px !important; } }
    @media only screen and (max-width: 767px) {
      #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;
    font-weight: 500; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #history-totals tr:last-child td {
        font-size: 16px !important; } }
    @media only screen and (max-width: 767px) {
      #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; } }

#popupModal {
  text-align: center;
  padding: 0 !important;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999 !important; }
  #popupModal:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px; }
  #popupModal .modal-dialog {
    width: 627px !important;
    max-width: 627px !important;
    margin: 25px auto;
    transform: translate(0%, 0%); }
  #popupModal .modal-header {
    border: none !important;
    padding: 0px;
    padding-bottom: 0 !important;
    min-height: 0 !important; }
    #popupModal .modal-header .close {
      right: 12px;
      position: absolute !important;
      top: 12px !important;
      opacity: 1 !important;
      padding: 0 !important;
      margin-top: 0px !important;
      z-index: 99999;
      width: 32px !important;
      height: 32px !important;
      max-width: 32px !important;
      line-height: 26px;
      color: #fff;
      border-radius: 50%;
      background-color: #8fd2ee;
      font-weight: 300;
      font-size: 26px;
      -webkit-transition: 0.25s ease-in-out;
      -o-transition: 0.25s ease-in-out;
      transition: 0.25s ease-in-out;
      border: none !important;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      display: flex;
      align-items: center;
      justify-content: center; }
      #popupModal .modal-header .close:hover {
        background-color: #2959D3 !important; }
      #popupModal .modal-header .close span {
        font-family: serif;
        font-size: 22px; }
  #popupModal .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important; }
    #popupModal .modal-content .modal-body {
      padding: 0px !important; }
      #popupModal .modal-content .modal-body .popup-content {
        max-width: 100%; }
        #popupModal .modal-content .modal-body .popup-content p,
        #popupModal .modal-content .modal-body .popup-content h2 {
          font-family: "Poppins", sans-serif;
          font-weight: 400;
          font-size: 23px;
          line-height: 30px;
          text-align: center;
          color: #676767;
          width: max-content;
          margin: auto;
          max-width: 90%;
          letter-spacing: 0px; }
          @media only screen and (max-width: 767px) {
            #popupModal .modal-content .modal-body .popup-content p,
            #popupModal .modal-content .modal-body .popup-content h2 {
              font-size: 16px;
              line-height: 26px; } }
        #popupModal .modal-content .modal-body .popup-content h2 {
          color: #000000; }
        #popupModal .modal-content .modal-body .popup-content .estimation {
          font-family: "Poppins", sans-serif;
          font-weight: 400;
          font-size: 15px;
          letter-spacing: 0.09em;
          line-height: 35px;
          text-align: center;
          color: #484848;
          margin: 15px auto; }
        #popupModal .modal-content .modal-body .popup-content footer {
          margin-top: 35px;
          text-align: center; }
          @media only screen and (max-width: 767px) {
            #popupModal .modal-content .modal-body .popup-content footer {
              margin-top: 15px; } }
          #popupModal .modal-content .modal-body .popup-content footer a {
            display: block; }
            #popupModal .modal-content .modal-body .popup-content footer a:first-child {
              font-size: 12px;
              padding: 0;
              text-align: center;
              font-family: "Poppins", sans-serif;
              letter-spacing: 0.56px;
              font-weight: 500;
              transition: 0.25s ease-in-out;
              display: inline-block;
              height: 40px;
              line-height: 40px;
              background-color: #2959D3;
              color: #fff;
              border: none;
              padding: 0px 50px;
              margin: auto; }
              #popupModal .modal-content .modal-body .popup-content footer a:first-child:hover {
                background: #8fd2ee !important;
                color: #fff !important; }
            #popupModal .modal-content .modal-body .popup-content footer a:last-child {
              font-size: 13px;
              margin: 20px auto 20px;
              text-align: center;
              margin-left: 5px;
              letter-spacing: 0px;
              color: #626262;
              font-family: "Poppins", sans-serif;
              font-weight: 700; }
              #popupModal .modal-content .modal-body .popup-content footer a:last-child:hover {
                color: #2959D3 !important; }
        #popupModal .modal-content .modal-body .popup-content .offer-details {
          font-size: 12px;
          color: #413f47;
          font-family: "Poppins", sans-serif;
          font-weight: 400; }
        #popupModal .modal-content .modal-body .popup-content #text-terms-conditions {
          text-align: center;
          font: normal normal 400 12px/31px "Poppins", sans-serif;
          letter-spacing: -0.12px;
          color: #646464;
          opacity: 1; }

@media (min-width: 768px) {
  #popupModal .modal-dialog {
    width: 700px !important;
    max-width: 700px !important; }
  #popupModal .modal-content .modal-body {
    background-color: #f8f8f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    #popupModal .modal-content .modal-body .popup-img {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-flex: 0;
      width: 40%;
      margin-left: 0px; }
    #popupModal .modal-content .modal-body .popup-content {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      padding-left: 45px;
      padding-right: 45px;
      padding-top: 35px;
      padding-bottom: 0px;
      width: 60%; } }

@media only screen and (max-width: 767px) {
  #popupModal .modal-dialog {
    max-width: 90% !important; }
  #popupModal .modal-content .modal-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0px !important; }
    #popupModal .modal-content .modal-body .popup-img {
      margin-top: 0px; }
      #popupModal .modal-content .modal-body .popup-img img {
        margin-left: auto;
        margin-right: auto; }
    #popupModal .modal-content .modal-body .popup-content {
      padding: 25px 15px 0px; } }

.videos-pages {
  margin-bottom: 90px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .videos-pages {
      margin-bottom: 80px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .videos-pages {
      margin-bottom: 70px; } }
  @media only screen and (max-width: 767px) {
    .videos-pages {
      margin-bottom: 50px; } }
  .videos-pages .row.videos {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap; }
  .videos-pages .row.videos > [class*="col-"] {
    display: flex;
    flex-direction: column; }
  @media only screen and (min-width: 992px) {
    .videos-pages .video:last-of-type .video-wrapper {
      border-bottom: none; } }
  @media only screen and (max-width: 992px) {
    .videos-pages .video {
      border-bottom: 1px solid #e5e5e5;
      margin-bottom: 35px; } }
  .videos-pages .video-wrapper {
    display: flex;
    justify-content: space-around; }
    @media only screen and (min-width: 992px) {
      .videos-pages .video-wrapper {
        border-bottom: 1px solid #e5e5e5; } }
    @media only screen and (max-width: 992px) {
      .videos-pages .video-wrapper {
        display: block;
        padding-bottom: 15px; } }
    .videos-pages .video-wrapper .content {
      width: 47%;
      margin-left: auto;
      align-self: center;
      padding-right: 50px; }
      @media only screen and (max-width: 992px) {
        .videos-pages .video-wrapper .content {
          width: 100%;
          padding-right: 0px;
          padding-bottom: 10px; } }
      .videos-pages .video-wrapper .content .header {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-weight: normal;
        font-size: 2.938em;
        line-height: 1.3;
        color: #4c4c4c;
        margin-bottom: 50px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 22px !important; }
        @media screen and (min-width: 1025px) and (max-height: 767px) {
          .videos-pages .video-wrapper .content .header {
            margin-bottom: 30px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .videos-pages .video-wrapper .content .header {
            margin-bottom: 30px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          .videos-pages .video-wrapper .content .header {
            margin-bottom: 30px; } }
        @media only screen and (max-width: 767px) {
          .videos-pages .video-wrapper .content .header {
            margin-bottom: 30px;
            font-size: 2.5em; } }
        @media only screen and (max-width: 767px) {
          .videos-pages .video-wrapper .content .header {
            font-size: 16px !important;
            margin-bottom: 15px !important; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          .videos-pages .video-wrapper .content .header {
            font-size: 16px !important;
            margin-bottom: 15px !important; } }
        @media only screen and (min-width: 240px) and (max-width: 409px) {
          .videos-pages .video-wrapper .content .header {
            font-size: 14px !important;
            margin-bottom: 15px !important; } }
      .videos-pages .video-wrapper .content .date {
        margin-bottom: 25px;
        margin-top: 25px;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 17px !important;
        letter-spacing: 0.02em;
        line-height: 25px !important;
        text-align: left !important;
        color: #747474 !important;
        text-decoration: underline; }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          .videos-pages .video-wrapper .content .date {
            font-size: 15px !important;
            line-height: 24px !important; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          .videos-pages .video-wrapper .content .date {
            font-size: 14px !important;
            line-height: 25px !important; } }
        @media only screen and (max-width: 767px) {
          .videos-pages .video-wrapper .content .date {
            font-size: 13px !important;
            line-height: 25px !important;
            margin-bottom: 10px;
            margin-top: 10px; } }
        .videos-pages .video-wrapper .content .date:last-child {
          margin-bottom: 0; }
    .videos-pages .video-wrapper .img {
      width: 35%; }
      .videos-pages .video-wrapper .img img {
        width: 100%; }
      @media only screen and (max-width: 992px) {
        .videos-pages .video-wrapper .img {
          width: 100%; } }
    .videos-pages .video-wrapper .play-button {
      display: flex;
      align-items: center;
      justify-content: center; }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        .videos-pages .video-wrapper .play-button {
          justify-content: left; } }
      @media only screen and (max-width: 767px) {
        .videos-pages .video-wrapper .play-button {
          justify-content: left; } }
      .videos-pages .video-wrapper .play-button a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 14px !important;
        letter-spacing: 0.02em;
        line-height: 25px !important;
        text-align: left !important;
        color: #626262 !important; }
      .videos-pages .video-wrapper .play-button img {
        margin-right: 7px;
        width: 45px; }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          .videos-pages .video-wrapper .play-button img {
            width: 30px; } }
        @media only screen and (max-width: 767px) {
          .videos-pages .video-wrapper .play-button img {
            width: 30px; } }

.videos-tabs {
  margin: 45px auto 60px;
  width: max-content;
  text-align: center; }
  .videos-tabs li {
    display: inline-block;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 25px;
    padding-bottom: 35px;
    letter-spacing: 0.06em;
    color: #4c4c4c;
    padding: 0px 25px;
    position: relative;
    cursor: pointer; }
    .videos-tabs li a {
      color: #4c4c4c; }
    .videos-tabs li::after {
      content: " ";
      position: absolute;
      bottom: -15px;
      left: 50%;
      width: 100%;
      transform: translateX(-50%);
      height: 22%;
      background: #e4dcf6 0% 0% no-repeat padding-box;
      opacity: 0;
      z-index: -1; }
    .videos-tabs li:hover::after {
      opacity: 1; }
    .videos-tabs li.active::after {
      opacity: 1; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      .videos-tabs li {
        font-size: 18px;
        padding-bottom: 30px;
        padding: 0px 5px; } }
    @media only screen and (max-width: 767px) {
      .videos-tabs li {
        font-size: 18px;
        padding-bottom: 30px;
        padding: 0px 5px; } }

#search-box {
  width: 100%;
  margin: 0; }
  #search-box .search-input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 0 25px 0; }
    #search-box .search-input-wrapper .input {
      border-radius: 8px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      background: #F7F6F6; }
      #search-box .search-input-wrapper .input .search-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none; }
        html[dir="rtl"] #search-box .search-input-wrapper .input .search-icon {
          right: 15PX;
          left: unset;
          letter-spacing: 0; }
        @media only screen and (max-width: 767.98px) {
          #search-box .search-input-wrapper .input .search-icon {
            top: 23px; } }
        #search-box .search-input-wrapper .input .search-icon svg {
          vertical-align: middle;
          fill: #000000;
          stroke: none;
          width: 15px;
          height: 15px; }
      #search-box .search-input-wrapper .input #input-search {
        -webkit-appearance: none;
        border: none;
        color: #121212;
        width: 100%;
        height: 45px;
        background: transparent;
        padding: 19px 10px 19px 60px;
        background-color: transparent;
        box-shadow: none;
        text-align: left;
        font: normal normal 400 13px/24px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #333333;
        opacity: 1;
        padding: 19px 10px 19px 60px; }
        html[dir="rtl"] #search-box .search-input-wrapper .input #input-search {
          text-align: right;
          font-family: "Cairo", sans-serif;
          letter-spacing: 0;
          padding: 19px 60px 19px 10px;
          letter-spacing: 0; }
        #search-box .search-input-wrapper .input #input-search:focus {
          outline: 0; }
    #search-box .search-input-wrapper .select-wrapper {
      margin: 7px;
      border: 1px solid #e5e5e5;
      min-width: 150px;
      display: none; }
      @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 .search-btn {
      position: relative;
      background: #fff;
      cursor: pointer;
      width: max-content;
      text-align: center;
      border-radius: 8px;
      transition: 400ms;
      text-decoration: none;
      z-index: 90;
      overflow: hidden;
      border: 1px solid #2959D3;
      width: 100% !important; }
      @media only screen and (max-width: 767.98px) {
        #search-box .search-input-wrapper .search-btn {
          width: 100%; } }
      @media only screen and (min-width: 992px) {
        #search-box .search-input-wrapper .search-btn:hover {
          border-color: #8fd2ee; }
          #search-box .search-input-wrapper .search-btn:hover input,
          #search-box .search-input-wrapper .search-btn:hover span {
            color: #fff; }
          #search-box .search-input-wrapper .search-btn:hover .icon svg path {
            fill: #fff; } }
      #search-box .search-input-wrapper .search-btn input,
      #search-box .search-input-wrapper .search-btn span {
        width: 100%;
        position: relative;
        z-index: 9;
        padding: 16px 18px;
        text-align: center;
        font: normal normal 600 15px/1.4 "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #2959D3;
        text-transform: none;
        opacity: 1;
        display: block;
        margin: 0;
        border: none;
        background: transparent; }
      #search-box .search-input-wrapper .search-btn .icon {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 13px; }
        #search-box .search-input-wrapper .search-btn .icon svg {
          width: 7px;
          display: block;
          height: auto; }
          #search-box .search-input-wrapper .search-btn .icon svg path {
            fill: #2959D3; }
      #search-box .search-input-wrapper .search-btn .circle {
        background-color: #8fd2ee;
        border-radius: 1000px;
        position: absolute;
        left: 0;
        top: 0;
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        pointer-events: none;
        /*animation-timing-function: ease-in-out; */
        opacity: 0; }
        @media only screen and (max-width: 991.98px) {
          #search-box .search-input-wrapper .search-btn .circle {
            display: none; } }
        @media only screen and (min-width: 992px) {
          #search-box .search-input-wrapper .search-btn .circle.explode-circle {
            animation: explode 0.5s forwards; } }
        @media only screen and (min-width: 992px) {
          #search-box .search-input-wrapper .search-btn .circle.desplode-circle {
            animation: desplode 0.5s forwards; } }

@keyframes explode {
  0% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(42, 53, 80, 0.2); }
  100% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); } }

@keyframes desplode {
  0% {
    width: 400px;
    height: 400px;
    margin-left: -200px;
    margin-top: -200px;
    background-color: rgba(143, 210, 238, 0.9); }
  100% {
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    background-color: rgba(129, 80, 108, 0.6); } }

/* search-image */
.no-products {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 991.98px) {
    .no-products .empty-search {
      max-width: 200px;
      margin: auto; } }
  .no-products .empty-search .title {
    text-align: center;
    font: normal normal 700 35px/47px "Poppins", sans-serif;
    letter-spacing: -1.05px;
    color: #000000;
    text-transform: capitalize;
    opacity: 1; }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      .no-products .empty-search .title {
        font-size: 24px;
        line-height: 36px; } }
    @media only screen and (max-width: 991.98px) {
      .no-products .empty-search .title {
        font-size: 18px;
        line-height: 26px; } }
  .no-products .empty-search .text {
    text-align: center;
    font: normal normal 400 15px/24px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1; }
    @media only screen and (max-width: 991.98px) {
      .no-products .empty-search .text {
        font-size: 13px;
        line-height: 20px; } }

#brands-listing {
  margin-bottom: 60px; }
  #brands-listing #filter-block {
    background: #2959D3;
    padding: 11px 45px;
    text-align: center; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #brands-listing #filter-block {
        padding: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #brands-listing #filter-block {
        padding: 25px; } }
    @media only screen and (max-width: 767px) {
      #brands-listing #filter-block {
        padding: 15px; } }
    #brands-listing #filter-block small {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      letter-spacing: 0em;
      font-size: 18px;
      line-height: 46px;
      text-align: center;
      display: inline-block;
      margin-right: 70px;
      color: #ffffff;
      opacity: 1; }
      html[dir="rtl"] #brands-listing #filter-block small {
        font-family: "Cairo", sans-serif !important;
        margin-left: 70px !important;
        margin-right: 0px !important;
        letter-spacing: 0; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #brands-listing #filter-block small {
          font-size: 20px;
          line-height: 36px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #brands-listing #filter-block small {
          font-size: 18px;
          line-height: 33px;
          display: block;
          margin: auto; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #brands-listing #filter-block small {
          font-size: 15px;
          line-height: 30px;
          display: block;
          margin: auto; } }
      @media only screen and (max-width: 767px) {
        #brands-listing #filter-block small {
          font-size: 12px;
          line-height: 26px;
          display: block;
          margin: auto; } }
    #brands-listing #filter-block ul {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #brands-listing #filter-block ul {
          margin: auto;
          width: 100%;
          text-align: center; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #brands-listing #filter-block ul {
          margin: auto;
          width: 100%;
          text-align: center; } }
      @media only screen and (max-width: 767px) {
        #brands-listing #filter-block ul {
          margin: auto;
          width: 100%;
          text-align: center; } }
      #brands-listing #filter-block ul li {
        flex-grow: 1;
        min-width: 55px; }
        #brands-listing #filter-block ul li a {
          text-align: center;
          display: inline-block;
          padding-left: 11px;
          padding-right: 11px;
          letter-spacing: 0em;
          opacity: 1;
          font: normal normal 400 17px/46px "Poppins", sans-serif;
          letter-spacing: 0.94px;
          color: #ffffff;
          opacity: 1; }
          html[dir="rtl"] #brands-listing #filter-block ul li a {
            font-family: "Cairo", sans-serif !important;
            letter-spacing: 0 !important;
            letter-spacing: 0; }
          #brands-listing #filter-block ul li a:hover {
            color: #8fd2ee; }
  #brands-listing .brands-section .brand-letter {
    text-align: left;
    font: normal normal 600 32px/1.3 "Poppins", sans-serif;
    letter-spacing: 0;
    color: #333333;
    border-bottom: 1px solid #f1f1f1;
    padding: 0px 8px;
    margin: 25px 0px; }
    html[dir="rtl"] #brands-listing .brands-section .brand-letter {
      font-family: "Cairo", sans-serif !important;
      letter-spacing: 0;
      text-align: right;
      letter-spacing: 0; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #brands-listing .brands-section .brand-letter {
        font-size: 29px;
        letter-spacing: 0px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #brands-listing .brands-section .brand-letter {
        font-size: 26px;
        letter-spacing: 0px; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #brands-listing .brands-section .brand-letter {
        font-size: 24px;
        letter-spacing: 0px; } }
    @media only screen and (max-width: 767.98px) {
      #brands-listing .brands-section .brand-letter {
        font-size: 21px;
        letter-spacing: 0px; } }
    html[dir="rtl"] #brands-listing .brands-section .brand-letter {
      font-family: "Cairo", sans-serif !important;
      letter-spacing: 0 !important;
      letter-spacing: 0; }
  #brands-listing .brands-section .brands-list {
    display: grid;
    row-gap: 20px;
    column-gap: 20px;
    transition: opacity .3s ease-out;
    position: relative;
    z-index: 2;
    width: 100%; }
    @media only screen and (min-width: 1551px) {
      #brands-listing .brands-section .brands-list {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #brands-listing .brands-section .brands-list {
        grid-template-columns: 1fr 1fr 1fr 1fr; } }
    @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
      #brands-listing .brands-section .brands-list {
        grid-template-columns: 1fr 1fr 1fr; } }
    @media only screen and (min-width: 768px) and (max-width: 991.98px) {
      #brands-listing .brands-section .brands-list {
        grid-template-columns: 1fr 1fr; } }
    #brands-listing .brands-section .brands-list .single-category {
      padding: 0; }
  #brands-listing .show-more-wrapper .show-more {
    font: normal normal 500 16px/55px "Poppins", sans-serif;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
    transition: 0.25s ease-in-out;
    text-align: center;
    width: 257px;
    max-width: 100%;
    display: block;
    height: 55px;
    line-height: 55px;
    background-color: #2959D3;
    text-transform: none;
    border-radius: 17px;
    padding: 0px;
    border: none;
    margin: 75px auto 25px;
    cursor: pointer; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #brands-listing .show-more-wrapper .show-more {
        height: 50px;
        line-height: 50px;
        font-size: 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #brands-listing .show-more-wrapper .show-more {
        height: 50px;
        line-height: 50px;
        font-size: 14px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #brands-listing .show-more-wrapper .show-more {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    @media only screen and (max-width: 767px) {
      #brands-listing .show-more-wrapper .show-more {
        height: 50px;
        line-height: 50px;
        font-size: 13px; } }
    #brands-listing .show-more-wrapper .show-more:hover {
      background: #8fd2ee;
      text-decoration: none; }
    #brands-listing .show-more-wrapper .show-more span {
      margin-left: 10px; }
      html[dir="rtl"] #brands-listing .show-more-wrapper .show-more span {
        margin-right: 10px;
        margin-left: 0px;
        letter-spacing: 0; }

.brand-detailed .brand-title {
  text-align: center;
  font: normal normal 500 35px/45px "Poppins", sans-serif;
  letter-spacing: 0.35px;
  color: #2d2f3c;
  margin: 15px auto 10px;
  display: block; }
  html[dir="rtl"] .brand-detailed .brand-title {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    letter-spacing: 0; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .brand-detailed .brand-title {
      font-size: 30px;
      line-height: 40px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .brand-detailed .brand-title {
      font-size: 28px;
      line-height: 38px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .brand-detailed .brand-title {
      font-size: 24px;
      line-height: 24px; } }
  @media only screen and (max-width: 767px) {
    .brand-detailed .brand-title {
      font-size: 20px;
      line-height: 20px; } }

.brand-detailed .brand-description {
  text-align: center;
  font: normal normal 400 16px/28px "Poppins", sans-serif;
  letter-spacing: 0.16px;
  color: #2d2f3c;
  text-transform: none;
  margin: 15px auto 60px;
  display: block;
  width: 600px;
  max-width: 85%; }
  html[dir="rtl"] .brand-detailed .brand-description {
    font-family: "Cairo", sans-serif;
    letter-spacing: 0;
    letter-spacing: 0; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    .brand-detailed .brand-description {
      margin: 15px auto 50px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .brand-detailed .brand-description {
      margin: 15px auto 45px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .brand-detailed .brand-description {
      font-size: 13px;
      line-height: 21px;
      margin: 15px auto 35px; } }
  @media only screen and (max-width: 767px) {
    .brand-detailed .brand-description {
      font-size: 13px;
      line-height: 19px;
      margin: 15px auto 25px; } }

.brand-detailed .container-fluid {
  padding-left: 0px;
  padding-right: 0px; }
  .brand-detailed .container-fluid .brand-header {
    margin: 10px auto 20px;
    position: relative; }
    .brand-detailed .container-fluid .brand-header .brand-image {
      overflow: hidden; }
      .brand-detailed .container-fluid .brand-header .brand-image img {
        width: 100%; }

html[dir="rtl"] {
  width: 100%;
  font-family: "Cairo", sans-serif !important;
  direction: rtl;
  text-align: right; }
  html[dir="rtl"] html,
  html[dir="rtl"] body,
  html[dir="rtl"] div,
  html[dir="rtl"] span,
  html[dir="rtl"] applet,
  html[dir="rtl"] object,
  html[dir="rtl"] iframe,
  html[dir="rtl"] h1,
  html[dir="rtl"] h2,
  html[dir="rtl"] h3,
  html[dir="rtl"] h4,
  html[dir="rtl"] h5,
  html[dir="rtl"] h6,
  html[dir="rtl"] p,
  html[dir="rtl"] blockquote,
  html[dir="rtl"] button,
  html[dir="rtl"] pre,
  html[dir="rtl"] a,
  html[dir="rtl"] abbr,
  html[dir="rtl"] acronym,
  html[dir="rtl"] address,
  html[dir="rtl"] big,
  html[dir="rtl"] cite,
  html[dir="rtl"] code,
  html[dir="rtl"] del,
  html[dir="rtl"] dfn,
  html[dir="rtl"] em,
  html[dir="rtl"] img,
  html[dir="rtl"] ins,
  html[dir="rtl"] kbd,
  html[dir="rtl"] q,
  html[dir="rtl"] s,
  html[dir="rtl"] samp,
  html[dir="rtl"] small,
  html[dir="rtl"] strike,
  html[dir="rtl"] strong,
  html[dir="rtl"] sub,
  html[dir="rtl"] sup,
  html[dir="rtl"] tt,
  html[dir="rtl"] var,
  html[dir="rtl"] b,
  html[dir="rtl"] u,
  html[dir="rtl"] center,
  html[dir="rtl"] dl,
  html[dir="rtl"] dt,
  html[dir="rtl"] dd,
  html[dir="rtl"] ol,
  html[dir="rtl"] ul,
  html[dir="rtl"] li,
  html[dir="rtl"] fieldset,
  html[dir="rtl"] form,
  html[dir="rtl"] label,
  html[dir="rtl"] legend,
  html[dir="rtl"] table,
  html[dir="rtl"] caption,
  html[dir="rtl"] tbody,
  html[dir="rtl"] tfoot,
  html[dir="rtl"] thead,
  html[dir="rtl"] tr,
  html[dir="rtl"] th,
  html[dir="rtl"] td,
  html[dir="rtl"] article,
  html[dir="rtl"] aside,
  html[dir="rtl"] canvas,
  html[dir="rtl"] details,
  html[dir="rtl"] embed,
  html[dir="rtl"] figure,
  html[dir="rtl"] figcaption,
  html[dir="rtl"] footer,
  html[dir="rtl"] header,
  html[dir="rtl"] hgroup,
  html[dir="rtl"] menu,
  html[dir="rtl"] nav,
  html[dir="rtl"] output,
  html[dir="rtl"] ruby,
  html[dir="rtl"] section,
  html[dir="rtl"] summary,
  html[dir="rtl"] time,
  html[dir="rtl"] mark,
  html[dir="rtl"] audio,
  html[dir="rtl"] video,
  html[dir="rtl"] article,
  html[dir="rtl"] aside,
  html[dir="rtl"] details,
  html[dir="rtl"] figcaption,
  html[dir="rtl"] figure,
  html[dir="rtl"] footer,
  html[dir="rtl"] header,
  html[dir="rtl"] hgroup,
  html[dir="rtl"] menu,
  html[dir="rtl"] nav,
  html[dir="rtl"] section {
    font-family: "Cairo", sans-serif !important;
    direction: rtl; }
  html[dir="rtl"] .fab {
    font-family: "Font Awesome 5 Brands" !important; }
  html[dir="rtl"] .fa,
  html[dir="rtl"] .far,
  html[dir="rtl"] .fas {
    font-family: "Font Awesome 6 Free" !important; }
  html[dir="rtl"] .fal,
  html[dir="rtl"] .far {
    font-family: "Font Awesome 6 Free" !important; }
  html[dir="rtl"] .close {
    float: left; }
  html[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0; }
  html[dir="rtl"] #menu {
    right: auto !important;
    left: 15px;
    float: left !important; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      html[dir="rtl"] #menu {
        left: 25px !important; } }
  @media (min-width: 768px) {
    html[dir="rtl"] #popup-feedback .popup-img {
      float: right;
      margin-right: auto;
      margin-left: 22px; } }
  html[dir="rtl"] #popup-feedback .popup-text {
    text-align: right; }
    @media (min-width: 768px) {
      html[dir="rtl"] #popup-feedback .popup-text {
        margin-left: auto;
        margin-right: 122px; } }
  @media (max-width: 991px) {
    html[dir="rtl"].js-Drawers-active .drw-Drawer_Header .hd-Banner_SecondaryMenu {
      padding-right: 0;
      padding-left: 20px; } }
  html[dir="rtl"] #offersline .close-note {
    right: auto;
    left: 10px; }
  html[dir="rtl"] .content__holder {
    direction: rtl; }
  @media (min-width: 992px) {
    html[dir="rtl"] .hd-Banner_SecondaryMenu.left {
      padding-right: 40px; } }
  html[dir="rtl"] .hd-Banner_SecondaryMenu.left .hd-Banner_SecondaryMenu_Item {
    margin-left: 30px;
    margin-right: 0px; }
    html[dir="rtl"] .hd-Banner_SecondaryMenu.left .hd-Banner_SecondaryMenu_Item:last-of-type {
      margin-left: 0 !important; }
  @media (min-width: 992px) {
    html[dir="rtl"] .hd-Banner_LogoMark {
      left: auto !important;
      right: 10px !important; } }
  @media (min-width: 992px) {
    html[dir="rtl"] .hd-Banner_Nav .hd-Banner_Cart {
      right: auto !important;
      left: 10px !important; } }
  html[dir="rtl"] .hd-Banner_MobileItem.hd-Banner_MobileItem-user {
    padding-left: 0; }
  html[dir="rtl"] .hd-Circle {
    /*margin-left: 0;
      margin-right: 5px;*/
    right: auto !important;
    left: 17px; }
  html[dir="rtl"] .nav-Banner_Item:last-child {
    margin-right: 40px; }
  html[dir="rtl"] .nav-Banner_Item:first-child {
    margin-right: 0px; }
  html[dir="rtl"] .hd-Banner_Account .hd-Banner_SecondaryMenu_Item {
    margin-right: 0;
    margin-left: 30px; }
    html[dir="rtl"] .hd-Banner_Account .hd-Banner_SecondaryMenu_Item:first-of-type {
      margin-left: 30px;
      margin-right: auto; }
    html[dir="rtl"] .hd-Banner_Account .hd-Banner_SecondaryMenu_Item:last-of-type {
      margin-left: auto; }
  html[dir="rtl"] .drw-Drawer {
    left: auto;
    right: 0; }
  html[dir="rtl"] .drw-Close {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }
  html[dir="rtl"] .drw-Nav_Items,
  html[dir="rtl"] .drw-Nav_Item,
  html[dir="rtl"] .drw-Nav_Link {
    text-align: right; }
  @media (min-width: 992px) {
    html[dir="rtl"] .hd-Banner_Search input[type="search"] {
      text-align: right !important; } }
  @media (min-width: 992px) {
    html[dir="rtl"] .hd-Banner_Search input[type="submit"] {
      right: auto;
      left: 0; } }
  html[dir="rtl"] .close-search-btn {
    right: auto;
    left: 15px; }
  @media (min-width: 992px) {
    html[dir="rtl"] .hd-Banner_Search #search-block:before {
      right: auto !important;
      left: 0;
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); } }
  html[dir="rtl"] #mini-cart:before {
    right: auto;
    left: 10px; }
  @media (min-width: 992px) {
    html[dir="rtl"] #mini-cart {
      right: auto;
      left: 40px; } }
  html[dir="rtl"] #mini-cart .product .image,
  html[dir="rtl"] #mini-cart .product .name {
    float: right;
    text-align: right; }
  html[dir="rtl"] #mini-cart .product .pg-info {
    float: left;
    padding: 10px 20px 10px 0px; }
  html[dir="rtl"] #mini-cart .product .price-qty {
    float: left;
    text-align: left; }
  html[dir="rtl"] #mini-cart .mini-cart-total {
    text-align: left; }
  html[dir="rtl"] #mini-cart #mini-cart .action-buttons a:first-of-type {
    margin-left: 5px;
    margin-right: auto; }
  html[dir="rtl"] #mini-cart #mini-cart .action-buttons a:last-of-type {
    margin-left: auto;
    margin-right: 5px; }
  html[dir="rtl"] .flagstrap-icon {
    margin-right: auto !important;
    margin-left: 10px; }
  html[dir="rtl"] .ship-wraper .dropdown-menu li a {
    text-align: right;
    font-family: "Poppins", sans-serif;
    font-weight: 400; }
  html[dir="rtl"] .ship-wraper .dropdown-menu:before {
    left: auto;
    right: 10px; }
  html[dir="rtl"] .ship-wraper .caret {
    margin-right: 10px;
    margin-left: 0px !important; }
  @media (min-width: 768px) {
    html[dir="rtl"] #listing-area .intro .sort {
      text-align: left; } }
  @media (min-width: 768px) {
    html[dir="rtl"] #listing-area .intro .left-info {
      text-align: right; } }
  html[dir="rtl"] #listing-area .intro .sort .btn {
    padding-left: 30px;
    padding-right: 10px; }
  @media (min-width: 768px) {
    html[dir="rtl"] #listing-area .intro .sort .btn .filter-option {
      text-align: left; } }
  html[dir="rtl"] #listing-area .intro .sort .caret {
    right: 15px; }
  html[dir="rtl"] #dashboard-page .dashboard-content .address-block header .btn-edit {
    right: auto;
    left: 0; }
  @media only screen and (max-width: 767px) {
    html[dir="rtl"] #listing-area #listing-filters h3:after {
      right: auto;
      left: 15px; } }
  html[dir="rtl"] #detailed-inner #product-area #product-rhs {
    padding-left: 0 !important;
    padding-right: 70px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      html[dir="rtl"] #detailed-inner #product-area #product-rhs {
        padding-right: 50px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      html[dir="rtl"] #detailed-inner #product-area #product-rhs {
        padding-right: 0px; } }
    @media (max-width: 991px) {
      html[dir="rtl"] #detailed-inner #product-area #product-rhs {
        padding-right: 0; } }
    html[dir="rtl"] #detailed-inner #product-area #product-rhs .product-name,
    html[dir="rtl"] #detailed-inner #product-area #product-rhs .product-price {
      text-align: right; }
    html[dir="rtl"] #detailed-inner #product-area #product-rhs #count-add .count-inp-wrap span {
      margin-right: auto;
      margin-left: 28px; }
    html[dir="rtl"] #detailed-inner #product-area #product-rhs #count-add button[type="submit"] {
      margin-right: 35px;
      margin-left: auto !important; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        html[dir="rtl"] #detailed-inner #product-area #product-rhs #count-add button[type="submit"] {
          margin-right: 10px; } }
      @media only screen and (max-width: 767px) {
        html[dir="rtl"] #detailed-inner #product-area #product-rhs #count-add button[type="submit"] {
          margin-right: 0; } }
    html[dir="rtl"] #detailed-inner #product-area #product-rhs #wishlist-share .wishlist {
      margin-right: auto;
      margin-left: 70px; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        html[dir="rtl"] #detailed-inner #product-area #product-rhs #wishlist-share .wishlist {
          margin-left: 50px; } }
      @media (max-width: 991px) {
        html[dir="rtl"] #detailed-inner #product-area #product-rhs #wishlist-share .wishlist {
          margin-left: auto !important; } }
      html[dir="rtl"] #detailed-inner #product-area #product-rhs #wishlist-share .wishlist i {
        margin-right: auto;
        margin-left: 10px; }
  @media (min-width: 768px) {
    html[dir="rtl"] #detailed-inner #more-information .nav-tabs li:first-of-type {
      margin-left: 40px;
      margin-right: 0; } }
  @media (min-width: 768px) {
    html[dir="rtl"] #detailed-inner #more-information .nav-tabs li:last-of-type {
      margin-right: 40px;
      margin-left: 0; } }
  html[dir="rtl"] #detailed-inner #more-information .tab-content table tr td:first-child {
    padding-left: 40px;
    padding-right: 0px; }
  html[dir="rtl"] #detailed-inner #more-information .tab-content table tr td:last-child {
    padding-left: 0;
    padding-right: 40px; }
  html[dir="rtl"] #dashboard-page .dashboard-content .address-block .btn-change {
    margin-right: auto;
    margin-left: 30px; }
  html[dir="rtl"] #dashboard-page .dash-sidebar ul li a {
    padding-left: 0;
    padding-right: 30px;
    text-align: right; }
  html[dir="rtl"] #dashboard-page .dash-sidebar ul li a:after {
    right: auto;
    left: 20px;
    content: "\f104"; }
  html[dir="rtl"] #dashboard-page .alert-content {
    margin-left: 0;
    margin-right: 90px;
    border-left: 0;
    border-right: 2px solid rgba(112, 112, 112, 0.1); }
  html[dir="rtl"] #dashboard-page .alert-ico {
    left: auto;
    right: 0; }
  html[dir="rtl"] #dashboard-page .dashboard-content .account-form input[type="email"],
  html[dir="rtl"] #dashboard-page .dashboard-content .account-form input[type="password"],
  html[dir="rtl"] #dashboard-page .dashboard-content .account-form input[type="tel"],
  html[dir="rtl"] #dashboard-page .dashboard-content .account-form input[type="text"] {
    padding-right: 30px; }
  html[dir="rtl"] #news-listing header .filter {
    text-align: left; }
  @media (min-width: 992px) {
    html[dir="rtl"] #news-listing .news-block .news-content {
      padding-left: 0;
      padding-right: 40px; } }
  html[dir="rtl"] #news-slider .slick-prev,
  html[dir="rtl"] #news-slider .slick-next {
    left: auto;
    right: 0; }
  html[dir="rtl"] #news-single .metas .socials {
    position: relative; }
  @media (min-width: 768px) {
    html[dir="rtl"] #news-single .metas .socials: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; } }
  html[dir="rtl"] #news-single .metas .date:after {
    content: none; }
  @media (min-width: 767px) {
    html[dir="rtl"] #location-wrapper .location-results {
      float: right; } }
  html[dir="rtl"] #location-wrapper .location-results .location-block img {
    left: auto !important; }
    @media (min-width: 992px) {
      html[dir="rtl"] #location-wrapper .location-results .location-block img {
        right: 50px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      html[dir="rtl"] #location-wrapper .location-results .location-block img {
        right: 25px; } }
  html[dir="rtl"] #location-wrapper .location-results header h3 {
    text-align: right; }
  @media (min-width: 992px) {
    html[dir="rtl"] #location-wrapper .location-results .location-block {
      padding-left: 50px;
      padding-right: 140px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    html[dir="rtl"] #location-wrapper .location-results .location-block {
      padding-left: 15px;
      padding-right: 100px; } }
  html[dir="rtl"] #support .ui-accordion-content ul li {
    text-align: right;
    padding-right: 35px;
    padding-left: 15px; }
    html[dir="rtl"] #support .ui-accordion-content ul li:before {
      left: auto;
      right: 0; }
  html[dir="rtl"] #support h3 {
    padding: 35px 35px 35px 15px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      html[dir="rtl"] #support h3 {
        padding: 30px 30px 30px 15px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      html[dir="rtl"] #support h3 {
        padding: 25px 30px 25px 15px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      html[dir="rtl"] #support h3 {
        padding: 20px 30px 20px 15px; } }
    @media only screen and (max-width: 767px) {
      html[dir="rtl"] #support h3 {
        padding: 20px 25px 20px 15px; } }
  html[dir="rtl"] #support h3:before {
    left: auto;
    right: 0;
    margin-right: 0;
    margin-left: 15px; }
  html[dir="rtl"] #support .ui-accordion-content p {
    text-align: right; }
  html[dir="rtl"] #wishlist table td.remove {
    text-align: left; }
    @media (max-width: 991px) {
      html[dir="rtl"] #wishlist table td.remove {
        right: auto;
        left: 0; } }
  html[dir="rtl"] #wishlist table th.product-name {
    text-align: right; }
  html[dir="rtl"] #cart-inner .intro .action {
    text-align: left; }
  html[dir="rtl"] #cart-inner .intro h2,
  html[dir="rtl"] #cart-inner .intro p {
    text-align: right; }
  html[dir="rtl"] #cart-inner table th.product-name {
    text-align: right; }
  html[dir="rtl"] #cart-inner table td.remove {
    text-align: left; }
    @media (max-width: 991px) {
      html[dir="rtl"] #cart-inner table td.remove {
        right: auto;
        left: 0; } }
  html[dir="rtl"] #cart-inner .summary p {
    text-align: right; }
  html[dir="rtl"] #cart-inner .summary td:last-of-type {
    text-align: left;
    padding-left: 0px;
    padding-right: 10px; }
  html[dir="rtl"] #cart-inner .summary td:first-child {
    text-align: right;
    padding-left: 10px;
    padding-right: 0px; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    html[dir="rtl"] #cart-inner .cart-action li {
      float: right; } }
  @media (min-width: 768px) {
    html[dir="rtl"] #cart-inner .cart-action li.checkout {
      margin-right: 10px;
      margin-left: 0; } }
  @media (min-width: 768px) {
    html[dir="rtl"] #cart-inner .cart-action li.continue {
      margin-left: 10px;
      margin-right: 0; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    html[dir="rtl"] #cart-inner .action li {
      float: right; } }
  @media (min-width: 768px) {
    html[dir="rtl"] #cart-inner .action li.checkout {
      margin-right: 8px;
      margin-left: 0; } }
  @media (min-width: 768px) {
    html[dir="rtl"] #cart-inner .action li.continue {
      margin-left: 8px;
      margin-right: 0; } }
  html[dir="rtl"] .bootstrap-select.btn-group .dropdown-toggle .filter-option,
  html[dir="rtl"] .bootstrap-select.btn-group .dropdown-menu li {
    text-align: right; }
  html[dir="rtl"] .bootstrap-select.btn-group .dropdown-toggle .caret {
    right: auto;
    left: 30px; }
  html[dir="rtl"] .col-xs-1,
  html[dir="rtl"] .col-xs-2,
  html[dir="rtl"] .col-xs-3,
  html[dir="rtl"] .col-xs-4,
  html[dir="rtl"] .col-xs-5,
  html[dir="rtl"] .col-xs-6,
  html[dir="rtl"] .col-xs-7,
  html[dir="rtl"] .col-xs-8,
  html[dir="rtl"] .col-xs-9,
  html[dir="rtl"] .col-xs-10,
  html[dir="rtl"] .col-xs-11,
  html[dir="rtl"] .col-xs-12 {
    float: right; }
  html[dir="rtl"] .col-xs-pull-12 {
    left: 100%; }
  html[dir="rtl"] .col-xs-pull-11 {
    left: 91.66666667%; }
  html[dir="rtl"] .col-xs-pull-10 {
    left: 83.33333333%; }
  html[dir="rtl"] .col-xs-pull-9 {
    left: 75%; }
  html[dir="rtl"] .col-xs-pull-8 {
    left: 66.66666667%; }
  html[dir="rtl"] .col-xs-pull-7 {
    left: 58.33333333%; }
  html[dir="rtl"] .col-xs-pull-6 {
    left: 50%; }
  html[dir="rtl"] .col-xs-pull-5 {
    left: 41.66666667%; }
  html[dir="rtl"] .col-xs-pull-4 {
    left: 33.33333333%; }
  html[dir="rtl"] .col-xs-pull-3 {
    left: 25%; }
  html[dir="rtl"] .col-xs-pull-2 {
    left: 16.66666667%; }
  html[dir="rtl"] .col-xs-pull-1 {
    left: 8.33333333%; }
  html[dir="rtl"] .col-xs-pull-0 {
    left: auto; }
  html[dir="rtl"] .col-xs-push-12 {
    right: 100%; }
  html[dir="rtl"] .col-xs-push-11 {
    right: 91.66666667%; }
  html[dir="rtl"] .col-xs-push-10 {
    right: 83.33333333%; }
  html[dir="rtl"] .col-xs-push-9 {
    right: 75%; }
  html[dir="rtl"] .col-xs-push-8 {
    right: 66.66666667%; }
  html[dir="rtl"] .col-xs-push-7 {
    right: 58.33333333%; }
  html[dir="rtl"] .col-xs-push-6 {
    right: 50%; }
  html[dir="rtl"] .col-xs-push-5 {
    right: 41.66666667%; }
  html[dir="rtl"] .col-xs-push-4 {
    right: 33.33333333%; }
  html[dir="rtl"] .col-xs-push-3 {
    right: 25%; }
  html[dir="rtl"] .col-xs-push-2 {
    right: 16.66666667%; }
  html[dir="rtl"] .col-xs-push-1 {
    right: 8.33333333%; }
  html[dir="rtl"] .col-xs-push-0 {
    right: auto; }
  html[dir="rtl"] .col-xs-offset-12 {
    margin-right: 100%; }
  html[dir="rtl"] .col-xs-offset-11 {
    margin-right: 91.66666667%; }
  html[dir="rtl"] .col-xs-offset-10 {
    margin-right: 83.33333333%; }
  html[dir="rtl"] .col-xs-offset-9 {
    margin-right: 75%; }
  html[dir="rtl"] .col-xs-offset-8 {
    margin-right: 66.66666667%; }
  html[dir="rtl"] .col-xs-offset-7 {
    margin-right: 58.33333333%; }
  html[dir="rtl"] .col-xs-offset-6 {
    margin-right: 50%; }
  html[dir="rtl"] .col-xs-offset-5 {
    margin-right: 41.66666667%; }
  html[dir="rtl"] .col-xs-offset-4 {
    margin-right: 33.33333333%; }
  html[dir="rtl"] .col-xs-offset-3 {
    margin-right: 25%; }
  html[dir="rtl"] .col-xs-offset-2 {
    margin-right: 16.66666667%; }
  html[dir="rtl"] .col-xs-offset-1 {
    margin-right: 8.33333333%; }
  html[dir="rtl"] .col-xs-offset-0 {
    margin-right: 0; }
  @media (min-width: 768px) {
    html[dir="rtl"] .col-sm-1,
    html[dir="rtl"] .col-sm-2,
    html[dir="rtl"] .col-sm-3,
    html[dir="rtl"] .col-sm-4,
    html[dir="rtl"] .col-sm-5,
    html[dir="rtl"] .col-sm-6,
    html[dir="rtl"] .col-sm-7,
    html[dir="rtl"] .col-sm-8,
    html[dir="rtl"] .col-sm-9,
    html[dir="rtl"] .col-sm-10,
    html[dir="rtl"] .col-sm-11,
    html[dir="rtl"] .col-sm-12 {
      float: right; }
    html[dir="rtl"] .col-sm-pull-12 {
      left: 100%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-11 {
      left: 91.66666667%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-10 {
      left: 83.33333333%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-9 {
      left: 75%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-8 {
      left: 66.66666667%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-7 {
      left: 58.33333333%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-6 {
      left: 50%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-5 {
      left: 41.66666667%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-4 {
      left: 33.33333333%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-3 {
      left: 25%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-2 {
      left: 16.66666667%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-1 {
      left: 8.33333333%;
      right: auto; }
    html[dir="rtl"] .col-sm-pull-0 {
      left: auto;
      right: auto; }
    html[dir="rtl"] .col-sm-push-12 {
      right: 100%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-11 {
      right: 91.66666667%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-10 {
      right: 83.33333333%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-9 {
      right: 75%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-8 {
      right: 66.66666667%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-7 {
      right: 58.33333333%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-6 {
      right: 50%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-5 {
      right: 41.66666667%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-4 {
      right: 33.33333333%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-3 {
      right: 25%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-2 {
      right: 16.66666667%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-1 {
      right: 8.33333333%;
      left: auto; }
    html[dir="rtl"] .col-sm-push-0 {
      right: auto;
      left: auto; }
    html[dir="rtl"] .col-sm-offset-12 {
      margin-right: 100%; }
    html[dir="rtl"] .col-sm-offset-11 {
      margin-right: 91.66666667%; }
    html[dir="rtl"] .col-sm-offset-10 {
      margin-right: 83.33333333%; }
    html[dir="rtl"] .col-sm-offset-9 {
      margin-right: 75%; }
    html[dir="rtl"] .col-sm-offset-8 {
      margin-right: 66.66666667%; }
    html[dir="rtl"] .col-sm-offset-7 {
      margin-right: 58.33333333%; }
    html[dir="rtl"] .col-sm-offset-6 {
      margin-right: 50%; }
    html[dir="rtl"] .col-sm-offset-5 {
      margin-right: 41.66666667%; }
    html[dir="rtl"] .col-sm-offset-4 {
      margin-right: 33.33333333%; }
    html[dir="rtl"] .col-sm-offset-3 {
      margin-right: 25%; }
    html[dir="rtl"] .col-sm-offset-2 {
      margin-right: 16.66666667%; }
    html[dir="rtl"] .col-sm-offset-1 {
      margin-right: 8.33333333%; }
    html[dir="rtl"] .col-sm-offset-0 {
      margin-right: 0; } }
  @media (min-width: 992px) {
    html[dir="rtl"] .col-md-1,
    html[dir="rtl"] .col-md-2,
    html[dir="rtl"] .col-md-3,
    html[dir="rtl"] .col-md-4,
    html[dir="rtl"] .col-md-5,
    html[dir="rtl"] .col-md-6,
    html[dir="rtl"] .col-md-7,
    html[dir="rtl"] .col-md-8,
    html[dir="rtl"] .col-md-9,
    html[dir="rtl"] .col-md-10,
    html[dir="rtl"] .col-md-11,
    html[dir="rtl"] .col-md-12 {
      float: right; }
    html[dir="rtl"] .col-md-pull-12 {
      left: 100%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-11 {
      left: 91.66666667%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-10 {
      left: 83.33333333%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-9 {
      left: 75%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-8 {
      left: 66.66666667%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-7 {
      left: 58.33333333%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-6 {
      left: 50%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-5 {
      left: 41.66666667%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-4 {
      left: 33.33333333%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-3 {
      left: 25%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-2 {
      left: 16.66666667%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-1 {
      left: 8.33333333%;
      right: auto; }
    html[dir="rtl"] .col-md-pull-0 {
      left: auto; }
    html[dir="rtl"] .col-md-push-12 {
      right: 100%;
      left: auto; }
    html[dir="rtl"] .col-md-push-11 {
      right: 91.66666667%;
      left: auto; }
    html[dir="rtl"] .col-md-push-10 {
      right: 83.33333333%;
      left: auto; }
    html[dir="rtl"] .col-md-push-9 {
      right: 75%;
      left: auto; }
    html[dir="rtl"] .col-md-push-8 {
      right: 66.66666667%;
      left: auto; }
    html[dir="rtl"] .col-md-push-7 {
      right: 58.33333333%;
      left: auto; }
    html[dir="rtl"] .col-md-push-6 {
      right: 50%;
      left: auto; }
    html[dir="rtl"] .col-md-push-5 {
      right: 41.66666667%;
      left: auto; }
    html[dir="rtl"] .col-md-push-4 {
      right: 33.33333333%;
      left: auto; }
    html[dir="rtl"] .col-md-push-3 {
      right: 25%;
      left: auto; }
    html[dir="rtl"] .col-md-push-2 {
      right: 16.66666667%;
      left: auto; }
    html[dir="rtl"] .col-md-push-1 {
      left: auto;
      right: 8.33333333%; }
    html[dir="rtl"] .col-md-push-0 {
      right: auto; }
    html[dir="rtl"] .col-md-offset-12 {
      margin-right: 100%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-11 {
      margin-right: 91.66666667%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-10 {
      margin-right: 83.33333333%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-9 {
      margin-right: 75%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-8 {
      margin-right: 66.66666667%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-7 {
      margin-right: 58.33333333%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-6 {
      margin-right: 50%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-5 {
      margin-right: 41.66666667%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-4 {
      margin-right: 33.33333333%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-3 {
      margin-right: 25%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-2 {
      margin-right: 16.66666667%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-1 {
      margin-right: 8.33333333%;
      margin-left: auto; }
    html[dir="rtl"] .col-md-offset-0 {
      margin-right: 0;
      margin-left: auto; } }
  @media (min-width: 1200px) {
    html[dir="rtl"] .col-lg-1,
    html[dir="rtl"] .col-lg-2,
    html[dir="rtl"] .col-lg-3,
    html[dir="rtl"] .col-lg-4,
    html[dir="rtl"] .col-lg-5,
    html[dir="rtl"] .col-lg-6,
    html[dir="rtl"] .col-lg-7,
    html[dir="rtl"] .col-lg-8,
    html[dir="rtl"] .col-lg-9,
    html[dir="rtl"] .col-lg-10,
    html[dir="rtl"] .col-lg-11,
    html[dir="rtl"] .col-lg-12 {
      float: right; }
    html[dir="rtl"] .col-lg-pull-12 {
      left: 100%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-11 {
      left: 91.66666667%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-10 {
      left: 83.33333333%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-9 {
      left: 75%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-8 {
      left: 66.66666667%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-7 {
      left: 58.33333333%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-6 {
      left: 50%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-5 {
      left: 41.66666667%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-4 {
      left: 33.33333333%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-3 {
      left: 25%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-2 {
      left: 16.66666667%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-1 {
      left: 8.33333333%;
      right: auto; }
    html[dir="rtl"] .col-lg-pull-0 {
      left: auto; }
    html[dir="rtl"] .col-lg-push-12 {
      right: 100%; }
    html[dir="rtl"] .col-lg-push-11 {
      right: 91.66666667%; }
    html[dir="rtl"] .col-lg-push-10 {
      right: 83.33333333%; }
    html[dir="rtl"] .col-lg-push-9 {
      right: 75%; }
    html[dir="rtl"] .col-lg-push-8 {
      right: 66.66666667%; }
    html[dir="rtl"] .col-lg-push-7 {
      right: 58.33333333%; }
    html[dir="rtl"] .col-lg-push-6 {
      right: 50%; }
    html[dir="rtl"] .col-lg-push-5 {
      right: 41.66666667%; }
    html[dir="rtl"] .col-lg-push-4 {
      right: 33.33333333%; }
    html[dir="rtl"] .col-lg-push-3 {
      right: 25%; }
    html[dir="rtl"] .col-lg-push-2 {
      right: 16.66666667%; }
    html[dir="rtl"] .col-lg-push-1 {
      right: 8.33333333%; }
    html[dir="rtl"] .col-lg-push-0 {
      right: auto; }
    html[dir="rtl"] .col-lg-offset-12 {
      margin-right: 100%; }
    html[dir="rtl"] .col-lg-offset-11 {
      margin-right: 91.66666667%; }
    html[dir="rtl"] .col-lg-offset-10 {
      margin-right: 83.33333333%; }
    html[dir="rtl"] .col-lg-offset-9 {
      margin-right: 75%; }
    html[dir="rtl"] .col-lg-offset-8 {
      margin-right: 66.66666667%; }
    html[dir="rtl"] .col-lg-offset-7 {
      margin-right: 58.33333333%; }
    html[dir="rtl"] .col-lg-offset-6 {
      margin-right: 50%; }
    html[dir="rtl"] .col-lg-offset-5 {
      margin-right: 41.66666667%; }
    html[dir="rtl"] .col-lg-offset-4 {
      margin-right: 33.33333333%; }
    html[dir="rtl"] .col-lg-offset-3 {
      margin-right: 25%; }
    html[dir="rtl"] .col-lg-offset-2 {
      margin-right: 16.66666667%; }
    html[dir="rtl"] .col-lg-offset-1 {
      margin-right: 8.33333333%; }
    html[dir="rtl"] .col-lg-offset-0 {
      margin-right: 0; } }
  @media (min-width: 1600px) {
    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; }
    html[dir="rtl"] .col-xl-12 {
      width: 100%; }
    html[dir="rtl"] .col-xl-11 {
      width: 91.66666667%; }
    html[dir="rtl"] .col-xl-10 {
      width: 83.33333333%; }
    html[dir="rtl"] .col-xl-9 {
      width: 75%; }
    html[dir="rtl"] .col-xl-8 {
      width: 66.66666667%; }
    html[dir="rtl"] .col-xl-7 {
      width: 58.33333333%; }
    html[dir="rtl"] .col-xl-6 {
      width: 50%; }
    html[dir="rtl"] .col-xl-5 {
      width: 41.66666667%; }
    html[dir="rtl"] .col-xl-4 {
      width: 33.33333333%; }
    html[dir="rtl"] .col-xl-3 {
      width: 25%; }
    html[dir="rtl"] .col-xl-2 {
      width: 16.66666667%; }
    html[dir="rtl"] .col-xl-1 {
      width: 8.33333333%; }
    html[dir="rtl"] .col-xl-pull-12 {
      left: 100%; }
    html[dir="rtl"] .col-xl-pull-11 {
      left: 91.66666667%; }
    html[dir="rtl"] .col-xl-pull-10 {
      left: 83.33333333%; }
    html[dir="rtl"] .col-xl-pull-9 {
      left: 75%; }
    html[dir="rtl"] .col-xl-pull-8 {
      left: 66.66666667%; }
    html[dir="rtl"] .col-xl-pull-7 {
      left: 58.33333333%; }
    html[dir="rtl"] .col-xl-pull-6 {
      left: 50%; }
    html[dir="rtl"] .col-xl-pull-5 {
      left: 41.66666667%; }
    html[dir="rtl"] .col-xl-pull-4 {
      left: 33.33333333%; }
    html[dir="rtl"] .col-xl-pull-3 {
      left: 25%; }
    html[dir="rtl"] .col-xl-pull-2 {
      left: 16.66666667%; }
    html[dir="rtl"] .col-xl-pull-1 {
      left: 8.33333333%; }
    html[dir="rtl"] .col-xl-pull-0 {
      left: 0; }
    html[dir="rtl"] .col-xl-push-12 {
      right: 100%; }
    html[dir="rtl"] .col-xl-push-11 {
      right: 91.66666667%; }
    html[dir="rtl"] .col-xl-push-10 {
      right: 83.33333333%; }
    html[dir="rtl"] .col-xl-push-9 {
      right: 75%; }
    html[dir="rtl"] .col-xl-push-8 {
      right: 66.66666667%; }
    html[dir="rtl"] .col-xl-push-7 {
      right: 58.33333333%; }
    html[dir="rtl"] .col-xl-push-6 {
      right: 50%; }
    html[dir="rtl"] .col-xl-push-5 {
      right: 41.66666667%; }
    html[dir="rtl"] .col-xl-push-4 {
      right: 33.33333333%; }
    html[dir="rtl"] .col-xl-push-3 {
      right: 25%; }
    html[dir="rtl"] .col-xl-push-2 {
      right: 16.66666667%; }
    html[dir="rtl"] .col-xl-push-1 {
      right: 8.33333333%; }
    html[dir="rtl"] .col-xl-push-0 {
      right: 0; }
    html[dir="rtl"] .col-xl-offset-12 {
      margin-right: 100%; }
    html[dir="rtl"] .col-xl-offset-11 {
      margin-right: 91.66666667%; }
    html[dir="rtl"] .col-xl-offset-10 {
      margin-right: 83.33333333%; }
    html[dir="rtl"] .col-xl-offset-9 {
      margin-right: 75%; }
    html[dir="rtl"] .col-xl-offset-8 {
      margin-right: 66.66666667%; }
    html[dir="rtl"] .col-xl-offset-7 {
      margin-right: 58.33333333%; }
    html[dir="rtl"] .col-xl-offset-6 {
      margin-right: 50%; }
    html[dir="rtl"] .col-xl-offset-5 {
      margin-right: 41.66666667%; }
    html[dir="rtl"] .col-xl-offset-4 {
      margin-right: 33.33333333%; }
    html[dir="rtl"] .col-xl-offset-3 {
      margin-right: 25%; }
    html[dir="rtl"] .col-xl-offset-2 {
      margin-right: 16.66666667%; }
    html[dir="rtl"] .col-xl-offset-1 {
      margin-right: 8.33333333%; }
    html[dir="rtl"] .col-xl-offset-0 {
      margin-right: 0; } }
  html[dir="rtl"] table {
    background-color: transparent; }
  html[dir="rtl"] caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: right; }
  html[dir="rtl"] th {
    text-align: right; }
  html[dir="rtl"] .pull-right {
    float: left !important; }
  html[dir="rtl"] .pull-left {
    float: right !important; }
  html[dir="rtl"] #checkout-checkout #content .panel-heading h4 {
    padding-left: 0px;
    padding-right: 30px; }
  html[dir="rtl"] #checkout-checkout #content .panel-body table .text-right {
    text-align: left; }
  html[dir="rtl"] #top #menu-bar .container #actions-bar ul li.language a,
  html[dir="rtl"] .ship-wraper .flagstrap button span {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400; }
  @media only screen and (max-width: 767px) {
    html[dir="rtl"] #top #menu-bar .container #actions-bar li {
      margin-right: 10px !important; } }
  html[dir="rtl"] #top #top-bar .close-note {
    right: auto !important;
    left: 10px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      html[dir="rtl"] #top #top-bar .close-note {
        left: -25px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      html[dir="rtl"] #top #top-bar .close-note {
        left: -25px; } }
  html[dir="rtl"] #top #menu-bar .container #actions-bar {
    text-align: left;
    margin-left: 0;
    margin-right: auto !important;
    left: auto !important; }
    @media only screen and (min-width: 1551px) {
      html[dir="rtl"] #top #menu-bar .container #actions-bar {
        right: 45px !important; } }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      html[dir="rtl"] #top #menu-bar .container #actions-bar {
        right: 45px !important; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      html[dir="rtl"] #top #menu-bar .container #actions-bar {
        height: 78px;
        margin-left: 45px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      html[dir="rtl"] #top #menu-bar .container #actions-bar {
        margin-right: 0;
        margin-left: 40px;
        left: 0; } }
    @media only screen and (max-width: 767px) {
      html[dir="rtl"] #top #menu-bar .container #actions-bar {
        margin-right: 0;
        margin-left: 40px; } }
    html[dir="rtl"] #top #menu-bar .container #actions-bar li {
      margin-left: 0;
      margin-right: 15px; }
      html[dir="rtl"] #top #menu-bar .container #actions-bar li.currency {
        margin-right: 0 !important; }
  html[dir="rtl"] #top #menu-bar .container #main-menu {
    margin-left: auto;
    margin-right: 150px; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      html[dir="rtl"] #top #menu-bar .container #main-menu {
        margin-right: 40px; } }
    @media (max-width: 1199px) {
      html[dir="rtl"] #top #menu-bar .container #main-menu {
        right: auto;
        left: -100%;
        margin-right: 0px !important; } }
  html[dir="rtl"] .home-cta .section-title a.shop .caret {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
  html[dir="rtl"] #bestseller .single-product .image .sale_badge,
  html[dir="rtl"] #related-products .single-product .image .sale_badge {
    left: auto !important;
    right: 0px !important; }
  html[dir="rtl"] #bestseller .single-product .caption .btn-outline i,
  html[dir="rtl"] #related-products .single-product .caption .btn-outline i {
    margin-right: auto !important;
    margin-left: 6px !important;
    float: right; }
  html[dir="rtl"] #bestseller .single-product .caption .price .price-old {
    margin-right: auto !important;
    margin-left: 12px !important; }
  @media only screen and (max-width: 767px) {
    html[dir="rtl"] #bestseller #bs-slider .caption .price .price-old {
      margin-left: auto !important;
      margin-right: 12px !important; } }
  html[dir="rtl"] #main-menu .dropdown-menu li.grid .menu-block {
    text-align: right; }
  html[dir="rtl"] #bestseller .single-product .icons-wrapper,
  html[dir="rtl"] #related-products .single-product .icons-wrapper {
    right: auto !important;
    left: 15px; }
  html[dir="rtl"] #main-menu.active {
    right: auto !important;
    left: 0 !important; }
  html[dir="rtl"] #main-menu #menu-logo {
    left: auto !important;
    right: 15px !important; }
  html[dir="rtl"] #top #menu-bar .container #actions-bar.active i.cros-icon {
    right: auto !important; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      html[dir="rtl"] #top #menu-bar .container #actions-bar.active i.cros-icon {
        left: -55px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      html[dir="rtl"] #top #menu-bar .container #actions-bar.active i.cros-icon {
        left: -35px; } }
    @media only screen and (max-width: 767px) {
      html[dir="rtl"] #top #menu-bar .container #actions-bar.active i.cros-icon {
        left: 35px !important; } }
  html[dir="rtl"] #detailed-inner #product-area #product-rhs #addbag-wishlist button[type="submit"] {
    margin-right: 0;
    margin-left: 40px; }
  html[dir="rtl"] #sidebar-wishlist-block .close-cart-wishlist-btn {
    right: auto;
    left: 32px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      html[dir="rtl"] #sidebar-wishlist-block .close-cart-wishlist-btn {
        left: 20px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      html[dir="rtl"] #sidebar-wishlist-block .close-cart-wishlist-btn {
        left: 20px; } }
    @media only screen and (max-width: 767px) {
      html[dir="rtl"] #sidebar-wishlist-block .close-cart-wishlist-btn {
        left: 15px; } }
  html[dir="rtl"] #sidebar-wishlist-block #cart-wrapper #cart-slider .item .cart-box .remove-item-cart {
    right: auto;
    left: 20px; }
  html[dir="rtl"] #sidebar-wishlist-block {
    right: auto;
    left: -675px; }
    html[dir="rtl"] #sidebar-wishlist-block.wishlist-active {
      right: auto !important;
      left: 0 !important; }
  html[dir="rtl"] #sidebar-wishlist-block #cart-wrapper #cart-slider .item .product-description {
    padding-right: 0;
    padding-left: 25px; }
    @media only screen and (max-width: 767px) {
      html[dir="rtl"] #sidebar-wishlist-block #cart-wrapper #cart-slider .item .product-description {
        padding-left: 0; } }
  html[dir="rtl"] #sidebar-wishlist-block footer #checkout-block {
    text-align: left; }
  html[dir="rtl"] #detailed-inner #product-area #product-rhs .product-decription ul li {
    float: right !important;
    margin-right: 0; }
    html[dir="rtl"] #detailed-inner #product-area #product-rhs .product-decription ul li:last-child {
      margin-left: 0px; }
    html[dir="rtl"] #detailed-inner #product-area #product-rhs .product-decription ul li:first-child {
      margin-left: 55px !important; }
      @media only screen and (max-width: 767px) {
        html[dir="rtl"] #detailed-inner #product-area #product-rhs .product-decription ul li:first-child {
          margin-left: 20px !important; } }
  html[dir="rtl"] .product-image-slider .zoom {
    right: auto;
    left: 35px; }
  html[dir="rtl"] .alert {
    padding-left: 30px; }
    html[dir="rtl"] .alert i {
      margin-right: auto;
      margin-left: 5px; }
    html[dir="rtl"] .alert .close {
      right: auto;
      left: 10px; }
  html[dir="rtl"] #cart-inner table.summary {
    margin-left: 0;
    margin-right: auto; }
  html[dir="rtl"] #bestseller #bs-slider .slick-next,
  html[dir="rtl"] #related-products #bs-slider .slick-next {
    right: 0 !important;
    left: auto !important; }
  html[dir="rtl"] #search-block-wrapper input[type="search"] {
    text-align: right;
    padding-left: 0;
    padding-right: 80px; }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      html[dir="rtl"] #search-block-wrapper input[type="search"] {
        padding-right: 0 !important; } }
    @media only screen and (max-width: 767px) {
      html[dir="rtl"] #search-block-wrapper input[type="search"] {
        padding-right: 0 !important; } }
  html[dir="rtl"] #search-block-wrapper input[type="submit"] {
    left: auto;
    right: 0;
    border-right: 0;
    border-left: 1px solid #ddd; }
  html[dir="rtl"] .no-orders__alert .alert-content {
    margin-left: 0;
    margin-right: 90px;
    border-left: 0;
    border-right: 2px solid rgba(112, 112, 112, 0.1); }
  html[dir="rtl"] .dash-sidebar {
    margin-right: 0px !important;
    margin-left: 50px; }
    @media screen and (min-width: 1025px) and (max-height: 767px) {
      html[dir="rtl"] .dash-sidebar {
        margin-left: 0px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      html[dir="rtl"] .dash-sidebar {
        margin-left: 0px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      html[dir="rtl"] .dash-sidebar {
        margin-left: 0px; } }
    @media only screen and (max-width: 767px) {
      html[dir="rtl"] .dash-sidebar {
        margin-left: 0px; } }
  @media screen and (min-width: 1025px) and (max-height: 767px) {
    html[dir="rtl"] .dashboard-content {
      padding-left: 0px;
      padding-right: 30px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    html[dir="rtl"] .dashboard-content {
      padding-left: 0px;
      padding-right: 20px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    html[dir="rtl"] .dashboard-content {
      padding-left: 0px;
      padding-right: 10px; } }
  @media only screen and (max-width: 767px) {
    html[dir="rtl"] .dashboard-content {
      padding-left: 0px;
      padding-right: 0 !important; } }
  html[dir="rtl"] #history-totals td:first-child {
    text-align: right !important; }
  html[dir="rtl"] #history-totals td:last-child {
    text-align: left !important; }
  @media only screen and (max-width: 767px) {
    html[dir="rtl"] #history-summary tbody td {
      text-align: right !important; } }
  html[dir="rtl"] #history-summary tbody td:last-child {
    border-right: 1px solid #f4f4f4 !important;
    border-left: 0 !important; }
  html[dir="rtl"] #history-summary tbody td:first-child {
    border-right: 0 !important;
    border-left: 1px solid #f4f4f4 !important; }
  @media only screen and (max-width: 767px) {
    html[dir="rtl"] #collapse-checkout-confirm .table-responsive {
      overflow: auto !important; } }
  html[dir="rtl"] #history-summary tbody td span {
    margin-right: 0px !important;
    margin-left: 8px !important; }
  html[dir="rtl"] #history-summary td:first-child {
    text-align: right !important; }
  @media only screen and (max-width: 767px) {
    html[dir="rtl"] #history-status tbody td {
      text-align: right !important; } }
  html[dir="rtl"] #history-status tbody td.h-comment {
    text-align: right !important; }
  @media (min-width: 1200px) {
    html[dir="rtl"] #main-menu .main-nav .navbar-nav.nav-list .dropdown .dropdown-menu {
      margin-left: -77px; } }
  html[dir="rtl"] #main-menu .main-nav .navbar-nav.nav-list .dropdown .dropdown-menu .mega-menu-list {
    text-align: right; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    html[dir="rtl"] #toggle-btn {
      right: auto;
      left: 25px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    html[dir="rtl"] #toggle-btn {
      right: auto;
      left: 15px; } }
  @media only screen and (max-width: 767px) {
    html[dir="rtl"] #toggle-btn {
      right: auto;
      left: 15px; } }
  html[dir="rtl"] .mm a:not(:last-child):after {
    right: auto;
    left: 0; }
  html[dir="rtl"] .mm li:before {
    right: auto;
    left: calc(var(--mm-item-height) / 2) !important;
    border-right: 0;
    border-left: 2px solid;
    -webkit-transform: rotate(45deg) translate(0, -50%);
    -ms-transform: rotate(45deg) translate(0, -50%);
    transform: rotate(-45deg) translate(0, -50%); }
  html[dir="rtl"] .mm.mm--dark .mmenu-close {
    float: left; }
  html[dir="rtl"] .mm:before {
    left: auto;
    right: var(--mm-item-indent);
    border-left: 0;
    border-top: 2px solid;
    border-right: 2px solid;
    -webkit-transform: rotate(45deg) translate(0, -50%);
    -ms-transform: rotate(45deg) translate(0, -50%);
    transform: rotate(45deg) translate(0, -50%); }

/*
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
*/
.about-wrapper ul {
  list-style-type: square;
  color: #7e7e7e;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.77; }

.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%; }

.price-old {
  text-decoration: line-through; }

.alert {
  padding: 13px 15px;
  margin: 11px auto;
  color: #fff;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 500; }

#cart-inner .alert {
  margin-top: 20px; }

.alert-danger {
  background: #bf3334; }

.alert-success {
  background: #b89a52; }

.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;
  background: white !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: #e2e2e2 !important;
  border-radius: 3px !important;
  text-align: center;
  border: none;
  box-shadow: none;
  outline: none; }
  .form-control:focus {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); }

#alert-inner .alert-block {
  margin-bottom: 15px;
  border: 2px solid rgba(112, 112, 112, 0.1);
  position: relative;
  margin-top: 15px; }

#alert-inner .alert-block .alert-ico {
  width: 90px;
  position: absolute; }

#alert-inner .alert-block .alert-content {
  margin-left: 90px;
  border-left: 2px solid rgba(112, 112, 112, 0.1);
  padding-left: 25px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 25px; }

#alert-inner .alert-block .alert-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.25em;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: #7e7e7e; }
  #alert-inner .alert-block .alert-content p a {
    color: #8fd2ee; }
    #alert-inner .alert-block .alert-content p a:hover {
      color: #000; }

#alert-inner .alert-block .alert-ico i {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 30px;
  color: #73c74a;
  top: 30px; }

#ar-lang #alert-inner .alert-block .alert-content {
  margin-left: 0;
  margin-right: 90px;
  border-left: 0;
  border-right: 2px solid rgba(112, 112, 112, 0.1); }

@media only screen and (max-width: 767px) {
  header#hero__bannerx {
    height: auto !important; }
  header#hero__bannerx #hero-sliderx img {
    min-height: 280px;
    height: auto !important; }
  #hero-sliderx .slick-dots {
    bottom: 25px !important; } }

#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;
  font-weight: 400;
  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 6 Free";
  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; }

#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;
  font-weight: 400;
  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;
  font-weight: 400; }

.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;
  font-weight: 400;
  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 6 Free";
  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: 400;
  letter-spacing: 0.08em;
  color: #343538;
  line-height: 1.3;
  margin-bottom: 11px;
  font-size: 1.1em; }

#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;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  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; }

#bs-slider .review-stars .stars:before {
  top: 1px; }

#bs-slider .review-stars small {
  vertical-align: middle; }

#bs-slider .review-stars {
  margin-top: 20px; }

#bs-slider .review-stars i {
  font-size: 1.1em !important; }

#bs-slider .review-stars small {
  font-size: 18px !important; }

#bs-slider .review-stars .stars:before {
  font-size: 1.1em !important; }

#newsletter .alert {
  padding: 10px 0;
  border-radius: 0;
  color: #bf3334;
  border: none !important;
  background: transparent !important;
  margin: 0 !important;
  font-size: 11px !important;
  text-align: center; }
  #newsletter .alert.alert-success {
    color: green !important; }

.alert-success {
  color: green !important;
  border-color: green !important; }

input.placeholder {
  color: #a7a7a7; }

input:-moz-placeholder {
  color: #a7a7a7; }

input {
  color: #a7a7a7;
  -webkit-appearance: none; }

input:-ms-input-placeholder {
  color: #a7a7a7; }

input input[type="text"]:-moz-placeholder,
input[type="text"]:-moz-placeholder,
input[type="text"]:-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="password"]::-webkit-input-placeholderm,
input[type="password"]::-webkit-input-placeholderm input[type="password"]::-webkit-input-placeholder {
  color: #cccccc !important; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"] {
  color: #626262 !important;
  -webkit-appearance: none; }

#categories .categories-wrapper {
  margin: auto;
  width: 1600px;
  padding-right: 14rem;
  padding-left: 14rem;
  max-width: 100%;
  display: grid;
  row-gap: 20px;
  column-gap: 20px;
  transition: opacity .3s ease-out;
  position: relative;
  z-index: 2;
  width: 100%; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #categories .categories-wrapper {
      padding-right: 8rem;
      padding-left: 8rem; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #categories .categories-wrapper {
      padding-right: 6rem;
      padding-left: 6rem; } }
  @media only screen and (min-width: 768px) and (max-width: 991.98px) {
    #categories .categories-wrapper {
      padding-right: 3rem;
      padding-left: 3rem; } }
  @media only screen and (max-width: 767.98px) {
    #categories .categories-wrapper {
      padding-right: 1.5rem;
      padding-left: 1.5rem; } }
  @media only screen and (min-width: 1551px) {
    #categories .categories-wrapper {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #categories .categories-wrapper {
      grid-template-columns: 1fr 1fr 1fr 1fr; } }
  @media only screen and (min-width: 992px) and (max-width: 1199.98px) {
    #categories .categories-wrapper {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media only screen and (max-width: 991.98px) {
    #categories .categories-wrapper {
      grid-template-columns: 1fr 1fr; } }
  #categories .categories-wrapper .single-category {
    padding: 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: 1199px) {
    #offers-detailed {
      margin-bottom: 80px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #offers-detailed {
      margin-bottom: 70px; } }
  @media only screen and (max-width: 767px) {
    #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: 992px) {
      #offers-detailed .offers-intro {
        margin-top: 55px;
        margin-bottom: 70px; } }
    @media only screen and (max-width: 767px) {
      #offers-detailed .offers-intro {
        margin-top: 45px;
        margin-bottom: 50px; } }
    #offers-detailed .offers-intro h2 {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-size: 38px;
      letter-spacing: 0.02em;
      text-align: center;
      color: #000;
      margin-bottom: 25px; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #offers-detailed .offers-intro h2 {
          font-size: 34px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #offers-detailed .offers-intro h2 {
          font-size: 32px; } }
      @media only screen and (max-width: 767px) {
        #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-weight: 400;
      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: 1199px) {
        #offers-detailed .offers-intro p {
          font-size: 20px;
          line-height: 31px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #offers-detailed .offers-intro p {
          font-size: 19px;
          line-height: 30px; } }
      @media only screen and (max-width: 767px) {
        #offers-detailed .offers-intro p {
          font-size: 18px;
          line-height: 29px; } }
  @media (min-width: 1550px) {
    #offers-detailed #offers-list .row {
      margin-left: -37px;
      margin-right: -37px; } }
  @media (min-width: 1550px) {
    #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: 1199px) {
      #offers-detailed #offers-list .offer-box {
        margin-bottom: 30px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #offers-detailed #offers-list .offer-box {
        margin-bottom: 30px; } }
    @media only screen and (max-width: 767px) {
      #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-weight: 700;
      font-size: 24px;
      letter-spacing: 0.02em;
      color: #000;
      opacity: 0.99;
      margin-bottom: 10px; }
      @media only screen and (max-width: 767px) {
        #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-weight: 700;
      font-size: 68px;
      letter-spacing: 0.02em;
      color: #000;
      opacity: 0.99;
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        #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-weight: 400;
      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: 767px) {
        #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: #8fd2ee; }
    #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-weight: 400;
      font-size: 18px;
      letter-spacing: 0.15em;
      text-align: center;
      color: #fff;
      margin-bottom: 15px; }
      #offers-detailed #offers-list .offer-box a.offer-code:hover {
        background-color: #8fd2ee; }
      @media only screen and (max-width: 767px) {
        #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-weight: 400;
      font-size: 19px;
      line-height: 26px;
      text-align: center;
      color: #000; }
      @media only screen and (max-width: 767px) {
        #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-weight: 700;
    font-size: 28px;
    letter-spacing: 0.06em;
    text-align: left;
    color: #000;
    margin-top: 65px;
    margin-bottom: 20px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #offers-detailed #offer-content h3 {
        font-size: 26px;
        line-height: 36px;
        margin-top: 55px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #offers-detailed #offer-content h3 {
        font-size: 24px;
        line-height: 34px;
        margin-top: 45px; } }
    @media only screen and (max-width: 767px) {
      #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-weight: 400;
    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: 1199px) {
      #offers-detailed #offer-content p {
        font-size: 20px;
        line-height: 31px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #offers-detailed #offer-content p {
        font-size: 19px;
        line-height: 30px; } }
    @media only screen and (max-width: 767px) {
      #offers-detailed #offer-content p {
        font-size: 18px;
        line-height: 29px; } }

#landing {
  margin-top: 175px; }
  @media only screen and (min-width: 1200px) and (max-width: 1550px) {
    #landing {
      margin-top: 120px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #landing {
      margin-top: 90px; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #landing {
      margin-top: 70px; } }
  @media only screen and (max-width: 767px) {
    #landing {
      margin-top: 50px; } }
  #landing .landing-intro {
    margin-bottom: 150px;
    text-align: center; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #landing .landing-intro {
        margin-bottom: 100px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #landing .landing-intro {
        margin-bottom: 80px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #landing .landing-intro {
        margin-bottom: 60px; } }
    @media only screen and (max-width: 767px) {
      #landing .landing-intro {
        margin-bottom: 50px; } }
    #landing .landing-intro h2 {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 46px;
      letter-spacing: 0.02em;
      text-align: center;
      color: #000;
      opacity: 0.99;
      margin-bottom: 20px; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #landing .landing-intro h2 {
          font-size: 42px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #landing .landing-intro h2 {
          font-size: 38px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #landing .landing-intro h2 {
          font-size: 36px; } }
      @media only screen and (max-width: 767px) {
        #landing .landing-intro h2 {
          font-size: 30px; } }
    #landing .landing-intro p {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 30px;
      letter-spacing: 0.02em;
      text-align: center;
      color: #000; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #landing .landing-intro p {
          font-size: 28px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #landing .landing-intro p {
          font-size: 26px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #landing .landing-intro p {
          font-size: 24px; } }
      @media only screen and (max-width: 767px) {
        #landing .landing-intro p {
          font-size: 22px;
          line-height: 32px; } }
  #landing .landing-content {
    margin-bottom: 300px;
    position: relative; }
    @media only screen and (min-width: 1200px) and (max-width: 1550px) {
      #landing .landing-content {
        margin-bottom: 200px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      #landing .landing-content {
        margin-bottom: 150px; } }
    @media only screen and (min-width: 768px) and (max-width: 992px) {
      #landing .landing-content {
        margin-bottom: 90px; } }
    @media only screen and (max-width: 767px) {
      #landing .landing-content {
        margin-bottom: 70px; } }
    @media (min-width: 768px) {
      #landing .landing-content:nth-of-type(odd) .container .row {
        flex-direction: row-reverse; } }
    #landing .landing-content:nth-of-type(odd) .shape {
      right: 0;
      left: auto; }
    #landing .landing-content:nth-of-type(odd) .text {
      margin-left: 0; }
      @media only screen and (min-width: 1551px) {
        #landing .landing-content:nth-of-type(odd) .text {
          margin-right: 50px; } }
    @media only screen and (min-width: 1551px) {
      #landing .landing-content:nth-of-type(odd) .image {
        margin-right: 58px; } }
    #landing .landing-content .shape {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      left: 0;
      z-index: -1;
      width: 25.9vw;
      max-width: 497px; }
    @media (min-width: 768px) {
      #landing .landing-content .row {
        display: flex;
        align-items: center; } }
    @media only screen and (max-width: 767px) {
      #landing .landing-content .image {
        margin-bottom: 30px; } }
    #landing .landing-content .text {
      max-width: 540px; }
      @media only screen and (min-width: 1551px) {
        #landing .landing-content .text {
          margin-left: 50px; } }
      #landing .landing-content .text h3 {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 40px;
        letter-spacing: 0.02em;
        line-height: 50px;
        text-align: left;
        color: #000;
        margin-bottom: 35px;
        max-width: 270px; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #landing .landing-content .text h3 {
            font-size: 36px;
            line-height: 46px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #landing .landing-content .text h3 {
            font-size: 32px;
            line-height: 42px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #landing .landing-content .text h3 {
            font-size: 28px;
            line-height: 38px;
            margin-bottom: 25px; } }
        @media only screen and (max-width: 767px) {
          #landing .landing-content .text h3 {
            font-size: 28px;
            line-height: 38px;
            margin-bottom: 25px; } }
      #landing .landing-content .text p {
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-size: 24px;
        letter-spacing: 0.01em;
        line-height: 38.43px;
        text-align: left;
        color: #000; }
        @media only screen and (min-width: 1200px) and (max-width: 1550px) {
          #landing .landing-content .text p {
            font-size: 22px;
            line-height: 31px; } }
        @media only screen and (min-width: 992px) and (max-width: 1199px) {
          #landing .landing-content .text p {
            font-size: 20px;
            line-height: 30px; } }
        @media only screen and (min-width: 768px) and (max-width: 992px) {
          #landing .landing-content .text p {
            font-size: 19px;
            line-height: 29px; } }
        @media only screen and (max-width: 767px) {
          #landing .landing-content .text p {
            font-size: 19px;
            line-height: 29px; } }
  #landing #dl-app {
    padding-top: 45px;
    border-top: 1px solid #d4d4d4;
    padding-bottom: 70px; }
    #landing #dl-app p {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 25px;
      letter-spacing: 0.01em;
      line-height: 35.43px;
      text-align: center;
      color: #000; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #landing #dl-app p {
          font-size: 22px;
          line-height: 31px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #landing #dl-app p {
          font-size: 20px;
          line-height: 30px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #landing #dl-app p {
          font-size: 19px;
          line-height: 29px; } }
      @media only screen and (max-width: 767px) {
        #landing #dl-app p {
          font-size: 19px;
          line-height: 29px; } }
    #landing #dl-app h4 {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-size: 30px;
      letter-spacing: 0.05em;
      line-height: 45px;
      text-align: center;
      color: #000; }
      @media only screen and (min-width: 1200px) and (max-width: 1550px) {
        #landing #dl-app h4 {
          font-size: 28px;
          line-height: 44px; } }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        #landing #dl-app h4 {
          font-size: 26px;
          line-height: 40px; } }
      @media only screen and (min-width: 768px) and (max-width: 992px) {
        #landing #dl-app h4 {
          font-size: 24px;
          line-height: 36px;
          margin-top: 15px; } }
      @media only screen and (max-width: 767px) {
        #landing #dl-app h4 {
          font-size: 22px;
          line-height: 34px;
          margin-top: 15px; } }
    #landing #dl-app .app-btns {
      margin-top: 30px;
      text-align: center; }
      #landing #dl-app .app-btns a {
        display: inline-block;
        vertical-align: middle;
        margin-left: 12px;
        margin-right: 12px; }
        #landing #dl-app .app-btns a:first-child {
          margin-left: 0; }
        #landing #dl-app .app-btns a:last-child {
          margin-right: 0; }
        #landing #dl-app .app-btns a img {
          -webkit-backface-visibility: hidden;
          width: 235px;
          transition: 0.25s ease-in-out; }
          @media only screen and (min-width: 768px) and (max-width: 992px) {
            #landing #dl-app .app-btns a img {
              width: 185px; } }
          @media only screen and (min-width: 240px) and (max-width: 409px) {
            #landing #dl-app .app-btns a img {
              width: 130px; } }
        #landing #dl-app .app-btns a:hover img {
          opacity: 0.7; }

.notification-wrapper {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000000000000020;
  pointer-events: none;
  display: flex;
  flex-direction: column; }
  .notification-wrapper.notification-wrapper-tc {
    align-items: center; }
  .notification-wrapper.notification-wrapper-tr {
    align-items: flex-end; }
  .notification-wrapper.notification-wrapper-center {
    align-items: center;
    justify-content: center; }
  .notification-wrapper .notification {
    position: relative;
    background-color: #fff;
    pointer-events: auto;
    transition: all .3s ease-out;
    -webkit-animation: fade-in .2s ease-out;
    animation: fade-in .2s ease-out;
    transform-origin: 50% 0;
    border-radius: inherit;
    transform-origin: 50%;
    -webkit-animation: scale-in .15s ease-out;
    animation: scale-in .15s ease-out;
    border: 1px solid #e5e5e5;
    max-width: calc(100% - 40px);
    width: 420px;
    margin: 20px;
    margin-bottom: 0px;
    padding: 15px 35px 15px 15px;
    border-radius: 7px;
    box-shadow: 0 15px 90px -10px rgba(0, 0, 0, 0.2);
    color: #fff; }
    html[dir="rtl"] .notification-wrapper .notification {
      padding: 15px  15px 15px 35px;
      letter-spacing: 0; }
    .notification-wrapper .notification.fade-out {
      opacity: 0;
      margin: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translate3d(0, 0, 0) scale(0.9); }
    .notification-wrapper .notification.removed {
      transition: margin-top 0s; }
    .notification-wrapper .notification .notification-close {
      position: absolute;
      top: 15px;
      right: 15px;
      transition: all .075s ease-out;
      display: block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      color: #8fd2ee;
      background-color: #2959D3;
      border: none !important;
      outline: none !important;
      padding: 0px !important;
      transform: translate(50%, -50%); }
      html[dir="rtl"] .notification-wrapper .notification .notification-close {
        right: unset;
        left: 15px;
        transform: translate(-50%, -50%);
        letter-spacing: 0; }
      .notification-wrapper .notification .notification-close i {
        position: absolute;
        top: 50%;
        left: 50%;
        color: #fff;
        transition: all .075s ease-out;
        transform: translate(-50%, -50%); }
    .notification-wrapper .notification .notification-content {
      display: flex;
      gap: 15px; }
      .notification-wrapper .notification .notification-content img {
        width: 65px;
        height: 65px; }
      .notification-wrapper .notification .notification-content .notification-title {
        margin-bottom: 10px;
        text-align: left;
        font: normal normal 500 16px/20px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #000000;
        display: block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical; }
        html[dir="rtl"] .notification-wrapper .notification .notification-content .notification-title {
          font-family: "Cairo", sans-serif !important;
          text-align: right !important;
          letter-spacing: 0; }
        .notification-wrapper .notification .notification-content .notification-title:empty {
          margin: 0; }
      .notification-wrapper .notification .notification-content .notification-text {
        font: normal normal 400 13px/20px "Poppins", sans-serif !important;
        letter-spacing: 0em;
        color: #121212 !important; }
        .notification-wrapper .notification .notification-content .notification-text a {
          font-family: "Poppins", sans-serif;
          font-weight: 400 !important;
          color: #121212 !important; }
    .notification-wrapper .notification .notification-buttons {
      flex-grow: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom-left-radius: inherit;
      border-bottom-right-radius: inherit;
      padding: 10px;
      margin: -10px;
      margin-top: 5px;
      gap: 15px; }
      .notification-wrapper .notification .notification-buttons a {
        font: normal normal 500 12px/35px "Poppins", sans-serif;
        letter-spacing: 0px;
        color: #fff;
        opacity: 1;
        transition: 0.25s ease-in-out;
        text-align: center;
        width: 100%;
        display: block;
        height: 35px;
        line-height: 35px;
        background-color: #2959D3;
        text-transform: none;
        border-radius: 12px;
        padding: 0px;
        border: none;
        display: flex;
        gap: 5px;
        justify-content: center;
        align-items: center; }
        html[dir="rtl"] .notification-wrapper .notification .notification-buttons a.btn-success i {
          transform: rotate(180deg);
          letter-spacing: 0; }
        .notification-wrapper .notification .notification-buttons a:hover {
          background-color: #121212; }
        .notification-wrapper .notification .notification-buttons a:last-of-type {
          background-color: #8fd2ee; }
          .notification-wrapper .notification .notification-buttons a:last-of-type:hover {
            background-color: #121212; }

/**
 *
 * Slick Slider
 *
 */
.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; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.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-track {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  display: block;
  margin-left: 0px !important;
  margin-right: auto; }
  html[dir="rtl"] .slick-track {
    margin-right: 0px !important;
    margin-left: auto;
    letter-spacing: 0; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  html[dir="rtl"] .slick-slide {
    float: right !important;
    letter-spacing: 0; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.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; }

#hero-slider .slick-dots {
  position: absolute;
  bottom: 0px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    #hero-slider .slick-dots {
      width: 100%;
      text-align: center; } }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    #hero-slider .slick-dots {
      width: 100%;
      text-align: center; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    #hero-slider .slick-dots {
      width: 100%;
      text-align: center; } }

@media only screen and (max-width: 767px) {
  .half-partial .slick-list {
    padding-left: 0px !important; }
    html[dir="rtl"] .half-partial .slick-list {
      padding-left: 60px !important;
      padding-right: 0px !important;
      letter-spacing: 0; } }

.slick-dots {
  position: relative;
  bottom: 0px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  margin-top: 15px; }
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .slick-dots {
      margin-top: 15px; } }
  @media only screen and (max-width: 767px) {
    .slick-dots {
      margin-top: 15px; } }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 18px;
    width: 18px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%; }
    .slick-dots li.slick-active button {
      background: #8fd2ee !important;
      border: #8fd2ee !important;
      opacity: 1; }
      .slick-dots li.slick-active button::before {
        background: #8fd2ee;
        border: #8fd2ee;
        opacity: 1; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 7px;
      width: 7px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 0px;
      cursor: pointer;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
      .slick-dots li button::before {
        position: absolute;
        top: 50%;
        left: 50%;
        content: "";
        width: 5px;
        height: 5px;
        font-family: "slick";
        font-size: 0px;
        line-height: 5px;
        text-align: center;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        border-radius: 50%;
        background: #8fd2ee;
        transform: translate(-50%, -50%);
        opacity: 0.4; }
