------------------------------------------------------------------
Project:  
Version:  
Last change:  
Assigned to:  Le Xuan Bach
Primary use:  Company
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[LAYOUT]

* body
  + Header / header
  + Page Content / .page-content .name-page
        + Section Layouts / section .name-section
        ...
  + Footer / footer

-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[COLOR CODES]

# Text Color      :  
# Primary Color 01:  
# Primary Color 02:   
# Primary Color 03:  

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TYPOGRAPHY]

Body            : 16px/1.6 '', Arial, sans-serif;
Title           : 18px/1.6 '', Arial, sans-serif;
Paragrap        : 18px/1.6 '', Arial, sans-serif;
Input, textarea : 14px/1.6 '', Arial, sans-serif;
-------------------------------------------------------------------*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/



/*[ FONT ]
///////////////////////////////////////////////////////////
*/

@font-face {
  font-family: OpenSans-Bold;
  src: url('../fonts/open_sans/OpenSans-Bold.ttf'); 
}

@font-face {
  font-family: OpenSans-BoldItalic;
  src: url('../fonts/open_sans/OpenSans-BoldItalic.ttf'); 
}

@font-face {
  font-family: OpenSans-ExtraBold;
  src: url('../fonts/open_sans/OpenSans-ExtraBold.ttf'); 
}

@font-face {
  font-family: OpenSans-ExtraBoldItalic;
  src: url('../fonts/open_sans/OpenSans-ExtraBoldItalic.ttf'); 
}

@font-face {
  font-family: OpenSans-Italic;
  src: url('../fonts/open_sans/OpenSans-Italic.ttf'); 
}

@font-face {
  font-family: OpenSans-Light;
  src: url('../fonts/open_sans/OpenSans-Light.ttf'); 
}

@font-face {
  font-family: OpenSans-LightItalic;
  src: url('../fonts/open_sans/OpenSans-LightItalic.ttf'); 
}

@font-face {
  font-family: OpenSans-Regular;
  src: url('../fonts/open_sans/OpenSans-Regular.ttf'); 
}

@font-face {
  font-family: OpenSans-SemiBold;
  src: url('../fonts/open_sans/OpenSans-SemiBold.ttf'); 
}

@font-face {
  font-family: OpenSans-SemiBoldItalic;
  src: url('../fonts/open_sans/OpenSans-SemiBoldItalic.ttf'); 
}

/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/
* {
	margin: 0px; 
	padding: 0px; 
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: OpenSans-Regular, sans-serif;
  font-weight: 400;
}

/* ------------------------------------ */
a {
  font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
	color: #666666;
	margin: 0px;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

a:focus {
	outline: none !important;
}

a:hover {
	text-decoration: none;
	color: #111431;
}

/* ------------------------------------ */
h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}

p {
	font-size: 15px;
	line-height: 1.7;
	color: #888888;
	margin: 0px;
}

ul, li {
	margin: 0px;
	list-style-type: none;
}


/* ------------------------------------ */
input {
	outline: none;
	border: none !important;
}

textarea {
  outline: none;
}

/* textarea:focus, input:focus {
  border-color: transparent !important;
} */

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
input:focus:-ms-input-placeholder { color:transparent; }

textarea:focus::-webkit-input-placeholder { color:transparent; }
textarea:focus:-moz-placeholder { color:transparent; }
textarea:focus::-moz-placeholder { color:transparent; }
textarea:focus:-ms-input-placeholder { color:transparent; }

/* ------------------------------------ */
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/* ------------------------------------ */
.container {
	max-width: 1200px;
}

.slick-slide {
  outline: none !important;
}





/*[ LOADDING ]
///////////////////////////////////////////////////////////
*/
.animsition-loading-1 {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

[data-loader='ball-scale'] {
    width: 50px;
    height: 50px;
    -webkit-animation: ball-scale infinite linear .75s;
    -moz-animation: ball-scale infinite linear .75s;
    -o-animation: ball-scale infinite linear .75s;
    animation: ball-scale infinite linear .75s;
    border-radius: 100%;
    background-color: #111431;
}

@-webkit-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-moz-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-o-keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale {
    0% {
        -webkit-transform: scale(.1);
        -ms-transform: scale(.1);
        -o-transform: scale(.1);
        transform: scale(.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

/*[ BACK TO TOP ]
///////////////////////////////////////////////////////////
*/
#back-to-top{
  background: #111431;
  height: 50px;
  width: 50px;
  right: 25px;
  bottom: 25px;
  position: fixed;
  z-index: 10;
  color: #fff;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  transition: 500ms;
  border: 2px solid #111431;
  box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.2);
  display: none;
  justify-content: center;
  align-items: center;
  padding-top: 5px;
}

#back-to-top:hover{
  background: #fff;
  color: #000;
}

@media (max-width: 575px) {
  #back-top {
    right: 20px;
    bottom: 20px;
  }
}

.btn-back-to-top {
  display: none;
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 25px;
  right: 25px;
  background-color: black;
  opacity: 0.5;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 50%;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.symbol-btn-back-to-top {
  font-size: 25px;
  color: white;
  line-height: 1em;
}

.btn-back-to-top:hover {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 576px) {
  .btn-back-to-top {
    bottom: 15px;
    right: 15px;
  }
}

/*[ Restyle Select2 ]
///////////////////////////////////////////////////////////
*/
/* Select2 */
.select2-container {
  display: block;
  max-width: 100% !important;
  width: auto !important;
}

.select2-container .select2-selection--single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  height: 20px;
  outline: none;
  position: relative;
}

/* in select */
.select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
  line-height: 20px;
  color: #888888;
  padding-left: 0px ;
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.select2-selection__arrow b {
  display: none;
}

.select2-selection__arrow:after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background-color: transparent;
  border-right: 1px solid #888888;
  border-bottom: 1px solid #888888;
  color: white;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-bottom: 2px;
  margin-right: 8px;
}

/* dropdown option */
.select2-container--open .select2-dropdown {
  z-index: 1251;
  border: 1px solid #e5e5e5;
  border-radius: 0px;
  background-color: white;
}

.select2-container .select2-results__option[aria-selected] {
  padding-top: 5px;
  padding-bottom: 5px;
}

.select2-container .select2-results__option[aria-selected="true"] {
  background-color: #111431;
  color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
  background-color: #111431;
  color: white;
}

.select2-results__options {
  font-size: 13px;
  color: #888888;
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: none;
  font-size: 13px;
  color: #888888;
}

/*[ rs1-select2 ]
-----------------------------------------------------------
*/
.rs1-select2 .select2-container {
  margin-left: 26px;
}

.rs1-select2 .select2-container .select2-selection--single {
  height: 20px;;
}

/*[ rs2-select2 ]
-----------------------------------------------------------
*/
.rs2-select2 .select2-container .select2-selection--single {
  background-color: white;
  height: 50px;
}

.rs2-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 20px;
  color: #555555;
  padding-left: 22px ;
}

.rs2-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 10px;
}

#dropDownSelect2 .select2-results__options {
  color: #555555;
}

#dropDownSelect2 .select2-search--dropdown .select2-search__field {
  color: #555555;
}



/*[ rs3-select2 ]
-----------------------------------------------------------
*/
.rs3-select2 .select2-container .select2-selection--single {
  height: 45px;
}

.rs3-select2 .select2-selection__arrow b {
  display: block;
}

.rs3-select2 .select2-selection__arrow:after {
  display: none;
}

/*[ rs4-select2 ]
-----------------------------------------------------------
*/
.rs4-select2 .select2-container .select2-selection--single {
  height: 40px;
}

.rs4-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 15px ;
}

.rs4-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 5px;
}


/*[ Header ]
///////////////////////////////////////////////////////////
*/
.header1 {
  height: 110px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.header1.sticky-bar .container-menu-header {
  left: 0;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 9999;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.3);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.3);
}

.fixed-header {height: 110px;}


