
/*[ FONT ]
///////////////////////////////////////////////////////////
*/

@font-face {
    font-family: Montserrat-Regular;
    src: url('/fonts/montserrat/Montserrat-Regular.ttf');
}

@font-face {
    font-family: Montserrat-Medium;
    src: url('/fonts/montserrat/Montserrat-Medium.ttf');
}

@font-face {
    font-family: Montserrat-Bold;
    src: url('/fonts/montserrat/Montserrat-Bold.ttf');
}

@font-face {
    font-family: Montserrat-Italic;
    src: url('/fonts/montserrat/Montserrat-Italic.ttf');
}

@font-face {
    font-family: Montserrat-Black;
    src: url('/fonts/montserrat/Montserrat-Black.ttf');
}

@font-face {
    font-family: Linearicons;
    src: url('/fonts/Linearicons-Free-v1.0.0/WebFont/Linearicons-Free.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('/fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-Black;
    src: url('/fonts/poppins/Poppins-Black.ttf');
}

/*[ RESTYLE TAG ]
///////////////////////////////////////////////////////////
*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: Montserrat-Regular, sans-serif;
    font-weight: 400;
}

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

a {
    font-family: Montserrat-Regular;
    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: #a9519a;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

p {
    font-family: Montserrat-Regular;
    font-size: 15px;
    line-height: 1.7;
    color: #888888;
    margin: 0px;
}

ul,
li {
    margin: 0px;
    list-style-type: none;
}

/* mapa*/

#map {
    height: 400px;
    width: 100%;
}

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

input {
    outline: none;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
}

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: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

[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: #a9519a;
}

@-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 ]
///////////////////////////////////////////////////////////
*/

.btn-back-to-top {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 40px;
    background-color: black;
    opacity: 0.5;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 4px;
    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: 22px;
    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;
    }
}

/*[ boton whatsapp ]
///////////////////////////////////////////////////////////
*/

.floatButton {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 25px;
    background-color: rgba(0, 204, 68, 0.7);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, .12);
    font-size: 24px;
    line-height: 50px;
}

.floatButton:hover {
    background-color: rgba(0, 204, 68, 1);
    color: rgb(197, 247, 213);
}

/*[ container olvido pass ]
///////////////////////////////////////////////////////////
*/

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.wrap-login100 {
    width: 390px;
    background: #fff;
    overflow: hidden;
}

.thank {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    flex-direction: column;
    padding: 25px;
}

.thank h3 {
    font-size: 18px;
}

/* empty state*/

.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    flex-direction: column;
    padding: 25px;
}

.empty-state img {
    width: 100px;
    margin-bottom: 15px;
}

.empty-state h3 {
    font-size: 18px;
}

/*[ estados de las compras ]
///////////////////////////////////////////////////////////
*/

.badge-purchase-state {
    font-size: 11px;
    font-weight: normal;
    color: #FFF!important;
}

.entregado {
    background: #3c4757;
}

.entregado:after {
    padding-left: 5px;
    font-family: 'themify';
    content: "\e66d";
}

.pendiente {
    background: #df9d22;
}

.pendiente:after {
    padding-left: 5px;
    font-family: 'themify';
    content: "\e6c6";
}
.transferido {
    background: #9322df;
}

.transferido:after {
    padding-left: 5px;
    font-family: 'themify';
    content: "\e63e";
}

.pagado {
    background: #2c6ed5;
}

.pagado:after {
    padding-left: 5px;
    font-family: 'themify';
    content: "\e68c";
}

.cancelado {
    background: #d52c35;
}

.cancelado:after {
    padding-left: 5px;
    font-family: 'themify';
    content: "\e646";
}

/*[ mi cuenta page ]
///////////////////////////////////////////////////////////
*/

/* *****input type file *******/

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 30px 20px;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label * {
    /* pointer-events: none; */
    /* in case of FastClick lib use */
}

.inputfile+label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}

