@charset "UTF-8";
/*===================== [ color (define in sass) ] ===========================*/
/*===================== [ import ] =================================*/
/*==============================================  css Reset ==============================================*/
@import url(font.css);
@import url(../icons/mas-icon/icon.css);
@import url(../vendor/slick/slick.css);
@import url(../vendor/slick/slick-theme.css);
@import url(../vendor/range/nouislider.min.css);
@import url(../vendor/select2/select2.css);
* {
  direction: rtl;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none !important;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.8125rem;
}

h6 {
  font-size: 0.9375rem;
}

p {
  margin: 0;
  padding: 0;
}

blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #eee;
  text-decoration: none;
}

big {
  font-size: 125%;
}

blockquote {
  quotes: "" "";
}

q {
  quotes: "“" "”" "‘" "’";
}

blockquote:before, blockquote:after {
  content: "";
}

label {
  color: #333;
  display: block;
  font-weight: 800;
  margin-bottom: 0.5em;
}

fieldset {
  margin-bottom: 1em;
}

select {
  border: 1px solid #bbb;
  border-radius: 3px;
  height: 3em;
  max-width: 100%;
}

b, strong {
  font-weight: bold;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  font-family: IRANSans;
  direction: rtl;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}

input,
textarea,
button,
select, option {
  font-family: IRANSans !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  color: #302b26;
}

button, input[type=submit] {
  cursor: pointer;
}

a {
  color: #302b26;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  font-weight: 400;
}

ul {
  list-style: none;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0;
}

main {
  min-height: 245px;
}

/*======================= [ mixed-in (sass) ] ============================*/
/*_ mixed-in for ( display=flex; flex=1;)_*/
/*_ mixed-in for ( display=flex;)_*/
/*_ mixed-in for ( display=flex; - up to down = center , right to left = center )_*/
/*_ mixed-in for ( display=flex; - up to down = center , right to left = space-between )_*/
/*_ mixed-in for ( transition effect )_*/
/*_ mixed-in for ( transition effect )_*/
/*============================ [ breakpoints for responsive in sass ] ==================================*/
/* xsm--Extra small  (smart phones, portrait iPhone, portrait 480x320 phones (Android)) */
/* sm--smart phones, Android phones, landscape iPhone */
/* sm--smart phones, Android phones, landscape iPhone */
/* md-- tablet, landscape iPad, lo-res laptops ands desktops */
/* lg-- hi-res laptops and desktops */
/* xl-- hi-res laptops and desktops */
/* 2xl -- Extra large screens, TV */
/* 3xl -- Extra large screens, TV */
/* 4xl -- Extra large screens, TV */
/*<< Start Code  :  >>*/
/*============================= [ (ALL ITEMS) ] =============================================*/
/*=====================<< slick style >>======================*/
/**** arrows bg-header ****/
.arrow-next,
.arrow-prev {
  position: absolute;
  bottom: 0;
  color: white;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 12px;
  z-index: 4;
  font-size: 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-next .mas-arrow-left:before,
.arrow-prev .mas-arrow-left:before {
  transition: 0.3s;
}
.arrow-next:hover .mas-arrow-left:before,
.arrow-prev:hover .mas-arrow-left:before {
  color: #ff6c36;
}

.arrow-prev {
  left: calc(50% - 57px);
}
@media (max-width: 1800px) {
  .arrow-prev {
    left: calc(50% - 52px);
  }
}

.arrow-next {
  right: calc(50% - 57px);
}
.arrow-next span {
  transform: rotate(180deg);
}
@media (max-width: 1800px) {
  .arrow-next {
    right: calc(50% - 52px);
  }
}

/**** dots ****/
.slick-dots {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: auto; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.slick-slider ul.slick-dots li {
  position: relative;
  display: inline-block;
  height: 13px !important;
  width: 13px !important;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  margin: 0 2px;
}

.slick-slider ul.slick-dots li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 12px !important;
  width: 12px !important;
  border-radius: 50% !important;
  background-color: #cccccc;
}

.slick-dots .slick-active li {
  background-color: #ff6c36 !important;
  border: none !important;
  height: 12px !important;
  width: 40px !important;
  border-radius: 20% !important;
  margin: 0 !important;
}
@media (max-width: 1800px) {
  .slick-dots .slick-active li {
    height: 11px !important;
    width: 35px !important;
  }
}

.slick-dots .slick-active:after {
  content: "";
  background-image: none;
  background-color: transparent !important;
  height: 12px !important;
  width: 40px !important;
  border-radius: 5px !important;
}
@media (max-width: 1800px) {
  .slick-dots .slick-active:after {
    height: 11px !important;
    width: 35px !important;
  }
}

.slick-slider ul.slick-dots li.slick-active {
  height: 12px !important;
  width: 40px !important;
  border-radius: 5px !important;
  background-image: linear-gradient(to right, #f8934f, #ff6c36);
}
@media (max-width: 1800px) {
  .slick-slider ul.slick-dots li.slick-active {
    height: 11px !important;
    width: 35px !important;
  }
}

.slick-dots li button {
  padding: 0;
  width: 12px;
  height: 12px;
  content: "";
  border: none;
  outline: none;
}

.slick-dots li button::before {
  padding: 0;
  width: 12px;
  height: 12px;
}

.slick-dots li button {
  padding: 0;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: none;
  outline: none;
}

.slick-dots li.slick-active button {
  background-color: transparent;
  border: none;
  outline: none;
}

.slick-dots li button::before {
  padding: 0;
  width: 12px;
  height: 12px;
  content: "";
}

/***************** arrows #cat-ad-slider *******************/
#cat-ad-slider .arrow-pr-ad,
#cat-ad-slider .arrow-nx-ad, #similar .arrow-pr-ad,
#similar .arrow-nx-ad {
  position: absolute;
  top: 50%;
  color: white;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 12px;
  z-index: 4;
  font-size: 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
#cat-ad-slider .arrow-pr-ad svg,
#cat-ad-slider .arrow-nx-ad svg, #similar .arrow-pr-ad svg,
#similar .arrow-nx-ad svg {
  height: 70px;
  width: 70px;
}
@media (max-width: 768px) {
  #cat-ad-slider .arrow-pr-ad svg,
  #cat-ad-slider .arrow-nx-ad svg, #similar .arrow-pr-ad svg,
  #similar .arrow-nx-ad svg {
    height: 50px;
    width: 50px;
  }
}
@media (max-width: 600px) {
  #cat-ad-slider .arrow-pr-ad svg,
  #cat-ad-slider .arrow-nx-ad svg, #similar .arrow-pr-ad svg,
  #similar .arrow-nx-ad svg {
    height: 40px;
    width: 40px;
  }
}
#cat-ad-slider .arrow-pr-ad, #similar .arrow-pr-ad {
  left: 30px;
}
@media (max-width: 768px) {
  #cat-ad-slider .arrow-pr-ad, #similar .arrow-pr-ad {
    left: 10px;
  }
}
#cat-ad-slider .arrow-pr-ad svg, #similar .arrow-pr-ad svg {
  transform: rotate(180deg);
}
#cat-ad-slider .arrow-nx-ad, #similar .arrow-nx-ad {
  right: 30px;
}
@media (max-width: 768px) {
  #cat-ad-slider .arrow-nx-ad, #similar .arrow-nx-ad {
    right: 10px;
  }
}

#similar .arrow-pr-ad {
  left: -50px;
}
@media (max-width: 768px) {
  #similar .arrow-pr-ad {
    left: -10px;
  }
}
#similar .arrow-pr-ad svg {
  transform: rotate(180deg);
}
#similar .arrow-nx-ad {
  right: -50px;
}
@media (max-width: 768px) {
  #similar .arrow-nx-ad {
    right: -10px;
  }
}

/***************** arrows #cat-ad-slider *******************/
.img-product .arrow-pre,
.img-product .arrow-next {
  position: absolute;
  top: 50%;
  color: white;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 12px;
  z-index: 4;
  font-size: 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
.img-product .arrow-pre svg,
.img-product .arrow-next svg {
  height: 40px;
  width: 40px;
}
@media (max-width: 768px) {
  .img-product .arrow-pre svg,
  .img-product .arrow-next svg {
    height: 30px;
    width: 30px;
  }
}
.img-product .arrow-pre {
  left: 10px;
}
.img-product .arrow-pre svg {
  transform: rotate(180deg);
}
.img-product .arrow-next {
  right: 10px;
}

/***************** sales-container *******************/
.sales-container {
  /**** arrows bg-header ****/
  /**** dots ****/
}
.sales-container .arrow-next, .sales-container .arrow-prev {
  position: absolute;
  bottom: 50px;
  color: white;
  background-color: transparent;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  font-size: 12px;
  z-index: 4;
  font-size: 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
.sales-container .arrow-next .mas-arrow-left:before, .sales-container .arrow-prev .mas-arrow-left:before {
  transition: 0.3s;
  color: rgba(0, 0, 0, 0.3);
}
.sales-container .arrow-next:hover .mas-arrow-left:before, .sales-container .arrow-prev:hover .mas-arrow-left:before {
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 1800px) {
  .sales-container .arrow-next, .sales-container .arrow-prev {
    bottom: 40px;
  }
}
.sales-container .arrow-prev {
  left: 50px;
}
@media (max-width: 1800px) {
  .sales-container .arrow-prev {
    left: 33px;
  }
}
@media (max-width: 480px) {
  .sales-container .arrow-prev {
    left: 20px;
  }
}
.sales-container .arrow-next {
  right: calc(100% - 160px);
}
.sales-container .arrow-next span {
  transform: rotate(180deg);
}
@media (max-width: 1800px) {
  .sales-container .arrow-next {
    right: calc(100% - 137px);
  }
}
@media (max-width: 480px) {
  .sales-container .arrow-next {
    right: calc(100% - 120px);
  }
}
.sales-container .slick-dots {
  position: absolute;
  bottom: 53px;
  left: 105px;
  width: auto; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
@media (max-width: 1800px) {
  .sales-container .slick-dots {
    bottom: 43px;
    left: 85px;
  }
}
@media (max-width: 480px) {
  .sales-container .slick-dots {
    left: 70px;
  }
}
.sales-container .slick-slider ul.slick-dots li:after {
  background-color: #fff;
}
.sales-container .slick-dots .slick-active li {
  background-color: white;
}
.sales-container .slick-slider ul.slick-dots li.slick-active {
  background-image: linear-gradient(to left, white, rgba(255, 255, 255, 0.1));
}

/*===================== [ form ) ] ===========================*/
/*============= [ signup.html > sign > form > START checkbox ] ===========*/
.sign {
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
  /* form> end checkbox */
}
.sign .check {
  display: block;
  position: relative;
  padding-right: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #302b26;
  transition: 0.3s;
  font-size: 16px;
  font-weight: normal;
}
.sign .check:hover {
  color: #ff6c36;
}
@media (max-width: 600px) {
  .sign .check {
    font-size: 14px;
    padding-right: 30px;
    margin-right: 20px;
  }
}
.sign .check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.sign label span.checkmark {
  padding-right: 0;
  margin-bottom: 0;
}
.sign .checkmark {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border: 1px solid #f7bca8;
  border-radius: 5px;
  transform: translateY(2px);
}
@media (max-width: 600px) {
  .sign .checkmark {
    height: 20px;
    width: 20px;
  }
}
.sign .check:hover input ~ .checkmark {
  background-color: #f6c4b4;
}
.sign .check input:checked ~ .checkmark {
  background-color: #f6c4b4;
}
.sign .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.sign .check input:checked ~ .checkmark:after {
  display: block;
}
.sign .check .checkmark:after {
  left: 9px;
  top: 0;
  width: 5px;
  height: 15px;
  border: solid #ff6c36;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
@media (max-width: 600px) {
  .sign .check .checkmark:after {
    left: 6px;
  }
}

/*============= [ single-product.html > color-radio > form > radio ] ===========*/
.color-radio {
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
  /* color id for radio product  */
}
.color-radio .container-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-right: 5px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (max-width: 600px) {
  .color-radio .container-radio {
    padding-left: 25px;
  }
}
.color-radio .container-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.color-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #eeeff4;
}
@media (max-width: 600px) {
  .color-radio .checkmark {
    width: 25px;
    height: 25px;
  }
}
.color-radio .container-radio:hover input ~ .checkmark {
  background-color: #ccc;
}
.color-radio .container-radio input:checked ~ .checkmark {
  border: 1px solid #c5c5c5;
}
.color-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.color-radio .container-radio input:checked ~ .checkmark:after {
  display: block;
}
.color-radio .container-radio .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #c5c5c5;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
@media (max-width: 600px) {
  .color-radio .container-radio .checkmark:after {
    top: 3px;
    left: 8px;
  }
}
.color-radio #white .checkmark {
  background-color: #fff;
}
.color-radio #white input:checked ~ .checkmark {
  background-color: #fff;
}
.color-radio #black .checkmark {
  background-color: #000;
}
.color-radio #black input:checked ~ .checkmark {
  background-color: #000;
}
.color-radio #blue .checkmark {
  background-color: #2196F3;
}
.color-radio #blue input:checked ~ .checkmark {
  background-color: #2196F3;
}
.color-radio #red .checkmark {
  background-color: #ff0023;
}
.color-radio #red input:checked ~ .checkmark {
  background-color: #ff0023;
}
.color-radio #pink .checkmark {
  background-color: #fd4ec3;
}
.color-radio #pink input:checked ~ .checkmark {
  background-color: #fd4ec3;
}

/*============= [ single-product.html > form > number-form ] ===========*/
/*________ style input type number ______________*/
.quantity {
  position: relative;
  width: 80px;
  margin-right: 50px;
}
@media (max-width: 600px) {
  .quantity {
    width: 70px;
    margin-right: 20px;
  }
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.quantity input {
  width: 50px;
  height: 30px;
  display: flex;
  margin: 0;
  border: 1px solid #b6b4b2;
  border-radius: 7px;
  text-align: center;
  font-size: 16px;
  background-color: transparent;
}
@media (max-width: 600px) {
  .quantity input {
    height: 25px;
    font-size: 14px;
  }
}

.quantity input:focus, .quantity input:hover {
  outline: 0;
  border: 1px solid #ff6c36;
}

.quantity-nav {
  display: flex;
}

.quantity-button {
  position: relative;
  cursor: pointer;
  width: 20px;
  text-align: center;
  font-size: 1.5rem;
  transform: translateX(-100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  border-radius: 2px;
}
.quantity-button svg {
  transition: 0.3s;
}

.quantity-button.quantity-up, .quantity-button.quantity-down {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 50%;
  border-radius: 5px;
  transform: translateY(-50%); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #302b26;
  background-color: #eeeff4;
  border: 1px solid #b6b4b2;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .quantity-button.quantity-up, .quantity-button.quantity-down {
    height: 25px;
    width: 25px;
  }
}
.quantity-button.quantity-up:hover, .quantity-button.quantity-down:hover {
  border: 1px solid #ff6c36;
}
.quantity-button.quantity-up:hover svg, .quantity-button.quantity-down:hover svg {
  color: #ff6c36;
}

.quantity-button.quantity-up {
  right: -40px;
}
@media (max-width: 600px) {
  .quantity-button.quantity-up {
    right: -30px;
  }
}
.quantity-button.quantity-up svg {
  width: 10px;
  height: 10px;
}

.quantity-button.quantity-down {
  left: -10px;
}
.quantity-button.quantity-down svg {
  width: 10px;
  height: 2px;
}

/*============= [ select ] ===========*/
/* Reset Select */
.icon_select_mate, .icon_select {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 16px;
  height: 24px;
  width: 24px;
  transition: all 275ms;
  color: grey;
}

.select_mate {
  position: relative;
  float: left;
  width: 100%;
  height: 40px;
  color: #302b26;
  background-color: #fff;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  transition: all 375ms ease-in-out;
  font-size: 0.875rem;
  font-weight: 500;
  /* Oculto el elemento select */
}
.select_mate select {
  position: absolute;
  overflow: hidden;
  height: 0px;
  opacity: 0;
  z-index: -1;
}

.cont_list_select_mate {
  position: relative;
  float: left;
  width: 100%;
}

.cont_select_int {
  max-height: 300px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  overflow-y: scroll;
  height: 0;
  width: 100%;
  background-color: #fff;
  padding: 0;
  margin-bottom: 0;
  margin-top: 0;
  border-radius: 0 0 5px 5px;
  transition: all 375ms ease-in-out;
  /*[____ style for scroll ____]*/
  scrollbar-width: thin; /* "auto" or "thin" */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.cont_select_int::-webkit-scrollbar {
  width: 4px;
}
.cont_select_int::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.cont_select_int::-webkit-scrollbar-thumb {
  background: #888;
}
.cont_select_int::-webkit-scrollbar-thumb:hover {
  background: #888;
}
.cont_select_int li {
  position: relative;
  float: left;
  width: 100%;
  border-bottom: 1px solid #E0E0E0;
  background-color: #f1f1f1;
  list-style-type: none;
  padding: 10px;
  margin: 0;
  transition: all 275ms ease-in-out;
  display: block;
  cursor: pointer;
  z-index: 5;
}
.cont_select_int li:last-child {
  border-radius: 3px;
  border-bottom: 0;
}
.cont_select_int li:hover {
  background-color: #ff6c36;
  color: white;
}
.cont_select_int .active {
  background-color: #ff6c36;
  color: white;
}

/* etiqueta <p> con la opcion selecionada  */
.selecionado_opcion {
  padding: 10px 15px 10px 15px;
  width: 96%;
  height: 40px;
  display: block;
  margin: 0;
  cursor: pointer;
}

/*====== [ color-form ] ========*/
.color-form { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  color: #69615c;
}
.color-form span {
  font-size: 18px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .color-form span {
    font-size: 16px;
  }
}
.color-form .color-radio { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
.color-form .color-radio .container-radio {
  display: block;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .color-form .color-radio .container-radio {
    margin-bottom: 30px;
  }
}

/*= [ media query - container ] =*/
.container {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .container {
    width: 85%;
  }
}
@media (max-width: 600px) {
  .container {
    width: 90%;
  }
}

/*================ [ head-section (ALL ITEMS) ] ---------=*/
.head-section {
  text-align: center;
  position: relative;
}
.head-section::after {
  content: "";
  height: 5px;
  width: 70px;
  background-color: #ff800f;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1800px) {
  .head-section::after {
    width: 60px;
  }
}
.head-section span {
  color: #8e8e8e;
  font-weight: bold;
  font-size: 17px;
}
@media (max-width: 1800px) {
  .head-section span {
    font-size: 16px;
  }
}
.head-section h3 {
  color: #302b26;
  font-size: 35px;
}
@media (max-width: 1800px) {
  .head-section h3 {
    font-size: 30px;
  }
}

/*================ [ buttons (ALL ITEMS) ] ===============*/
/*= [ btn-main is base for btns ] =*/
.btn-main {
  border-radius: 8px;
  font-size: 18px;
  padding: 10px 20px;
  font-weight: 500; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1800px) {
  .btn-main {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .btn-main {
    font-size: 16px;
    padding: 10px 15px;
  }
}

/*= [ btn-grad is btn with background gradiant ] =*/
.btn-grad {
  background-image: linear-gradient(to right, #f8934f, #ff6c36);
  color: white;
  box-shadow: 0 5px 10px rgba(255, 108, 54, 0.5);
}
.btn-grad:hover {
  box-shadow: 0 5px 10px rgba(255, 108, 54, 0.7);
}

/*= [ btn-arrow is btn with green color ] =*/
.btn-arrow {
  color: #7f7c79;
}
.btn-arrow::after {
  content: "\e913";
  color: #adacae;
  font-family: "mas-icon";
  transition: 0.3s;
  margin-right: 5px;
  font-size: 16px;
}

/*= [ btn-greenis btn with arrow left ] =*/
.btn-green {
  background-color: #48a801;
  border-radius: 10px;
  color: white;
  padding: 12px 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  font-size: 20px;
}
@media (max-width: 1800px) {
  .btn-green {
    font-size: 18px;
  }
}
.btn-green:hover {
  background-color: #429900;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/*================================= [ buttons and dialogs ] ================================*/
/* button for delete */
#delete {
  width: 100px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #ff6c36;
  background-color: transparent;
  color: #ff6c36; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
#delete svg {
  height: 16px;
  width: 16px;
  color: #ff6c36;
  margin-left: 10px;
  fill: currentColor;
  transition: 0.3s;
}
#delete:hover {
  background-color: gray;
  color: white;
}
#delete:hover svg {
  color: white;
}
@media (max-width: 600px) {
  #delete {
    align-self: flex-end;
  }
}

/* dialog for log-out-fill & delete */
#log-out-fill, #dialog-delete {
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 10;
}
#log-out-fill .log-out-content, #dialog-delete .log-out-content {
  width: 35vw;
  padding: 50px;
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#log-out-fill .log-out-content span, #dialog-delete .log-out-content span {
  display: inline-block;
  margin-bottom: 40px;
  font-size: 1.25rem;
  color: #302b26;
}
#log-out-fill .log-out-content .log-out-buttons, #dialog-delete .log-out-content .log-out-buttons { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  color: #302b26;
}
#log-out-fill .log-out-content .log-out-buttons .out, #dialog-delete .log-out-content .log-out-buttons .out { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 0.75px solid #ff6c36;
  margin: 0 10px;
  width: 200px;
  height: 45px;
  font-size: 1.125rem;
  color: #302b26;
  background-color: white;
}
#log-out-fill .log-out-content .log-out-buttons .out:first-child, #dialog-delete .log-out-content .log-out-buttons .out:first-child {
  background-color: #ff6c36;
  color: white;
}
#log-out-fill .log-out-content .log-out-buttons .out:hover, #dialog-delete .log-out-content .log-out-buttons .out:hover {
  background-color: #ff6c36;
  color: white;
}
@media (max-width: 1400px) {
  #log-out-fill .log-out-content, #dialog-delete .log-out-content {
    padding: 40px;
    width: 55vw;
  }
}
@media (max-width: 1200px) {
  #log-out-fill .log-out-content, #dialog-delete .log-out-content {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  #log-out-fill .log-out-content, #dialog-delete .log-out-content {
    padding: 50px 30px;
  }
  #log-out-fill .log-out-content .log-out-buttons .out, #dialog-delete .log-out-content .log-out-buttons .out {
    border-radius: 10px;
    margin: 0 10px;
    width: 150px;
    height: 45px;
    font-size: 1.125rem;
  }
}
@media (max-width: 768px) {
  #log-out-fill .log-out-content, #dialog-delete .log-out-content {
    width: 70vw;
  }
}
@media (max-width: 600px) {
  #log-out-fill .log-out-content, #dialog-delete .log-out-content {
    width: 80vw;
    padding: 30px;
  }
}
@media (max-width: 480px) {
  #log-out-fill .log-out-content, #dialog-delete .log-out-content {
    width: 90vw;
  }
  #log-out-fill .log-out-content span, #dialog-delete .log-out-content span {
    font-size: 1rem;
  }
  #log-out-fill .log-out-content .log-out-buttons .out, #dialog-delete .log-out-content .log-out-buttons .out {
    border-radius: 10px;
    margin: 0 10px;
    width: 120px;
    height: 45px;
    font-size: 1rem;
  }
}
@media (max-width: 346px) {
  #log-out-fill .log-out-content, #dialog-delete .log-out-content {
    padding: 30px 20px;
  }
  #log-out-fill .log-out-content .log-out-buttons .out, #dialog-delete .log-out-content .log-out-buttons .out {
    border-radius: 5px;
    margin: 0 5px;
    width: 100px;
    height: 40px;
  }
}