/*[ Header Desktop ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.container-menu-header {
  width: 100%;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 1100;
  box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); 
}

/*[ Top bar ]
===========================================================*/
.topbar {
  height: 45px;
  background-color: #f5f5f5;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* ------------------------------------ */

.topbar-social {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.topbar-social-item {
  font-size: 18px;
  color: #888888;
  padding: 10px;
}

/* ------------------------------------ */
.topbar-email,
.topbar-child1 {
  font-size: 13px;
  color: #888888;
  line-height: 1.7;
}

/* ------------------------------------ */
.topbar-child2 {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 38px;
}


/*[ Menu ]
===========================================================*/
.wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 110px;
  background-color: #111431;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.fixed-header .wrap_header {
  height: 65px;
}


/*[ Logo ]
-----------------------------------------------------------*/
.logo {
  display: block;
  position: absolute;
  left: 52px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.logo img {
  max-height: 100px;
}


/*[ Menu ]
-----------------------------------------------------------*/
.main_menu {
  list-style-type: none;
  margin: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.main_menu > li {
  display: block;
  position: relative;
  padding-top: 20px;  
  padding-bottom: 20px; 
  padding-left: 15px;
  padding-right: 15px;
}

.main_menu > li > a {
  font-size: 17px;
  color: #fff;
  padding: 0;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

li.sale-noti > a {
  color: #111431;
}

.main_menu > li:hover > a{
  text-decoration: none;
  border-bottom: 3px solid #ee4623;
}

.main_menu > li.active > a{
  color: #fff;
  text-decoration: none;
  border-bottom: 3px solid #fff;
}

.main_menu li {
  position: relative;
}

.main_menu > li:hover > .sub_menu {
  visibility: visible;
  opacity: 1;
}

.sub_menu {
  list-style-type: none;
  position: absolute;
  z-index: 1100;
  top:0;
  left:100%;
  width: 225px;
  background-color: #222222;
  opacity: 0;
  visibility: hidden;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

.main_menu > li > .sub_menu {
  top:100%;
  left: 0;
  position: absolute;
}

.sub_menu li:hover > .sub_menu {
  visibility: visible;
  opacity: 1;
} 

.sub_menu li { 
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

.sub_menu li, .sub_menu a {
  padding: 10px;
  font-size: 13px;
  color: white;
}

.sub_menu > li:hover > a {
  color: #af3741;
  text-decoration: none;
}

/* ------------------------------------ */
.header-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  right: 52px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-wrapicon1,
.header-wrapicon2 {
  font-size: 25px;
  position: relative;
  color: #fff;
}

.header-wrapicon1:hover,
.header-wrapicon2:hover{
  color: #ee4623;
}

.header-wrapicon1 img,
.header-wrapicon2 img {
  height: 100%;
}

.header-icon1:hover,
.header-icon2:hover {
  cursor: pointer;
}

.header-icons-noti {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  color: #111431;
  
  font-size: 12px;
  position: absolute;
  top: -4px;
  right: -15px;
}

.linedivide1 {
  display: block;
  height: 20px;
  width: 1px;
  background-color: #e5e5e5;
  margin-left: 23px;
  margin-right: 23px;
  margin-top: 5px;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.header-cart {
  position: absolute;
  z-index: 1100;
  width: 339px;
  top: 190%;
  right: -10px;
  padding: 20px;
  border-top: 3px solid #e6e6e6;
  background-color: white;

  box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.1);
  
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  
  transform-origin: top right;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.show-header-dropdown {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.fixed-header .header-cart {
  top: 160%;
}

.header-cart-wrapitem {
  max-height: 270px;
  overflow: auto;
}

.header-cart-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 5px;
  padding-top: 5px;
  margin-bottom: 15px;
}

.header-cart-wrapitem .header-cart-item:last-child{
  margin-bottom: 0;
}

/* ------------------------------------ */
.header-cart-item-img {
  width: 80px;
  position: relative;
  margin-right: 20px;
}

.header-cart-item-img img {
  width: 100%;
}

.header-cart-item-img::after {
  /*content: '\e870';
  font-family: Linearicons;*/

  content: 'X';
  font-family: cursive;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  color: white;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  opacity: 0;
}

.header-cart-item-img:hover:after {
  cursor: pointer;
  opacity: 1;
}

/* ------------------------------------ */
.header-cart-item-txt {
  width: calc(100% - 100px);
}

.header-cart-item-name {
  display: block;
  font-size: 15px;
  color: #555555;
  line-height: 1.3;
  margin-bottom: 5px;
}

.header-cart-item-info {
  display: block;
  font-size: 12px;
  color: #888888;
  line-height: 1;
}

.header-cart-total {
  font-size: 15px;
  color: #000;
  line-height: 1.3;
  text-align: right;
  padding-top: 15px;
  padding-bottom: 25px;
  padding-right: 3px;
}
/* ------------------------------------ */
.header-cart-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.header-cart-wrapbtn {
  width: calc((100% - 10px) / 2);
}



/*[ Header Mobile ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.wrap_header_mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #111431;
  display: none;
}

/*[ Logo mobile ]
-----------------------------------------------------------*/
.logo-mobile {
  display: block;
}

.logo-mobile img {
  max-height: 80px;
}

/*[ btn show menu ]
-----------------------------------------------------------*/
.btn-show-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.hamburger {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  padding: 15px 10px;
  margin-top: 5px;
}

.hamburger-inner,
.hamburger-inner:before,
.hamburger-inner:after{
  background: #fff !important;
}


/*[ Header icon mobile ]
-----------------------------------------------------------*/
.header-icons-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-right: 15px;
}
.linedivide2 {
  display: block;
  height: 20px;
  width: 1px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 5px;
}

.header-icons-mobile .header-cart {
  width: 300px;
  top: 190%;
  right: -80px;  
  z-index: 1100;
  transform-origin: top right;
}

/*[ Menu mobile ]
-----------------------------------------------------------*/
.wrap-side-menu {
  width: 100%;
  background-color: white;
  display: none;
  border-top: 1px solid #ececec;
}

.side-menu {
  width: 100%;
}

.side-menu li {
  list-style-type: none;
}

.side-menu .main-menu {margin-bottom: 0;}

.item-menu-mobile {
  background-color: #111431;
}

.side-menu .main-menu > li > a {
  margin-left: 20px;
  font-size: 15px;
  color: white;
  line-height: 2.86;
  border-bottom: solid 2px transparent;
}

.side-menu .main-menu > li.active > a,
.side-menu .main-menu > li:hover > a {
  border-color: #fff;
}

.side-menu .main-menu > li {
  color: white;
  position: relative;
}


.side-menu .main-menu .arrow-main-menu {
  font-size: 14px;
  position: absolute;
  right: 20px;
  top: 5px;
  padding: 10px;
  -webkit-transition: all 0.4s !important;
  -o-transition: all 0.4s !important;
  -moz-transition: all 0.4s !important;
  transition: all 0.4s !important;
}

.side-menu .main-menu .arrow-main-menu:hover {
  cursor: pointer;
}

.turn-arrow {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}

.side-menu .sub-menu a {
  padding-left: 20px;
  font-size: 13px;
  color: #333333;
  line-height: 2.5;
}

.side-menu .sub-menu > li {
  padding-left: 12px;
  padding-top: 
}

.side-menu .sub-menu a:hover {
  text-decoration: none;
  padding-left: 20px;
  color: #111431 !important;
}

.side-menu .sub-menu {
  background-color: white;
  display: none;
}

@media (min-width: 992px){
  .wrap-side-menu {
    display: none;
  }
}

/* ------------------------------------ */
.item-topbar-mobile {
  border-bottom: 1px solid #ececec;
}

.topbar-child2-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-social-moblie {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}


/*[ Header2 ]
///////////////////////////////////////////////////////////
*/
.topbar2 {
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ------------------------------------ */
.logo2 {
  display: block;
}

.logo2 img {
  max-height: 27px;
}

.fixed-header2 {
  z-index: 1300;
  position: fixed;
  height: 65px;
  left: 0;
  top: -70px;
  visibility: hidden;

  box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -o-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 1px 5px 0px rgba(0,0,0,0.2); 
}

.fixed-header2 .header-cart {
  top: 160%;
}

.show-fixed-header2 {
  visibility: visible;
  top: 0px;
}


/*[ Header3 ]
///////////////////////////////////////////////////////////
*/
.container-menu-header-v3 {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 320px;
  height: 100vh;
  border-right: 1px solid #e5e5e7;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*[ Menu ]
===========================================================*/
.container-menu-header-v3 .wrap_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: white;
}


/*[ Logo ]
-----------------------------------------------------------*/
.container-menu-header-v3 .logo3 {
  display: block;
}

.container-menu-header-v3 .logo3 img {
  max-width: 120px;
}

/*[ Header Icon ]
-----------------------------------------------------------*/
.container-menu-header-v3 .header-icons3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: unset;
}

/*[ Header cart ]
-----------------------------------------------------------
*/
.container-menu-header-v3 .header-cart {
  left: -10px;
  transform-origin: top left;
}

/*[ Menu ]
-----------------------------------------------------------*/
.container-menu-header-v3 .main_menu {
  list-style-type: none;
  margin: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
}

.container-menu-header-v3 .main_menu > li {
  padding-top: 3px;  
  padding-bottom: 3px; 
  padding-left: 0px;
  padding-right: 0px;
  text-align: center;
}

.container-menu-header-v3 .sub_menu {
  top:0;
  left:100%;
}

.container-menu-header-v3 .main_menu > li > .sub_menu {
  top: 10px;
  left: 95%;
}

.container-menu-header-v3 .sub_menu li { 
  text-align: left;
}

.container-menu-header-v3 .topbar-social-item {
  padding: 10px 8px;
}


/*[ Page sidebar ]
-----------------------------------------------------------
*/
.container1-page {
  margin-left: 320px;
}

@media (max-width: 992px){
  .wrap_header_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex !important;
  }
  .wrap_header {display: none;}

  .container-menu-header-v3,
  .container-menu-header-v2,
  .container-menu-header 
  {display: none;}

  .top-bar {display: none;}
  header {height: auto !important;}

  .container1-page {
    margin-left: 0px;
  }
}



/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/
.wrap-slick1 {
  position: relative;
}

.item-slick1 {
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.item-slick1 img{
  width: 100%;
}

.arrow-slick1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: white;
  position: absolute;
  background-color: black;
  opacity: 0;
  
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);

  border-radius: 50%;
  z-index: 200;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.wrap-slick1:hover .arrow-slick1 {
  opacity: 0.5;
}

.arrow-slick1:hover {
  background-color: #111431;
}

.next-slick1 {
  right: 50px;
  left: auto;
}

.prev-slick1 {
  left: 50px;
  right: auto;
}

@media (max-width: 576px) {
  .next-slick1 {
    right: 15px;
  }

  .prev-slick1 {
    left: 15px;
  }
}

/*[ Caption ]
-----------------------------------------------------------
*/
@media (max-width: 992px) {
  .wrap-content-slide1 .xl-text2 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .wrap-content-slide1 .xl-text3,
  .wrap-content-slide1 .xl-text2,
  .wrap-content-slide1 .xl-text1 {
    font-size: 50px;
  }

  .wrap-content-slide1 .m-text27,
  .wrap-content-slide1 .m-text1 {
    font-size: 16px;
  }

  .item-slick1 {
    height: 470px;
  }
}

@media (max-width: 576px) {
  .wrap-content-slide1 .xl-text3,
  .wrap-content-slide1 .xl-text2,
  .wrap-content-slide1 .xl-text1 {
    font-size: 40px;
  }

  .wrap-content-slide1 .m-text27,
  .wrap-content-slide1 .m-text1 {
    font-size: 16px;
  }

  .item-slick1 {
    height: 370px;
  }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/
.rs1-slick1 .item-slick1 {
  height: 100vh;
}

@media (max-width: 992px) {
  .rs1-slick1 .item-slick1 {
    height: calc(100vh - 85px);
  }
}




/*[ Slide2 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick2 ]
-----------------------------------------------------------
*/
.wrap-slick2 {
  position: relative;
  margin-right: -15px;
  margin-left: -15px;
}

/* ------------------------------------ */
.arrow-slick2 {
  position: absolute;
  z-index: 100;
  top: calc((100% - 70px) / 2);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 39px;
  color: #cccccc;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.arrow-slick2:hover {
  color: #666666;
}

.next-slick2 {
  right: -30px;
}

.prev-slick2 {
  left: -30px;
}

@media (max-width: 1280px) {
  .next-slick2 {
    right: 0px;
  }

  .prev-slick2 {
    left: 0px;
  }
}

@media (max-width: 1610px) {
  .rs1-slick2 .next-slick2 {
    right: 0px;
  }

  .rs1-slick2 .prev-slick2 {
    left: 0px;
  }
}

/*[ rs Sweetalert ]
///////////////////////////////////////////////////////////
*/
.swal-overlay {
    overflow-y: auto;
}

.swal-icon--success {
    border-color: #66a8a6;
}

.swal-icon--success__line {
    background-color: #66a8a6;
}

.swal-icon--success__ring {
    border: 4px solid rgba(102, 168, 166, 0.2);
}

.swal-button:focus {
    outline: none;
    box-shadow: none;
}

.swal-button {
    background-color: #111431;

    font-size: 15px;
    color: white;
    text-transform: uppercase;
    font-weight: unset;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.swal-button:hover {
    background-color: #333333;
}

.swal-button:active {
    background-color: #111431;
}

.swal-title {
  
  color: #333333;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 15px;
}

.swal-text {
  color: #333333;
  font-size: 15px;
  text-align: center;
}

.swal-footer {
    margin-top: 0;
}


/*[ Block1 ]
///////////////////////////////////////////////////////////
*/
.block1-wrapbtn {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 20px;

  box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.1);
}


/*[ Block2 ]
///////////////////////////////////////////////////////////
*/
.block2-labelsale::before,
.block2-labelnew::before 
{
  z-index: 100;
  font-size: 12px;
  color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 22px;
  border-radius: 11px;
  position: absolute;
  top: 12px;
  left: 12px;
}

.block2-labelsale::before {
  background-color: #111431;
  content: 'Sale';
}

.block2-labelnew::before {
  background-color: #66a8a6;
  content: 'New';
}

/* ------------------------------------ */
.block2-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.3);
  opacity: 0;
}

/* ------------------------------------ */
.block2-btn-addcart {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -45px;
}

/* ------------------------------------ */
.block2-btn-towishlist,
.block2-btn-addwishlist {
  display: block;
  position: absolute;
  top: 26px;
  right: 20px;
  font-size: 20px;
  color: white;
  line-height: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.block2-btn-addwishlist:hover {
  color: white;
}

.block2-btn-addwishlist .icon-wishlist,
.block2-btn-towishlist .icon-wishlist {
  line-height: 0;
}

.block2-btn-addwishlist:hover .icon_heart_alt {
  display: none;
}

.block2-btn-addwishlist:hover .icon_heart {
  display: block;
}

/* ------------------------------------ */
.block2-btn-towishlist .icon_heart_alt {
  display: none;
}

.block2-btn-towishlist .icon_heart {
  display: block;
  color: #111431;
}

/* ------------------------------------ */
.block2-overlay:hover {
  opacity: 1;
}

.block2-overlay:hover .block2-btn-addcart {
  bottom: 20px;
}

.block2-overlay:hover .block2-btn-addwishlist,
.block2-overlay:hover .block2-btn-towishlist{
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


/*[ Block4 ]
///////////////////////////////////////////////////////////
*/
.block4 {
  position: relative;
  overflow: hidden;
  width: calc(100% / 5);
}

@media (max-width: 1360px) {
  .block4 {
    width: calc(100% / 4);
  }
}

@media (max-width: 1200px) {
  .block4 {
    width: calc(100% / 3);
  }
}

@media (max-width: 992px) {
  .block4 {
    width: calc(100% / 2);
  }
}

@media (max-width: 576px) {
  .block4 {
    width: calc(100% / 1);
  }
}

/* ------------------------------------ */
@media (max-width: 1660px) {
  .rs1-block4 .block4 {
    width: calc(100% / 4);
  }
}

@media (max-width: 1380px) {
  .rs1-block4 .block4 {
    width: calc(100% / 3);
  }
}

@media (max-width: 1200px) {
  .rs1-block4 .block4 {
    width: calc(100% / 2);
  }
}

@media (max-width: 576px) {
  .rs1-block4 .block4 {
    width: calc(100% / 1);
  }
}

/* ------------------------------------ */
.block4-overlay {
  display: block;
  background-color: rgba(0,0,0,0.9);
  visibility: hidden;
  opacity: 0;
}

.block4-overlay:hover {
  color: unset;
}

/* ------------------------------------ */
.block4-overlay-txt {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -100%;
}

/* ------------------------------------ */
.block4-overlay-heart {
  transform-origin: top left;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

/* ------------------------------------ */
.block4:hover .block4-overlay {
  visibility: visible;
  opacity: 1;
}

.block4:hover .block4-overlay-txt {
  bottom: 0;
}

.block4:hover .block4-overlay-heart {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}


/*[ BG Title Page ]
///////////////////////////////////////////////////////////
*/
.bg-title-page {
  width: 100%;
  min-height: 239px;
  padding-left: 15px;
  padding-right: 15px;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
}

@media (max-width: 576px) {
  .bg-title-page .l-text2 {font-size: 35px;}
  .bg-title-page .m-text13 {font-size: 16px;}
}

/*[ rs NoUI ]
///////////////////////////////////////////////////////////
*/
.leftbar #filter-bar {
  margin-right: 6px;
  margin-left: 6px;
  height: 4px;
  border: none;
  background-color: #e1e1e1;
}
.leftbar #filter-bar .noUi-connect {
  background-color: #c5c5c5;
  border: none;
  box-shadow: none;
}
.leftbar #filter-bar .noUi-handle {
  width: 13px;
  height: 13px;
  left: -6px;
  top: -5px;
  border: none;
  border-radius: 50%;
  background: #999999;
  cursor: pointer;
  box-shadow: none;
  outline: none;
}
.leftbar #filter-bar .noUi-handle:before {
  display: none;
}
.leftbar #filter-bar .noUi-handle:after {
  display: none;
}

/*[ Filter Color ]
///////////////////////////////////////////////////////////
*/
.color-filter1 {background-color: #00bbec;}
.color-filter2 {background-color: #2c6ed5;}
.color-filter3 {background-color: #ffa037;}
.color-filter4 {background-color: #ff5337;}
.color-filter5 {background-color: #a88c77;}
.color-filter6 {background-color: #393939;}
.color-filter7 {background-color: #cccccc;}

.checkbox-color-filter {
  display: none;
}

.color-filter {
    display:block;
    width:25px;
    height:25px;
    cursor:pointer;
    border-radius: 50%;
}

.checkbox-color-filter:checked + .color-filter {
  box-shadow: 0 0 0px 2px black;
  -moz-box-shadow: 0 0 0px 2px black;
  -webkit-box-shadow: 0 0 0px 2px black;
  -o-box-shadow: 0 0 0px 2px black;
  -ms-box-shadow: 0 0 0px 2px black;
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/
.pagination {
  margin-right: -6px;
  margin-left: -6px;
}

.item-pagination {
  font-size: 13px;
  color: #808080;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #eeeeee;
  margin: 6px;
}

.item-pagination:hover {
  background-color: #222222;
  color: white;
}

.active-pagination {
  background-color: #222222;
  color: white;
}


/*[ Slick3 ]
///////////////////////////////////////////////////////////
*/

.wrap-slick3-dots {
  width: 14.5%;
}

.slick3 {
  width: 80.64%;
}

.slick3-dots li {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.slick3-dots li img {
  width: 100%;
}

.slick3-dot-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  border: 3px solid transparent;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.slick3-dot-overlay:hover {
  border: 3px solid #888888;
}

.slick3-dots .slick-active .slick3-dot-overlay {
  border: 3px solid #888888;
}


/*[ Dropdown content ]
///////////////////////////////////////////////////////////
*/
.show-dropdown-content .down-mark {
  display: block;
}

.show-dropdown-content .up-mark {
  display: none;
}


/*[ Cart ]
///////////////////////////////////////////////////////////
*/
/*[ Table ]
-----------------------------------------------------------
*/
.wrap-table-shopping-cart {
  overflow: auto;
}

.container-table-cart::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 51px);
  background-color: #e6e6e6;
  top: 51px;
  left: 0;
}

.container-table-cart::after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 51px);
  background-color: #e6e6e6;
  top: 51px;
  right: 0;
}

.table-shopping-cart {
  border-collapse: collapse;
  width: 100%;
  min-width: 992px;
}

.table-shopping-cart .table-row {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.table-shopping-cart .column-1 {
  width: 225px;
  padding-left: 50px;
}
.table-shopping-cart .column-2 {
  width: 330px;
  padding-right: 30px;
}
.table-shopping-cart .column-3 {
  width: 133px;
  padding-right: 30px;
}
.table-shopping-cart .column-4 {
  width: 355px;
  padding-right: 30px;
}
.table-shopping-cart .column-5 {
  padding-right: 30px;
}

.table-shopping-cart .table-head th {
  font-family: Montserrat-Bold;
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  text-transform: uppercase;
  padding-top: 16px;
  padding-bottom: 16px;
}

.table-shopping-cart td {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
  padding-top: 37px;
  padding-bottom: 30px;
}

.table-shopping-cart .table-row .column-2 {
  font-size: 15px;
}


/* ------------------------------------ */
.cart-img-product {
  width: 90px;
  position: relative;
}

.cart-img-product img {
  width: 100%;
}

.cart-img-product::after {
  content: 'X';
  font-family: cursive;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  color: white;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  opacity: 0;
}

.cart-img-product:hover:after {
  cursor: pointer;
  opacity: 1;
}


/*[ Tags ]
///////////////////////////////////////////////////////////
*/
.wrap-tags {
  margin-right: -3px;
  margin-left: -3px;
}

.tag-item {
  display: block;
  font-size: 13px;
  color: #888888;
  line-height: 1.5;
  padding: 5px 15px;
  border: 1px solid #cccccc;
  border-radius: 15px;
  margin: 3px;
}

.tag-item:hover {
  border: 1px solid #111431;
}


/*[ tab01 ]
///////////////////////////////////////////////////////////
*/
.tab01 .nav-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-bottom: none;
  margin-right: -15px;
  margin-left: -15px;
}

.tab01 .nav-tabs .nav-item {
  padding: 8px 16px;
}

.tab01 .nav-link {
  padding: 0;
  border-radius: 0px;
  border: none;
  border-bottom: 1px solid transparent;
  font-size: 15px;
  color: #888888;
  line-height: 1.1;
}

.tab01 .nav-link.active {
    color: #333333;
    border-bottom: 1px solid #6a6a6a;
}

.tab01 .nav-link:hover {
    color: #333333;
    border-bottom: 1px solid #6a6a6a;
}

@media (max-width: 480px) {
  .tab01 .nav-tabs .nav-item {
    padding: 8px 6px;
  }

  .tab01 .nav-tabs {
    margin-right: -6px;
    margin-left: -6px;
  }
}


/*[ Modal video 01 ]
///////////////////////////////////////////////////////////
*/
body {padding-right: 0px !important;}

.modal {
  padding: 0px !important;
  z-index: 1360;
  overflow-x: hidden;
  overflow-y: auto !important;
}
.modal-open {overflow-y: scroll;}

/* ------------------------------------ */
.modal-backdrop {
  background-color: transparent;
}

#modal-video-01 {
  background-color: rgba(0,0,0,0.8);
  z-index: 1350;
  
}

#modal-video-01 .modal-dialog {
  max-width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wrap-video-mo-01 {
  width: 854px;
  height: auto;
  position: relative;
  margin: 15px;
}

.video-mo-01 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.video-mo-01 iframe {
  width: 100%;
  height: 100%;
}

.close-mo-video-01 {
  font-size: 50px;
  color: white;
  opacity: 0.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1250;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
}

.close-mo-video-01:hover {
  cursor: pointer;
  opacity: 1;
}


/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/
input.num-product {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}

input.num-product::-webkit-outer-spin-button,
input.num-product::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}




.image-product-view{
  height: 270px;
}

.image-product-view img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-product-view .block2-btn-addcart{
  width: 215px;
}

footer{
  border-top: solid 1px #ddd;
  background: #111431;
}

.video-section{
  display: flex !important;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-section video{
  width: 100%;
  height: 100%;
}

.hero-slider.owl-carousel{
  display: flex !important;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slider.owl-carousel .owl-nav button {
  height: 50px;
  width: 50px;
  border: 1px solid #ebebeb;
  font-size: 35px;
  color: #333;
  background: #ffffff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  left: 3%;
  top: 50%;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
}
.hero-slider.owl-carousel .owl-nav button:hover {
  border-color: #19191a;
  color: #333;
  opacity: 1;
}
.hero-slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 3%;
}

@media (max-width: 575px) {
  .hero-slider.owl-carousel .owl-nav button {
    width: 45px;
    height: 45px;
  }
}

.block-gallery{
  height: 250px;
}

.block-gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.div-videos{
  overflow: hidden;
  display: flex;
  height: 230px;
}

.div-videos iframe{
  width: 100%;
  height: 100%;
}

.btn-thl{
  box-shadow: none !important;
  border: solid 1px #111431;
  background-color: #111431;
  color: #fff;
  transition: 500ms;
  padding: 12px 25px;
}

.btn-thl:hover{
  background-color: #fff;
  color: #000;
}

.btn-thl i{
  color: #fff;
  transition: 500ms;
}

.btn-thl:hover i{
  color: #000;
  margin-left: 5px;
}

.color-g{
  color: #333;
}

.color-g strong{
  color: #111431;
}

.list-social-medias a{
  font-size: 22px;
}

.list-social-medias a:hover{
  color: #ee4623;
}

.title-product-card{
  padding: 5px 10px;
  background: #ee4623;
  padding-right: 12px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.hov-pie-t{
  overflow: hidden;
}

.hov-pie-t .title-product-card{
  left: -50%;
  transition: 500ms;
}

.hov-pie-t:hover .title-product-card{
  left: 0;
}

#tab-landscaping-product{
  display: flex;
  justify-content: space-around;
  border: none;
}

#tab-landscaping-product li a{
  border: solid #ddd 1px;
  border-radius: 25px;
  background: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#tab-landscaping-product li a:hover{
  border-color: #333;
}

#tab-landscaping-product li a.active{
  background: #111431;
  color: #fff;
  border-color: #002f54;
}

.form-quantity-content{
  text-align: center;
}

.form-quantity-content.background-check{
  border: solid 2px #111431;
  padding-bottom: 15px;
  border-radius: 5px;
}

.form-quantity-content label{
  font-weight: 600;
  text-transform: uppercase;
}

.form-quantity-content .quantity-plus{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 5px;
}

.form-quantity-content .quantity-plus .cin-increment,
.form-quantity-content .quantity-plus .cin-decrement{
  width: 45px;
  height: 45px;
  background: #111431;
  color: #fff;
  border: solid 1px #111431;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms;
}

/*.form-quantity-content .quantity-plus .cin-increment{
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.form-quantity-content .quantity-plus .cin-decrement{
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}*/

.form-quantity-content .quantity-plus .cin-increment:hover,
.form-quantity-content .quantity-plus .cin-decrement:hover{
  background: #fff;
  color: #111431;
}

.form-quantity-content .quantity-plus .cin-input{
  text-align: center;
  width: 65px;
  height: 45px;
  border: solid 1px #111431 !important;
  border-left: none !important;
  border-right: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.form-quantity-content .quantity-plus input[type=number]::-webkit-inner-spin-button,
.form-quantity-content .quantity-plus input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-select-intensity{
  text-align: justify;
  display: inline-flex;
  justify-content: center;
}

@media (max-width: 575px) {
  .form-select-intensity{
    display: block;
  }
}

.form-select-intensity .form-check{
  position: relative;
  padding: 15px;
  margin-bottom: 15px;
}

.form-select-intensity .form-check .form-check-input{
  margin: 0;
  bottom: -5px;
  left: 50%;
  cursor: pointer;
  transform: translate(-50%, 0%);
}

.form-select-intensity .form-check .form-check-label{
  padding: 0;
  cursor: pointer;
}

.form-select-intensity .form-check .form-check-label .title{
  position: absolute;
  background: #111431;
  color: #fff;
  bottom: 10px;
  left: 50%;
  padding: 5px 10px;
  border-radius: 25px;
  border: solid 2px #fff;
  transform: translate(-50%, 0%);
}

.form-select-intensity .form-check .content-imgs{
  width: 100%;
  position: relative;
}

.form-select-intensity .form-check .content-imgs img{
  width: 100%;
  max-width: 250px;
  height: 100%;
  max-height: 250px;
  object-fit: cover;
}

.table-borderless tbody+tbody, .table-borderless td, .table-borderless th, .table-borderless thead th{
  border: 0;
}

.btn-edit-cart{
  width: 42px;
  height: 42px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #111431;
  border-color: #111431;
  color: #fff;
  transition: 500ms;
}

.btn-edit-cart:hover{
  color: #333;
  background: #fff;
  border-color: #111431;
}

.list-cart-items{
  border-bottom: solid #fff 0px;
}

.list-cart-items tr{
  color: #fff;
  background: #111431;
}

.menu-th{
  display: block;
}

.menu-th .content-figure{
  width: 100%;
  display: flex;
  justify-content: center;
  border: solid #fff 3px;
  padding: 10px;
  border-radius: 5px;
  position: relative;
}

.menu-th .content-figure figure{
  width: 100px;
  height: 100px;
  position: relative;
}

.menu-th .content-figure figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 500ms;
}

.menu-th .content-figure figure img.first-img{
  opacity: 1;
}

.menu-th .content-figure figure img.last-img{
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-th:hover .content-figure figure img.first-img{
  opacity: 0;
}

.menu-th:hover .content-figure figure img.last-img{
  opacity: 1;
}

.menu-th .content-figure .title-menu{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  transition: 500ms;
  opacity: 0;
  text-align: center;
}

.menu-th:hover .content-figure .title-menu{
  opacity: 1;
}

.btn-llamar{
  position: absolute;
  bottom: 28px;
  left: 0;
  font-size: 20px;
  border-radius: 50%;
  border: solid 2px #111431;
  background: #111431;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
}

.form-g-product{
  margin-bottom: 25px;
}

.form-g-product label{
  margin-bottom: 5px;
  text-transform: uppercase;
}

.form-g-product input{
  border: 1px solid #e6e6e6 !important;
  height: 45px;
  border-radius: 1px;
}

.form-g-product textarea{
  border: 1px solid #e6e6e6 !important;
  border-radius: 1px;
}

.form-g-product .select-list-product{
  width: 100%;
}

.form-g-product .btn-messenger{
  background: #0075f8;
  border-color: #0075f8;
}

.form-g-product .btn-messenger:hover{background: #fff; color: #0075f8;}

.form-g-product .btn-messenger:hover i{color: #0075f8;}

.form-g-product .btn-call{
  background: #41b01e;
  border-color: #41b01e;
}

.form-g-product .btn-call:hover{background: #fff; color: #41b01e;}

.form-g-product .btn-call:hover i{color: #41b01e;}

.form-check-inline{margin-bottom: 0;}

.form-check-inline .form-check-input{
  height: auto !important;
}

.form-check-inline .form-check-label{
  padding-left: 0px;
  cursor: pointer;
}

.form-check-inline+.form-check-inline{
  margin-left: 45px;
}

.border-img{
  border: solid 2px #111431;
  border-radius: 5px;
}

.no-page-content{
  width: 100%;
  height: 100%;
  max-height: 50vh;
  padding: 50px 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/fondo.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.no-page-content .content-error{
  background: #111431;
  padding: 25px 20px;
  border-radius: 5px;
  box-shadow: 3px 3px 16px 0px #111431;
  border: solid rgb(255 255 255 / 0.6) 2px;
}

.pagina-error{
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/fondo.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.pagina-error .contenido-error{
  padding: 0 20px 30px;
  text-align: center;
}

.pagina-error .contenido-error img{
  width: 100%;
}

.pagina-error .contenido-error h4{
  color: #fff;
  text-transform: uppercase;
  padding: 15px 10px;
  margin-top: 10px;
  font-weight: 600;
  background: #111431;
  border-radius: 20px;
  border: solid 2px #fff;
}

.no-page-content .content-error h1{
  font-weight: 600;
  font-family: cursive;
  color: #fff;
}

.no-page-content .content-error p{
  font-size: 20px;
  color: #fff;
  font-family: cursive;
}

.packages-list .form-check-label{
  border: solid 2px #333;
  padding-top: 15px;
  padding-right: 15px;
  padding-left: 15px;
  height: 100%;
  cursor: pointer;
  border-radius: 5px;
  transition: 500ms;
}

.packages-list .form-check-label:hover{
  box-shadow: 3px 1px 17px 0px rgba(0, 0, 0, 0.5);
}

.packages-list .form-check-input{
  top: 10px;
  right: 25px;
}

.services-img{
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.services-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-services-label .title{
  text-align: center;
  width: 100%;
}

.yes-no{
  width: 100%; 
  display: inline-flex;
  justify-content: center;
}

.yes-no .form-check .form-check-input{

}

.yes-no .form-check .form-check-label{
  padding: 0;
}

.yes-no .form-check{
  width: 50%;
  text-align: center;
}

#mostrar-ocultar{
  border: solid 2px;
  padding-top: 25px;
  padding-bottom: 20px;
  border-radius: 5px;
  display: none;
}

#mostrar-ocultar #triangulo{
  display: none;
  width: 0;
  height: 0;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-bottom: 20px solid #111431;
  position: absolute;
  top: -20px;
  left: 20%;
  transition: 500ms;
}

.cursor-pointer{
  cursor: pointer;
}

img.img-100{
  width: 100%;
}

#mostrar-ocultar img{
  padding: 15px;
  padding-top: 0;
}

.total-imp-content{
  background: #fff;
  position: fixed;
  top: 30%;
  left: -500px;
  z-index: 9999;
  border: solid 2px #333;
  border-left: none;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 12px 20px;
  transform: translate(0%, -50%);
  transition: 500ms;
}

@media (max-width: 576px) {
  .total-imp-content{
    top: 10%;
  }
}

.total-imp-content.mostrar{
  left: 0;
}

#total-cotiz{
  font-size: 25px;
  color: #333;
  font-weight: 600;
}

#total-cotiz small{
  font-weight: 600;
}

.btnPuntos:before{
    background: #fff;
    content: "";
    position: absolute;
    left: -25px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    -webkit-animation: btnPuntosg 1s ease-in-out infinite;
            animation: btnPuntosg 1s ease-in-out infinite;
    display: block;
}

.btnPuntos{
  background: #fff;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-animation: btnPuntosm 1s ease-in-out infinite;
  animation: btnPuntosm 1s ease-in-out infinite;
  display: block;
  margin: 4px auto;
}


.btnPuntos:after{
    background: #fff;
    content: "";
    position: absolute;
    left: 25px;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    -webkit-animation: btnPuntosd 1s ease-in-out infinite;
            animation: btnPuntosd 1s ease-in-out infinite;
    display: block;
}

button:hover .btnPuntos,
button:hover .btnPuntos:before,
button:hover .btnPuntos:after{
  background: #111431 !important;
}

@-webkit-keyframes btnPuntosm{
    0%{opacity: 0.2;}
    25%{opacity: 0.2;}
    50%{opacity: 1;}
    75%{opacity: 0.2;}
    100%{opacity: 0.2;}
}
@keyframes btnPuntosm{
    0%{opacity: 0.2;}
    25%{opacity: 0.2;}
    50%{opacity: 1;}
    75%{opacity: 0.2;}
    100%{opacity: 0.2;}
}

@-webkit-keyframes btnPuntosg{
    0%{opacity: 0.2;}
    25%{opacity: 1;}
    50%{opacity: 0.2;}
    75%{opacity: 0.2;}
    100%{opacity: 0.2;}
}
@keyframes btnPuntosg{
    0%{opacity: 0.2;}
    25%{opacity: 1;}
    50%{opacity: 0.2;}
    75%{opacity: 0.2;}
    100%{opacity: 0.2;}
}

@-webkit-keyframes btnPuntosd{
    0%{opacity: 0.2;}
    25%{opacity: 0.2;}
    50%{opacity: 0.2;}
    75%{opacity: 1;}
    100%{opacity: 0.2;}
}
@keyframes btnPuntosd{
    0%{opacity: 0.2;}
    25%{opacity: 0.2;}
    50%{opacity: 0.2;}
    75%{opacity: 1;}
    100%{opacity: 0.2;}
}

#correo_enviando{
  background: #bf0a30;
  position: fixed;
  top: 15%;
  right: -280px;
  transform: translate(0%, 0%);
  padding: 8px 15px 10px 15px;
  box-shadow: 1px 1px 7px 1px rgb(0 0 0 / 0.5);
  transition: 500ms;
  z-index: 99999;
  text-align: center;
  text-transform: uppercase;
  border: solid #fff 3px;
  border-right: 0;
}

#correo_enviando.mostrar{
  right: 0;
}

#correo_enviando p{
  color: #fff;
  font-size: 20px;
}

#correo_enviando p small{
  display: block;
  text-transform: none;
}

.subtitulo-title{
  text-align: center;
  padding: 0 5px;
  color: #111431;
  font-size: 18px;
}

.btn-cotizacion{
  color: #fff;
  background: #0075f8;
  padding: 10px 15px;
  border-radius: 5px;
  border: solid 2px #0075f8;
  transition: 500ms;
}

.btn-cotizacion:hover{
  background: #fff;
  color: #0075f8;
  /*border-radius: 1px;*/
}

@media (max-width: 675px) {
  .btn-cotizacion{
    border-radius: 50% !important;
  }
}

.modal-open #messengerTHL,
.modal-open .modalEditProduct,
.modal-open .modalPackages{
  background: rgba(0, 0, 0, 0.5);
}

#messengerTHL .modal-dialog{

}

#messengerTHL .modal-dialog .messenger{
  
}

.products-quantity-option{
  margin-top: 15px;
  position: relative;
}

.products-quantity-option .form-check .form-check-input{
  margin: 0;
  right: 14px;
  top: 14px;
  cursor: pointer;
  opacity: 0;
  z-index: 9;
}

.products-quantity-option .form-check .form-check-label{
  padding: 0;
  cursor: pointer;
  transition: 500ms;
  border: solid 4px transparent;
}

.products-quantity-option .form-check .form-check-label img{
  width: 100%;
  position: relative;
}

.products-quantity-option input:checked + .form-check-label{
  border: solid 4px #ee4623;
  box-shadow: 0px 1px 20px 2px rgb(0 0 0 / 0.6);
  border-radius: 5px;
}

.products-quantity-option input:checked + .form-check-label::before{
    content: 'Selected';
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #bf0a30;
    color: #fff;
    z-index: 9;
    border-radius: 5px;
    transition: 500ms;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 23px;
}

.products-quantity-option input:checked:hover + .form-check-label::before{
  opacity: 1;
  background: rgb(191 10 48 / 0.3);
}

/*.products-quantity-option .form-check .form-check-label::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  border: solid 6px transparent;
}

.products-quantity-option .form-check.seleccionado .form-check-label::before{
  content: '';
  border-color: #bf0a30;
  box-shadow: 3px 3px 12px 5px rgb(0 0 0 / 0.5);
  border-radius: 5px;
}

.products-quantity-option .form-check.seleccionado::before{
    content: 'Selected';
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #bf0a30;
    color: #fff;
    z-index: 9;
    border-radius: 5px;
    transition: 500ms;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 25px;
}

.products-quantity-option .form-check.seleccionado:hover::before,
.products-quantity-option .form-check.seleccionado:hover::after{
  opacity: 1;
  background: rgb(191 10 48 / 0.3);
}*/

#accordion_faqs .card-header{
  padding: 0;
}