.inputfile-2+label {
    color: #3977d3;
    border: 2px dashed currentColor;
}

.inputfile-2:focus+label,
.inputfile-2.has-focus+label,
.inputfile-2+label:hover {
    color: #354864;
    outline: none;
}

/* rating modal*/

.rate {
    width: 130px;
    height: 37px;
    margin: 0 auto;
}

.rate:not(:checked)>input {
    position: absolute;
    top: -9999px;
}

.rate:not(:checked)>label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 25px;
    color: #f7e4a2;
    margin: 0px
}

.rate:not(:checked)>label:before {
    font-family: "FontAwesome";
    content: '\f006 ';
}

.rate>input:checked>label:before {
    font-family: "FontAwesome";
    content: '\f006 ' !important;
}

.rate>input:checked~label {
    color: #ffc700;
}

.rate>input:checked~label:before {
    font-family: "FontAwesome";
    content: '\f005 ' !important;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08;
}

.tab-text-content {}

.tab-item ul li:nth-child(1) a {
    border-right: 1px solid #ebebeb;
}

.tab-item ul li:nth-child(2) a {
    border-right: 1px solid #ebebeb;
}

.tab-item ul li:nth-child(3) a {
    border-right: 1px solid #ebebeb;
}

.tab-item ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #b2b2b2;
    text-transform: uppercase;
    padding: 18px 20px;
    position: relative;
    border-top: 1px solid #ebebeb;
    border-left: 1px solid #ebebeb;
    text-align: center
}

.tab-item ul li a.active {
    color: #252525;
}

.tab-item ul li a.active:before {
    opacity: 1;
}

.tab-item ul li a::before {
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 5px;
    background: #b5a57f;
    content: "";
    opacity: 0;
}

/*[ Restyle Select ]
///////////////////////////////////////////////////////////
*/

.select-content {
    position: relative;
    display: block;
    font-family: "Montserrat-Regular" !important;
    margin: 0 auto;
    z-index: 10;
}

select.style-select {
    border: 0px;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    margin: 0;
    display: block;
    width: 100%;
    padding: 12px 55px 15px 15px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    font-family: "Montserrat-Regular" !important;
}

select.style-select option {
    color: #333;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif !important;
}

.select-content:after {
    font-family: 'themify';
    position: absolute;
    right: 0;
    top: 4px;
    width: 50px;
    height: 100%;
    line-height: 38px;
    content: '\e64b';
    text-align: center;
    color: #999;
    font-size: 10px;
    z-index: -1;
}

select#gender option[value="male"] {
    background-image: url(male.png);
}

/*[ 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;
    font-family: Montserrat-Regular;
    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: #a9519a;
    color: white;
}

.select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: #a9519a;
    color: white;
}

.select2-results__options {
    font-size: 13px;
    font-family: Montserrat-Regular;
    color: #888888;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: none;
    font-family: Montserrat-Regular;
    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: 111px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.fixed-header {
    height: 110px;
}

/*[ Header Desktop ]
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.container-menu-header {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 1000;
    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: #2e393c;
    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-family: Montserrat-Regular;
    font-size: 13px;
    color: #fff;
    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: 66px;
    background-color: white;
    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: 50px;
}

/*[ 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-family: Montserrat-Regular;
    font-size: 15px;
    color: #333333;
    padding: 0;
    border-bottom: 1px solid transparent;
}

li.sale-noti>a {
    color: #a9519a;
}

li.link-active>a {
    color: #a9519a;
}

.main_menu>li:hover>a {
    text-decoration: none;
    border-bottom: 1px solid #333333;
}

.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: #2e393c;
    opacity: 0;
    visibility: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    -moz-transition: all 0.1s;
}

.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.1s;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    -moz-transition: all 0.1s;*/
}

.sub_menu li,
.sub_menu a {
    padding: 5px 10px;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
}