/* button for edit address */
.btn-edit-address {
  width: 120px;
  height: 40px;
  border: 1px solid #ff6c36;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 400; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-edit-address svg, .btn-edit-address img {
  height: 22px;
  width: 22px;
  color: #514A4E;
  fill: currentColor;
}

/* dialog for edit address */
.dialog-address {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 99;
  /* end Select */
}
.dialog-address form {
  background-color: white;
  width: 40vw;
  border-radius: 10px;
  overflow-y: auto;
  max-height: 95vh;
  /*[____ style for scroll ____]*/
  scrollbar-width: thin; /* "auto" or "thin" */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media (max-width: 1140px) {
  .dialog-address form {
    width: 60vw;
  }
}
@media (max-width: 600px) {
  .dialog-address form {
    width: 70vw;
  }
}
@media (max-width: 480px) {
  .dialog-address form {
    width: 90vw;
  }
}
.dialog-address form::-webkit-scrollbar {
  width: 4px;
}
.dialog-address form::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.dialog-address form::-webkit-scrollbar-thumb {
  background: #888;
}
.dialog-address form::-webkit-scrollbar-thumb:hover {
  background: #888;
}
.dialog-address .head-ad { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
  padding: 20px 0 0 20px;
}
.dialog-address .head-ad h6 {
  font-size: 18px;
  font-weight: 500;
  color: #ff6c36;
  border-bottom: 2px solid #ff6c36;
  padding: 0 20px 20px 20px;
}
.dialog-address .head-ad svg {
  width: 15px;
  height: 15px;
}
.dialog-address .close-edit-ad {
  background-color: transparent;
  border: none;
  color: #7f7c79;
}
.dialog-address .close-edit-ad:hover {
  color: #ff6c36;
}
.dialog-address .content-ad {
  padding: 20px 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* The check-address */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.dialog-address .content-ad label {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 5px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  flex-basis: 47%;
}
@media (max-width: 768px) {
  .dialog-address .content-ad label {
    flex-basis: 100%;
  }
}
.dialog-address .content-ad label span { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  margin: 5px 0;
  color: #7f7c79;
}
.dialog-address .content-ad label.w-full {
  flex-basis: 100%;
}
.dialog-address .content-ad label.w-22 {
  flex-basis: 22%;
}
@media (max-width: 768px) {
  .dialog-address .content-ad label.w-22 {
    flex-basis: 47%;
  }
}
.dialog-address .content-ad textarea, .dialog-address .content-ad input[type=text], .dialog-address .content-ad input[type=email], .dialog-address .content-ad input[type=password] {
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  color: #302b26;
  padding: 10px 15px;
}
.dialog-address .content-ad textarea:hover, .dialog-address .content-ad textarea:focus, .dialog-address .content-ad input[type=text]:hover, .dialog-address .content-ad input[type=text]:focus, .dialog-address .content-ad input[type=email]:hover, .dialog-address .content-ad input[type=email]:focus, .dialog-address .content-ad input[type=password]:hover, .dialog-address .content-ad input[type=password]:focus {
  border: 1px solid #ff6c36;
}
.dialog-address .content-ad textarea {
  resize: none;
  height: 80px;
}
.dialog-address .content-ad input[type=text] {
  height: 40px;
  width: 100%;
}
.dialog-address .content-ad input[type=submit] { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  height: 45px;
  width: 200px;
  border-radius: 10px;
  background-color: #ff6c36;
  color: white;
  border: none;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 20px;
}
.dialog-address .content-ad input[type=submit]:hover {
  background-color: #ff6c36;
}
.dialog-address .content-ad .check-address {
  flex-basis: 100%;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: grey;
  font-weight: 500;
  padding: 15px 30px 15px 0;
  margin: 10px 0 0 0;
  border-top: 1px solid #C4C4C4;
}
.dialog-address .content-ad .check-address input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.dialog-address .content-ad .check-ad {
  position: absolute;
  top: 10px;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #A2A3A7;
  border-radius: 2px;
}
.dialog-address .content-ad .check-address input:checked ~ .check-ad {
  background-color: white;
  border: 1px solid #ff6c36;
}
.dialog-address .content-ad .check-ad:after {
  content: "";
  position: absolute;
  display: none;
}
.dialog-address .content-ad .check-address input:checked ~ .check-ad:after {
  display: block;
}
.dialog-address .content-ad .check-address .check-ad:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #ff6c36;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.error-field textarea, .error-field input[type=text], .error-field .select_mate, .error-field input[type=email], .error-field input[type=number], .error-field input[type=password], .error-field input {
  border: 1px solid #ff6c36 !important;
  box-shadow: 0 0 3px rgba(255, 108, 54, 0.1) !important;
}

/*============================= [ index > header ] ==================================================*/
/*==============< header >=============*/
header {
  border-top: 7px solid #ff6c36;
  position: relative;
  width: 100%;
}
@media (max-width: 600px) {
  header {
    border-radius: 40px 40px 0 0;
  }
}
header .border {
  position: absolute;
  top: -5px;
  width: 82%;
  left: 50%;
  transform: translateX(-50%);
  height: 10px;
  background-color: #ff6c36;
  border-radius: 0 0 30px 30px;
}
@media (max-width: 600px) {
  header .border {
    width: 70%;
  }
}

/*=[ top-header ]=*/
.top-header {
  padding: 40px 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1800px) {
  .top-header {
    padding: 30px 0;
  }
}
@media (max-width: 1140px) {
  .top-header {
    flex-wrap: wrap;
  }
  .top-header div {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    padding: 30px 0 5px 0;
  }
  .top-header div {
    margin-bottom: 20px;
  }
  .top-header div:last-child {
    margin-bottom: 0;
  }
}
.top-header .item-center { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
@media (max-width: 768px) {
  .top-header .item-center {
    margin-top: 20px;
  }
}
.top-header form {
  /*********** search ***********/
  /* Edge */
  /* Internet Explorer 10-11 */
}
.top-header form label {
  width: 500px;
  height: 50px;
  box-shadow: 0 2px 21px rgba(73, 73, 73, 0.1);
  border-radius: 11px;
  position: relative; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .top-header form label {
    width: 300px;
    height: 40px;
  }
}
@media (max-width: 600px) {
  .top-header form label {
    width: 285px;
  }
}
@media (max-width: 346px) {
  .top-header form label {
    width: 240px;
  }
}
.top-header form .submit-btn {
  height: 40px;
  width: 40px;
  border: none;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  background-color: transparent;
}
@media (max-width: 1200px) {
  .top-header form .submit-btn {
    height: 30px;
    width: 30px;
    left: 25px;
  }
}
@media (max-width: 1200px) and (max-width: 600px) {
  .top-header form .submit-btn {
    left: 20px;
  }
}
.top-header form .submit-btn input[type=submit] {
  font-size: 40px;
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: none;
}
@media (max-width: 1200px) {
  .top-header form .submit-btn input[type=submit] {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
}
.top-header form .submit-btn .mas, .top-header form .submit-btn img, .top-header form .submit-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-size: 40px;
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .top-header form .submit-btn .mas, .top-header form .submit-btn img, .top-header form .submit-btn svg {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .top-header form .submit-btn .mas, .top-header form .submit-btn img, .top-header form .submit-btn svg {
    width: 25px;
    height: 25px;
    font-size: 25px;
  }
}
.top-header form .submit-btn:hover {
  color: #ff6d36;
}
.top-header form input[type=text] {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  border: none;
  box-shadow: inset 0 11px 21px rgba(255, 108, 54, 0.1);
  padding: 0 10px;
  color: #7f7c79;
  border: 1px solid rgba(146, 146, 146, 0.1);
  padding-left: 60px;
  padding-right: 120px;
}
@media (max-width: 600px) {
  .top-header form input[type=text] {
    font-size: 11px;
    padding-left: 40px;
    padding-right: 95px;
  }
}
.top-header form input[type=text]::-moz-placeholder {
  color: rgba(86, 83, 79, 0.2);
}
.top-header form input[type=text]::placeholder {
  color: rgba(86, 83, 79, 0.2);
}
.top-header form input[type=text]::-webkit-input-placeholder {
  color: rgba(86, 83, 79, 0.2);
}
.top-header form input[type=text]:-ms-input-placeholder {
  color: rgba(86, 83, 79, 0.2);
}
.top-header form input[type=text]:hover, .top-header form input[type=text]:focus {
  box-shadow: inset 0 -11px 21px rgba(255, 108, 54, 0.05);
  border: 1px solid #ffcfa7;
}
.top-header form select {
  width: 100px;
  color: #69615c;
  border: none;
  border-left: 1px solid #c7c7c7;
  height: 60%;
  border-radius: 0;
  font-size: 14px;
  position: absolute;
  background-color: transparent;
  margin-right: 10px;
}
@media (max-width: 600px) {
  .top-header form select {
    width: 80px;
    font-size: 11px;
  }
}
.top-header .card {
  background-image: linear-gradient(to right, #f8934f, #ff6c36);
  height: 50px;
  width: 70px;
  border-radius: 11px;
  position: relative;
  transition: 0.4s;
  margin: 0 30px 0 10px;
  box-shadow: 0 0 20px rgba(255, 108, 54, 0.5); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.top-header .card:hover {
  background-image: linear-gradient(to left, #f8934f, #ff6c36);
}
@media (max-width: 600px) {
  .top-header .card {
    margin: 0 5px 0 0;
  }
}
.top-header .card .count-card {
  position: absolute;
  left: -10px;
  top: 0;
  width: 23px;
  height: 23px;
  background-color: #302b26;
  color: white;
  border-radius: 50%;
  padding-top: 3px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.top-header .card img, .top-header .card svg {
  margin-left: 5px;
}
@media (max-width: 600px) {
  .top-header .card img, .top-header .card svg {
    margin-left: 2px;
  }
}
@media (max-width: 1200px) {
  .top-header .card {
    height: 40px;
    width: 60px;
  }
}
@media (max-width: 1200px) and (max-width: 600px) {
  .top-header .card {
    height: 40px;
    width: 40px;
  }
}
.top-header svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .top-header svg {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 346px) {
  .top-header svg {
    height: 25px;
    width: 25px;
  }
}

.exit-member { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.exit-member ul { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.exit-member ul li a {
  color: #302b26;
  font-size: 22px;
  margin-right: 10px;
  font-weight: 400;
}
@media (max-width: 1800px) {
  .exit-member ul li a {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .exit-member ul li a {
    font-size: 18px;
  }
}
.exit-member ul li a:hover {
  color: #ff6c36;
}
.exit-member ul li a:hover:after {
  color: #302b26;
}
.exit-member ul li a:after {
  content: "/";
  margin-right: 10px;
}
.exit-member ul li:last-child a:after {
  content: "";
}

.wlc-member { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  display: none;
  position: relative;
  font-size: 18px;
}
.wlc-member figure {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #efefef; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wlc-member figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  z-index: 2;
}
.wlc-member figure svg {
  width: 70%;
  height: 70%;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.is-login .wlc-member {
  display: flex;
}
.is-login .exit-member {
  display: none;
}

.logo {
  max-width: 300px;
}
.logo img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1400px) {
  .logo {
    max-width: 200px;
  }
}
@media (max-width: 600px) {
  .logo {
    max-width: 150px;
  }
}

.wlc-btn {
  background-color: transparent;
  border: none; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.wlc-btn span {
  color: #69615c;
  font-size: 18px;
  transition: 0.4s;
}
.wlc-btn span.mas:before {
  color: #b8b7b5;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .wlc-btn span {
    font-size: 16px;
  }
}

.wlc-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 50%;
  transform: translateX(50%);
  background-color: white;
  z-index: 4;
  width: calc(100% + 20px);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 10px 5px;
  font-size: 14px;
  display: none;
}
.wlc-dropdown li {
  border-bottom: 1px solid #eeeff4;
}
.wlc-dropdown li:last-child {
  border-bottom: none;
}
.wlc-dropdown li a { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 5px;
  margin: 5px 0;
}
.wlc-dropdown li a:hover {
  background-color: #eeeff4;
}
.wlc-dropdown li svg {
  width: 20px;
  height: 20px;
  margin-left: 4px;
}

/***********  icons in top-header & middle-header SAME size *************/
.card img, .submit-btn, .submit-btn input[type=submit], .submit-btn .mas, .submit-btn img, .submit-btn svg,
.member img, .member svg, .middle-header .icon svg, .middle-header .icon img {
  height: 40px;
  width: 40px;
}
@media (max-width: 1200px) {
  .card img, .submit-btn, .submit-btn input[type=submit], .submit-btn .mas, .submit-btn img, .submit-btn svg,
  .member img, .member svg, .middle-header .icon svg, .middle-header .icon img {
    width: 35px;
    height: 35px;
  }
}

/*=[ middle-header ]=*/
.cat-list li {
  position: relative;
  border-bottom: 1px solid #ececec;
}
.cat-list li ul {
  padding: 10px 20px 20px 10px;
  display: none;
}
.cat-list li ul li a { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 5px;
}
.cat-list li ul li a:hover {
  color: #ff9d3c;
}
.cat-list li ul li span.mas {
  margin-left: 5px;
}
.cat-list li:last-child {
  border-bottom: none;
}
.cat-list li:last-child::before {
  box-shadow: none;
  height: 0;
}
.cat-list li .cat-menu-item { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: flex-start;
  color: #302b26;
  font-size: 18px;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 15px 0;
}
@media (max-width: 1200px) {
  .cat-list li .cat-menu-item {
    padding: 10px 0;
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .cat-list li .cat-menu-item {
    font-size: 16px;
  }
}
.cat-list li .cat-menu-item:hover {
  color: #ff9d3c;
  text-shadow: 0 0 1px rgba(255, 108, 54, 0.6);
}
.cat-list li .cat-menu-item > span {
  flex: 1;
  text-align: right;
}
.cat-list li.active .cat-menu-item {
  color: #ff9d3c;
  text-shadow: 0 0 1px rgba(255, 108, 54, 0.6);
}
.cat-list li svg {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
.cat-list li::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: white;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.middle-header {
  padding: 20px;
  border-top: 1px solid #ececec; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.middle-header::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: white;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1140px) {
  .middle-header .nav-menu .main-menu-parent {
    display: none;
    opacity: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    background-color: rgba(72, 72, 72, 0.98);
    height: 100%;
    z-index: 19;
    transition: 0.4s;
    justify-content: center;
    align-items: center;
    animation: menu-fade 0.5s;
  }
  @keyframes menu-fade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
.middle-header .nav-menu .main-menu-parent .close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  font-size: 22px;
  border: none;
  display: none;
}
@media (max-width: 1140px) {
  .middle-header .nav-menu .main-menu-parent .close-menu { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6c36;
    color: white;
  }
}
.middle-header .nav-menu .main-menu-parent .close-menu:hover {
  background-color: #ff6c36;
  color: white;
}
.middle-header .nav-menu .main-menu { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
@media (max-width: 1140px) {
  .middle-header .nav-menu .main-menu {
    flex-direction: column;
    justify-content: center;
  }
}
.middle-header .nav-menu .main-menu li a {
  font-size: 20px;
  margin: 0 15px;
  color: #545454;
  position: relative;
  padding: 8px 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
@media (max-width: 1200px) {
  .middle-header .nav-menu .main-menu li a {
    font-size: 16px;
  }
}
@media (max-width: 1140px) {
  .middle-header .nav-menu .main-menu li a {
    color: white;
    margin-bottom: 15px;
  }
  .middle-header .nav-menu .main-menu li a::after {
    height: 2px;
  }
}
.middle-header .nav-menu .main-menu li a:hover {
  color: #ff6c36;
}
.middle-header .nav-menu .main-menu li a:hover::after {
  opacity: 1;
  width: 100%;
}
.middle-header .nav-menu .main-menu li a::after {
  content: "";
  width: 70%;
  height: 3px;
  background-color: transparent;
  position: absolute;
  background-color: #ff6c36;
  bottom: 0;
  right: 0;
  transition: 0.4s;
  opacity: 0;
}
.middle-header .nav-menu .main-menu li.active-menu a::after {
  visibility: visible;
  opacity: 1;
}
.middle-header .nav-menu .open-menu {
  background-color: transparent;
  border: none;
  display: none;
  transform: translateY(6px);
}
@media (max-width: 1140px) {
  .middle-header .nav-menu .open-menu { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
    display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.middle-header .nav-menu .open-menu svg {
  width: 40px;
  height: 40px;
}

button.btn-cat {
  border: none;
  background-color: #eeeff4;
  color: #7f7c79;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
button.btn-cat:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
button.btn-cat svg {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
@media (max-width: 1200px) {
  button.btn-cat svg {
    width: 30px;
    height: 30px;
  }
}

.cat-list-parent {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  min-width: 250px;
  max-width: 450px;
  /*[____ style for scroll ____]*/
  scrollbar-width: thin; /* "auto" or "thin" */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
  display: none;
  opacity: 0;
  background-color: white;
  z-index: 18;
  padding: 60px 20px 40px 20px;
  border-right: 1px solid #efefef;
  transition: 0.6s;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.05);
}
.cat-list-parent::-webkit-scrollbar {
  width: 4px;
}
.cat-list-parent::-webkit-scrollbar-track {
  background: #888;
}
.cat-list-parent::-webkit-scrollbar-thumb {
  background: #302b26;
}
.cat-list-parent::-webkit-scrollbar-thumb:hover {
  background: #ff6c36;
}
@media (max-width: 992px) {
  .cat-list-parent {
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .cat-list-parent {
    max-width: 300px;
  }
}
.cat-list-parent .close-cat {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  font-size: 22px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.cat-list-parent .close-cat:hover {
  background-color: #ff6c36;
  color: white;
}

.hold-btn {
  position: relative;
}

/*=[ bottom-header ]=*/
.bottom-header { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
.bottom-header .hold-slider { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .bottom-header .hold-slider {
    width: 82%;
  }
}
@media (max-width: 992px) {
  .bottom-header .hold-slider {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .bottom-header .hold-slider {
    width: 90%;
  }
}
.bottom-header .slide-text {
  flex-basis: 60%;
  width: 60%;
  margin-left: 60px;
}
@media (max-width: 992px) {
  .bottom-header .slide-text {
    width: 90%;
    flex-basis: 90%;
    margin: 40px 0 0 0;
  }
}
@media (max-width: 768px) {
  .bottom-header .slide-text {
    margin: 15px 0 0 0;
  }
}
.bottom-header .slide-text h2 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #302b26;
  overflow: hidden;
}
@media (max-width: 600px) {
  .bottom-header .slide-text h2 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .bottom-header .slide-text h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
@media (max-width: 346px) {
  .bottom-header .slide-text h2 {
    font-size: 20px;
  }
}
.bottom-header .slide-text p {
  color: #7f7c79;
  font-size: 20px;
  line-height: 2;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}
@media (max-width: 600px) {
  .bottom-header .slide-text p {
    font-size: 16px;
    line-height: 1.8;
    -webkit-line-clamp: 6;
    text-align: justify;
  }
}
@media (max-width: 346px) {
  .bottom-header .slide-text p {
    font-size: 14px;
  }
}
.bottom-header .slide-img {
  flex-basis: 40%;
  width: 40%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .bottom-header .slide-img {
    margin: 40px 0;
    width: 100%;
    flex-basis: 100%;
  }
}
.bottom-header .slide-img img {
  width: 100%;
  height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 60px 0;
}
@media (max-width: 992px) {
  .bottom-header .slide-img img {
    height: 250px;
    margin: 0;
  }
}
.bottom-header .slide-h {
  padding-bottom: 20px;
  width: 100%;
}

.slide-btn { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 0;
}
@media (max-width: 992px) {
  .slide-btn {
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
  }
}
.slide-btn a {
  width: 160px;
  height: 45px;
  padding: 0;
}
@media (max-width: 480px) {
  .slide-btn a {
    width: 140px;
  }
}
@media (max-width: 346px) {
  .slide-btn a {
    width: 130px;
  }
}
.slide-btn a:first-child {
  margin: 0 20px;
}
@media (max-width: 992px) {
  .slide-btn a:first-child {
    margin: 0 0 0 20px;
  }
}
.slide-btn a:last-child {
  background-color: #eeeff4;
  color: #7f7c79;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.slide-btn a:last-child:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/*============================== [ index > intro-product ] ========================================*/
.intro-product {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 60px;
  grid-gap: 40px;
}
@media (max-width: 992px) {
  .intro-product {
    grid-template-columns: 1fr;
    margin-top: 100px;
  }
}
.intro-product .intro-box {
  height: 160px;
  border-radius: 14px;
  box-shadow: inset 6px 6px 6px rgba(255, 255, 255, 0.5), inset -6px -6px 6px rgba(1, 1, 1, 0.2);
  position: relative;
  background-color: #eeeff4;
}
@media (max-width: 1800px) {
  .intro-product .intro-box {
    height: 140px;
  }
}
.intro-product .intro-box:hover .shdw-orange {
  box-shadow: inset 6px 6px 6px rgba(1, 1, 1, 0.2), inset -6px -6px 6px rgba(255, 255, 255, 0.5);
  transition: 0.4s;
}
.intro-product .intro-box .shdw-orange {
  background-image: linear-gradient(to right, #fc8216 40%, transparent);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 14px;
  transition: 0.4s;
  box-shadow: inset 6px 6px 6px rgba(255, 255, 255, 0.5), inset -6px -6px 6px rgba(1, 1, 1, 0.2);
}
.intro-product .intro-box img {
  height: 100%;
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
}
.intro-product .intro-box .intro-text {
  position: absolute;
  top: 40px;
  left: 50px;
  z-index: 3;
  color: white;
  font-size: 22px;
  font-weight: 500;
  transition: 0.4s;
}
@media (max-width: 1800px) {
  .intro-product .intro-box .intro-text {
    font-size: 18px;
    top: 30px;
    left: 40px;
  }
}

/*============================== [ index > vip-product ] ========================================*/
.product {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 60px;
  /*==[ item ]==*/
}
@media (max-width: 1800px) {
  .product {
    grid-gap: 25px;
  }
}
.product .item {
  height: 430px;
  background-color: white;
  border-radius: 25px;
  border-bottom: 8px solid rgba(141, 141, 141, 0.45);
  text-align: center;
  position: relative;
  display: inline;
  transition: 0.4s;
  /*==[ icon-product ]==*/
}
.product .item h4 {
  color: #302b26;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 19px;
}
@media (max-width: 1800px) {
  .product .item {
    border-radius: 17px;
    height: 370px;
  }
}
.product .item figure {
  height: 63%;
  width: 100%;
  padding: 40px;
  border-radius: 25px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1800px) {
  .product .item figure {
    padding: 20px;
  }
}
.product .item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product .item:hover {
  border-bottom: 8px solid #ff6e50;
}
.product .item:hover .icon-product a:last-child {
  background-image: linear-gradient(to right, #f8934f, #ff6c36);
}
.product .item:hover .icon-product a::after {
  background-color: transparent;
}
.product .item .icon-product {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .item .icon-product a {
  color: white;
  height: 50px;
  width: 50px;
  margin: 0 10px;
  color: white;
  font-size: 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
}
@media (max-width: 1800px) {
  .product .item .icon-product a {
    height: 45px;
    width: 45px;
  }
}
.product .item .icon-product a::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transition: 0.4s;
}
.product .item .icon-product a:first-child {
  background: #ff6c36;
}
.product .item .icon-product a:last-child {
  background: #c0c0c0;
}
.product .item .icon-product a span::before {
  color: white;
}
.product .item .icon-product a span img,
.product .item .icon-product a span svg {
  width: 30px;
  height: 30px;
}
.product .item .icon-product a:hover {
  transform: scale(1.03);
}
.product .item .icon-product .add-to::after {
  content: "";
  background-color: rgba(255, 255, 255, 0);
}
.product .item .icon-product .add-to:last-child {
  background: #ff6c36;
}

/*==[ cat-tooltip  ]==*/
.cat-tooltip {
  position: absolute;
  left: 40px;
  bottom: 40px;
  display: none;
}
.cat-tooltip span {
  background-color: rgba(253, 172, 155, 0.55);
  color: #ff4d28;
  padding: 5px 20px;
  font-weight: bold;
  border-radius: 30px;
  font-size: 21px;
  margin: 0 0 5px 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
@media (max-width: 1800px) {
  .cat-tooltip {
    left: 40px;
  }
}

.new .cat-tooltip {
  display: block;
}

/*==[ price ]==*/
.price {
  border-top: 1px solid #dddddd;
  margin: 20px 10px 0 10px;
  padding: 10px 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
}
.price .real-price {
  font-size: 22px;
  font-weight: bold;
}
.price .real-price span:first-child {
  color: #ff6c36;
  margin-left: 5px;
}
.price .real-price span:last-child {
  color: #948f8a;
}
@media (max-width: 1800px) {
  .price .real-price {
    font-size: 20px;
  }
}

.vip-product {
  background: url(../images/b2.png) no-repeat center top/100%;
  margin-top: 170px;
  width: 100%;
  min-height: 400px;
  margin-bottom: 40px;
  padding-top: 30px;
}
@media (max-width: 1800px) {
  .vip-product {
    padding-top: 10px;
  }
}
@media (max-width: 1140px) {
  .vip-product {
    background: url(../images/b2.png) no-repeat center top/100% 60%;
    margin-top: 100px;
    padding-top: 50px;
  }
}
@media (max-width: 992px) {
  .vip-product {
    background: linear-gradient(to top, #ff6c36, rgba(252, 156, 62, 0.8)) no-repeat center center/100% 50%;
    margin-top: 100px;
    padding-top: 50px;
  }
}
@media (max-width: 600px) {
  .vip-product {
    background: linear-gradient(to top, #ff6c36, rgba(252, 156, 62, 0.8)) no-repeat center center/100% 80%;
  }
}
@media (max-width: 1140px) {
  .vip-product .product {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
  }
}
@media (max-width: 600px) {
  .vip-product .product {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1140px) {
  .vip-product .product .item {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
}
.vip-product .head-section {
  transform: translateY(-70px);
}
@media (max-width: 1800px) {
  .vip-product .head-section {
    transform: translateY(-50px);
  }
}
@media (max-width: 1140px) {
  .vip-product .head-section {
    transform: translateY(-60px);
  }
}
.vip-product .btn-main {
  margin: 0 auto;
}

.off-price {
  font-size: 14px;
  font-weight: 400;
  color: #ff6c36;
  text-decoration: line-through;
  display: none;
}

/*==[ icon-product ]==*/
.off-tooltip {
  width: 80px;
  height: 50px;
  border-radius: 0 20px 0 20px;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ff4d28;
  display: none;
  font-size: 22px;
}
@media (max-width: 1800px) {
  .off-tooltip {
    width: 70px;
    height: 40px;
    border-radius: 0 17px 0 20px;
  }
}

.off-product .off-tooltip { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
.off-product .off-price {
  display: block;
}

/*============================== [ index > banner ] ========================================*/
.banner-ads {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 40px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
.banner-ads img, .banner-ads video {
  width: 100%;
  max-height: 200px;
  border-radius: 17px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.24);
}
@media (max-width: 1140px) {
  .banner-ads img, .banner-ads video {
    border-radius: 10px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.ads2 {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .ads2 {
    margin-bottom: 40px;
  }
}
.ads2 img, .ads2 video {
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 1800px) {
  .ads2 img, .ads2 video {
    max-height: 300px;
  }
}

.advertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 1140px) {
  .advertise-grid {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
@media (max-width: 600px) {
  .advertise-grid {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.advertise-grid .banner-ads {
  border-radius: 17px;
  margin-bottom: 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
.advertise-grid .banner-ads img, .advertise-grid .banner-ads video {
  width: 100%;
  max-height: 200px;
  border-radius: 17px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.24);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1140px) {
  .advertise-grid .banner-ads img, .advertise-grid .banner-ads video {
    border-radius: 10px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*============================== [ index > slide-product ] ========================================*/
.product-slider {
  position: relative;
  margin-bottom: 70px;
}
@media (max-width: 1800px) {
  .product-slider {
    margin-bottom: 20px;
  }
}

.product-flex { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 450px;
}
@media (max-width: 1140px) {
  .product-flex {
    flex-direction: column;
  }
}
.product-flex .product {
  justify-self: flex-end;
  width: 75%;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0;
  padding: 30px 0;
}
@media (max-width: 1800px) {
  .product-flex .product {
    width: 75%;
  }
}
@media (max-width: 1140px) {
  .product-flex .product {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-flex .product {
    grid-template-columns: 1fr;
  }
}
.product-flex .product .item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sales-parent {
  position: relative;
}
.sales-parent .slick-list {
  border-radius: 25px 0 0 25px;
}
@media (max-width: 1140px) {
  .sales-parent .slick-list {
    border-radius: 25px;
  }
}
.sales-parent .shdw-sale {
  background-image: linear-gradient(to top, #ff6c36, rgba(252, 156, 62, 0.8));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.sales-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 28%;
}
@media (max-width: 1800px) {
  .sales-container {
    width: 27%;
  }
}
@media (max-width: 1140px) {
  .sales-container {
    width: 100%;
    position: relative;
  }
}
.sales-container .btn-main {
  position: absolute;
  bottom: 40px;
  right: 150px;
  color: #ff6c36;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
.sales-container .btn-main:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}
@media (max-width: 1800px) {
  .sales-container .btn-main {
    bottom: 30px;
    right: 80px;
  }
}
@media (max-width: 1400px) {
  .sales-container .btn-main {
    right: 50px;
  }
}
@media (max-width: 1200px) {
  .sales-container .btn-main {
    right: 20px;
  }
}

.sales-parent, .sales-slider .slick-slide, .sale-box, .sale-img, .shdw-sale, .sale-text {
  height: 490px;
  width: 100%;
}
@media (max-width: 1800px) {
  .sales-parent, .sales-slider .slick-slide, .sale-box, .sale-img, .shdw-sale, .sale-text {
    height: 430px;
  }
}
@media (max-width: 1140px) {
  .sales-parent, .sales-slider .slick-slide, .sale-box, .sale-img, .shdw-sale, .sale-text {
    height: 400px;
  }
}
@media (max-width: 992px) {
  .sales-parent, .sales-slider .slick-slide, .sale-box, .sale-img, .shdw-sale, .sale-text {
    height: 430px;
  }
}
@media (max-width: 768px) {
  .sales-parent, .sales-slider .slick-slide, .sale-box, .sale-img, .shdw-sale, .sale-text {
    height: 400px;
  }
}

.sales-slider, .sale-box, .sale-img {
  position: relative;
}

.sale-box {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
.sale-box .sale-img .shdw-sale {
  background-image: linear-gradient(to top, #ff6c36, rgba(252, 156, 62, 0.8));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.4s;
}
.sale-box .sale-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px 0 0 25px;
}
@media (max-width: 1140px) {
  .sale-box .sale-img img {
    border-radius: 25px;
  }
}
.sale-box .sale-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding: 40px 150px 40px 50px;
  z-index: 5;
}
@media (max-width: 1800px) {
  .sale-box .sale-text {
    padding: 45px 80px 40px 40px;
  }
}
@media (max-width: 1400px) {
  .sale-box .sale-text {
    padding: 30px 50px 30px 30px;
  }
}
@media (max-width: 1200px) {
  .sale-box .sale-text {
    padding: 30px 20px;
  }
}
@media (max-width: 1140px) {
  .sale-box .sale-text {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .sale-box .sale-text {
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .sale-box .sale-text {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .sale-box .sale-text {
    padding: 20px;
  }
}
.sale-box .sale-text h3 {
  text-shadow: 3px 4px 5px rgba(0, 0, 0, 0.7);
  z-index: 5;
  color: #f8f8f8;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 5px;
}
@media (max-width: 1800px) {
  .sale-box .sale-text h3 {
    font-size: 27px;
  }
}
@media (max-width: 1140px) {
  .sale-box .sale-text h3 {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .sale-box .sale-text h3 {
    font-size: 27px;
  }
}
@media (max-width: 480px) {
  .sale-box .sale-text h3 {
    font-size: 25px;
  }
}
@media (max-width: 346px) {
  .sale-box .sale-text h3 {
    font-size: 23px;
  }
}
.sale-box .sale-text hr {
  width: 75%;
  background-color: rgba(255, 255, 255, 0.55);
  height: 3px;
  border: none;
}
@media (max-width: 1140px) {
  .sale-box .sale-text hr {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .sale-box .sale-text hr {
    width: 90%;
  }
}
.sale-box .sale-text p {
  color: rgba(48, 43, 38, 0.9);
  font-size: 20px;
  margin-top: 20px;
  line-height: 2.3;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  z-index: 5;
  text-align: justify;
}
@media (max-width: 1800px) {
  .sale-box .sale-text p {
    margin-top: 10px;
    font-size: 17px;
  }
}
@media (max-width: 1140px) {
  .sale-box .sale-text p {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .sale-box .sale-text p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .sale-box .sale-text p {
    font-size: 16px;
  }
}

/*============================== [ index > intro-single ] ========================================*/
.int-single {
  background: url(../images/bg-bnr.jpg) no-repeat center center/cover;
  position: relative;
  margin: 120px 0 60px 0;
  padding: 100px 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1800px) {
  .int-single {
    margin: 40px 0 60px 0;
  }
}
@media (max-width: 1140px) {
  .int-single {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .int-single {
    margin: 0;
    padding: 40px 0;
  }
}
.int-single .shdw-white {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.int-single .int-container {
  background-color: white;
  border-radius: 40px;
  width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  padding: 40px 50px 40px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 30px;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .int-single .int-container {
    padding: 30px 30px 30px 0;
    grid-gap: 20px;
    width: 95%;
  }
}
@media (max-width: 1400px) {
  .int-single .int-container {
    width: 100%;
    grid-gap: 30px;
    padding: 40px 20px 40px 0;
  }
}
@media (max-width: 1140px) {
  .int-single .int-container {
    grid-template-columns: 3fr 2fr;
    grid-gap: 10px;
  }
}
@media (max-width: 1140px) {
  .int-single .int-container {
    grid-template-columns: 1fr;
    padding: 40px 20px 40px 0;
  }
}
.int-single .int-bnr {
  z-index: 3;
  padding-right: 30px;
}
@media (max-width: 1800px) {
  .int-single .int-bnr {
    padding-right: 20px;
  }
}
@media (max-width: 1140px) {
  .int-single .int-bnr {
    padding-right: 0;
  }
}
.int-single .int-bnr .off-tooltip {
  position: unset;
  display: inline-block;
  border-radius: 10px;
  padding: 8px 25px;
  font-size: 22px;
  height: auto;
  width: auto;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 1800px) {
  .int-single .int-bnr .off-tooltip {
    font-size: 19px;
  }
}
@media (max-width: 1400px) {
  .int-single .int-bnr .off-tooltip {
    padding: 8px 20px;
  }
}
.int-single .int-bnr .head { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.int-single .int-bnr .head h2 {
  margin-right: 10px;
  color: #302b26;
  margin-bottom: 10px;
  font-size: 26px;
}
@media (max-width: 1800px) {
  .int-single .int-bnr .head h2 {
    font-size: 22px;
  }
}
.int-single .int-bnr p {
  line-height: 2.3;
  font-size: 22px;
  color: #484848;
  text-align: justify;
  padding-right: 40px;
}
@media (max-width: 1800px) {
  .int-single .int-bnr p {
    font-size: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1400px) {
  .int-single .int-bnr p {
    font-size: 18px;
  }
}
@media (max-width: 1140px) {
  .int-single .int-bnr p {
    padding: 0 10px 20px 20px;
  }
}
@media (max-width: 600px) {
  .int-single .int-bnr p {
    font-size: 16px;
  }
}
.int-single .int-img {
  position: relative;
  width: 100%;
  height: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-self: flex-end;
}
.int-single .int-img::before {
  content: "";
  width: 80%;
  height: 90%;
  background-color: #ff6c36;
  border-radius: 0 30px 30px 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1140px) {
  .int-single .int-img::before {
    width: 100%;
  }
}
.int-single .int-img img {
  width: 80%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: translateY(20%) translateX(-15%);
}
.int-single .int-footer { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding-right: 40px;
}
@media (max-width: 1800px) {
  .int-single .int-footer {
    margin-top: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1400px) {
  .int-single .int-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1140px) {
  .int-single .int-footer {
    padding-right: 0;
  }
}
.int-single .int-footer .int-price { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .int-single .int-footer .int-price {
    align-self: center;
    justify-content: center;
  }
}
.int-single .int-footer .int-price .p-item { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.int-single .int-footer .int-price .p-item span {
  font-size: 25px;
  font-weight: 600;
  color: #ff4d28;
  margin-right: 20px;
}
@media (max-width: 1800px) {
  .int-single .int-footer .int-price .p-item span {
    font-size: 23px;
    margin-right: 10px;
  }
}
.int-single .int-footer .int-price .p-item span:nth-child(2) {
  color: #848484;
}
.int-single .int-footer .int-price h4 {
  font-size: 18px;
  color: #302b26;
}
.int-single .int-btn { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
@media (max-width: 1400px) {
  .int-single .int-btn {
    align-self: center;
    margin-top: 20px;
  }
}
.int-single .int-btn a {
  margin-right: 10px;
}
@media (max-width: 1400px) {
  .int-single .int-btn a:first-child {
    margin-right: 0;
  }
}
@media (max-width: 346px) {
  .int-single .int-btn a {
    padding: 7px 10px;
    font-size: 14px;
  }
}
.int-single .int-btn .btn-arrow:hover {
  color: #ff6c36;
}
.int-single .int-btn .btn-arrow:hover::after {
  color: #ff6c36;
  transform: translateX(-5px);
}

/*============================== [ index > newest ] ========================================*/
.newest {
  padding: 30px 0;
}

.newest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
  margin: 70px 0;
}
@media (max-width: 1200px) {
  .newest-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .newest-grid {
    grid-template-columns: 1fr;
    margin: 40px 0;
  }
}

.newest-box {
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media (max-width: 1800px) {
  .newest-box {
    border-radius: 20px;
  }
}
.newest-box figure {
  width: 100%;
  height: 250px;
  position: relative;
}
@media (max-width: 1800px) {
  .newest-box figure {
    height: 230px;
  }
}
.newest-box figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px 30px 100px 0;
}
@media (max-width: 1800px) {
  .newest-box figure img {
    border-radius: 20px 20px 60px 0;
  }
}
.newest-box figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 110, 55, 0.6);
  border-radius: 30px 30px 100px 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1800px) {
  .newest-box figure figcaption {
    border-radius: 20px 20px 60px 0;
  }
}
.newest-box figure figcaption .btn-main {
  background-color: rgba(255, 255, 255, 0.8);
  color: #56524f;
}
.newest-box figure figcaption .btn-main:hover {
  background-color: white;
}
.newest-box .off-tooltip {
  right: 50%;
  transform: translateX(50%);
  border-radius: 0 0 20px 20px;
  width: 110px;
  height: auto;
  padding: 2px 0;
}
.newest-box .price {
  margin-bottom: 0;
}
.newest-box:hover figure figcaption {
  visibility: visible;
  opacity: 1;
}

.newest-text {
  padding: 20px;
  text-align: center;
}
.newest-text h4 {
  font-size: 25px;
}
@media (max-width: 1800px) {
  .newest-text h4 {
    font-size: 19px;
  }
}
.newest-text .price {
  border-top: none;
  margin-top: 0;
}
.newest-text .mas::before {
  font-size: 30px;
  color: white;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  margin-right: 10px;
}
.newest-text .btn-main { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  font-size: 16px;
  border: none;
}

/*============================== [ index > newsletter ] ========================================*/
.newsletter {
  background: url(../images/bg4.png) no-repeat center center/cover;
  position: relative;
  margin: 60px 0;
}
.newsletter .shdw-dark {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(48, 43, 38, 0.7);
}
.newsletter .nletter {
  height: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  color: white;
  text-align: center;
}
.newsletter .nletter h1 {
  color: #ff6c36;
  z-index: inherit;
  font-size: 40px;
  font-weight: 400;
}
@media (max-width: 480px) {
  .newsletter .nletter h1 {
    font-size: 30px;
  }
}
.newsletter .nletter p {
  margin: 20px 0 50px 0;
  font-size: 18px;
}
@media (max-width: 480px) {
  .newsletter .nletter p {
    font-size: 16px;
  }
}
.newsletter .nletter form, .newsletter .nletter p, .newsletter .nletter h1 {
  z-index: inherit;
}

.newsletter, .nletter {
  min-height: 400px;
}

.subscribe {
  width: 600px;
  background-color: white;
  height: 60px;
  padding: 6px;
  border-radius: 15px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .subscribe {
    width: 400px;
    height: 50px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .subscribe {
    width: 310px;
    height: auto;
  }
}
.subscribe input {
  height: 100%;
  font-size: 16px;
  border: none;
  border-radius: 0;
}
@media (max-width: 768px) {
  .subscribe input {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .subscribe input {
    font-size: 12px;
    height: 50px;
  }
}
.subscribe select {
  width: 20%;
  color: #69615c;
  border: none;
  border-left: 1px solid #c7c7c7;
  height: 70%;
  border-radius: 0;
  font-size: 16px;
  background-color: transparent;
}
@media (max-width: 768px) {
  .subscribe select {
    font-size: 12px;
    width: 22%;
  }
}
@media (max-width: 480px) {
  .subscribe select {
    width: 30%;
    height: 40px;
  }
}
.subscribe input[type=email] {
  width: 48%;
  color: #969696;
  padding-right: 5px;
}
@media (max-width: 480px) {
  .subscribe input[type=email] {
    width: 70%;
  }
}
.subscribe input[type=submit] {
  width: 29%;
  border-radius: 15px;
  background-image: linear-gradient(to right, #f8934f, #ff6c36);
  color: white;
  font-size: 18px;
}
@media (max-width: 768px) {
  .subscribe input[type=submit] {
    width: 25%;
    font-size: 14px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .subscribe input[type=submit] {
    width: 100%;
    margin-top: 5px;
  }
}
.subscribe input[type=submit]:hover {
  background-image: linear-gradient(to left, #f8934f, #ff6c36);
}

/*============================== [ index > service ] ========================================*/
.service {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
  margin: 60px 0;
}
@media (max-width: 1140px) {
  .service {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .service {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .service {
    grid-template-columns: 1fr;
  }
}
.service .ser {
  border-radius: 20px;
  box-shadow: -5px -3px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.3s;
}
.service .ser:hover {
  box-shadow: 5px 3px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1800px) {
  .service .ser {
    padding: 20px 10px;
  }
}
.service .ser h5 {
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  color: #ff9d3c;
  margin: 20px 0 10px 0;
}
@media (max-width: 1800px) {
  .service .ser h5 {
    font-size: 18px;
  }
}
.service .ser p {
  color: #706d69;
  font-size: 16px;
}
@media (max-width: 1800px) {
  .service .ser p {
    font-size: 14px;
  }
}
.service .ser-icon {
  width: 100px;
  height: 100px;
}
@media (max-width: 1800px) {
  .service .ser-icon {
    width: 70px;
    height: 70px;
  }
}
.service .ser-icon svg {
  width: 100%;
  height: 100%;
}

/*============================== [ index > footer ] ========================================*/
footer {
  background-color: #f5f5f5;
  border-radius: 150px 150px 0 0;
}
@media (max-width: 1800px) {
  footer {
    border-radius: 100px 100px 0 0;
  }
}
@media (max-width: 1140px) {
  footer {
    border-radius: 80px 80px 0 0;
  }
}
@media (max-width: 480px) {
  footer {
    border-radius: 60px 60px 0 0;
  }
}
@media (max-width: 480px) {
  footer {
    border-radius: 40px 40px 0 0;
  }
}
footer .footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 0 0 0;
}
footer .head-foot h6 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #302b26;
  font-weight: 500;
}
@media (max-width: 600px) {
  footer .head-foot h6 {
    font-size: 18px;
  }
}
footer .widget {
  flex-basis: 19%;
  margin-bottom: 30px;
}
@media (max-width: 1140px) {
  footer .widget {
    flex-basis: 30%;
  }
  footer .widget:last-child {
    flex-basis: 65%;
  }
}
@media (max-width: 768px) {
  footer .widget {
    flex-basis: 45%;
  }
  footer .widget:last-child {
    flex-basis: 100%;
  }
}
footer .widget ul li {
  margin-bottom: 10px;
}
footer .widget ul li a {
  color: #7a726e;
  font-size: 18px;
}
footer .widget ul li a:hover {
  color: #ff9d3c;
}
@media (max-width: 600px) {
  footer .widget ul li a {
    font-size: 14px;
  }
}
footer .widget .enemad { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  footer .widget .enemad {
    justify-content: space-between;
  }
}
footer .widget .enemad a {
  flex-basis: 45%;
  margin: 0 10px 10px 0;
}
@media (max-width: 1140px) {
  footer .widget .enemad a {
    flex-basis: 30%;
  }
}
@media (max-width: 600px) {
  footer .widget .enemad a {
    flex-basis: 25%;
  }
}
footer .widget .enemad a img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.middle-footer {
  padding: 30px 0;
  background-color: #e6e5e4;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.middle-footer .num-footer li span:first-child {
  color: #302b26;
}
.middle-footer .num-footer li span:last-child {
  color: #ff6c36;
}
.middle-footer .logo {
  max-width: 200px;
}

.contact-foot { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-foot .num-footer, .contact-foot .logo, .contact-foot .social-foot {
  width: 33%;
}
@media (max-width: 768px) {
  .contact-foot .num-footer, .contact-foot .logo, .contact-foot .social-foot {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .contact-foot .social-foot {
    order: 2;
  }
  .contact-foot .logo {
    order: 3;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .contact-foot .logo {
    max-width: 200px;
    margin: 40px auto 0 auto;
  }
}
@media (max-width: 768px) {
  .contact-foot .num-footer {
    order: 1;
  }
}
.contact-foot .social-foot {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .contact-foot .social-foot {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .contact-foot {
    flex-wrap: wrap;
  }
}

.social-foot { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
.social-foot li {
  margin-right: 25px;
}
@media (max-width: 768px) {
  .social-foot li {
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  .social-foot li {
    margin-right: 5px;
  }
}
.social-foot a:hover svg {
  filter: contrast(1) drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
}
.social-foot svg {
  width: 50px;
  height: 50px;
  transition: 0.3s;
}
@media (max-width: 1140px) {
  .social-foot svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 600px) {
  .social-foot svg {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 346px) {
  .social-foot svg {
    width: 30px;
    height: 30px;
  }
}

.copyright {
  padding: 20px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 14px;
  }
}
.copyright a {
  color: #ff6c36;
}

/*=========== [ border-shadow ] ==========*/
.border-shadow {
  border-bottom: 1px solid #ececec;
  position: relative;
  padding-bottom: 20px;
}
.border-shadow::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: white;
  bottom: -2px;
  width: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/*============================== [ login ] ========================================*/
/*== [ page-map ] ==*/
.page-map {
  background-color: #eeeff4;
  padding: 8px 0;
}
.page-map ul { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
.page-map ul li a {
  font-size: 18px;
  color: #302b26;
}
@media (max-width: 768px) {
  .page-map ul li a {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .page-map ul li a {
    font-size: 14px;
  }
}
.page-map ul li a:hover {
  color: #ff9d3c;
}
.page-map ul li a::before {
  content: "\e913";
  margin: 0 10px 0 5px;
  color: #545454;
  font-family: "mas-icon";
  transform: translateY(2px);
  font-size: 14px;
  display: inline-block;
}
.page-map ul li:last-child a {
  pointer-events: none;
  color: #ff9d3c;
}
.page-map ul li:last-child a::after {
  content: "";
}
.page-map ul li:first-child a::before {
  content: "";
}

/*== [ sign ] ==*/
.sign {
  margin-top: 130px;
  position: relative; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .sign {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .sign {
    margin-top: 70px;
  }
}
.sign .form { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 100px 150px 150px 150px;
  background-color: #f1f2f7;
  width: 70%;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 1140px) {
  .sign .form {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .sign .form {
    padding: 50px 50px 150px 50px;
  }
}
@media (max-width: 600px) {
  .sign .form {
    padding: 50px 30px 150px 30px;
  }
}
.sign .form h3 {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  width: 100%;
  text-align: center;
  color: #ff6c36;
  text-shadow: 0 -9px 1px #f1f2f7, 0 -18px 1px #f1f2f7, 0 -11px 1px #f1f2f7, 0 -10px 1px #f1f2f7, 0 -20px 5px #f1f2f7, 0 -25px 8px #f1f2f7, 0 -30px 8px #f1f2f7, 5px -30px 8px #f1f2f7, -5px -30px 8px #f1f2f7, 5px -25px 8px #f1f2f7, -5px -25px 8px #f1f2f7, 5px -20px 5px #f1f2f7, -5px -20px 5px #f1f2f7, 5px -10px 1px #f1f2f7, -5px -10px 1px #f1f2f7, 5px -11px 1px #f1f2f7, -5px -11px 1px #f1f2f7, 5px -18px 1px #f1f2f7, -5px -18px 1px #f1f2f7, 15px -18px 1px #f1f2f7, -15px -18px 1px #f1f2f7, 15px -11px 1px #f1f2f7, -15px -11px 1px #f1f2f7, 15px -10px 1px #f1f2f7, -15px -10px 1px #f1f2f7, 15px -20px 5px #f1f2f7, -15px -20px 5px #f1f2f7, 15px -25px 8px #f1f2f7, -15px -25px 8px #f1f2f7, 15px -30px 8px #f1f2f7, -15px -30px 8px #f1f2f7, 20px -18px 1px #f1f2f7, -20px -18px 1px #f1f2f7, 20px -11px 1px #f1f2f7, -20px -11px 1px #f1f2f7, 20px -10px 1px #f1f2f7, -20px -10px 1px #f1f2f7, 20px -20px 5px #f1f2f7, -20px -20px 5px #f1f2f7, 25px -5px 5px #f1f2f7, -25px -5px 5px #f1f2f7;
}
@media (max-width: 1140px) {
  .sign .form h3 {
    font-size: 40px;
    top: -30px;
  }
}
@media (max-width: 768px) {
  .sign .form h3 {
    font-size: 35px;
    top: -20px;
  }
}
@media (max-width: 600px) {
  .sign .form h3 {
    font-size: 30px;
    top: -15px;
    text-shadow: 0 -9px 1px #f1f2f7, 0 -12px 1px #f1f2f7, 0 -11px 1px #f1f2f7, 0 -10px 1px #f1f2f7, 0 -15px 5px #f1f2f7, 0 -20px 8px #f1f2f7, 0 -25px 8px #f1f2f7, 5px -25px 8px #f1f2f7, -5px -25px 8px #f1f2f7, 5px -20px 8px #f1f2f7, -5px -20px 8px #f1f2f7, 5px -15px 5px #f1f2f7, -5px -15px 5px #f1f2f7, 5px -10px 1px #f1f2f7, -5px -10px 1px #f1f2f7, 5px -11px 1px #f1f2f7, -5px -11px 1px #f1f2f7, 5px -12px 1px #f1f2f7, -5px -12px 1px #f1f2f7, 15px -12px 1px #f1f2f7, -15px -12px 1px #f1f2f7, 15px -11px 1px #f1f2f7, -15px -11px 1px #f1f2f7, 15px -10px 1px #f1f2f7, -15px -10px 1px #f1f2f7, 15px -15px 5px #f1f2f7, -15px -15px 5px #f1f2f7, 15px -20px 8px #f1f2f7, -15px -20px 8px #f1f2f7, 15px -25px 8px #f1f2f7, -15px -25px 8px #f1f2f7, 20px -12px 1px #f1f2f7, -20px -12px 1px #f1f2f7, 20px -11px 1px #f1f2f7, -20px -11px 1px #f1f2f7, 20px -10px 1px #f1f2f7, -20px -10px 1px #f1f2f7, 20px -15px 5px #f1f2f7, -20px -15px 5px #f1f2f7, 25px -5px 5px #f1f2f7, -25px -5px 5px #f1f2f7;
  }
}
@media (max-width: 480px) {
  .sign .form h3 {
    font-size: 25px;
    top: -10px;
  }
}
.sign label {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  color: #302b26;
  font-weight: normal;
  position: relative;
}
.sign label .form-title {
  margin-bottom: 10px;
  padding-right: 20px;
  font-size: 18px;
}
.sign label .form-title svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 600px) {
  .sign label .form-title {
    font-size: 16px;
  }
}
.sign label.w45 {
  width: 45%;
}
@media (max-width: 768px) {
  .sign label.w45 {
    width: 100%;
  }
}
.sign .required .form-title::after {
  content: "*";
  color: #ff6c36;
  margin-right: 10px;
}
.sign input, .sign select {
  border-radius: 17px;
  padding: 10px;
  font-size: 18px;
  background-color: transparent;
  border: 1px solid #a3a3a3;
  box-shadow: inset 0 5px 10px rgba(0, 0, 0, 0.06);
  color: #69615c;
  width: 100%;
}
.sign input:hover, .sign input:focus, .sign select:hover, .sign select:focus {
  border: 1px solid #ff6c36;
  box-shadow: inset 0 -5px 10px rgba(255, 108, 54, 0.08);
}
@media (max-width: 600px) {
  .sign input, .sign select {
    font-size: 16px;
  }
}
.sign input[type=submit] {
  background-image: linear-gradient(to right, #f8934f, #ff6c36);
  color: white;
  border: none;
  padding: 11px 10px;
  font-size: 20px;
  margin-top: 20px;
  z-index: 2;
}
@media (max-width: 1800px) {
  .sign input[type=submit] {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .sign input[type=submit] {
    font-size: 16px;
  }
}
.sign input[type=submit]:hover {
  background-image: linear-gradient(to right, #f8934f, #ff6c36);
  box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.2);
}
.sign .sign-img { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.sign .sign-img img {
  transform: translateX(200px) translateY(-200px);
  margin-bottom: -251px;
  width: 40%;
}
@media (max-width: 1800px) {
  .sign .sign-img img {
    transform: translateX(80px) translateY(-200px);
  }
}
@media (max-width: 1140px) {
  .sign .sign-img img {
    width: 60%;
    transform: translateX(0) translateY(-150px);
    margin-bottom: -201px;
  }
}
@media (max-width: 600px) {
  .sign .sign-img img {
    width: 70%;
  }
}

.normal-radio { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 30px 0;
}
.normal-radio .form-title { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.normal-radio .form-title svg {
  width: 20px;
  height: 20px;
  margin-left: 5px;
}
@media (max-width: 600px) {
  .normal-radio .form-title svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 600px) {
  .normal-radio .form-title {
    font-size: 14px;
  }
}

.normal-radio-content { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  margin-right: 40px;
}
@media (max-width: 992px) {
  .normal-radio-content {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  .normal-radio-content {
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

/* The container */
.normal-radio-container {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  margin-bottom: 0 !important;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: auto !important;
  margin-left: 30px;
}
@media (max-width: 600px) {
  .normal-radio-container {
    font-size: 14px;
    margin-left: 10px;
  }
}

/* Hide the browser's default radio button */
.normal-radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.normal-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #f6c4b4;
  border-radius: 50%;
  border: 1px solid transparent;
  display: inline-block;
}

/* On mouse-over, add a grey background color */
.normal-radio-container:hover input ~ .normal-checkmark {
  background-color: #f6c4b4;
  border: 1px solid #ff6c36;
}

/* When the radio button is checked, add a blue background */
.normal-radio-container input:checked ~ .normal-checkmark {
  background-color: #f6c4b4;
  border: 1px solid #ff6c36;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.normal-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.normal-radio-container input:checked ~ .normal-checkmark:after {
  display: inline-block;
}

/* Style the indicator (dot/circle) */
.normal-radio-container .normal-checkmark:after {
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff6c36;
  transform: translateX(-50%) translateY(-50%);
}

/*== [ error ] ==*/
.error {
  color: #ff0023;
  font-weight: bold;
  display: none;
  font-size: 16px;
  width: 100%;
}
.error span {
  background-color: #ff0023;
  color: white;
  width: 20px;
  height: 20px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 5px;
  padding-top: 3px;
}
.error p {
  flex: 1;
  font-size: 16px;
}
@media (max-width: 1140px) {
  .error p {
    font-size: 14px;
  }
}

.error-form .error { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}

/*== [ done ] ==*/
.done {
  display: none;
}

.done-form label {
  display: none;
}
.done-form .error, .done-form .check {
  display: none;
}
.done-form .done {
  display: block;
  color: #39b918;
  position: relative;
  padding-right: 25px;
}
.done-form .done::after {
  content: "";
  right: 0;
  top: 0;
  position: absolute;
  width: 5px;
  height: 15px;
  border: solid #39b918;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/*== [ pass visibility ] ==*/
.pass {
  position: relative;
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
.pass input {
  padding-left: 35px;
}
.pass span.mas {
  width: 20px;
  height: 20px;
  color: #B9B9B9;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-size: 18px;
}
.pass .line {
  width: 20px;
  height: 2px;
  background-color: #B9B9B9;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.pass .password-visibility {
  cursor: pointer;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
.pass .password-visibility svg {
  width: 20px;
  height: 20px;
  fill: #B9B9B9;
}
.pass .password-visibility.active .line {
  display: none;
}

/*== [ #login ] ==*/
#login { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
}
#login form {
  padding-bottom: 300px;
}
@media (max-width: 1140px) {
  #login form {
    padding-bottom: 200px;
  }
}
#login .sign-img { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: center;
}
#login .sign-img img {
  transform: translateX(0) translateY(-200px);
  margin-bottom: -251px;
  width: 40%;
}
@media (max-width: 1800px) {
  #login .sign-img img {
    transform: translateX(0) translateY(-200px);
  }
}
@media (max-width: 1140px) {
  #login .sign-img img {
    width: 60%;
    transform: translateX(0) translateY(-150px);
    margin-bottom: -201px;
  }
}
@media (max-width: 600px) {
  #login .sign-img img {
    width: 70%;
  }
}

/*== [ login > register ] ==*/
.register { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 30px;
  color: #302b26;
  font-size: 20px;
}
@media (max-width: 1140px) {
  .register {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .register {
    flex-direction: column;
  }
}
.register a {
  border: 1px solid #ff6c36;
  border-radius: 10px;
  padding: 5px 20px;
  box-shadow: 0 10px 15px rgba(247, 188, 168, 0.2), inset 0 10px 15px rgba(247, 188, 168, 0.2);
}
.register a:hover {
  background-color: #ff6c36;
  color: white;
  box-shadow: 0 10px 15px rgba(247, 188, 168, 0.4);
}
@media (max-width: 600px) {
  .register a {
    margin-top: 20px;
  }
}

.forget-pass {
  font-size: 16px;
  padding-right: 20px;
}
.forget-pass:hover {
  color: #ff6c36;
}

/*================================= [ product-list page ] ========================================*/
/*======= cat-grid =======*/
.pro-list-grid, .cat-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 30px;
}

.cat-grid {
  margin: 50px auto;
}
@media (max-width: 1200px) {
  .cat-grid {
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 1140px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}
.cat-grid .cat-ad { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.cat-grid .cat-ad .cat-ad-item {
  flex-basis: 49%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 30px;
  width: 49%;
}
@media (max-width: 1200px) {
  .cat-grid .cat-ad .cat-ad-item {
    height: 150px;
  }
}
@media (max-width: 1140px) {
  .cat-grid .cat-ad .cat-ad-item {
    border-radius: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .cat-grid .cat-ad .cat-ad-item {
    height: 100px;
  }
}
@media (max-width: 600px) {
  .cat-grid .cat-ad .cat-ad-item {
    margin-bottom: 10px;
  }
}
.cat-grid .cat-ad .cat-ad-item:first-child, .cat-grid .cat-ad .cat-ad-item:first-child a {
  height: 450px;
  width: 100px;
}
@media (max-width: 1200px) {
  .cat-grid .cat-ad .cat-ad-item:first-child, .cat-grid .cat-ad .cat-ad-item:first-child a {
    height: 400px;
  }
}
@media (max-width: 1140px) {
  .cat-grid .cat-ad .cat-ad-item:first-child, .cat-grid .cat-ad .cat-ad-item:first-child a {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .cat-grid .cat-ad .cat-ad-item:first-child, .cat-grid .cat-ad .cat-ad-item:first-child a {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .cat-grid .cat-ad .cat-ad-item:first-child, .cat-grid .cat-ad .cat-ad-item:first-child a {
    height: 150px;
  }
}
.cat-grid .cat-ad .cat-ad-item:first-child {
  flex-basis: 100%;
}
.cat-grid .cat-ad .cat-ad-item:first-child a img {
  border-radius: 0;
  width: 100%;
  height: 100%;
}
.cat-grid .cat-ad .cat-ad-item a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.cat-grid .cat-ad .cat-ad-item a img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
@media (max-width: 1140px) {
  .cat-grid .cat-ad .cat-ad-item a img {
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .cat-grid .cat-ad .cat-ad-item a img {
    border-radius: 15px;
  }
}
.cat-grid #cat-ad-slider .slick-list {
  border-radius: 30px;
}
@media (max-width: 1140px) {
  .cat-grid #cat-ad-slider .slick-list {
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .cat-grid #cat-ad-slider .slick-list {
    border-radius: 15px;
  }
}

/*======= product-list =======*/
.product-list {
  position: relative;
  background-image: linear-gradient(to bottom, #ffffff 100px, #f1f1f6 50px, #fff 100%);
  margin-top: 100px;
}
.product-list::before {
  content: "";
  background: url("/images/shape2gray.png") no-repeat top center/cover;
  height: 100px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .product-list::before {
    height: 300px;
  }
}
.product-list .head-section {
  max-width: 300px;
  margin: 0 auto;
  transform: translateY(-50px);
}
.product-list .head-section h3 {
  font-size: 35px;
}
@media (max-width: 1800px) {
  .product-list .head-section h3 {
    font-size: 30px;
  }
}
@media (max-width: 1400px) {
  .product-list .head-section h3 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .product-list .head-section h3 {
    font-size: 22px;
  }
}
@media (max-width: 1400px) {
  .product-list .head-section {
    transform: translateY(-60px);
  }
}
@media (max-width: 992px) {
  .product-list .head-section {
    transform: translateY(-70px);
  }
}
@media (max-width: 768px) {
  .product-list .head-section {
    max-width: 200px;
    transform: translateY(-60px);
  }
}
@media (max-width: 600px) {
  .product-list .head-section {
    max-width: 200px;
  }
}

/*=== [ content-limit ] ====*/
.content-limit {
  margin-top: 40px;
}
.content-limit > span {
  font-size: 16px;
  color: #767676;
  font-weight: 600;
}

/*=== [ range ] ====*/
#range-sidebar {
  width: 100%;
}

.noUi-horizontal {
  height: 4px;
  margin: 20px 0;
}

.noUi-target {
  background: #e4e4e9;
  border-radius: 10px;
  border: none;
}

.noUi-connect {
  background: #ff6c36;
}

.noUi-horizontal .noUi-handle {
  width: 10px;
  height: 10px;
  right: -10px;
  border-radius: 50%;
  top: -3px;
  cursor: pointer;
}

.noUi-handle {
  border-radius: 3px;
  background: #ff6c36;
  cursor: default;
  box-shadow: none;
  border: none;
}

.noUi-handle:after, .noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #ff6c36;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.range-counter-parent {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.range-counter { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}
.range-counter span {
  color: #767676;
  font-size: 14px;
  font-weight: 400;
}
.range-counter span#range1, .range-counter span#range2 {
  color: #ff6c36;
  font-size: 18px;
  font-weight: bold;
  flex: 1;
  width: 77px;
  text-align: center;
}

/*=== [ product-list-item ] ====*/
.pro-list-grid {
  padding-top: 50px;
}
@media (max-width: 1200px) {
  .pro-list-grid {
    grid-template-columns: 1fr 2fr;
    padding-top: 30px;
  }
}
@media (max-width: 1140px) {
  .pro-list-grid {
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 992px) {
  .pro-list-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .pro-list-grid {
    padding-top: 0;
  }
}
.pro-list-grid aside {
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px 20px 20px 20px;
  border-radius: 20px;
}
.pro-list-grid aside .widget-filter .head-filter { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-list-grid aside .widget-filter .head-filter span,
.pro-list-grid aside .widget-filter .head-filter svg {
  color: #69615c;
  font-weight: bold;
}
.pro-list-grid aside .widget-filter .head-filter svg {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
.pro-list-grid aside .widget-filter form {
  padding: 20px 0;
}
.pro-list-grid aside .widget-filter form input[type=text] {
  width: 100%;
  background-color: #eeeff4;
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border: 1px solid transparent;
}
.pro-list-grid aside .widget-filter form input[type=text]:hover, .pro-list-grid aside .widget-filter form input[type=text]:focus {
  border: 1px solid #bbbbbb;
}
.pro-list-grid aside .widget-filter form .filter-list {
  margin-top: 20px;
  padding-right: 20px;
}
.pro-list-grid aside .widget-filter form .filter-list li {
  margin-bottom: 10px;
  cursor: pointer;
}
.pro-list-grid aside .widget-filter form .filter-list li .head-category {
  font-weight: bold;
  font-size: 18px;
  color: #767676;
  background-color: transparent;
  border: none;
}
.pro-list-grid aside .widget-filter form .filter-list li .head-category span.mas {
  display: inline-block;
  transform: rotate(90deg);
}
.pro-list-grid aside .widget-filter form .filter-list li .head-category span.mas.active {
  transform: rotate(0deg);
}
.pro-list-grid aside .widget-filter form .filter-list li .head-category span.mas::before {
  font-size: 16px;
  color: #767676;
  display: inline-block;
}
.pro-list-grid aside .widget-filter form .filter-list li ul.content-category {
  margin-right: 20px;
  margin-top: 10px;
  font-size: 16px;
  height: 0;
  overflow: hidden;
}
.pro-list-grid aside .widget-filter form .filter-list li ul.content-category li {
  margin-bottom: 10px;
}
.pro-list-grid aside .widget-filter form .filter-list li ul.active {
  height: auto;
}
.pro-list-grid aside .widget-filter form ul.filter-list li a {
  color: #767676;
  transition: 0.4s;
  display: inline-block;
}
.pro-list-grid aside .widget-filter form ul.filter-list li a::before {
  content: "\e913";
  margin-left: 5px;
  color: #767676;
  font-family: "mas-icon";
  font-size: 14px;
}
.pro-list-grid aside .widget-filter form ul.filter-list li.active-cat a,
.pro-list-grid aside .widget-filter form ul.filter-list li a:hover {
  color: #ff6c36;
  text-shadow: 0 0 1px rgba(255, 108, 54, 0.6);
  transform: translateX(-5px);
}
.pro-list-grid aside .widget-filter form ul.filter-list li.active-cat a::before,
.pro-list-grid aside .widget-filter form ul.filter-list li a:hover::before {
  color: #ff6c36;
}
.pro-list-grid aside .widget-filter form input[type=submit] {
  width: 100%;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 30px;
  font-size: 18px;
}
@media (max-width: 1800px) {
  .pro-list-grid aside .widget-filter form input[type=submit] {
    font-size: 16px;
  }
}
.pro-list-grid article {
  z-index: 2;
}
.pro-list-grid .article,
.pro-list-grid .aside {
  z-index: 2;
}

.product-list-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 1200px) {
  .product-list-item {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1140px) {
  .product-list-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .product-list-item {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .product-list-item {
    grid-template-columns: 1fr;
  }
}

.pro-item {
  border-radius: 20px;
  padding: 55px 0 30px 0;
  background-color: #f7f8fe;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: 0.4s;
  border-bottom: 8px solid rgba(141, 141, 141, 0.45);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.pro-item:hover {
  border-bottom: 8px solid #ff6c36;
  background-color: white;
  box-shadow: 0 0 20px rgba(255, 108, 54, 0.1);
}
.pro-item:hover figure img {
  transform: scale(1.1);
}
.pro-item figure {
  width: 90%;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 auto 20px auto;
}
@media (max-width: 1800px) {
  .pro-item figure {
    height: 180px;
  }
}
.pro-item figure img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.7s;
}
.pro-item .off-tooltip {
  right: 50%;
  transform: translateX(50%);
  border-radius: 0 0 20px 20px;
  width: 110px;
  height: auto;
  padding: 2px 0;
}
.pro-item h3 {
  color: #ff6c36;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1800px) {
  .pro-item h3 {
    font-size: 22px;
  }
}
.pro-item p {
  margin: 10px 0;
  color: #767676;
  font-size: 16px;
}
.pro-item .rate { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: center;
}
.pro-item .rate li button {
  background-color: transparent;
  border: none;
  font-size: 24px;
}
@media (max-width: 1800px) {
  .pro-item .rate li button {
    font-size: 22px;
  }
}
.pro-item .rate li span.mas::before {
  transition: 0.4s;
}
.pro-item .rate li:hover span.mas::before, .pro-item .rate li.active span.mas::before, .pro-item .rate li.active-st span.mas::before {
  color: #ffc120;
}
.pro-item .price {
  margin: 10px 0;
}
.pro-item .price .off-price {
  color: #a5a19e;
}
.pro-item .pro-list-price {
  position: relative;
}
.pro-item .pro-list-price::before {
  position: absolute;
  content: "";
  height: 1px;
  background-color: white;
  top: 1px;
  width: 100%;
  left: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.pro-item .pro-list-price a { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
.pro-item .pro-list-price a .mas::before {
  font-size: 30px;
  color: white;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  margin-right: 10px;
}

.page-number { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.page-number li {
  margin: 0 5px;
  position: relative;
}
@media (max-width: 600px) {
  .page-number li {
    margin: 0 2px;
  }
}
.page-number li a {
  background-color: #f1f3ff;
  width: 40px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 10px;
}
.page-number li a:hover {
  background-color: #ff6c36;
  color: white;
}
@media (max-width: 600px) {
  .page-number li a {
    height: 35px;
    width: 35px;
  }
}
@media (max-width: 346px) {
  .page-number li a {
    height: 30px;
    width: 30px;
  }
}
.page-number li.active a {
  background-color: #ff6c36;
  color: white;
}
.page-number li:first-child a, .page-number li:last-child a {
  background-color: transparent;
}
@media (max-width: 600px) {
  .page-number li:first-child a, .page-number li:last-child a {
    height: 30px;
    width: 30px;
  }
}
.page-number li:first-child a:hover span.mas::before, .page-number li:last-child a:hover span.mas::before {
  color: #ff6c36;
}
.page-number li:nth-child(5) {
  margin-left: 45px;
}
@media (max-width: 600px) {
  .page-number li:nth-child(5) {
    margin-left: 40px;
  }
}
@media (max-width: 346px) {
  .page-number li:nth-child(5) {
    margin-left: 35px;
  }
}
.page-number li:nth-child(5)::after {
  content: "...";
  position: absolute;
  left: -45px;
  top: 0;
  width: 40px;
  height: 40px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .page-number li:nth-child(5)::after {
    height: 35px;
    width: 35px;
    left: -40px;
  }
}
@media (max-width: 346px) {
  .page-number li:nth-child(5)::after {
    height: 30px;
    width: 30px;
    left: -35px;
  }
}

.explain {
  padding: 30px 50px 50px 50px;
  margin-top: 60px;
  color: #302b26;
  background-color: #eeeff4;
  border-radius: 30px;
  box-shadow: inset -8px 8px 8px rgba(255, 255, 255, 0.5), inset 8px -8px 8px rgba(0, 0, 0, 0.1);
}
.explain h5 {
  font-size: 25px;
  border-bottom: 3px solid #ff8400; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  margin-bottom: 10px;
  line-height: 2;
}
@media (max-width: 600px) {
  .explain h5 {
    font-size: 22px;
  }
}
.explain p {
  font-size: 22px;
  line-height: 2;
}
@media (max-width: 1140px) {
  .explain p {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .explain p {
    font-size: 16px;
  }
}

/*================================= [ single-product ] ================================*/
.single-product-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-top: 60px;
  padding: 30px;
  grid-gap: 30px;
}
@media (max-width: 1140px) {
  .single-product-grid {
    grid-template-columns: 1fr;
  }
}

.single-product-grid, .property, .comment {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  margin-bottom: 50px;
}

/*====== [ img-product ] ========*/
.img-product {
  position: relative;
  width: 500px;
  border-left: 1px solid #ececec;
  position: relative;
  padding-left: 20px;
}
.img-product .slick-slide {
  float: right;
}
.img-product .show-img {
  width: 100%;
  height: 400px;
}
@media (max-width: 1800px) {
  .img-product .show-img {
    height: 350px;
  }
}
@media (max-width: 1800px) {
  .img-product .show-img {
    height: 300px;
  }
}
.img-product .show-img .img-content {
  width: 500px;
  height: 400px;
  background-color: white;
}
@media (max-width: 1800px) {
  .img-product .show-img .img-content {
    height: 350px;
  }
}
@media (max-width: 1800px) {
  .img-product .show-img .img-content {
    height: 300px;
  }
}
.img-product .show-img .img-content img, .img-product .show-img .img-content video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.img-product .show-img .img-magnifier-container {
  position: relative;
}
.img-product .show-img .img-magnifier-glass {
  position: absolute;
  border: 1px solid #c9c9c9;
  border-radius: 15px;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 150px;
  height: 100px;
}
@media (max-width: 768px) {
  .img-product .show-img .img-magnifier-glass {
    display: none;
  }
}
.img-product .list-img {
  margin: 30px auto 0 auto;
  width: 450px;
}
@media (max-width: 1800px) {
  .img-product .list-img {
    width: 350px;
  }
}
@media (max-width: 1140px) {
  .img-product .list-img {
    width: 750px;
  }
}
@media (max-width: 992px) {
  .img-product .list-img {
    width: 450px;
  }
}
@media (max-width: 768px) {
  .img-product .list-img {
    width: 350px;
  }
}
@media (max-width: 600px) {
  .img-product .list-img {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .img-product .list-img {
    width: 230px;
  }
}
@media (max-width: 346px) {
  .img-product .list-img {
    width: 200px;
  }
}
.img-product .list-img .slick-slide {
  float: right;
}
.img-product .list-img .img-content {
  width: 100%;
  height: 100px;
  margin: 0 10px;
  border: 1px solid #c9c9c9;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 1800px) {
  .img-product .list-img .img-content {
    height: 70px;
    margin: 0 5px;
    border-radius: 10px;
  }
}
@media (max-width: 1140px) {
  .img-product .list-img .img-content {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .img-product .list-img .img-content {
    height: 70px;
  }
}
.img-product .list-img .img-content img, .img-product .list-img .img-content video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (max-width: 1800px) {
  .img-product .list-img .img-content img, .img-product .list-img .img-content video {
    border-radius: 10px;
  }
}
@media (max-width: 1140px) {
  .img-product {
    border-left: none;
    padding-left: 0;
  }
}

.video-content {
  position: relative;
}
.video-content::before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: rgba(153, 153, 153, 0.7);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  z-index: 4; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media (max-width: 1800px) {
  .img-product, .img-product .show-img .img-content {
    width: 400px;
  }
}
@media (max-width: 1140px) {
  .img-product, .img-product .show-img .img-content {
    width: 800px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .img-product, .img-product .show-img .img-content {
    width: 500px;
  }
}
@media (max-width: 768px) {
  .img-product, .img-product .show-img .img-content {
    width: 400px;
  }
}
@media (max-width: 600px) {
  .img-product, .img-product .show-img .img-content {
    width: 350px;
  }
}
@media (max-width: 480px) {
  .img-product, .img-product .show-img .img-content {
    width: 260px;
  }
}
@media (max-width: 346px) {
  .img-product, .img-product .show-img .img-content {
    width: 230px;
  }
}

/*====== [ info-product ] ========*/
.info-product {
  position: relative;
  /*====== [ number-form ] ========*/
}
@media (max-width: 768px) {
  .info-product {
    padding-top: 60px;
  }
}
.info-product .off-single {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff4d28;
  color: white;
  border-radius: 30px 0 30px 0;
  padding: 8px 20px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .info-product .off-single {
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}
.info-product .info-head {
  color: #302b26;
}
.info-product .info-head h2 {
  font-size: 35px;
}
@media (max-width: 1800px) {
  .info-product .info-head h2 {
    font-size: 30px;
  }
}
@media (max-width: 1140px) {
  .info-product .info-head h2 {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .info-product .info-head h2 {
    font-size: 20px;
  }
}
.info-product .info-head p {
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 1800px) {
  .info-product .info-head p {
    font-size: 18px;
  }
}
@media (max-width: 1140px) {
  .info-product .info-head p {
    font-size: 16px;
  }
}
.info-product p {
  margin-top: 20px;
  color: #88807b;
  line-height: 2;
  font-size: 18px;
}
@media (max-width: 1800px) {
  .info-product p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .info-product p {
    font-size: 14px;
  }
}
.info-product .bottom-product { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1140px) {
  .info-product .bottom-product {
    flex-direction: column;
    align-items: center;
  }
}
.info-product .number-form {
  margin-top: 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  color: #69615c;
  flex-wrap: wrap;
}
.info-product .number-form span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .info-product .number-form span {
    font-size: 16px;
  }
}
.info-product .single-price .price {
  border-top: none; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.info-product .single-price .price .off-price {
  display: block;
  color: #a5a19e;
  font-size: 22px;
}
.info-product .single-price .price .real-price {
  font-size: 30px;
}
.info-product .single-price .add { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.info-product .single-price .add .add-fav {
  color: rgb(214, 214, 214);
  cursor: pointer; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background-color: #f7f7f7;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  border-radius: 8px;
  margin-left: 15px;
}
.info-product .single-price .add .add-fav span {
  font-size: 30px;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .info-product .single-price .add .add-fav span {
    font-size: 25px;
  }
}
.info-product .single-price .add .add-fav.add-fav-done, .info-product .single-price .add .add-fav:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.info-product .single-price .add .add-fav.add-fav-done span, .info-product .single-price .add .add-fav:hover span {
  color: #ff4d28;
}
.info-product .single-price .add .btn-main { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
@media (max-width: 600px) {
  .info-product .single-price .add .btn-main {
    font-size: 14px;
    padding: 10px;
  }
}
.info-product .single-price .add .btn-main .mas::before {
  font-size: 30px;
  color: white;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
  margin-right: 10px;
}
@media (max-width: 600px) {
  .info-product .single-price .add .btn-main .mas::before {
    font-size: 25px;
    margin-right: 5px;
  }
}

/*====== [ property ] ========*/
.property {
  padding-top: 30px;
}
.property .property-tab { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
.property .property-tab .tab-btn {
  padding: 5px 20px 20px 20px;
  border: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  color: #a39a94;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .property .property-tab .tab-btn {
    font-size: 16px;
  }
}
.property .property-tab .tab-btn:hover {
  border-bottom: 2px solid #ff6c36;
  color: #ff6c36;
}
.property .property-tab .property-active .tab-btn {
  border-bottom: 2px solid #ff6c36;
  color: #ff6c36;
}
.property .border-shadow {
  padding-bottom: 0;
}
.property .content {
  padding: 30px;
  color: #302b26;
  min-height: 350px;
}
.property .content .content-list {
  font-size: 16px;
}
@media (max-width: 768px) {
  .property .content .content-list {
    font-size: 14px;
  }
}
.property .content .content-list li {
  margin-bottom: 20px;
}
.property .content .content-list span:first-child {
  color: #978e88;
  min-width: 200px;
  display: inline-block;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .property .content .content-list span:first-child {
    min-width: 100%;
  }
}
.property .content p {
  line-height: 2;
  font-size: 16px;
}
@media (max-width: 768px) {
  .property .content p {
    font-size: 14px;
  }
}

.head-with-border {
  padding-top: 20px;
}
.head-with-border span {
  color: #ff6c36;
  border-bottom: 2px solid #ff6c36;
  padding: 20px 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
}

/*=======- [ comment ] ========*/
.comment .border-shadow {
  padding-bottom: 0;
}
.comment .comment-box {
  padding: 40px 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d0cbc7;
}
@media (max-width: 768px) {
  .comment .comment-box {
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .comment .comment-box {
    flex-direction: column;
  }
}
.comment .comment-box > img {
  border-radius: 20px;
  margin-left: 30px;
  height: 120px;
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .comment .comment-box > img {
    margin-bottom: 20px;
    margin-left: 0;
  }
}
.comment .comment-box .com-info { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  color: #69615c;
  font-size: 16px;
  padding-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .comment .comment-box .com-info {
    flex-direction: column;
  }
}
.comment .comment-box .com-info div {
  margin-left: 40px;
}
.comment .comment-box .com-info div span:first-child {
  color: #a39a94;
  font-size: 15px;
  margin-left: 5px;
}
.comment .comment-box .com-info .date span::before, .comment .comment-box .com-info .com-member span::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #a39a94;
  border-radius: 50%;
  display: inline-block;
  margin-left: 5px;
}
.comment .comment-box .com-p {
  font-size: 17px;
  color: #69615c;
  padding-top: 20px;
}
@media (max-width: 600px) {
  .comment .comment-box .com-p {
    font-size: 14px;
  }
}
.comment .comment-box:last-child {
  border-bottom: none;
}

.send-comment {
  position: relative;
  margin-top: 60px;
  margin-bottom: 60px;
  display: inline-block;
  width: 100%;
  padding: 10px 40px 10px 40px;
}
.send-comment::before {
  height: 100%;
  width: 8px;
  background-color: #ff6c36;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  border-radius: 30px 0 0 30px;
}
.send-comment h4 {
  color: #69615c;
  font-size: 19px;
}
.send-comment p {
  color: #a39a94;
  margin-top: 5px;
  font-size: 16px;
}
.send-comment .notice { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  color: #ff6d36;
  font-size: 15px;
  font-weight: 600;
}
.send-comment .notice span {
  -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
          clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background-color: #ffcfa7;
  display: inline-flex;
  width: 30px;
  height: 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: bold;
  padding-top: 5px;
  margin-left: 10px;
}
.send-comment .notice a {
  color: #ff6d36;
  font-size: 15px;
  font-weight: 600;
  margin-right: 5px;
}
.send-comment .notice a:hover {
  text-decoration: underline;
}
.send-comment form .form-grid {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 20px;
  grid-template-areas: "item1 item4" "item2 item4" "item3 item4";
}
.send-comment form .form-grid .item1 {
  grid-area: item1;
}
.send-comment form .form-grid .item2 {
  grid-area: item2;
}
.send-comment form .form-grid .item3 {
  grid-area: item3;
}
.send-comment form .form-grid .item4 {
  grid-area: item4;
}
@media (max-width: 768px) {
  .send-comment form .form-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "item1" "item2" "item3" "item4";
  }
}
.send-comment form .form-grid .item-form input, .send-comment form .form-grid .item-form textarea {
  width: 100%;
  padding: 5px 20px;
  border: 1px solid #b4aeab;
  border-radius: 10px;
  font-size: 16px;
  color: #a39a94;
}
@media (max-width: 768px) {
  .send-comment form .form-grid .item-form input, .send-comment form .form-grid .item-form textarea {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.send-comment form .form-grid .item-form input::-moz-placeholder, .send-comment form .form-grid .item-form textarea::-moz-placeholder {
  color: #a39a94;
}
.send-comment form .form-grid .item-form input::placeholder, .send-comment form .form-grid .item-form textarea::placeholder {
  color: #a39a94;
}
.send-comment form .form-grid .item-form input:hover, .send-comment form .form-grid .item-form input:focus, .send-comment form .form-grid .item-form textarea:hover, .send-comment form .form-grid .item-form textarea:focus {
  border: 1px solid #ff6c36;
}
.send-comment form .form-grid .item-form input {
  height: 50px;
}
.send-comment form .form-grid .item-form textarea {
  resize: vertical;
  height: 200px;
  padding-top: 10px;
}
.send-comment form .bottom-form { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .send-comment form .bottom-form {
    flex-direction: column;
  }
}
.send-comment form input[type=submit] {
  border: none;
  padding: 12px 80px;
}
@media (max-width: 768px) {
  .send-comment form input[type=submit] {
    margin: 30px auto 0 auto;
    padding: 12px 60px;
  }
}
@media (max-width: 600px) {
  .send-comment form input[type=submit] {
    padding: 12px;
    width: 100%;
  }
}

/*====== [ comment ] ========*/
.similar-post .similar-parent {
  margin-top: 40px;
}
.similar-post .border-shadow {
  padding-bottom: 0;
}
.similar-post .pro-item {
  background-color: #f8f9ff;
  display: inline-block;
  border-radius: 20px;
  padding-bottom: 0;
  margin: 20px;
}
.similar-post .price { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-direction: row;
  padding: 20px;
  justify-content: center;
}
.similar-post .off-product .price {
  justify-content: space-between;
}

/*================================= [ basket-list ] ================================*/
.basket-grid {
  grid-template-columns: 3fr 1fr;
  display: grid;
  gap: 60px;
  margin-top: 40px;
}
@media (max-width: 1800px) {
  .basket-grid {
    gap: 40px;
  }
}
@media (max-width: 1400px) {
  .basket-grid {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 768px) {
  .basket-grid {
    grid-template-columns: 1fr;
  }
}
.basket-grid aside {
  background-color: #eeeff4;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  padding: 40px 20px;
}
.basket-grid aside .aside-head {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #69615c;
}
.basket-grid aside .aside-head h3 {
  border-bottom: 3px solid #ff6c36;
  text-align: center;
  padding-bottom: 10px;
  font-size: 22px;
}
@media (max-width: 768px) {
  .basket-grid aside .aside-head h3 {
    font-size: 20px;
  }
}
.basket-grid aside .aside-basket {
  margin: 20px 0 60px 0;
}
.basket-grid aside .aside-basket li { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #69615c;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1140px) {
  .basket-grid aside .aside-basket li {
    flex-direction: column;
    line-height: 2;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .basket-grid aside .aside-basket li {
    font-size: 18px;
  }
}
.basket-grid aside .aside-basket li.off-value {
  color: #ff6c36;
}
.basket-grid aside .aside-basket li.final-value {
  border-top: 1px solid #d0cbc7;
  padding-top: 20px;
}
.basket-grid aside .aside-basket li.final-value span:last-child {
  color: #48a801;
}
.basket-grid aside .btn-green {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.basket-content, .basket-address {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
}
.basket-content .border-shadow, .basket-address .border-shadow {
  padding-bottom: 0;
}

.basket-item {
  border-bottom: 1px solid #eeeff4; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  padding: 50px 30px;
  border-bottom: 1px solid #d0cbc7;
}
@media (max-width: 1200px) {
  .basket-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .basket-item {
    padding: 30px 20px;
  }
}
.basket-item:last-child {
  border-bottom: none;
}
.basket-item .right { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-basis: 50%;
}
@media (max-width: 1200px) {
  .basket-item .right {
    flex-basis: 100%;
  }
}
.basket-item .right figure {
  height: 115px;
  width: 115px;
  margin-left: 20px;
  position: relative;
}
@media (max-width: 600px) {
  .basket-item .right figure {
    height: 90px;
    width: 90px;
  }
}
.basket-item .right figure img {
  border: 1px solid #b4aeab;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (max-width: 600px) {
  .basket-item .right figure img {
    border-radius: 10px;
  }
}
.basket-item .right figure figcaption {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}
.basket-item .right figure figcaption .basket-number {
  background-color: #ff6c36;
  width: 20px;
  height: 20px;
  border-radius: 5px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.basket-item .right .basket-text {
  flex: 1;
}
.basket-item .right .basket-text h5 {
  font-size: 20px;
  font-weight: 600;
  color: #69615c;
}
@media (max-width: 768px) {
  .basket-item .right .basket-text h5 {
    font-size: 18px;
  }
}
.basket-item .right .basket-text .off-basket {
  color: #ff6c36;
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .basket-item .right .basket-text .off-basket {
    font-size: 16px;
  }
}
.basket-item .left { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-basis: 50%;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .basket-item .left {
    flex-basis: 100%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .basket-item .left {
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  .basket-item .left {
    flex-direction: column;
  }
}
.basket-item .left .price {
  border-top: none;
  text-align: center;
}
.basket-item .left .price .off-price {
  color: #a5a19e;
}
.basket-item .left .delete {
  background-color: transparent;
  border: none;
}
@media (max-width: 600px) {
  .basket-item .left .delete {
    align-self: flex-end;
  }
}
.basket-item .left .delete svg {
  height: 30px;
  width: 30px;
  color: #ff6c36;
}
@media (max-width: 600px) {
  .basket-item .left .delete svg {
    height: 25px;
    width: 25px;
  }
}

.btn-edit-address {
  position: absolute;
  left: 40px;
  top: 30px;
  border: 2px solid #ffddbb;
  border-radius: 10px;
  width: 40px;
  height: 40px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
@media (max-width: 768px) {
  .btn-edit-address {
    width: 30px;
    height: 30px;
    left: 20px;
    top: 40px;
  }
}
.btn-edit-address:hover {
  border: 2px solid #ff9d3c;
}
.btn-edit-address svg {
  width: 25px;
  height: 25px;
  display: inline-block;
}
@media (max-width: 768px) {
  .btn-edit-address svg {
    width: 20px;
    height: 20px;
  }
}

.basket-address {
  position: relative;
  margin-top: 40px;
}
.basket-address .list-address {
  padding: 30px;
}
@media (max-width: 768px) {
  .basket-address .list-address {
    padding: 20px;
  }
}
.basket-address .list-address li { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.basket-address .list-address li svg {
  height: 35px;
  width: 35px;
  color: #706d69;
  fill: #706d69;
}
@media (max-width: 768px) {
  .basket-address .list-address li svg {
    height: 25px;
    width: 25px;
  }
}
.basket-address .list-address li span {
  color: #302b26;
  font-size: 18px;
  margin-right: 10px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .basket-address .list-address li span {
    font-size: 16px;
  }
}
.basket-address .list-address li span:last-child {
  color: #69615c;
}

/*================================= [ dashboard ] ================================*/
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 5fr;
}
@media (max-width: 1140px) {
  .dashboard-grid {
    grid-template-columns: 1fr 4fr;
  }
}
@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr 3fr;
  }
}
.dashboard-grid .logo {
  max-width: 150px;
  display: inline-block;
  margin: 20px auto;
}
@media (max-width: 1140px) {
  .dashboard-grid .logo {
    max-width: 100px;
  }
}
@media (max-width: 1140px) {
  .dashboard-grid .logo {
    max-width: 60px;
    margin: 10px auto;
  }
}
.dashboard-grid .container-dash {
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .dashboard-grid .container-dash {
    width: calc(100% - 20px);
  }
}
.dashboard-grid .dash-buttons {
  background-color: #eeeff4;
  min-height: 100vh; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 60px;
}
.dashboard-grid .dash-buttons ul {
  margin-top: 30px;
}
.dashboard-grid .dash-buttons ul li {
  margin-bottom: 15px;
  margin-right: 40px;
  padding: 0 15px;
  border-radius: 0 30px 30px 0;
  position: relative;
  color: #202020; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.dashboard-grid .dash-buttons ul li .dash-btn { /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: none;
  font-size: 18px;
  width: 100%;
  padding: 15px 0;
  color: #302b26;
}
@media (max-width: 1800px) {
  .dashboard-grid .dash-buttons ul li .dash-btn {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .dashboard-grid .dash-buttons ul li .dash-btn {
    font-size: 12px;
    flex-direction: column;
    padding: 10px 0;
  }
}
@media (max-width: 600px) {
  .dashboard-grid .dash-buttons ul li .dash-btn {
    font-size: 10px;
    padding: 5px 0;
  }
}
@media (max-width: 1400px) {
  .dashboard-grid .dash-buttons ul li {
    margin-right: 10px;
  }
}
@media (max-width: 1140px) {
  .dashboard-grid .dash-buttons ul li {
    margin-right: 5px;
  }
}
@media (max-width: 992px) {
  .dashboard-grid .dash-buttons ul li {
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .dashboard-grid .dash-buttons ul li {
    padding: 0 3px;
  }
}
.dashboard-grid .dash-buttons ul li.dash-active, .dashboard-grid .dash-buttons ul li:hover {
  background-color: white;
  box-shadow: inset -4px 0 4px rgba(0, 0, 0, 0.1);
}
.dashboard-grid .dash-buttons ul li.dash-active::after, .dashboard-grid .dash-buttons ul li:hover::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: -22px;
  left: 0;
  -webkit-clip-path: polygon(19% 61%, 12% 49%, 7% 39%, 3% 24%, 0% 0%, 0% 68%, 0% 100%, 100% 100%, 82% 97%, 72% 95%, 57% 92%, 47% 87%, 37% 81%, 27% 73%);
          clip-path: polygon(19% 61%, 12% 49%, 7% 39%, 3% 24%, 0% 0%, 0% 68%, 0% 100%, 100% 100%, 82% 97%, 72% 95%, 57% 92%, 47% 87%, 37% 81%, 27% 73%);
  background-color: white;
}
.dashboard-grid .dash-buttons ul li.dash-active::before, .dashboard-grid .dash-buttons ul li:hover::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: -22px;
  left: 0;
  -webkit-clip-path: polygon(19% 61%, 12% 49%, 7% 39%, 3% 24%, 0% 0%, 0% 68%, 0% 100%, 100% 100%, 82% 97%, 72% 95%, 57% 92%, 47% 87%, 37% 81%, 27% 73%);
          clip-path: polygon(19% 61%, 12% 49%, 7% 39%, 3% 24%, 0% 0%, 0% 68%, 0% 100%, 100% 100%, 82% 97%, 72% 95%, 57% 92%, 47% 87%, 37% 81%, 27% 73%);
  background-color: white;
  transform: rotate(90deg);
}
.dashboard-grid .dash-buttons ul li svg,
.dashboard-grid .dash-buttons ul li img {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
@media (max-width: 992px) {
  .dashboard-grid .dash-buttons ul li svg,
  .dashboard-grid .dash-buttons ul li img {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .dashboard-grid .dash-buttons ul li svg,
  .dashboard-grid .dash-buttons ul li img {
    width: 25px;
    height: 25px;
  }
}
.dashboard-grid .header-dashboard {
  margin: 20px 0 30px 0;
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .dashboard-grid .header-dashboard {
    flex-direction: column;
    margin: 20px 0 20px 0;
  }
}
@media (max-width: 1200px) {
  .dashboard-grid .header-dashboard .btn-cat {
    font-size: 14px;
    padding: 8px 8px;
  }
  .dashboard-grid .header-dashboard .btn-cat svg {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 346px) {
  .dashboard-grid .header-dashboard .btn-cat {
    font-size: 13px;
    padding: 8px 5px;
  }
  .dashboard-grid .header-dashboard .btn-cat svg {
    width: 25px;
    height: 25px;
  }
}
.dashboard-grid .header-dashboard .r-h-d { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.dashboard-grid .header-dashboard .wlc-member { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .dashboard-grid .header-dashboard .wlc-member {
    margin-top: 30px;
  }
}
.dashboard-grid .header-dashboard .wlc-member figure {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #e4e6e7; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}
.dashboard-grid .header-dashboard .wlc-member figure svg {
  height: 60%;
  width: 60%;
  color: #aeb4b7;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.dashboard-grid .header-dashboard .wlc-member figure img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.dashboard-grid .header-dashboard .go-home {
  background-color: #eeeff4;
  color: #7f7c79;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 8px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.dashboard-grid .header-dashboard .go-home:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.dashboard-grid .header-dashboard .go-home svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 1200px) {
  .dashboard-grid .header-dashboard .go-home svg {
    width: 30px;
    height: 30px;
  }
}
.dashboard-grid .dash-content {
  margin: 80px 0;
}
@media (max-width: 768px) {
  .dashboard-grid .dash-content {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .dashboard-grid .dash-content .basket-item .right .basket-text h5 {
    font-size: 14px;
  }
  .dashboard-grid .dash-content .basket-item .right .basket-text .off-basket {
    font-size: 13px;
  }
  .dashboard-grid .dash-content .basket-item .right figure {
    width: 60px;
    height: 60px;
  }
  .dashboard-grid .dash-content .head-with-border span {
    font-size: 14px;
  }
}
.dashboard-grid .basket-content, .dashboard-grid .basket-address {
  margin: 60px 0;
}
@media (max-width: 768px) {
  .dashboard-grid .basket-content, .dashboard-grid .basket-address {
    margin: 40px 0;
  }
}
@media (max-width: 600px) {
  .dashboard-grid .basket-content, .dashboard-grid .basket-address {
    margin: 20px 0;
  }
}
@media (max-width: 600px) {
  .dashboard-grid .basket-address .list-address li span {
    font-size: 14px;
  }
}

/*====== [ dashboard > profile > status] ========*/
.status {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 1800px) {
  .status {
    gap: 40px;
  }
}
@media (max-width: 1400px) {
  .status {
    gap: 20px;
    width: 90%;
  }
}
@media (max-width: 1200px) {
  .status {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .status {
    grid-template-columns: 1fr;
  }
}

.status-box {
  background-color: #f7f8ff;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  position: relative;
  transition: 0.4s;
}
@media (max-width: 1140px) {
  .status-box {
    padding: 10px;
  }
}
.status-box::after {
  width: 0;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px 20px 20px 10px;
  transition: 0.4s;
  opacity: 0;
}
.status-box:hover::after {
  width: 100%;
  opacity: 0.1;
}
.status-box:nth-child(1) {
  border-left: 10px solid #ffcfa7;
}
.status-box:nth-child(1)::after {
  background-color: #ffcfa7;
}
.status-box:nth-child(2) {
  border-left: 10px solid #5ca300;
}
.status-box:nth-child(2)::after {
  background-color: #5ca300;
}
.status-box:nth-child(3) {
  border-left: 10px solid #c60000;
}
.status-box:nth-child(3)::after {
  background-color: #c60000;
}
.status-box:nth-child(3) h3 {
  border-bottom: none;
}
.status-box h3 {
  border-bottom: 1px solid #8a8b8d;
  padding: 10px 0 20px 0;
  color: #69615c;
  font-size: 18px;
}
@media (max-width: 1140px) {
  .status-box h3 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .status-box h3 {
    font-size: 14px;
  }
}
.status-box span {
  color: #ff6c36;
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 1140px) {
  .status-box span {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .status-box span {
    font-size: 25px;
  }
}

/*====== [ dashboard > making > detail-make] ========*/
.detail-make, .detail-explain, .detail-upload {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .detail-make, .detail-explain, .detail-upload {
    margin-bottom: 30px;
  }
}

.head-make { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eeeff4;
  padding: 20px;
  border-radius: 20px;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15));
  width: 100%;
  border: none;
}
.head-make h4 {
  color: #302b26;
  font-size: 18px;
}
@media (max-width: 1140px) {
  .head-make h4 {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .head-make h4 {
    font-size: 14px;
  }
}
.head-make img {
  height: 12px;
  width: 20px;
  transition: 0.4s;
}
@media (max-width: 600px) {
  .head-make img {
    height: 7px;
    width: 15px;
  }
}

.detail-item {
  background-color: #edeef3;
  border-radius: 0 0 20px 20px;
  display: none;
  padding: 70px 20px 20px 20px;
  margin-top: -30px;
  /* The check-address */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.detail-item .detail-list { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1140px) {
  .detail-item .detail-list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.detail-item .detail-list > span {
  min-width: 300px;
  font-weight: 600;
  color: #69615c;
}
@media (max-width: 1200px) {
  .detail-item .detail-list > span {
    min-width: 200px;
    font-size: 16px;
  }
}
@media (max-width: 1140px) {
  .detail-item .detail-list > span {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .detail-item .detail-list > span {
    font-size: 14px;
  }
}
.detail-item .check-box-detail { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}
.detail-item .detail-select {
  min-width: 200px;
}
.detail-item .detail-select .cont_select_int {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1140px) {
  .detail-item .detail-select {
    width: 100%;
    min-width: 100%;
  }
}
.detail-item .select_mate {
  color: #69615c;
}
.detail-item .icon_select_mate {
  top: 10px;
}
.detail-item .select_mate, .detail-item input[type=text] {
  height: 45px;
  width: 300px;
  border-radius: 17px;
  border: 1px solid #dbdce0;
  background-color: transparent;
  box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.detail-item .select_mate:hover, .detail-item .select_mate:focus, .detail-item input[type=text]:hover, .detail-item input[type=text]:focus {
  box-shadow: inset 0 -10px 10px rgba(0, 0, 0, 0.05);
  background-color: white;
}
@media (max-width: 1140px) {
  .detail-item .select_mate, .detail-item input[type=text] {
    width: 100%;
  }
}
@media (max-width: 1140px) {
  .detail-item .select_mate, .detail-item input[type=text] {
    font-size: 12px;
  }
}
.detail-item input[type=text] {
  padding: 0 10px;
}
.detail-item input[type=text]:hover, .detail-item input[type=text]:focus {
  border: 1px solid #ff6c36;
}
.detail-item input[type=text]::-moz-placeholder {
  color: #a39a94;
}
.detail-item input[type=text]::placeholder {
  color: #a39a94;
}
.detail-item .quantity .quantity-button.quantity-up, .detail-item .quantity .quantity-button.quantity-down {
  background-color: #d0c8c2;
}
.detail-item .check-dash {
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: 500;
  width: auto;
  margin-bottom: 0; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.detail-item .check-dash .size-info {
  margin-right: 30px;
  font-size: 20px;
  color: #69615c;
  font-weight: 400;
}
@media (max-width: 768px) {
  .detail-item .check-dash .size-info {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .detail-item .check-dash .size-info {
    font-size: 14px;
    margin-right: 25px;
  }
}
.detail-item .check-dash span {
  min-width: auto;
}
.detail-item .check-dash input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.detail-item .check-d {
  position: absolute;
  top: 2px;
  right: 0;
  height: 20px;
  width: 20px;
  background-color: #f4c2b2;
  border: 1px solid #f5bdaa;
  border-radius: 4px;
}
.detail-item .check-dash input:checked ~ .check-d {
  background-color: #f4c2b2;
  border: 1px solid #ff6c36;
}
.detail-item .check-d:after {
  content: "";
  position: absolute;
  display: none;
}
.detail-item .check-dash input:checked ~ .check-d:after {
  display: block;
}
.detail-item .check-dash .check-d:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #ff6c36;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.detail-item input[type=color] {
  background-color: transparent;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  -webkit-appearance: none;
  border: none;
  position: relative;
}
.detail-item input[type=color]::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 18px;
  color: #69615c;
}
@media (max-width: 600px) {
  .detail-item input[type=color] {
    width: 25px;
    height: 25px;
  }
}
.detail-item input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
.detail-item input[type=color]::-webkit-color-swatch {
  border-radius: 5px;
  margin: 0;
  border: 1px solid #c5c5c5;
}
.detail-item textarea {
  width: 100%;
  border-radius: 17px;
  border: 1px solid #dbdce0;
  background-color: white;
  box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  font-size: 16px;
  padding: 20px;
  resize: vertical;
  min-height: 200px;
}
.detail-item textarea::-moz-placeholder {
  color: #a39a94;
}
.detail-item textarea::placeholder {
  color: #a39a94;
}
@media (max-width: 600px) {
  .detail-item textarea {
    font-size: 12px;
    padding: 10px;
  }
}
.detail-item textarea:hover, .detail-item textarea:focus {
  box-shadow: inset 0 -10px 10px rgba(0, 0, 0, 0.05);
  background-color: white;
  border: 1px solid #ff6c36;
}

.form-detail .submit {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .form-detail .submit {
    justify-content: center;
  }
}
.form-detail input[type=submit] {
  padding: 12px 70px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .form-detail input[type=submit] {
    padding: 12px;
    width: 100%;
  }
}

/*===== upload-file ======*/
.dropzone {
  border: none;
  background-color: transparent;
  min-height: auto;
  padding: 30px 20px;
}
@media (max-width: 768px) {
  .dropzone {
    padding: 20px 0;
  }
}
.dropzone .dz-image-preview {
  border-radius: 20px;
}
.dropzone .dz-preview {
  margin: 0 0 10px 20px;
  min-height: auto;
}
@media (max-width: 768px) {
  .dropzone .dz-preview {
    margin: 0 0 10px 10px;
  }
}
.dropzone .dz-preview .dz-image {
  width: 100px;
  height: 100px;
}
@media (max-width: 768px) {
  .dropzone .dz-preview .dz-image {
    width: 80px;
    height: 80px;
  }
}
.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
  margin: 0;
  top: 5px;
  left: 5px;
}
.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg {
  height: 25px;
  width: 25px;
}
.dropzone .dz-message {
  margin: 0;
}
.dropzone .dz-preview .dz-progress {
  height: 10px;
}

.upload-flex { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}

.upload-file-btn {
  height: 100px;
  width: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-color: white;
  margin-left: 20px;
  margin-bottom: 10px;
  cursor: pointer; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #a39a94;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .upload-file-btn {
    margin-left: 10px;
  }
}
.upload-file-btn:hover {
  transform: scale(1.03);
}
.upload-file-btn span {
  font-size: 35px;
}
@media (max-width: 768px) {
  .upload-file-btn {
    height: 80px;
    width: 80px;
    font-size: 14px;
  }
  .upload-file-btn span {
    font-size: 30px;
  }
}

.upload-file-container { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
}

/*================ [ dashboard > buy-coupon] ==================*/
.buy-coupon-parent {
  position: relative;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .buy-coupon-parent {
    margin-top: 30px;
  }
}

.head-buy {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eeeff4;
  padding: 20px;
  border-radius: 20px;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15));
  border: none;
}
@media (max-width: 600px) {
  .head-buy {
    flex-direction: column;
    align-items: flex-start;
  }
}
.head-buy .hbr { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
}
@media (max-width: 600px) {
  .head-buy .hbr {
    justify-content: space-between;
    width: 100%;
  }
}
.head-buy .ticket-price {
  color: #302b26;
  margin-right: 90px;
  text-align: center;
}
@media (max-width: 1140px) {
  .head-buy .ticket-price {
    margin-right: 30px;
  }
}
@media (max-width: 992px) {
  .head-buy .ticket-price {
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .head-buy .ticket-price {
    margin-right: 5px;
  }
}
.head-buy .ticket-price h6, .head-buy .ticket-price span {
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 1800px) {
  .head-buy .ticket-price h6, .head-buy .ticket-price span {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .head-buy .ticket-price h6, .head-buy .ticket-price span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .head-buy .ticket-price h6, .head-buy .ticket-price span {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .head-buy .ticket-price h6, .head-buy .ticket-price span {
    font-size: 14px;
  }
}
.head-buy .ticket-price span {
  color: #ff6c36;
}
.head-buy img.ticket {
  max-width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .head-buy img.ticket {
    max-width: 60px;
  }
}
@media (max-width: 768px) {
  .head-buy img.ticket {
    max-width: 50px;
  }
}
@media (max-width: 600px) {
  .head-buy .hbl {
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    width: 100%;
  }
}
.head-buy .hbl span {
  font-size: 20px;
  color: #ff6c36;
  font-weight: 500;
  margin-left: 10px;
}
@media (max-width: 1800px) {
  .head-buy .hbl span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .head-buy .hbl span {
    font-size: 16px;
    margin-left: 5px;
  }
}
@media (max-width: 600px) {
  .head-buy .hbl span {
    font-size: 14px;
  }
}
.head-buy .hbl img {
  height: 12px;
  width: 20px;
  transition: 0.4s;
}
@media (max-width: 600px) {
  .head-buy .hbl img {
    height: 7px;
    width: 15px;
  }
}

.detail-buy {
  background-color: #edeef3;
  border-radius: 0 0 20px 20px;
  padding: 70px 70px 50px 70px;
  display: none;
  color: #393531;
  font-weight: 500;
  margin-top: -30px;
}
@media (max-width: 992px) {
  .detail-buy {
    padding: 50px;
  }
}
@media (max-width: 768px) {
  .detail-buy {
    padding: 50px 30px;
  }
}
@media (max-width: 600px) {
  .detail-buy {
    padding: 50px 20px 40px 20px;
  }
}
.detail-buy p {
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 1800px) {
  .detail-buy p {
    font-size: 18px;
  }
}
@media (max-width: 1140px) {
  .detail-buy p {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .detail-buy p {
    font-size: 14px;
  }
}
.detail-buy ul {
  font-size: 20px;
}
@media (max-width: 1800px) {
  .detail-buy ul {
    font-size: 18px;
  }
}
@media (max-width: 1140px) {
  .detail-buy ul {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .detail-buy ul {
    font-size: 14px;
  }
}
.detail-buy ul li {
  margin-bottom: 10px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
}
.detail-buy ul li .dot-list {
  margin-left: 10px;
  width: 22px;
  height: 22px;
  background-color: #f4c2b2;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
@media (max-width: 768px) {
  .detail-buy ul li .dot-list {
    width: 18px;
    height: 18px;
    margin-left: 5px;
  }
}
.detail-buy ul li .dot-list::before {
  content: "";
  left: 10px;
  position: absolute;
  top: -3px;
  width: 5px;
  height: 18px;
  border: solid #ff6c36;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .detail-buy ul li .dot-list::before {
    height: 15px;
    left: 8px;
  }
}
.detail-buy a {
  width: 100%;
  padding: 15px 20px;
  display: inline-block;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 1140px) {
  .detail-buy a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .detail-buy a {
    padding: 10px 20px;
  }
}

/*================ [ dashboard > continuation] ==================*/
.continue-note {
  background-color: #fdebc1;
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  color: #302b26;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .continue-note {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  .continue-note {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .continue-note {
    font-size: 12px;
  }
}

.info-continue {
  width: 100%; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #eeeff4;
  padding: 20px 40px;
  border-radius: 20px;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.15));
}
@media (max-width: 1140px) {
  .info-continue {
    padding: 20px;
  }
}
.info-continue .hcr { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .info-continue .hcr {
    border-bottom: 1px solid #d2d2d2;
    margin-right: 0;
    width: 100%;
    padding-bottom: 10px;
    justify-content: space-between;
  }
}
.info-continue .hcr .ticket-time {
  text-align: center;
  margin-right: 60px;
}
@media (max-width: 1140px) {
  .info-continue .hcr .ticket-time {
    margin-right: 20px;
  }
}
@media (max-width: 600px) {
  .info-continue .hcr .ticket-time {
    margin-right: 5px;
  }
}
.info-continue .hcr .ticket-time h6, .info-continue .hcr .ticket-time span {
  font-size: 22px;
}
@media (max-width: 1800px) {
  .info-continue .hcr .ticket-time h6, .info-continue .hcr .ticket-time span {
    font-size: 20px;
  }
}
@media (max-width: 1140px) {
  .info-continue .hcr .ticket-time h6, .info-continue .hcr .ticket-time span {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .info-continue .hcr .ticket-time h6, .info-continue .hcr .ticket-time span {
    font-size: 16px;
  }
}
.info-continue .hcr .ticket-time span {
  color: #69615c;
  font-weight: 500;
  display: inline-block;
  margin-top: 5px;
}
.info-continue .hcr img.ticket {
  max-width: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .info-continue .hcr img.ticket {
    max-width: 60px;
  }
}
@media (max-width: 768px) {
  .info-continue .hcr img.ticket {
    max-width: 50px;
  }
}
.info-continue .hcl ul {
  color: #69615c;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 1140px) {
  .info-continue .hcl ul {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .info-continue .hcl ul {
    font-size: 14px;
  }
}
.info-continue .hcl ul li {
  margin-bottom: 10px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1140px) {
  .info-continue .hcl ul li {
    justify-content: space-between;
    width: 100%;
  }
}
.info-continue .hcl ul li span:first-child {
  min-width: 200px;
  display: inline-block;
}
@media (max-width: 1140px) {
  .info-continue .hcl ul li span:first-child {
    min-width: none;
  }
}
.info-continue .hcl ul li span:last-child {
  color: #ff6c36;
}

.btn-continue {
  background-color: #edeef3;
  border-radius: 0 0 20px 20px;
  padding: 70px 70px 40px 70px;
  margin-top: -30px;
  color: #393531; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1140px) {
  .btn-continue {
    padding: 70px 30px 40px 30px;
  }
}
.btn-continue a {
  margin: 10px 20px;
  height: 55px;
  min-width: 300px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1140px) {
  .btn-continue a {
    min-width: 40%;
  }
}
@media (max-width: 768px) {
  .btn-continue a {
    min-width: 100%;
    margin: 10px 0;
    height: 50px;
  }
}
.btn-continue a:last-child {
  background-image: linear-gradient(to right, #f8934f, #ff6c36);
}
.btn-continue a:first-child {
  background-image: linear-gradient(to right, #5ca300, #417400);
}
.btn-continue a:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.history-info span {
  font-weight: 500;
}

.history-end {
  color: #ff4d28;
}

.history-exist {
  color: #5ca300;
}

/*=== [ history table ]====*/
.history-table {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  color: #302b26;
  padding-bottom: 40px;
  width: 100%;
  /*[____ style for scroll ____]*/
  scrollbar-width: thin; /* "auto" or "thin" */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
@media (max-width: 1200px) {
  .history-table {
    overflow-x: auto;
  }
}
.history-table::-webkit-scrollbar {
  height: 4px;
}
.history-table::-webkit-scrollbar-track {
  background: #888;
}
.history-table::-webkit-scrollbar-thumb {
  background: #302b26;
}
.history-table::-webkit-scrollbar-thumb:hover {
  background: #ff6c36;
}
.history-table .border-shadow {
  padding-bottom: 0;
}
.history-table table {
  width: 100%;
  border-collapse: collapse;
}
.history-table tr {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #3e3e3e;
}
@media (max-width: 1140px) {
  .history-table tr {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .history-table tr {
    font-size: 11px;
  }
}
.history-table tr th, .history-table tr td {
  text-align: center;
  padding: 20px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.history-table tr th.end, .history-table tr td.end {
  color: #ff6c36;
}
.history-table tr th.pending, .history-table tr td.pending {
  color: #ffcfa7;
}
.history-table tr th.use, .history-table tr td.use {
  color: #60a509;
}
.history-table th {
  font-size: 16px;
}
@media (max-width: 1140px) {
  .history-table th {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .history-table th {
    font-size: 11px;
  }
}

/*====================================== [ about-us ]======================================*/
.about-parent {
  margin: 140px 0 100px 0;
  position: relative;
}
@media (max-width: 768px) {
  .about-parent {
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .about-parent {
    margin-top: 50px;
  }
}
.about-parent .about-top-img { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.about-parent .about-top-img img {
  transform: translateY(-120px);
  width: 40%;
}
@media (max-width: 1800px) {
  .about-parent .about-top-img img {
    transform: translateY(-100px);
  }
}
@media (max-width: 1140px) {
  .about-parent .about-top-img img {
    width: 60%;
  }
}
@media (max-width: 600px) {
  .about-parent .about-top-img img {
    width: 80%;
  }
}

.about-top-text {
  margin-top: 70px;
  padding: 100px 150px 150px 150px;
  background-color: #f1f2f7;
  width: 80%;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1400px) {
  .about-top-text {
    width: 100%;
    padding: 80px 80px 100px 80px;
  }
}
@media (max-width: 768px) {
  .about-top-text {
    padding: 50px 30px 100px 30px;
  }
}
@media (max-width: 600px) {
  .about-top-text {
    padding: 50px 20px 100px 20px;
  }
}
.about-top-text h3 {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 50px;
  width: 100%;
  text-align: center;
  color: #ff6c36;
  text-shadow: 0 -9px 1px #f1f2f7, 0 -18px 1px #f1f2f7, 0 -11px 1px #f1f2f7, 0 -10px 1px #f1f2f7, 0 -20px 5px #f1f2f7, 0 -25px 8px #f1f2f7, 0 -30px 8px #f1f2f7, 5px -30px 8px #f1f2f7, -5px -30px 8px #f1f2f7, 5px -25px 8px #f1f2f7, -5px -25px 8px #f1f2f7, 5px -20px 5px #f1f2f7, -5px -20px 5px #f1f2f7, 5px -10px 1px #f1f2f7, -5px -10px 1px #f1f2f7, 5px -11px 1px #f1f2f7, -5px -11px 1px #f1f2f7, 5px -18px 1px #f1f2f7, -5px -18px 1px #f1f2f7, 15px -18px 1px #f1f2f7, -15px -18px 1px #f1f2f7, 15px -11px 1px #f1f2f7, -15px -11px 1px #f1f2f7, 15px -10px 1px #f1f2f7, -15px -10px 1px #f1f2f7, 15px -20px 5px #f1f2f7, -15px -20px 5px #f1f2f7, 15px -25px 8px #f1f2f7, -15px -25px 8px #f1f2f7, 15px -30px 8px #f1f2f7, -15px -30px 8px #f1f2f7, 20px -18px 1px #f1f2f7, -20px -18px 1px #f1f2f7, 20px -11px 1px #f1f2f7, -20px -11px 1px #f1f2f7, 20px -10px 1px #f1f2f7, -20px -10px 1px #f1f2f7, 20px -20px 5px #f1f2f7, -20px -20px 5px #f1f2f7, 25px -5px 5px #f1f2f7, -25px -5px 5px #f1f2f7;
}
@media (max-width: 1140px) {
  .about-top-text h3 {
    font-size: 40px;
    top: -30px;
  }
}
@media (max-width: 768px) {
  .about-top-text h3 {
    font-size: 35px;
    top: -20px;
  }
}
@media (max-width: 600px) {
  .about-top-text h3 {
    font-size: 30px;
    top: -15px;
    text-shadow: 0 -9px 1px #f1f2f7, 0 -12px 1px #f1f2f7, 0 -11px 1px #f1f2f7, 0 -10px 1px #f1f2f7, 0 -15px 5px #f1f2f7, 0 -20px 8px #f1f2f7, 0 -25px 8px #f1f2f7, 5px -25px 8px #f1f2f7, -5px -25px 8px #f1f2f7, 5px -20px 8px #f1f2f7, -5px -20px 8px #f1f2f7, 5px -15px 5px #f1f2f7, -5px -15px 5px #f1f2f7, 5px -10px 1px #f1f2f7, -5px -10px 1px #f1f2f7, 5px -11px 1px #f1f2f7, -5px -11px 1px #f1f2f7, 5px -12px 1px #f1f2f7, -5px -12px 1px #f1f2f7, 15px -12px 1px #f1f2f7, -15px -12px 1px #f1f2f7, 15px -11px 1px #f1f2f7, -15px -11px 1px #f1f2f7, 15px -10px 1px #f1f2f7, -15px -10px 1px #f1f2f7, 15px -15px 5px #f1f2f7, -15px -15px 5px #f1f2f7, 15px -20px 8px #f1f2f7, -15px -20px 8px #f1f2f7, 15px -25px 8px #f1f2f7, -15px -25px 8px #f1f2f7, 20px -12px 1px #f1f2f7, -20px -12px 1px #f1f2f7, 20px -11px 1px #f1f2f7, -20px -11px 1px #f1f2f7, 20px -10px 1px #f1f2f7, -20px -10px 1px #f1f2f7, 20px -15px 5px #f1f2f7, -20px -15px 5px #f1f2f7, 25px -5px 5px #f1f2f7, -25px -5px 5px #f1f2f7;
  }
}
@media (max-width: 480px) {
  .about-top-text h3 {
    font-size: 25px;
    top: -10px;
  }
}
.about-top-text p {
  line-height: 2;
  color: #302b26;
  text-align: justify;
}
@media (max-width: 600px) {
  .about-top-text p {
    font-size: 14px;
  }
}

.about-item {
  display: grid;
  margin-bottom: 60px;
  gap: 30px;
  color: #302b26;
  grid-auto-flow: dense; /* NEW */
}
@media (max-width: 768px) {
  .about-item {
    margin-bottom: 0px;
  }
}
.about-item p {
  line-height: 2;
  text-align: justify;
}
@media (max-width: 600px) {
  .about-item p {
    font-size: 14px;
  }
}
.about-item figure {
  height: 250px;
  width: 250px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .about-item figure {
    width: 100%;
  }
}
.about-item figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.about-item.about-pic-right {
  grid-template-columns: 1fr 4fr;
}
@media (max-width: 768px) {
  .about-item.about-pic-right {
    grid-template-columns: 1fr;
  }
}
.about-item.about-pic-left {
  grid-template-columns: 4fr 1fr;
  justify-items: flex-end;
  grid-auto-flow: dense; /* NEW */
}
@media (max-width: 768px) {
  .about-item.about-pic-left {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .about-item.about-pic-left figure {
    grid-column: 1;
    grid-row: 1;
  }
}
@media (max-width: 768px) {
  .about-item.about-pic-left .about-item-text {
    grid-column: 1;
    grid-row: 2;
  }
}
.about-item .tick-list { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  color: #393531;
  margin-top: 10px;
  padding: 20px;
  font-size: 16px;
}
@media (max-width: 1800px) {
  .about-item .tick-list {
    font-size: 16px;
  }
}
@media (max-width: 1140px) {
  .about-item .tick-list {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about-item .tick-list {
    font-size: 14px;
  }
}
.about-item .tick-list li {
  margin-bottom: 10px; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-basis: 50%;
}
@media (max-width: 768px) {
  .about-item .tick-list li {
    flex-basis: 100%;
  }
}
.about-item .tick-list li .dot-list {
  margin-left: 10px;
  width: 22px;
  height: 22px;
  background-color: #f4c2b2;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
@media (max-width: 768px) {
  .about-item .tick-list li .dot-list {
    width: 18px;
    height: 18px;
    margin-left: 5px;
  }
}
.about-item .tick-list li .dot-list::before {
  content: "";
  left: 10px;
  position: absolute;
  top: -3px;
  width: 5px;
  height: 18px;
  border: solid #ff6c36;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .about-item .tick-list li .dot-list::before {
    height: 15px;
    left: 8px;
  }
}

/*====================================== [ contact-us ]======================================*/
.contact-parent {
  margin: 60px 0;
}

.contact-top { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-color: #f1f2f7;
  width: 80%;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .contact-top {
    width: 100%;
  }
}
@media (max-width: 1140px) {
  .contact-top {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .contact-top {
    padding: 20px;
  }
}
.contact-top h3 {
  margin-bottom: 10px;
  color: #ff6c36;
  font-size: 35px;
}
@media (max-width: 600px) {
  .contact-top h3 {
    font-size: 25px;
  }
}
.contact-top p {
  color: #69615C;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .contact-top p {
    font-size: 14px;
  }
}
.contact-top .contact-item li { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.contact-top .contact-item li span {
  margin: 0 10px;
}
@media (max-width: 600px) {
  .contact-top .contact-item li span {
    font-size: 14px;
  }
}
.contact-top .contact-item li svg {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  color: #69615c;
}
@media (max-width: 600px) {
  .contact-top .contact-item li svg {
    width: 25px;
    height: 25px;
  }
}

.social-parent {
  margin-top: 30px;
}
.social-parent .social-foot {
  margin: 0;
}
.social-parent .social-foot li {
  margin: 5px 0 0 5px;
}

/*=====[ map ]====*/
#map {
  height: 350px;
  width: 50%;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  /*==<< ___ Rsponsive ( footer > foot-item > #map )___>>===*/
}
@media (max-width: 1140px) {
  #map {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 600px) {
  #map {
    height: 250px;
  }
}

.leaflet-control-attribution a {
  display: none;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-radius: 50%;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: none;
  border-top-right-radius: none;
  color: #ff6c36;
}

.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
  border: 0 solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: none;
  border-bottom-right-radius: none;
  border-radius: 50%;
  color: #ff6c36;
}

/*====================================== [ pass-page & edit ]======================================*/
.background {
  background: #eeeff4;
  height: 100%;
  width: 100%;
}

.pass-page {
  width: 100%;
  height: 100vh; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pass-page .pass-box {
  width: 35vw;
  min-height: 20vh;
  max-width: 95vh;
  overflow-y: auto;
  background-color: white;
  padding: 30px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  color: #302b26; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .pass-page .pass-box {
    padding: 40px 20px 20px 20px;
  }
}
@media (max-width: 1140px) {
  .pass-page .pass-box {
    width: 45vw;
  }
}
@media (max-width: 992px) {
  .pass-page .pass-box {
    width: 60vw;
  }
}
@media (max-width: 768px) {
  .pass-page .pass-box {
    width: 70vw;
  }
}
@media (max-width: 600px) {
  .pass-page .pass-box {
    padding: 30px 20px 20px 20px;
    width: 85vw;
  }
}
.pass-page .pass-head {
  margin: 0 0 30px 0;
}
@media (max-width: 600px) {
  .pass-page .pass-head {
    margin: 0 0 10px 0;
  }
}
.pass-page .pass-head h5 {
  font-size: 1.75rem;
  font-weight: 500;
}
@media (max-width: 600px) {
  .pass-page .pass-head h5 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
  }
}
.pass-page .pass-head span {
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 5px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
@media (max-width: 600px) {
  .pass-page .pass-head span {
    font-size: 1rem;
  }
}
@media (max-width: 346px) {
  .pass-page .pass-head span {
    font-size: 0.875rem;
  }
}
.pass-page .error-text {
  display: none;
  font-size: 1rem;
  font-weight: 500;
  color: #ff6c36;
  margin-top: 10px;
  width: 100%;
}
.pass-page .error-login input[type=text].error-input {
  border: 0.75px solid #ff6c36;
}
.pass-page .error-login input[type=password].error-input {
  border: 0.75px solid #ff6c36;
}
.pass-page .error-login .error-text {
  display: block;
}
@media (max-width: 480px) {
  .pass-page .error-login .error-text {
    font-size: 0.875rem;
  }
}

.verify-phone, .login-form, .pass-head, .verify-form, .register-form, .verify-edit {
  width: 80%;
}
@media (max-width: 1200px) {
  .verify-phone, .login-form, .pass-head, .verify-form, .register-form, .verify-edit {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .verify-phone, .login-form, .pass-head, .verify-form, .register-form, .verify-edit {
    width: 100%;
  }
}
.verify-phone input[type=submit], .login-form input[type=submit], .pass-head input[type=submit], .verify-form input[type=submit], .register-form input[type=submit], .verify-edit input[type=submit] {
  width: 100%;
  height: 48px;
  border-radius: 25px;
  color: white;
  font-weight: 500;
  font-size: 1.125rem;
  border: none;
  align-self: flex-end;
  margin-top: 30px;
  margin-bottom: 20px;
}

.verify-phone > span {
  margin: 20px 0;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .verify-phone > span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .verify-phone > span {
    margin: 10px 0;
  }
}
.verify-phone .verif-top { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #302b26;
}
@media (max-width: 600px) {
  .verify-phone .verif-top {
    flex-direction: column;
  }
}
.verify-phone .verif-top span {
  font-size: 1.5rem;
  letter-spacing: 2px;
  direction: ltr;
}
.verify-phone .verif-top a {
  font-size: 0.875rem;
  font-weight: 400;
  background-color: #EEEEEE;
  border: none;
  padding: 5px 20px;
  border-radius: 25px;
  color: #302b26;
}
.verify-phone .verif-top a:hover {
  background-color: #dadada;
}
@media (max-width: 600px) {
  .verify-phone .verif-top a {
    margin-top: 5px;
  }
}

.verify-form.error-login input[type=text] {
  border: none;
  border-bottom: 3px solid #f6c4b4;
}
.verify-form.error-login .error-text {
  display: inline-block;
  width: 100%;
}
@media (max-width: 480px) {
  .verify-form.error-login .error-text {
    font-size: 0.875rem;
  }
}
.verify-form form {
  direction: ltr; /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.verify-form input[type=text] {
  text-align: center;
  font-size: 40px;
  color: #302b26;
  border: none;
  border-bottom: solid 3px #f6c4b4;
  outline: none;
  width: 17%;
  transition: all 0.2s ease-in-out;
}
.verify-form input[type=text]::-moz-selection {
  border-bottom: solid 3px #ff6c36;
}
.verify-form input[type=text]:focus, .verify-form input[type=text]::selection {
  border-bottom: solid 3px #ff6c36;
}
.verify-form input[type=submit] {
  width: 100%;
}
.verify-form .send-verify-code { /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  width: 100%;
  font-weight: 400;
}
@media (max-width: 600px) {
  .verify-form .send-verify-code {
    font-size: 0.875rem;
    flex-wrap: wrap;
  }
}
@media (max-width: 346px) {
  .verify-form .send-verify-code {
    flex-direction: column;
  }
}
.verify-form .send-verify-code .counter-code {
  color: #4173E7;
  border-bottom: 1px solid #4173E7;
  margin-right: 30px; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
}
@media (max-width: 600px) {
  .verify-form .send-verify-code .counter-code {
    margin-right: 5px;
  }
}
@media (max-width: 346px) {
  .verify-form .send-verify-code .counter-code {
    margin-top: 10px;
  }
}
.verify-form .send-verify-code .counter-code #timer-code {
  margin-right: 5px;
}
.verify-form .send-verify-code .counter-code:hover {
  text-shadow: 0 0 0.7px #4173E7;
}

.verify-edit.error-login input[type=text] {
  border: none;
  border-bottom: 3px solid #f6c4b4;
}
.verify-edit.error-login .error-text {
  display: inline-block;
  width: 100%;
}
@media (max-width: 480px) {
  .verify-edit.error-login .error-text {
    font-size: 0.875rem;
  }
}
.verify-edit input[type=text] {
  font-size: 16px;
  color: #302b26;
  border: none;
  border-bottom: solid 3px #f6c4b4;
  outline: none;
  width: 100%;
  padding-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
.verify-edit input[type=text]::-moz-selection {
  border-bottom: solid 3px #ff6c36;
}
.verify-edit input[type=text]:focus, .verify-edit input[type=text]::selection {
  border-bottom: solid 3px #ff6c36;
}
.verify-edit input[type=submit] {
  width: 100%;
}

/*====================================== [ profile-pic ]======================================*/
.profile-pic {
  flex-basis: 100%;
  margin-top: 20px;
}
.profile-pic label {
  position: relative;
  width: 150px !important;
  height: 40px;
  display: inline-block;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1f2f7;
}
@media (max-width: 1140px) {
  .profile-pic label {
    width: 100% !important;
  }
}
.profile-pic label span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%); /* OLD - iOS 6-, Safari 3.1-6 */ /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex; /* TWEENER - IE 10 */ /* NEW - Chrome */
  display: flex;
  align-items: center;
  justify-content: center; /* OLD - iOS 6-, Safari 3.1-6 */ /* NEW - Chrome */ /* dont delet ! this is important for safari */ /* OLD - Firefox 19- (buggy but mostly works) */ /* TWEENER - IE 10 */
  display: inline-flex;
  font-size: 11px;
  width: 100%;
  height: 100%;
  text-align: center;
}
.profile-pic label:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.profile-pic input[type=file] {
  width: 100%;
  height: 100%;
  background-color: #ff6c36;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1140px) {
  .profile-pic input[type=file] {
    width: 100%;
  }
}

.background-profile {
  width: 100%;
  height: 300px;
  margin-bottom: 50px;
  background: url("../images/bnr4.jpg") no-repeat center center/cover;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.select2-container--default .select2-selection--single {
  width: 300px;
  height: 45px;
  border-radius: 17px;
  border: 1px solid #dbdce0;
  background-color: transparent;
  box-shadow: inset 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.select2-container--default .select2-selection--single:hover, .select2-container--default .select2-selection--single:focus {
  border: 1px solid #ff6c36;
  background-color: #ffffff;
  box-shadow: inset 0 -10px 10px rgba(0, 0, 0, 0.05);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #302b26;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 45px;
  right: auto;
  left: 1px;
}

/**** responsive ***/
@media (max-width: 1140px) {
  .select2-container, .select2-container--default .select2-selection--single {
    width: 100% !important;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media (max-width: 600px) {
  .select2-container, .select2-container--default .select2-selection--single {
    height: auto;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    white-space: pre-line;
    padding: 8px;
  }
}
.select-search {
  position: relative;
}

.icon_select svg {
  height: 25px;
  width: 25px;
}

/********** ********** ********** LAST UPDATE  *********** *********** ***********/
/********** cat-list-parent  ***********/
.cat-list-parent {
  max-width: 450px;
  /*[____ style for scroll ____]*/
  scrollbar-width: thin;
  /* "auto" or "thin" */
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

/********** cat-list-parent >>>> style for scrollbar ***/
.cat-list-parent::-webkit-scrollbar {
  width: 4px;
}

.cat-list-parent::-webkit-scrollbar-track {
  background: #888;
}

.cat-list-parent::-webkit-scrollbar-thumb {
  background: #302b26;
}

.cat-list-parent::-webkit-scrollbar-thumb:hover {
  background: #ff6c36;
}

@media (max-width: 992px) {
  .cat-list-parent {
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .cat-list-parent {
    max-width: 300px;
  }
}
/********** cat-list **********/
.cat-list li ul {
  padding: 10px 20px 20px 10px;
  display: none;
}

.cat-list li ul li a {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* NEW - Chrome */
  /* dont delet ! this is important for safari */
  /* OLD - Firefox 19- (buggy but mostly works) */
  /* TWEENER - IE 10 */
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  margin: 5px 0;
}

.cat-list li ul li span.mas {
  margin-left: 5px;
}

.cat-list li .cat-menu-item {
  /* OLD - iOS 6-, Safari 3.1-6 */
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -moz-flex;
  /* TWEENER - IE 10 */
  /* NEW - Chrome */
  display: flex;
  align-items: flex-start;
  color: #302b26;
  font-size: 18px;
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 15px 0;
}

@media (max-width: 1200px) {
  .cat-list li .cat-menu-item {
    padding: 10px 0;
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .cat-list li .cat-menu-item {
    font-size: 16px;
  }
}
.cat-list li .cat-menu-item:hover {
  color: #ff9d3c;
  text-shadow: 0 0 1px rgba(255, 108, 54, 0.6);
}

.cat-list li .cat-menu-item > span {
  flex: 1;
  text-align: right;
}

.cat-list li.active .cat-menu-item {
  color: #ff9d3c;
  text-shadow: 0 0 1px rgba(255, 108, 54, 0.6);
}

/********** slider height ***********/
.product-flex {
  min-height: 450px;
}

/********** slick one item  ***********/
/*** when slick activate and only child >>>> remove dot ***/
.slick-dots > li {
  display: inline-block;
}

.slick-dots > li:only-child {
  display: none;
}

.slick-dots > li:only-child.slick-active {
  display: none;
}

/********** logo  ***********/
.logo {
  max-width: 150px;
}/*# sourceMappingURL=style.css.map */