#accordion_faqs .btn-link{
  padding: 20px 30px;
  text-decoration: none !important;
  background: #111431;
  color: #fff;
}

#accordion_faqs .btn-link:hover{
  opacity: 0.9;
}

#accordion_faqs .card-body{
  text-align: center;
}

.download-app{
  margin-top: 10px;
  width: 100%;
}

.download-app a{
  background: #111431;
  color: #fff;
  padding: 8px 15px;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 25px;
  margin: 0 5px;
  border: solid 2px #111431;
  transition: 500ms;
}

.download-app a i{
  transition: 500ms;
  color: #fff;
}

.download-app a:hover{
  background: #fff;
  color: #111431;
}

.download-app a:hover i{
  margin-right: 7px;
  color: #111431;
}

.area_de{
  display: inline-flex;
}

.area_de i{
  color: #111431;
  opacity: 0.5;
  transition: 500ms;
}

.area_de i:hover{
  opacity: 1;
}

.d-flex-j-center{
  display: flex;
  justify-content: center;
}

.d-flex-ai-center{
  display: flex;
  align-items: center;
}

.d-flex-j-end{
  display: flex;
  justify-content: flex-end;
}

.btn-slider{
  background: rgb(0 0 0 / 0);
}

.btn-slider:hover{
  background: rgb(0 0 0 / 0.3);
}