.sub_menu>li:hover>a {
    color: #a9519a;
    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 {
    height: 27px;
    position: relative;
}

.header-icon1,
.header-icon2 {
    font-size: 25px;
    color: #999;
    cursor: pointer;
}

.header-icon1:hover,
.header-icon2:hover {
    cursor: pointer;
    color: #a9519a;
}

.header-icons-noti {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #2e393c;
    color: white;
    font-family: Montserrat-Medium;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: -10px;
}

.header-icons-noti-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ec5252;
    color: white;
    font-family: Montserrat-Medium;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: -10px;
}

.header-link-reg {
    display: block;
    line-height: normal;
    font-size: 13px;
}

.linedivide1 {
    display: block;
    height: 20px;
    width: 1px;
    background-color: #e5e5e5;
    margin-left: 23px;
    margin-right: 23px;
    margin-top: 5px;
}

.icon-hello {
    font-size: 22px;
    line-height: normal;
    color: #999;
}

.icon-wishlist-header {
    font-size: 26px;
    color: #999;
    line-height: normal !important;
}

.icon-wishlist-header i.active {
    color: #e65540;
}

.icon-search-header {
    font-size: 24px;
    color: #999;
    line-height: normal !important;
}

.fav-delet-list {
    position: absolute;
    right: 20px;
    top: 25px;
}

/*[ Header buscar wrap ]
-----------------------------------------------------------
*/

.search-wrap {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease;
}

.search-wrap .container {
    position: relative;
    height: 100%;
}

.search-wrap.active {
    opacity: 1;
    visibility: visible;
}

.search-wrap .form-control {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    z-index: 3;
    font-size: 40px;
}

@media (max-width: 991.98px) {
    .search-wrap .form-control {
        font-size: 20px;
    }
}

.search-wrap .search-close {
    z-index: 4;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-wrap .search-close span {
    font-size: 30px;
}

.search-wrap .search-button {
    z-index: 4;
    position: absolute;
    right: 80px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.search-wrap .search-button span {
    font-size: 30px;
}

/*[ Header user links ]
-----------------------------------------------------------
*/

.header-user-links {
    position: absolute;
    z-index: 1100;
    width: 235px;
    top: 170%;
    right: 192px;
    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);
}

.header-user-links-2 {
    position: absolute;
    z-index: 1100;
    width: 235px;
    top: 170%;
    right: 50px;
    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-user-links {
    top: 160%;
}

.header-user-links-wrapitem {
    max-height: 270px;
    overflow: auto;
}

.header-user-links-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;
}

.header-user-links-item i {
    font-size: 18px;
    margin-right: 10px;
}

/*[ Header cart ]
-----------------------------------------------------------
*/

.header-cart {
    position: absolute;
    z-index: 1100;
    width: 339px;
    top: 170%;
    right: -10px;
    padding: 15px;
    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-item-img {
    width: 80px;
    position: relative;
    margin-right: 20px;
    border: 1px solid #dbdbdb;
}

.header-cart-item-img img {
    width: 100%;
}

.header-cart-item-img:hover:after {
    cursor: pointer;
    opacity: 1;
}

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

.header-cart-item-txt {
    width: calc(100% - 100px);
}
.header-cart-item-txt-2 {
    width: calc(100%);
}

.header-cart-item-name {
    display: block;
    font-family: Montserrat-Regular;

    font-size: 14px;
    color: #555555;
    line-height: 1.0;
    margin-bottom: 10px;
}

.header-cart-item-info-2 {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 11px;
    color: #888888;
    margin-bottom:5px;
}


.header-cart-item-info {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 9px;
    color: #888888;
    margin-bottom:5px;
}
.header-cart-item-info-cant {
    display: block;
    font-family: Montserrat-Regular;
    font-size: 10px;
    color: #474747;
}
.header-cart-item-price {
    display: inline-block;
    font-family: Montserrat-Regular;
    font-size: 13px !important;
    color: #222222;
    line-height: 1.5;
}

.header-cart-total {
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: #555555;
    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: center;
    align-items: center;
}

.header-cart-wrapbtn {
    width: calc((100% - 30px) / 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: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: white;
    display: none;
}

/*[ Logo mobile ]
-----------------------------------------------------------*/

.logo-mobile {
    display: block;
}

.logo-mobile img {
    max-height: 50px;
}

/*[ 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);
    margin-top: 5px;
}

/*[ 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;
}

.header-icons-mobile .header-user-links {
    width: 210px;
    top: 100%;
    right: 100px;
    z-index: 1100;
    transform-origin: top center;
}

/*[ 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: #49575b;
}

.item-menu-mobile a {
    display: block;
}

.side-menu .main-menu>li>a {
    padding-left: 20px;
    font-family: Montserrat-Regular;
    font-size: 15px;
    color: white;
    line-height: 2.86;
}

.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-family: Montserrat-Regular;
    font-size: 13px;
    color: #333333;
    line-height: 2.5;
}

.side-menu .sub-menu>li {
    padding-left: 12px;
}

.side-menu .sub-menu a:hover {
    text-decoration: none;
    padding-left: 20px;
    color: #a9519a !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;
    background: #2e393c;
}

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

/*[ preloader ]
-----------------------------------------------------------
*/

div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: rgba(255, 255, 255, 0.7) url(/images/preload-e1bb6f52e1e37cf3361b2025b200c226.svg) no-repeat center center;
}

/*[ Page sidebar ]
-----------------------------------------------------------
*/

.container1-page {
    margin-left: 320px;
}

.hidden-lg {
    display: none;
}

@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;
    }
    .hidden-xs {
        display: none;
    }
    .hidden-lg {
        display: block;
    }
}