.txt-naranja{
  color: #ee4623 !important;
}

.modalEditProduct .modal-dialog-centered{
  padding: 10px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  max-width: 550px;
}

.modalEditProduct .modal-header{
  position: relative;
  padding: 0;
  background: transparent;
  border: none;
}

.modalEditProduct .modal-header button.close{
  position: absolute;
  width: 30px;
  height: 30px;
  top: -29px;
  background: #fff;
  text-shadow: none;
  color: #111431;
  opacity: 0.2;
  right: 0;
  border-radius: 3px;
  border: solid 1px rgba(0 0 0 / 0.2);
  transition: 500ms;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom: none;
  z-index: 9;
}

.modalEditProduct .modal-header button.close:hover{
  opacity: 1;
}

.modalEditProduct .modal-content{
  background: transparent;
}

.modalEditProduct .modal-body{
  background: #fff;
  border-radius: 5px;
  padding: 30px 15px;
  border-top-right-radius: 0;
}

.modalEditProduct .modal-body .precio{
  display: block;
  font-size: 22px;
  color: #ee4623;
  font-weight: 600;
  cursor: pointer;
}

.modalEditProduct .modal-body .form-check-input{
  margin-top: 7px;
}

.modalEditProduct .modal-body .form-check-label{
  margin-right: -20px;
}