/*[ ordenar Mobile ]
///////////////////////////////////////////////////////////
*/

.ui-search-sort {
    font-weight: 300;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.ui-search-sort .order-list__item {
    padding: 24px 32px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    display: inline-block;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.ui-search-sort .order-list__item.selected {
    color: #a9519a;
}

/*[ filtros Mobile ]
///////////////////////////////////////////////////////////
*/

.topbar-filtro-mobile {
    background: #fff;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
}

.ui-search-toolbar__actions {
    -webkit-align-content: center;
    align-content: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    width: 100%;
    padding: 0 4px;
}

.topbar-filtro-mobile .ui-search-modal__link {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    font-size: 14px;
    height: 52px;
    -webkit-justify-content: center;
    justify-content: center;
    font-weight: 400;
    color: #3c4757;
}

.topbar-filtro-mobile .ui-search-modal__link i {
    margin-right: 10px;
}

/*[ Slide1 ]
///////////////////////////////////////////////////////////
*/

/*[ Slick1 ]
-----------------------------------------------------------
*/

.wrap-slick1 {
    position: relative;
}

.item-slick1 {
    height: 570px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

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

.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: 1100px) {
    .dad-week {
    	background-position: 50%;
    }
}

@media (max-width: 992px) {
    .wrap-content-slide1 .xl-text2 {
        font-size: 60px;
    }
    .dad-week {
    	background-position: 30%;
    }
}

@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;
    }
    .dad-week {
    	background-position: 30%;
    }
}

@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;
    }
    .dad-week {
    	background-position: 30%;
    }
}

@media (max-width: 414px) {
    .dad-week {
    	background-position: 25%;
    }
}

@media (max-width: 360px) {
    .dad-week {
    	background-position: 25%;
    }
}

/*[ rs1-slick1 ]
-----------------------------------------------------------
*/

.rs1-slick1 .item-slick1 {
    height: 100vh;
}

@media (max-width: 992px) {
    .rs1-slick1 .item-slick1 {
        height: calc(100vh - 85px);
    }
}

/*---------------------
  Hero Section
-----------------------*/

.hero-items .single-hero-items {
    height: 725px;
    padding-top: 210px;
}