.modalEditProduct .modal-body .form-check{
  border: solid 1px #ee4623;
  padding: 10px;
  border-radius: 5px;
  background: #fff;
  width: 100%;
}

.cart-details{
  border: solid 2px #ee4623;
  border-radius: 5px;
  padding-bottom: 20px;
}

.cart-details .icon-cart{
  height: 30px;
  background: #ee4623;
  position: relative;
  margin-bottom: 25px;
}

.cart-details .icon-cart i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  background: #111431;
  color: #fff;
  border-radius: 50%;
  font-size: 25px;
  border: solid 5px #fff;
  transition: 500ms;
}

.cart-details:hover .icon-cart i{
  background: #ee4623;
}

.cart-details .title{
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.table-v-c td{
  vertical-align: inherit;
}

.cart-details .list{
  padding: 0 10px;
}

.cart-details .list .table td{
  font-size: 15px;
}

.congratulations{
  padding: 50px 0px;
}

.congratulations .green{
  background: #eaffe1;
  text-align: center;
  padding: 50px 15px;
}

.congratulations .green h3{
  font-weight: 600;
  color: #000;
  margin-top: 15px;
}

.congratulations .green img{
  width: 100%;
  max-width: 200px;
}

.congratulations .green p{
  margin-top: 13px;
  line-height: 20px;
  color: #333;
}

.congratulations .return {
  display: flex;
  position: relative;
  transition: 500ms;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 675px) {
  .congratulations .return {
    display: block;
  }

  .congratulations{
    padding: 35px 0px;
  }

  .congratulations .green{
    padding: 35px 15px;
  }
}

.congratulations .return p{
  color: #333;
}

.congratulations .return p a{
  color: #2196f3;
  font-weight: 600;
  transition: 500ms;
}

.congratulations .return p a:hover{
  color: #333;
}

.congratulations .loader_return {
  border: 4px solid #ffffff;
  border-top-color: #111431;
  border-radius: 50%;
  -webkit-animation: 1s loader_return linear infinite;
  animation: 1s loader_return linear infinite;
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
  margin-right: 5px;
}
.congratulations .loader_return:before {
  content: '';
  display: block;
  width: inherit;
  height: inherit;
  position: absolute;
  top: -4px;
  left: -4px;
  border: 4px solid #111431;
  border-radius: 50%;
  opacity: .3;
}

@-webkit-keyframes loader_return {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader_return {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.slider-principal{

}

.slider-principal .owl-carousel{
  display: flex !important;
}

.slider-principal .owl-carousel .item{
  position: relative;
}

.slider-principal .owl-carousel .item .img{
  width: 100%;
  height: 100%;
}

.slider-principal .owl-carousel .item .contenido{

}

.slider-principal .owl-carousel .owl-nav{
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.slider-principal .owl-carousel .owl-nav .owl-prev,
.slider-principal .owl-carousel .owl-nav .owl-next{
  background: #111431;
  color: #fff;
  width: 75px;
  height: 75px;
  font-size: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 3px;
  transition: 500ms;
}

@media (max-width: 992px) {
  .slider-principal .owl-carousel .owl-nav .owl-prev,
  .slider-principal .owl-carousel .owl-nav .owl-next{
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
}

@media (max-width: 675px) {
  .slider-principal .owl-carousel .owl-nav .owl-prev,
  .slider-principal .owl-carousel .owl-nav .owl-next{
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

.slider-principal .owl-carousel .owl-nav .owl-prev:hover,
.slider-principal .owl-carousel .owl-nav .owl-next:hover{
  background: #ee4623;
}

.slider-principal .owl-carousel .owl-nav .owl-prev{
  
}

.slider-principal .owl-carousel .owl-nav .owl-next{
  
}

.list-packages{

}

.list-packages .div-packages{
  cursor: pointer;
  display: block;
  padding: 15px 10px;
  border: solid 1px #333;
  border-radius: 10px;
  transition: 500ms;
  position: relative;
  overflow: hidden;
}

.list-packages .div-packages:active,
.list-packages .div-packages:hover{
  border-color: #ee4623;
  box-shadow: 4px 4px 20px 0px rgb(0 0 0 / 0.7);
}

.modalPackages .modal-dialog-centered{
  padding: 10px;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 100%;
  max-width: 550px;
}

.modalPackages .modal-header{
  justify-content: flex-end;
  padding: 70px 0;
  border: 0;
  padding-bottom: 0;
}

.modalPackages .modal-header .close{
  opacity: 1;
  text-shadow: none;
  background: #fff;
  color: #333;
  height: 30px;
  width: 30px;
}

.modalPackages .modal-content{
  background: transparent;
  border-radius: 0;
  border: 0;
}

.modalPackages .modal-body{
  background: #fff;
}

.modalPackages .titulo{

}

.modalPackages .titulo strong{
  display: block;
  margin-top: 5px;
}

.modalPackages .form-check{
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 500ms;
  
}

.modalPackages .form-check-input{
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  opacity: 0;
}

.modalPackages .form-check-label{
  border-radius: 5px;
  height: 100%;
  border: solid 1px #333;
  cursor: pointer;
  padding: 15px 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 500ms;
}

.modalPackages .form-check input:checked + .form-check-label{
  border-color: #771d00;
  background: #ee4623;
  color: #fff;
  box-shadow: 4px 4px 20px 0px rgb(0 0 0 / 0.5);
}

.modalPackages .form-check input:checked + .form-check-label:before{
  content: '';
}

.modalPackages .label-pregunta{
  display: block;
  width: 100%;
  text-align: center;
}

.paquetes-servicios{
  position: fixed;
  bottom: 0;
  left: 3px;
  width: 339px;
  z-index: 9999;
}

.paquetes-servicios .button-details-f{
  background: #ee4623;
  /*width: 300px;*/
  width: 339px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*box-shadow: 4px 4px 20px 0px rgb(0 0 0 / 0.7);*/
  color: #fff;
  font-size: 30px;
  border-radius: 25px 25px 0 0;
  border: solid 2px #ee4623;
  border-bottom: 0;
  transition: 500ms;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.paquetes-servicios .contador{
  position: absolute;
  color: #fff;
  z-index: 9;
  top: -20px;
  right: 0;
  width: 40px;
  height: 40px;
  background: #111431;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #fff;
  border-radius: 50%;
  box-shadow: 4px 2px 12px 0px rgb(0 0 0 / 0.7);
}

/*.paquetes-servicios .button-details-f.cambio i:before{
  content: "\f103";
}*/

.paquetes-servicios .button-details-f.cambio i{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.paquetes-servicios .button-details-f.cambio i::before{
  content: "\f103" !important;
  transition: 500ms;
}

.paquetes-servicios .button-details-f.cambio:hover i{
  position: absolute;
  top: 50%;
  left: 50%;
  animation: paraAbajo infinite linear .75s !important;
}

.paquetes-servicios .button-details-f i{
  color: #fff;
}

.paquetes-servicios .button-details-f:hover{
  background: #fff;
}

.paquetes-servicios .button-details-f:hover i{
  color: #ee4623;
}

.paquetes-servicios .button-details-f i::before{
  transition: 500ms;
}

.paquetes-servicios .button-details-f:hover i{
  position: absolute;
  top: 50%;
  left: 50%;
  animation: paraArriba infinite linear .75s;
}

.paquetes-servicios .button-details-f:hover i::before{
  content: "\f102";
  transition: 500ms;
  
}

@keyframes paraAbajo {
  0% {
    transform: translate(-50%, -50%) translateY(-25px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) translateY(25px);
    opacity: 1;
  }
}

@keyframes paraArriba {
  0% {
    transform: translate(-50%, -50%) translateY(25px);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) translateY(0);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) translateY(-25px);
    opacity: 1;
  }
}

.paquetes-servicios .content-p-s{
  border: solid 2px #ee4623;
  border-bottom: 0;
  background: #fff;
  padding: 20px;
  max-height: 100vh;
  overflow: hidden;
  transition: max-height 1s, overflow 1s;
}

.paquetes-servicios .content-p-s .titulo{
  margin-bottom: 5px;
  text-align: center;
}

.paquetes-servicios .content-p-s.oculto{
  padding: 0 20px;
  border-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, overflow 0.5s, 0.5s;
}

.paquetes-servicios .header-cart-wrapitem{
  max-height: 510px;
}

.paquetes-servicios-movil{
  position: fixed;
  color: #fff;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: #ee4623;
  display: none;
  justify-content: center;
  align-items: center;
  border-top: solid 1px #ee4623;
  box-shadow: 4px 2px 12px 0px rgb(0 0 0 / 0.7);
  font-size: 20px;
  transition: 500ms;
  border-radius: 25px 25px 0 0;
}

.paquetes-servicios-movil:hover{
  color: #fff;
}

.paquetes-servicios-movil .contador{
  margin-left: 8px;
  transition: 500ms;
}

.paquetes-servicios-movil:hover .contador{
  margin-left: 12px;
}

@media (max-width: 768px) {
  .paquetes-servicios{
    display: none;
  }

  .paquetes-servicios-movil{
    display: flex;
  }
}

.paquetes-servicios .header-cart-item-img{
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.paquetes-servicios .header-cart-item-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quantity_list_item{
  text-align: left;
  border: solid 1px #ddd;
  padding: 0px;
  border-radius: 5px;
  overflow: hidden;
  color: #333;
}

.quantity_list_item li{
  border-top: solid 1px #ddd;
  padding: 10px 10px;
}

.quantity_list_item li strong{
  background: #ee4623;
  color: #fff;
  width: 25px;
  height: 25px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  float: right;
}

.quantity_list_item li:first-child{
  border-top: 0;
}

.quantity_list_item li:first-child strong{
  background: #ee4623;
  color: #fff;
}

.quantity_list_item.list li:first-child{
  border-top: 0;
  background: #fff;
  color: #ee4623;
}

.quantity_list_item.list li:first-child strong{
  background: #ee4623;
  color: #fff;
}

@media (max-width: 768px) {
  .quantity_list_item{
    text-align: center;
  }

  .quantity_list_item li strong{
    float: none;
  }
}

.cart-img-product.img-list{
  width: 90px;
  height: 90px;
  overflow: hidden;
}

.cart-img-product.img-list img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-social-medias-encabezado{
  margin-right: 10px;
  width: 100%;
  display: flex;
  position: relative;
}

/*.list-social-medias-encabezado .siguenos{
  color: #fff;
  background: #000;
  padding: 5px 10px;
  position: absolute;
  top: 50%;
  left: calc(-100% - 20px);
  transform: translate(-25%, -50%);
  border-radius: 0;
  border: solid 1px #fff;
  transition: 500ms;
}*/

.list-social-medias-encabezado .siguenos{
  color: #000;
  background: #fff;
  padding: 5px 10px;
  position: absolute;
  bottom: calc(-100% - 8px);
  right: 0;
  transform: translate(0%, 50%);
  width: max-content;
  z-index: 9;
  border: solid 1px #fff;
  transition: 500ms;
  border-radius: 5px;
  display: block;
  box-shadow: 4px 2px 12px 0px rgb(0 0 0 / 0.5);
}

.list-social-medias-encabezado .siguenos strong{
  content: '';
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 15px solid #fff;
  position: absolute;
  top: -14px;
  right: 7%;
  transition: 500ms;
}

.list-social-medias-encabezado a{
  padding-right: 15px;
  transition: 500ms;
  font-size: 22px;
}

@media (max-width: 768px) {
  .list-social-medias-encabezado{
    margin-right: 0;
  }
}

.materials-services{
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 100%;
}

#tab-landscaping-product-content .slider-productos.owl-carousel,
#tab-landscaping-product-content .slider-productos-2.owl-carousel{
  display: flex !important;
}

#tab-landscaping-product-content .slider-productos.owl-carousel .owl-nav .owl-prev,
#tab-landscaping-product-content .slider-productos.owl-carousel .owl-nav .owl-next,
#tab-landscaping-product-content .slider-productos-2.owl-carousel .owl-nav .owl-prev,
#tab-landscaping-product-content .slider-productos-2.owl-carousel .owl-nav .owl-next{
  position: absolute;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: .5;
  background: rgb(0 0 0 / 0);
  transition: 500ms;
}

#tab-landscaping-product-content .slider-productos.owl-carousel .owl-nav .owl-prev,
#tab-landscaping-product-content .slider-productos-2.owl-carousel .owl-nav .owl-prev{
  left: 0;
}

#tab-landscaping-product-content .slider-productos.owl-carousel .owl-nav .owl-next,
#tab-landscaping-product-content .slider-productos-2.owl-carousel .owl-nav .owl-next{
  right: 0;
}

#tab-landscaping-product-content .slider-productos.owl-carousel .owl-nav .owl-prev:hover,
#tab-landscaping-product-content .slider-productos.owl-carousel .owl-nav .owl-next:hover,
#tab-landscaping-product-content .slider-productos-2.owl-carousel .owl-nav .owl-prev:hover,
#tab-landscaping-product-content .slider-productos-2.owl-carousel .owl-nav .owl-next:hover{
  background: rgb(0 0 0 / 0.3);
  opacity: 1;
}

#tab-landscaping-product-content .slider-productos.owl-carousel .owl-nav .owl-prev i,
#tab-landscaping-product-content .slider-productos.owl-carousel .owl-nav .owl-next i,
#tab-landscaping-product-content .slider-productos-2.owl-carousel .owl-nav .owl-prev i,
#tab-landscaping-product-content .slider-productos-2.owl-carousel .owl-nav .owl-next i{
  color: #fff;
  font-size: 28px;
}

#loading{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  /*background: #111431;*/
  background: rgb(17 20 49 / 0.95);
  top: 0;
  left: 0;
  z-index: 99999999;
}

#loading .loader{
  display: inline-block;
  width: 30px;
  height: 30px;
  color: inherit;
  vertical-align: middle;
  pointer-events: none;
}