.hero-items .single-hero-items span {
    color: #e7ab3c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 28px;
    display: inline-block;
    position: relative;
    top: 50px;
    opacity: 0;
}

.hero-items .single-hero-items h1 {
    color: #252525;
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 6px;
    position: relative;
    top: 50px;
    opacity: 0;
}

.hero-items .single-hero-items p {
    margin-bottom: 42px;
    position: relative;
    top: 100px;
    opacity: 0;
}

.hero-items .single-hero-items .primary-btn {
    position: relative;
    top: 100px;
    opacity: 0;
}

.hero-items .off-card {
    height: 154px;
    width: 154px;
    padding-top: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 140px;
    position: absolute;
    left: 47%;
    top: 160px;
    background: #e7ab3c;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
}

.hero-items .off-card:after {
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 2px dashed #ffffff;
    content: "";
    border-radius: 50%;
    z-index: -1;
}

.hero-items .off-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-items .off-card h2 span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 6px;
}

.hero-items .owl-item.active .single-hero-items span,
.hero-items .owl-item.active .single-hero-items h1,
.hero-items .owl-item.active .single-hero-items p,
.hero-items .owl-item.active .single-hero-items .primary-btn {
    top: 0;
    opacity: 1;
}

.hero-items .owl-item.active .single-hero-items span {
    -webkit-transition: all 0.2s ease 0.2s;
    -o-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
}

.hero-items .owl-item.active .single-hero-items h1 {
    -webkit-transition: all 0.4s ease 0.4s;
    -o-transition: all 0.4s ease 0.4s;
    transition: all 0.4s ease 0.4s;
}

.hero-items .owl-item.active .single-hero-items p {
    -webkit-transition: all 0.6s ease 0.6s;
    -o-transition: all 0.6s ease 0.6s;
    transition: all 0.6s ease 0.6s;
}

.hero-items .owl-item.active .single-hero-items .primary-btn {
    -webkit-transition: all 0.8s ease 0.8s;
    -o-transition: all 0.8s ease 0.8s;
    transition: all 0.8s ease 0.8s;
}

.hero-items .owl-item.active .single-hero-items .off-card {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 1s ease 1s;
    -o-transition: all 1s ease 1s;
    transition: all 1s ease 1s;
}

.hero-items .owl-nav button[type=button] {
    font-size: 30px;
    position: absolute;
    left: 40px;
    top: 45%;
    color: #252525;
}

.hero-items .owl-nav button[type=button]:hover {
    color: #dfad51;
}