#loading .loader {
  position: relative;
  -webkit-animation: loader-1 2.0s infinite linear;
          animation: loader-1 2.0s infinite linear;
}
#loading .loader:before {
  content: '';
  width: 0;
  height: 0;
  /*border: 15px solid #111431;*/
  border: 15px solid #fff;
  display: block;
  position: absolute;
  border-radius: 100%;
  -webkit-animation: loader-2 2s infinite ease-in-out;
          animation: loader-2 2s infinite ease-in-out;
  top: 0;
  left: 50%;
}
#loading .loader:after {
  content: '';
  width: 0;
  height: 0;
  border: 15px solid #ee4623;
  display: block;
  position: absolute;
  border-radius: 100%;
  -webkit-animation: loader-2 2s infinite ease-in-out;
          animation: loader-2 2s infinite ease-in-out;
  bottom: 0;
  right: 50%;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

@-webkit-keyframes loader-1 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader-1 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-2 {
  0%,
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes loader-2 {
  0%,
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#btn-messenger{
  display: none;
  position: fixed;
  bottom: 65px;
  right: 10px;
  background: #0075f8;
  width: 55px;
  height: 55px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 4px 2px 12px 0px rgb(0 0 0 / 0.4);
  color: #fff;
  font-size: 39px;
}

@media (max-width: 768px) {
  #fb-root{
    display: none;
  }  

  #btn-messenger{
    display: flex;
  }

  .mobile-img-100{
    width: 100%;
  }
}