.hero-items .owl-nav button[type=button].owl-next {
    left: auto;
    right: 40px;
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

/*[ Slide2 ]
///////////////////////////////////////////////////////////item-slick
*/

/*[ 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;
    }
}

/*[ Slick4 ]
-----------------------------------------------------------
*/

.wrap-slick4 {
    position: relative;
    margin-right: -15px;
    margin-left: -15px;
}

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

.arrow-slick4 {
    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-slick4:hover {
    color: #666666;
}

.next-slick4 {
    right: -30px;
}

.prev-slick4 {
    left: -30px;
}

@media (max-width: 1280px) {
    .next-slick4 {
        right: 0px;
    }
    .prev-slick4 {
        left: 0px;
    }
}

@media (max-width: 1610px) {
    .rs1-slick4 .next-slick4 {
        right: 0px;
    }
    .rs1-slick4 .prev-slick4 {
        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 {
    font-family: Montserrat-Regular;
    font-size: 15px;
    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.swal-button--confirm {
    background-color: #2e393c;
    color: white;
}

.swal-button.swal-button--confirm:hover {
	background-color: #a9519a;
    color: white;
}

.swal-button.swal-button--confirm:active {
	background-color: #a9519a;
    color: white;
}

.swal-button.swal-button--cancel {
    background-color: white;
    color: #2e393c;
    border: 1px solid #2e393c;
}

.swal-button.swal-button--cancel:hover {
	color: #a9519a;
    border: 1px solid #a9519a;
}

.swal-button.swal-button--cancel:active {
	color: #a9519a;
    border: 1px solid #a9519a;
}

.swal-title {
    font-family: Montserrat-Medium;
    color: #333333;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 15px;
}

.swal-text {
    font-family: Montserrat-Regular;
    color: #333333;
    font-size: 15px;
    text-align: center;
}

.swal-footer {
    margin-top: 0;
}

/*[ Datos envios - beneficios ]
///////////////////////////////////////////////////////////
*/

.benefit-items {
    border: 1px solid #ebebeb;
    margin-top: 45px;
}

.benefit-items .single-benefit {
    padding-top: 30px;
    padding-bottom: 25px;
    padding-left: 30px;
    padding-right: 30px;
    border-right: 1px solid #F3F4F0;
}

.benefit-items .single-benefit .sb-icon {
    float: left;
    margin-right: 20px;
}

.benefit-items .single-benefit .sb-text {
    display: table;
}

.benefit-items .single-benefit .sb-text h6 {
    color: #252525;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.benefit-items .single-benefit .sb-text p {
    margin-bottom: 0;
    color: #252525;
    line-height: 20px;
}

/*[ 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-txt{ padding:10px;}

.block2-txt:hover{
    background:#dbdbdb!important;
    border-radius: 3px;
   
}

.block2-labelagotado::after {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 22px;
    border-radius: 5px;
    position: absolute;
    bottom: 5px;
    left: 12px;
}
.block2-labelconsultar::after {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 22px;
    border-radius: 5px;
    position: absolute;
    bottom: 5px;
    left: 12px;
}
.block2-labelsale::before,
.block2-labelnew::before {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 11px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.block2-labelsale {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 11px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    top: 12px;
    left: 12px;
}

.block2-labelsale {
    background-color: #e65540;
}

.block2-labelnew::before {
    background-color: #66a8a6;
    content: 'Nuevo';
}

.block2-labelagotado::after {
    background-color: #7e7e7e;
    content: 'Agotado';
}

.block1-labelagotado {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
    display: inline-block;
    width: 150px;
    height: 22px;
    border-radius: 5px;
    background-color: #7e7e7e;
    text-align: center;
    line-height: 22px;
}

.block1-labelagotado::after {
    content: 'Agotado';
}

.block2-labelconsultar::after {
    background-color: #2a3a58;
    content: 'Consultar';
}

.block1-labelconsultar {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 13px;
    color: white;
    display: inline-block;
    width: 150px;
    height: 22px;
    border-radius: 5px;

    text-align: center;
    line-height: 22px;
}

.block1-labelconsultar::after {
    content: 'Consultar';
}

.block2-material {
    font-size: 13px;
    color: #999;
}

.block2-oldprice {
    text-decoration: line-through;
    margin-right: 10px;
}

.block2-newprice {
    color: #e65540;
}

.block2-labelsale-header-cart {
    z-index: 100;
    font-family: Montserrat-Regular;
    font-size: 11px;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 22px;
    border-radius: 11px;
    position: absolute;
    top: -4px;
    left: 29px;
}

.block2-labelsale-header-cart {
    background-color: #e65540;
}

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

.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-addcartfav {
    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;
    display: flex;
    align-items: flex-start;
}
/* ------------------------------------ */

.detail-btn-towishlist,
.detail-btn-addwishlist {
    display: block;
    position: absolute;
    top: 6px;
    right: 20px;
    font-size: 20px;
    color: #222;
    line-height: 0;
}

.detail-btn-addwishlist:hover {
    color: #222;
}

.detail-btn-addwishlist:hover .icon_heart_alt {
    display: none;
}

.detail-btn-addwishlist:hover .icon_heart {
    display: block;
}

.detail-btn-towishlist .icon_heart_alt {
    display: none;
}

.detail-btn-towishlist .icon_heart {
    display: block;
    color: #a9519a;
}

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

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

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

.block2-overlay:hover {
    opacity: 1;
}

.block2-overlay:hover .block2-btn-addcart {
    bottom: 20px;
}
.block2-overlay:hover .block2-btn-addcartfav {
    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);
}

/*[ customer comments ]
///////////////////////////////////////////////////////////
*/

.customer-review-option .comment-option .co-item {
    margin-bottom: 20px;
}

.customer-review-option .comment-option .co-item .avatar-pic {
    float: left;
    margin-right: 20px;
}

.customer-review-option .comment-option .co-item .avatar-pic img {
    height: 63px;
    width: 63px;
    border-radius: 50%;
}

.customer-review-option .comment-option .co-item .avatar-text {
    display: table;
}

.customer-review-option .comment-option .co-item .avatar-text h5 span {
    color: #b2b2b2;
    font-size: 12px;
    font-weight: 400;
    margin-left: 22px;
    position: relative;
}

.customer-review-option .comment-option .co-item .avatar-text h5 span:before {
    position: absolute;
    left: -18px;
    top: -5px;
    content: "-";
    font-size: 18px;
    color: #b2b2b2;
}

/*[ Varios ]
///////////////////////////////////////////////////////////
*/

/*[ 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;
}

/*[ list calculadora ]
///////////////////////////////////////////////////////////
*/

.list-row {
    border: 1px solid #dbdbdb;
    padding: 15px;
}

/*[ Pagination ]
///////////////////////////////////////////////////////////
*/

.pagination {
    margin-right: -6px;
    margin-left: -6px;
}

.item-pagination {
    font-family: Montserrat-Regular;
    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;
}

.table-shopping-cart {
    border-collapse: collapse;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
}

.table-shopping-cart .table-row {
    padding: 10px 15px;
    border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

.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-family: Montserrat-Regular;
    color: #555555;
    line-height: 1.5;
    padding-top: 15px;
    padding-bottom: 15px;
}

.table-shopping-cart .table-row .column-2 {
    font-size: 15px;
}

/* -------------Productos----------------------- */

/* rating*/
.pd-rating.nocal i {
    font-size: 12px;
    display: inline-block;
    color: rgb(173, 173, 173)!important;
    margin-right: -3px;
}
.pd-rating i {
    font-size: 12px;
    display: inline-block;
    color: #FAC451;
    margin-right: -3px;
}

/*----*/

.cart-img-product img {
    width: 90px;
}

.purchase-img-product img {
    width: 70px;
}

/*[ Tags ]
///////////////////////////////////////////////////////////
*/

.wrap-tags {
    margin-right: -3px;
    margin-left: -3px;
}

.tag-item {
    display: block;
    font-family: Montserrat-Regular;
    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 #a9519a;
}

/*[ 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-family: Montserrat-Regular;
    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 ]
///////////////////////////////////////////////////////////
*/

/* -----------MODALES------------------------- */

.modal-mobile {
    height: 100% !important;
}

.modal-mobile .modal-dialog {
    max-width: 100%;
    max-height: 100%;
    margin: 0px;
}

.modal-mobile .modal-content {
    border-radius: 0px !important;
    border: 0px;
}

/*[ Input NumProduct ]
///////////////////////////////////////////////////////////
*/

input.num-product {
    -moz-appearance: textfield;
    appearance: textfield;
    -webkit-appearance: textfield;
}

input.num-product::-webkit-outer-spin-button,
input.num-product::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* productos home*/

/*---------------------
  Más vendidos
-----------------------*/

.trend {
    padding-top: 80px;
    padding-bottom: 50px;
}

.trend__content .section-title h4 {
    font-size: 20px;
}

.trend__content .section-title h4:after {
    bottom: -6px;
}

.trend__item {
    overflow: hidden;
    margin-bottom: 35px;
}

.trend__item__pic {
    float: left;
    margin-right: 25px;
}

.trend__item__pic img {
    width: 110px;
    height: 110px;
    object-fit: cover;
}

.trend__item__text {
    overflow: hidden;
}

.trend__item__text h6 {
    font-size: 14px;
    color: #111111;
    margin-bottom: 5px;
}

.trend__item__text .rating {
    line-height: 18px;
    margin-bottom: 6px;
}

.trend__item__text .rating i {
    font-size: 10px;
    color: #e3c01c;
    margin-right: -4px;
}

.trend__item__text .rating i:last-child {
    margin-right: 0;
}

.trend__item__text .product__price {
    color: #111111;
    font-weight: 600;
}

.trend__item__text .product__price span {
    font-size: 14px;
    color: #b1b0b0;
    text-decoration: line-through;
    margin-left: 4px;
}

/*---------------------
  Discount
-----------------------*/

.discount__pic img {
    min-width: 100%;
    height: 100%;
}

.discount__text {
    background: #f4f4f4;
    height: 390px;
    padding: 75px 90px 50px;
    text-align: center;
}

.discount__text a {
    font-size: 14px;
    color: #111111;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding: 0 0 3px;
    display: inline-block;
}

.discount__text a:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #ca1515;
    content: "";
}

.discount__text__title {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.discount__text__title:after {
    position: absolute;
    left: 50%;
    top: -38px;
    height: 183px;
    width: 183px;
    background: #ffffff;
    content: "";
    border-radius: 50%;
    z-index: -1;
    margin-left: -91.5px;
}

.discount__text__title span {
    font-size: 12px;
    color: #111111;
    font-weight: 500;
    text-transform: uppercase;
}

.discount__text__title h2 {
    font-size: 45px;
    color: #0d3b77;
    font-family: 'Dancing Script', cursive;
    line-height: 46px;
    margin-bottom: 10px;
}

.discount__text__title h5 {
    color: #ca1515;
    font-weight: 700;
}

.discount__text__title h5 span {
    font-size: 14px;
    color: #111111;
    margin-right: 4px;
}

.discount__countdown {
    text-align: center;
    margin-bottom: 10px;
}

.countdown__item {
    margin-bottom: 15px;
    float: left;
    width: 25%;
}

.countdown__item:last-child {
    margin-right: 0;
}

.countdown__item span {
    font-size: 30px;
    font-weight: 600;
    color: #111111;
    display: inline-block;
}

.countdown__item p {
    color: #111111;
    margin-bottom: 0;
    display: inline-block;
    font-weight: 500;
}

/*---------------------
  Contacto
-----------------------*/

.contact {
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact__address {
    margin-bottom: 45px;
}

.contact__address h5 {
    color: #111111;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact__address ul li {
    list-style: none;
    position: relative;
    margin-bottom: 20px;
}

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

.contact__address ul li h6 {
    color: #111111;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact__address ul li h6 i {
    font-size: 16px;
    color: #a9519a;
    margin-right: 5px;
}

.contact__address ul li p {
    margin-bottom: 0;
    font-size: 15px;
    color: #444444;
}

.contact__address ul li span {
    font-size: 15px;
    color: #444444;
    display: inline-block;
    margin-right: 25px;
    position: relative;
}

.contact__address ul li span:after {
    position: absolute;
    right: -15px;
    top: 11px;
    content: "|";
    line-height: 0;
}

.contact__address ul li span:last-child {
    margin-right: 0;
}

.contact__address ul li span:last-child:after {
    display: none;
}

.contact__form h5 {
    color: #111111;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
}

 .container-fluid-90 {
	width: 90%!important;
 }
 
  .container-fluid-70 {
	width: 70%!important;
 }
 
 .container-fluid-90-g {
	width: calc(90% - 26px)!important;
 }
 
.is-valid {
    border-color: rgb(230, 230, 230)!important;
}