/*====================*/
.product-details {
  padding-top: 20px;
    padding-bottom: 50px;
}

.content-details-product{
  background: #fff;
  /*border: solid 2px #111431;*/
  padding: 30px;
  border-radius: 0px;
  box-shadow: 0px 1px 14px 0px rgb(0 0 0 / 0.5);
}

.product__details__pic {
  overflow: hidden;
}

.product__details__pic__left {
  width: 22%;
  max-height: 574px;
  float: left;
  overflow-y: auto;
}

.product__details__pic__left .pt {
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}

.product__details__pic__left .pt::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.product__details__pic__left .pt.active::after {
  opacity: 0.3;
}

.product__details__pic__left .pt:last-child {
  margin-bottom: 0;
}

.product__details__pic__left .pt img {
  min-width: 100%;
}

.product__details__slider__content {
  width: calc(78% - 20px);
  float: left;
  margin-left: 20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button {
  position: absolute;
  left: 10px;
  top: 50%;
  font-size: 22px;
  color: #111111;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  margin-top: -20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 10px;
}

.product__details__text h3 {
  color: #111111;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product__details__text h3 span {
  display: block;
  font-size: 14px;
  color: #444444;
  text-transform: none;
  font-weight: 400;
  margin-top: 5px;
}

.product__details__text .rating {
  margin-bottom: 16px;
}

.product__details__text .rating i {
  font-size: 12px;
  color: #e3c01c;
  margin-right: -4px;
}

.product__details__text .rating span {
  font-size: 12px;
  color: #666666;
  margin-left: 5px;
}

.product__details__text p {
  color: #444444;
  margin-bottom: 28px;
}

.product__details__price {
  font-size: 35px;
  font-weight: 600;
  color: #ee4623;
  margin-bottom: 5px;
}

.product__details__price sup{
  font-size: 50%;
    top: -15px;
    left: -4px;
}

.product__details__price span {
  font-size: 17px;
  font-weight: 400;
  color: #b1b0b0;
  text-decoration: line-through;
  margin-left: 5px;
  display: inline-block;
}

.product__details__price span sup {
  top: -8px;
  left: 0;
}

.quantity {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.quantity>span {
  font-size: 14px;
  color: #111111;
  font-weight: 600;
  float: left;
  margin-top: 14px;
  margin-right: 15px;
}

.pro-qty {
  height: 50px;
  width: 150px;
  border: 1px solid #ebebeb;
  border-radius: 50px;
  padding: 0 20px;
  overflow: hidden;
  display: inline-block;
}

.pro-qty .qtybtn {
  font-size: 14px;
  color: #111431;
  cursor: pointer;
  float: left;
  width: 12px;
  line-height: 46px;
}

.pro-qty input {
  font-size: 14px;
  color: #111431;
  font-weight: 500;
  border: none;
  float: left;
  width: 84px;
  text-align: center;
  height: 48px;
}

.pro-qty input[type=number]::-webkit-inner-spin-button, 
.pro-qty input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.product__details__button {
  overflow: hidden;
  margin-bottom: 25px;
  /*border-top: 1px solid #ebebeb;*/
    padding-top: 30px;
}

.product__details__button .cart-btn {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  background: #e12f30;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 30px 15px;
  border-radius: 50px;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: 500ms;
  border: solid 2px #e12f30;
}

.product__details__button .cart-btn:hover {
  background: #fff;
  color: #e12f30;
}

.cart-btn {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  background: #e12f30;
  font-weight: 600;
  text-transform: uppercase;
  padding: 14px 30px 15px;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: 500ms;
  border: solid 2px #e12f30;
}

.cart-btn:hover {
  background: #fff;
  color: #e12f30;
}

.product__details__button ul {
  float: left;
}

.product__details__button ul li {
  list-style: none;
  display: inline-block;
  margin-right: 5px;
}

.product__details__button ul li:last-child {
  margin-right: 0;
}

.product__details__button ul li a {
  display: inline-block;
  height: 50px;
  width: 50px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  padding-top: 1px;
}

.product__details__button ul li a span {
  font-size: 18px;
  color: #666666;
}

.color-semi-black{
  color: #333;
}

hr.dividator-lights{
  display: block;
  width: 75%;
  border-top: 1px solid #ddd;
  border-radius: 50px;
  margin: 15px auto;
}











.rating{
  list-style: none;
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.rating li{
  color:#ffd200;
  font-size:18px;
  display:inline-block;
}

.rating li.disable{
  color:#dcdcdc
}

.testimonials-slider .item {
  text-align: center;
  opacity: .2;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
  padding: 25px 15px;
  padding-bottom: 45px;
  position: relative;
  border: solid 2px #eee;
  border-radius: 25px;
  box-shadow: 2px 2px 11px 0px rgb(0 0 0 / 15%);
  margin: 15px 0;
}

.testimonials-slider .item p {

}

.testimonials-slider .item span {
  background: #111431;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -15px;
  height: 45px;
  width: fit-content;
  transform: translate(-50%, 0);
  max-width: 90%;
  border-radius: 50px;
  line-height: 29px;
  padding: 8px 20px;
}

.testimonials-slider .owl-item.active.center .item {
  opacity: 1;
  transform: scale3d(1.0, 1.0, 1);
}






.one-testimonial .item {
  text-align: center;
  opacity: .2;
  transform: scale3d(0.8, 0.8, 1);
  transition: all 0.3s ease-in-out;
  padding: 25px 15px;
  padding-bottom: 45px;
  position: relative;
  border: solid 2px #eee;
  border-radius: 25px;
  box-shadow: 2px 2px 11px 0px rgb(0 0 0 / 15%);
  margin: 15px 0;
}

.one-testimonial .item p {

}

.one-testimonial .item span {
  background: #111431;
  color: #fff;
  position: absolute;
  left: 50%;
  bottom: -15px;
  height: 45px;
  width: fit-content;
  transform: translate(-50%, 0);
  max-width: 90%;
  border-radius: 50px;
  line-height: 29px;
  padding: 8px 20px;
}

.one-testimonial .owl-item.active.center .item {
  opacity: 1;
  transform: scale3d(1.0, 1.0, 1);
}