@charset "UTF-8";
/* =================================
------------------------------------
  Bootstrap: 4.0.0
  Font Awesome: 4.7.0
 ------------------------------------
 ====================================*/
@import url("/css/bootstrap.min.css");
@import url("/css/font-awesome.min.css");


/* Google Font Import - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* FontWesome*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.1/font/bootstrap-icons.css");


/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

:root {
    --color-primary: #ff2600;
    --color-secondary: #ff6b71;
    --body-color: #f6f6f6;
    --header-color: #ffffff;
    --color-white: #ffffff;
    --color-link: #ff6b71;
    --color-h2: #871924;
    --border-bottom: #dddbdb;
    --color-buttom: #ff6b71;
    --form-focus: #f1c5c5;
    --color-icons: #585757;
    --color-black: #333333;
    --color-link-top: #615b5b;
    --color-footer: #f7f6f6;
    --color-marquee: #ededed;
    --color-date: #777777;
    --color-p: #535353;
    --white-color: #ffffff;
    --white-color-alt: hsl(12, 14%, 93%);
}

/* Styles Scrollbar*/
::-webkit-scrollbar {
    width: 8px;
    height: 5px;
    display: none;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

::-webkit-scrollbar-track {
    background: #fff;
    border: #e3e0e0 solid 1px;
}

::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Styles All*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: var(--white-color) !important;
    height: 100%;
    font-family: 'Poppins', sans-serif !important;
    transition: background-color .3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222222;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

h1 {
    font-size: 40px;
    margin-bottom: 40px;
}

h1 span {
    background: var(--color-primary);
    padding: 0 10px;
    color: #222222;
    display: inline-block;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

h4 {
    font-size: 15px;
}

p {
    font-size: 16px;
    /*color: #6c757d;*/
    line-height: 2;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a {
    color: inherit;
    text-decoration: none !important;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: inherit;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

.cadastre-se {
    display: none
}

@media (max-width: 748px) {
    .cadastre-se {
        display: inline-block
    }
}

/*--------------------------
ERROR 404
---------------------------*/
.bg-error {
    width: 100%;
    height: 100vh;
    background-image: url("./assets/img/banners/9.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.error404 {
    text-align: left;
    left: 0;
    font-size: 20em;
    color: var(--color-black);
}

.error404 h1 {
    border: solid 2px #fff;
}

.error404 p {
    left: 0;
    text-align: left;
    background-color: var(--color-primary);
}

@media (max-width: 600px) {
    .error404 {
        font-size: 150px;
        width: 100%;
    }

    .error404,
    .error404 h2,
    .error404 p {
        text-align: center !important;
    }
}


/*------------------------
  Helper css
--------------------------*/
.sp-title {
    font-size: 60px;
    margin-bottom: 40px;
}

.sp-title span {
    background: var(--color-primary);
    padding: 5px 10px;
    color: #fff;
    display: inline-block;
    margin-top: 5px;
}

.pt100 {
    padding-top: 100px;
}

.pb100 {
    padding-bottom: 100px;
}

.pt50 {
    padding-top: 50px;
}

.pb50 {
    padding-bottom: 50px;
}

.mb100 {
    margin-bottom: 100px;
}

.spad {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 75px;
    text-align: center !important;
    padding: 0px !important;
}

.section-title h1,
.section-title h2 {
    display: inline-block;
    /*background: var(--color-primary);*/
    padding: 0 20px;
    margin-bottom: 0;
    font-size: 40px;
    text-align: center;
}

.set-bg {
    background-image: url("./assets/img/banners/banner4.png");
    background-size: cover;
    background-repeat: no-repeat;
}

/*------------------------*/
/*Checkbox
/*-------------------------*/
input[type=checkbox] {
    height: 0;
    width: 0;
    visibility: hidden;
}

.form-check-label {
    cursor: pointer;
    text-indent: -9999px;
    width: 50px;
    height: 25px;
    background: #ddd;
    display: block;
    border-radius: 25px;
    position: relative;
}

.form-check-label:after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.form-check-input:checked+.form-check-label {
    background: #63c76a;
}

.form-check-input:checked+.form-check-label:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.form-check-label:active:after {
    width: 60px;
}


/*------------------------
  Common element css
--------------------------*/
/*=== Preloder ===*/
#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
}

.loader {
    width: 30px;
    height: 30px;
    border: 3px solid #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    border-left-color: transparent;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.site-btn {
    display: inline-block;
    font-weight: 700;
    border: 4px solid;
    min-width: 200px;
    text-align: center;
    padding: 19px 0;
    position: relative;
    background-color: transparent;
    margin-right: 15px;
    z-index: 1;
}

.site-btn:after,
.site-btn:before {
    position: absolute;
    content: "";
    width: 26px;
    height: 4px;
    right: -15px;
}

.site-btn:after {
    bottom: 8px;
}

.site-btn:before {
    bottom: 18px;
}

.site-btn.sb-light {
    color: #fff;
}

.site-btn.sb-light:after,
.site-btn.sb-light:before {
    background: #fff;
}

.site-btn.sb-dark {
    color: #222222;
}

.site-btn.sb-dark:after,
.site-btn.sb-dark:before {
    background: #222222;
}

.site-btn.sb-solid-color {
    background: #baff00;
    border-color: #baff00;
}

.site-btn.sb-solid-color:after,
.site-btn.sb-solid-color:before {
    background: #222222;
}

.site-btn.sb-solid-dark {
    background: #222;
    border-color: #222;
    color: #baff00;
}

.site-btn.sb-solid-dark:after,
.site-btn.sb-solid-dark:before {
    background: #baff00;
}

.element {
    margin-bottom: 100px;
}

/*===  Accordion ===*/
.accordion-area .panel {
    margin-bottom: 15px;
}

.accordion-area .panel-header {
    background: #f0f0f0;
    display: block;
    padding: 12px 50px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-header.active {
    background: #baff00;
}

.accordion-area .panel-header.active .panel-link:after {
    content: "-";
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
    content: "+";
}

.accordion-area .panel-link {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #baff00;
    border: none;
    cursor: pointer;
}

.accordion-area .panel-body p {
    font-size: 14px;
    margin-bottom: 0;
    padding-top: 25px;
}

.accordion-area .panel-body {
    padding: 0 5px;
}

.accordion-area .panel-link:after {
    content: "+";
    position: absolute;
    left: 50%;
    font-size: 16px;
    font-weight: 700;
    top: 50%;
    line-height: 16px;
    margin-top: -8px;
    margin-left: -4px;
}

/*===  Tab  ===*/
.tab-element .nav-tabs {
    border-bottom: none;
    margin-bottom: 35px;
}

.tab-element .nav-tabs .nav-link {
    border: none;
    background: #f0f0f0;
    border-radius: 0;
    margin-right: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    padding: 15px 30px;
}

.tab-element .nav-tabs .nav-link.active {
    background: #baff00;
}

.tab-element .nav-tabs .nav-link.active,
.tab-element .nav-tabs .nav-link:hover {
    border: none;
}

.tab-element .tab-pane h4 {
    font-size: 18px;
    margin: 25px 0 20px;
}

.tab-element .tab-pane p {
    font-size: 14px;
}

/*===  Loader ===*/
.circle-progress {
    text-align: center;
    padding-top: 30px;
    display: inline-block;
}

.circle-progress .prog-circle {
    position: relative;
    margin-bottom: -155px;
}

.circle-progress .prog-circle:after {
    position: absolute;
    content: "";
    width: 177px;
    height: 177px;
    left: 9px;
    top: 9px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 1;
}

.circle-progress canvas {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.circle-progress .progress-info {
    width: 100%;
    border-radius: 150px;
    margin: 0 auto;
    padding-top: 22px;
}

.circle-progress .progress-info h2 {
    font-size: 48px;
}

.circle-progress .prog-title {
    text-align: center;
    margin-top: 100px;
}

.circle-progress .prog-title h3 {
    font-size: 18px;
    color: #727272;
}

.img-popup-warp .mfp-content {
    opacity: 0;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.img-popup-warp.mfp-ready .mfp-content {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


/*----------------------------------------*/
/*  Header CSS
/*----------------------------------------*/
.header-area {
    position: relative;
    width: 100%;
    height: 99px;
    top: 0;
    z-index: 9999;
    background: #121212;
}

.logo-area {
    float: left;
    display: inline-block;
    justify-content: center;
    align-items: center;
    /*background: #121212;*/
    margin-top: 5px;
    height: 10vh;
}

.logo-area img {
    width: 70%;
    height: auto;
    padding: 0 2em 0 2em;
}

.cart-item {
    /*float: right;*/
    margin-top: 20px;
    display: block;
    padding: 5px 5px;
    margin-right: 50px;
    /* width: 130px; */
    /*height: 90px; */
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}


@media (max-width: 748px) {
    .cart-item {
        padding: 0;
        margin-top: -88px;
        margin-right: -35px;
    }
}

.cart-item .badge,
.wishlist-item .badge {
    background-color: var(--color-primary);
    border-radius: 100%;
    width: 25px !important;
    height: 25px !important;
    margin-top: -50px;
    margin-left: 45px;
    font-size: 14px;
    display: flex;
    /* align-content: center; */
    align-items: center;
    justify-content: center;
}


.phone-number {
    float: right;
    display: inline-block;
    padding: 5px 10px;
    background: #ff2600;
    box-shadow: 5px 5px 1px #fff;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-right: 50px;
    cursor: pointer;
    transition: .3s;
}

.phone-number:hover {
    background: #ffffff;
    color: #000;
    box-shadow: 5px 5px 1px #ff2600;
}

.nav-switch {
    display: none;
}

.nav-menu {
    display: flex;
    float: right;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu ul li {
    display: inline;
}

.nav-menu ul li a {
    display: inline-block;
    padding: 30px 10px 5px;
    text-transform: uppercase;
    margin-right: 30px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    position: relative;
}

.nav-menu ul li a:hover {
    border-bottom: solid 2px #fff;
}

.nav-menu ul li a:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 0;
    left: 50%;
    margin-left: 1px;
    top: 0;
    background: #ff2600;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.nav-menu ul li a:hover:after {
    height: 25px;
}

.nav-menu ul li.active>a:after {
    height: 25px;
}


@media (min-width: 770px) and (max-width: 1460px) {
    .nav-menu {
        /*margin-top: -73px;*/
        left: -85px;
    }

}

/*---------------------------------------*/
/*  Hero Section CSS
/*----------------------------------------*/
.hero-section {
    margin-top: 60px;
    width: 100%;
    height: 100%;
    background: #ededed;
    position: relative;
}

@media (max-width: 748px) {
    .hero-section {
        margin-top: 90px;
    }
}

.left-bar {
    position: absolute;
    width: 100px;
    height: 100%;
    background: #121212;
    z-index: 20;
}

.left-bar .left-bar-content {
    position: absolute;
    width: 100%;
    bottom: 30%;
    text-align: center;
    margin-bottom: 90px;
}

.top-phone-number {
    position: absolute;
    right: 0;
    display: inline-block;
    padding: 10px 20px;
    background: #ff2600;
    box-shadow: 8px 8px 1px #fff;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: -4em;
    margin-right: 0px;
    cursor: pointer;
    transition: .3s;
    transform: rotate(-360deg);
    transform-origin: right center;
    z-index: 99;
}

.top-phone-number:hover {
    background: #ffffff;
    color: #000;
    box-shadow: 8px 8px 1px #ff2600;
}

.top-phone-number a {
    text-transform: uppercase;
    text-wrap: nowrap;
}

.social-links a {
    display: block;
    color: #838383;
    margin-bottom: 20px;
    font-size: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.social-links a:hover {
    color: var(--color-white);
}

.hero-right-text {
    position: absolute;
    right: 140px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    bottom: 70%;
    z-index: 30;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 15px;
}

.card-cart {
    background-color: #ffffff;
    box-shadow: 1px 1px 5px #ccc;
    border-radius: 25px;
}

.summary-item {
    background-color: #f6f6f6;
    height: 130px;
    width: 100%;
}

.summary-item-subtotal {
    display: flex;
    text-align: right;
    font-size: 18px;
    color: #ff2600;
    font-weight: 600;
}

.summary-item-subtotal span {
    color: green;
    margin: 5px;
}

/*----------------------------------------*/
/* Carousel
/*---------------------------------------*/

.carousel {
    position: relative;
}

.carousel.pointer-event {
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    background: #ff2600;
    color: #fff;
}


/*-------------------------------------*/
/*Navbar
/*-------------------------------------*/
/*Efeito Hamburguer Navbar*/
.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 5px;
    width: 30px;
    height: 35px;
    outline: none;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
    background: var(--black-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 5px;
    left: 5px;
    background: var(--black-color);
    width: 30px;
    height: 2px;
    content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
}

/*-------------------------------------*/
/* Banner
/*-------------------------------------*/
/*.hero-slider {
	margin-top: 80px;
}*/

.hero-slider .hero-slide-item {
    width: 100%;
    height: 100%;
    display: table;
}

.hero-slider .hero-slide-item .slide-inner {
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

.hero-slider .owl-nav {
    position: absolute;
    display: inline-block;
    left: 350px;
    bottom: 70px;
}

.hero-slider .owl-nav .owl-prev,
.hero-slider .owl-nav .owl-next {
    display: inline-block;
    margin-right: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.hero-slider .owl-nav .owl-prev:hover,
.hero-slider .owl-nav .owl-next:hover {
    color: var(--color-primary);
}

.hero-slider .owl-nav .owl-prev i {
    margin-right: 5px;
}

.hero-slider .owl-nav .owl-next {
    margin-right: 0px;
}

.hero-slider .owl-nav .owl-next i {
    margin-left: 5px;
}

.slide-num-holder {
    width: 153px;
    height: 250px;
    position: absolute;
    right: 60px;
    background: rgba(18, 18, 18, 0.95);
    bottom: 0px;
    z-index: 111;
    text-align: right;
    padding-right: 20px;
    padding-top: 60px;
    color: #fff;
    font-weight: 700;
}

.slide-num-holder span {
    font-size: 48px;
    color: var(--color-primary);
    position: relative;
    top: -10px;
    right: -10px;
    z-index: 99;
}

.slide-content {
    position: absolute;
    max-width: 690px;
    margin-left: 350px;
    margin-bottom: 50px;
    padding-left: 190px;
    padding-top: 0px;
    padding-bottom: 70px;
    opacity: 0;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
}

.slide-content:after {
    position: absolute;
    content: "";
    height: calc(100% + 50px);
    width: 330px;
    border-top: 150px solid #333;
    border-left: 150px solid #333;
    border-bottom: 90px solid #333;
    top: 0;
    left: 0;
    opacity: 0.73;
}

.slide-content h2 {
    color: #fff;
    font-size: 80px;
    line-height: 80px;
}

.owl-item.active .slide-content {
    opacity: 1;
}

.name-index {
    color: #fff;
    font-size: 12px;
    width: 100%;
}

.out-of-stock {
    background-color: #ed1b24;
    display: inline-block;
    font-size: 11px;
    color: #fff;
    right: 20px;
    top: 20px;
    padding: 1px 16px;
    font-weight: 700;
    border-radius: 0;
    text-align: center;
    position: absolute;
    text-transform: uppercase;
    border-radius: 30px;
    height: 26px;
    line-height: 24px;
    z-index: 999;
}

/*---------------------------------------*/
/* -------- PRODUCT SECTION ----------- */
/*---------------------------------------*/
.section-3 {
    display: grid;
    place-items: center;
    justify-content: space-around;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 400px));
    padding: 0;
    margin: 2em;
}

.dente-icon {
    color: var(--color-primary);
    font-size: 70px;
    align-items: center;
    justify-content: center;
    margin: 15px 0px;
}

.product {
    cursor: pointer;
    background-color: var(--white-color-alt);
    position: relative;
    transition: .3s;
}

/*.service:hover {
	background-color: transparent;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 15px solid var(--color-primary);
	box-shadow: 15px 15px 1px var(--color-black);
	transition: .5s;
}*/

.product:before {
    content: "";
    /*background-image: linear-gradient(to bottom,
			hsla(29, 72%, 83%, 0.438),
			hsla(9, 91%, 70%, 0.336));*/
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 15px solid var(--color-black);
    box-shadow: 15px 15px 1px var(--color-primary);
    transition: .5s;
}

.product_add_cart {
    color: var(--white-color-alt);
    font-size: 1.2rem;
    background-color: hsl(9, 86%, 48%);
    padding: 1rem 0.4rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 300ms, color 300ms, box-shadow 300ms;
}

.product_add_cart:hover {
    color: var(--white-color);
    box-shadow: 0 1rem 0 -0.5rem hsl(17, 79%, 65%, 0.7),
        0 2rem 0 -1rem hsla(17, 79%, 65%, 0.65);
}

.page-produto {
    padding-top: 35px;
    padding-bottom: 75px;
    background-color: #ccc;
}

.image-product {
    overflow: hidden;
}

.image-product img {
    width: 100%;
    height: auto;
    transition: .5s;
}

.image-product:hover img {
    transform: scale(1.1);
}

.box-detalis {
    background-color: #f6f6f6;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: 400px;
}

.box-detalis h3 {
    padding: 20px;
}

.nav-pills {
    border: 2px solid #e74c3c;
    margin: 5px;
    padding: 10px 15px;
}


.btn-prod {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 30px;
    width: 100%;
}

.btn-prod .btn {
    width: 60%;
    height: 38px;
}

.description-prod {
    height: 140px;
    margin: 1em;
}

/*----------------------------------------*/
/*  Client Section CSS
/*----------------------------------------*/
.client-slider .single-brand {
    display: table;
    height: 80px;
    width: 100%;
}

.client-slider .single-brand a {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.client-slider .single-brand a img {
    width: auto;
    margin: 0 auto;
    opacity: 0.2;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.client-slider .single-brand a:hover img {
    opacity: 1;
}

/*--------------------------------------*/
/* Casos Clínicos
/*--------------------------------------*/
.casos-clinicos {
    display: flex;
    flex-direction: row;
    margin-left: 0px;
    margin-right: 0px;
}

.casos-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 1em;
}

@media (max-width: 746px) {
    .casos-container {
        width: 100%;
        margin: 1em;
        flex-direction: column;
    }

    .casos {
        margin: 15px 0px !important;
    }
}

.casos {
    background-color: #f6f6f6;
    align-items: center;
    width: 100%;
    padding: 30px;
    margin: 30px;
    text-align: center;
    font-size: 25px;
}

/*---------------------------------*/
/* Buttons
/*---------------------------------*/
.btnSubmit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    width: 30%;
    color: var(--color-white);
    background-color: var(--color-primary);
    border: none !important;
    border-radius: 10px;
    padding: 2%;
    margin-top: 2em;
    transition: .3s;
    cursor: pointer;
}

.btnSubmit:hover {
    background-color: #333333;
    color: white;
    box-shadow: 5px 5px 1px var(--color-primary);
}

.btnSubmitCotacao {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    width: 30%;
    color: var(--color-white);
    background-color: var(--color-black);
    border: none !important;
    border-radius: 10px;
    padding: 2%;
    margin-top: 2em;
    transition: .3s;
    cursor: pointer;
}

.btnSubmitCotacao:hover {
    background-color: var(--color-primary);
    color: white;
    box-shadow: 5px 5px 1px var(--color-black);
}

.btnForgetPwd {
    text-align: center;
    margin-top: 15px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

.btnForgetPwd:hover {
    margin-top: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--color-link);
}

/**************************\
	Demo Animation Style
  \**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal-overlay {
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal-container {
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal-container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
    will-change: transform;
}

/*---------------------------------------*/
/* LOGIN
/*---------------------------------------*/
.login-page {
    background: #f6f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    height: 100%;
    margin: 150px 50px;
    top: 60px;
}

.button {
    border-radius: 20px;
    border: 1px solid #ff2600;
    background-color: #ff2600;
    color: #FFFFFF !important;
    font-size: 12px;
    font-weight: bold;
    /*padding: 12px 45px;*/
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

.button:hover {
    background-color: #000;
    border: 1px solid #fff;
    transition: .3s;
}

.button:active {
    transform: scale(0.95);
}

.button:focus {
    outline: none;
}

.button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

.button.ghost:hover {
    background-color: #000;
}

.login-page form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px 15px;
    height: 100%;
    text-align: center;
}

.login .pass {
    position: relative;
    /*margin: 8px;*/
}

.login .pass i {
    position: absolute;
    cursor: pointer;
    color: #7a7979 !important;
    font-size: 30px;
    left: 85%;
    top: 35px;
}

.login-page input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

.login {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    /*width: 968px;*/
    width: 100%;
    max-width: 100%;
    height: 750px;
    min-height: 100%;
    padding: 3em;
}

.login .ml55 {
    margin-left: -55%;
}

@media (max-width: 748px) {
    .login {
        margin-left: 0px !important;
    }

    .login .ml55 {
        margin-left: 0 !important;
    }

    .login h1 {
        font-size: 36px;
        margin-bottom: -5px;
    }

    .login .sign-in-container {
        width: 100%;
    }

    .overlay {
        display: flex;
        flex-direction: column;
    }

    .overlay-container {
        display: none;
    }
}

.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
    left: 0;

}

.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

.login.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

.sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

.login.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

@keyframes show {

    0%,
    49.99% {
        opacity: 0;
        z-index: 1;
    }

    50%,
    100% {
        opacity: 1;
        z-index: 5;
    }
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
}

.login.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

.overlay {
    background: #ff2600;
    /*background: -webkit-linear-gradient(to right, #ff2600, #f39292);
	background: linear-gradient(to right, #ff2600, #f39292);*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF !important;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}


.login-selection {
    text-align: left;
    width: 150px;
    height: 40px;
    padding: 5px;
    border: solid 1px #ccc;
    border-radius: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.overlay-right h1,
.overlay-right p,
.overlay-left h1,
.overlay-left p {
    color: #FFFFFF;
}

.login.right-panel-active .overlay {
    transform: translateX(50%);
}

.overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

.overlay-left {
    transform: translateX(0);
}

.login .right-panel-active .overlay-left {
    transform: translateX(0);
}

.overlay-right {
    right: 0;
    transform: translateX(0);
}

.login .right-panel-active .overlay-right {
    transform: translateX(20%);
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

.mobile {
    display: none;
}

@media (max-width: 748px) {
    .mobile {
        display: inline-block;
    }
}

/*---------------------------------------
			REGISTRO
-----------------------------------------*/
#regForm {
    background-color: #ffffff;
    padding: 1em;
}


/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

#prevBtn {
    background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #04AA6D;
}

/*---------------------------------------
                BANNER
---------------------------------------*/
.carousel-caption,
.carousel {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-item {
    width: 100%;
    height: 100%;
    display: table;
}

.carousel-item img {
    width: 100%;
    height: 100%;
}

.carousel__prev,
.carousel__netx,
.carousel-control-prev,
.carousel-control-next {
    width: 15% !important;
}

.carousel__prev .carousel__icon,
.carousel__next .carousel__icon,

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem !important;
    height: 3rem !important;
    background-color: var(--color-primary);
    color: white;
    border: 10px solid var(--color-primary);
    border-radius: 3rem !important;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/*----------------------------------------*/
/*  Intro Section CSS
/*----------------------------------------*/
.intro-text p {
    margin-bottom: 50px;
}

/*----------------------------------------*/
/*ServiceController Section
/*----------------------------------------*/
.advanced-feature-item {
    height: 100%;
    transition: .5s;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.advanced-feature-item:hover {
    box-shadow: 15px 15px 1px var(--color-primary);
}

.advanced-feature-item i {
    color: #121212;
}

/*----------------------------------------*/
/*  ServiceController Section CSS
/*----------------------------------------*/
.service-item {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-icon {
    position: relative;
    margin: -60px 0 25px 0;
    font-size: 60px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    background: #FFFFFF;
    border-radius: 100px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--color-secondary);
}

.service-item .text-caso {
    padding: 0px 15px 0px;
}

.service-item .btn-caso {
    text-align: center;
    margin: 25px;
    padding: 0px 5px;
}

.fw-medium {
    font-weight: 500 !important;
}

/*-----------------------------------------*/
/* CheckOut Mult Stap
/*-----------------------------------------*/
.steep {
    background-color: #f1f5f9;
    margin: 1px 2px;
    max-width: auto;
    box-shadow: xl;
    border-radius: 2px 50px;
    padding-bottom: 2px;
    background-color: white;
}

.text-grey-400 {
    color: rgb(156 163 175);
}

.text-grey-900 {
    color: rgb(17 24 39);
}

.w-full {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: -webkit-center;
}

.w-flex {
    display: flex;
    align-items: center;
}

/*.completed {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: teal;
	font-weight: 600;
}*/

.completed-on {
    background: green;

    border-radius: 100%;
    transition: 500s ease-in-out;
    border: solid 2px #ccc;
    height: 12px;
    width: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.completed-of {
    background: green;
    color: #ffffff;
    font-weight: bold;
    border: solid green 1px;
}

/*.description {
    position: absolute;
    top: 0;
    text-align: center;
    margin-top: 16px;
    width: 32px;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;

}*/

.text-span {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.completed-2 {
    flex: 1 1 auto;
    border-top-width: 2px;
    transition-property: color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 500ms ease-in-out;
}

.border-green-600 {
    Background: rgb(22 163 74) !important;
}

.border-gray-300 {
    background: rgb(134 239 172);
}

.border-gray-300 {
    border-color: rgb(134 239 172);
}

.mx-2 {
    margin-left: 1rem;
    margin-right: 1rem;
    justify-content: space-between;
    align-items: center;
    display: flex;
    padding: 1rem;

}

.rounded-full {
    background: var(--color-primary);
    color: #fff;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-controle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    padding: 25px;
    width: 20%;
}

.cursor-pointer {
    cursor: pointer;
}

/*----------------------------------------*/
/*  CTA Section CSS
/*----------------------------------------*/
.cta-section {
    position: relative;
    margin-bottom: 100px;
}

.cta-section:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    right: 30px;
    top: 0;
    border-radius: 200px 0px;
    background: #333;
    z-index: 0;
}

.cta-section .cta-image-box {
    position: absolute;
    /*border: solid 35px var(--color-primary);*/
    left: 18%;
    top: 60%;
    background-image: url("/img/products/6.webp");
    background-repeat: no-repeat;
    background-size: cover;
    /*box-shadow: 35px 35px 1px #222222;*/
    /*transition: .3s;*/
    width: 35%;
    height: 580px;
    transform: translate(-50%, -50%);
    /*transform-style: preserve-3d;
    transform: translate(-50%, -50%) perspective(600px) rotateY(20deg) rotateX(10deg);*/
}

.cta-section .container {
    position: relative;
    z-index: 9;
}

.cta-section .cta-content h2 {
    color: #fff;
    left: 35px;
}

.cta-section .cta-content p {
    color: #fff;
    margin-bottom: 30px;
}

.cta-section .cta-content .cta-img-icon {
    display: inline-block;
    height: 80px;
    position: relative;
    width: 50px;
    margin-right: 40px;
    margin-bottom: 30px;
}

.cta-section .cta-content .cta-img-icon:last-child {
    margin-right: 0;
}

.cta-section .cta-content-2 {
    left: 0;
}

.cta-section .cta-content .cta-img-icon img {
    position: absolute;
    left: 0;
    bottom: 0;
    max-height: 100%;
}

/*----------------------------------------*/
/*	FLUXO DO PROJETO
/*----------------------------------------*/
.fluxo {
    background-color: var(--color-primary);
    text-align: center;
}

.fluxo .icon img {
    font-size: 15px;
}

.fluxo .card-fluxo {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 745px) {
    .fluxo .card-fluxo {
        flex-direction: column;
        width: 100%;
    }
}

/*******************************/
/*****Botão do Whatsapp CSS*****/
/*******************************/
.Whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 40px;
    background: var(--color-primary);
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #333;
    z-index: 1000;
    -webkit-animation: anime 3s ease 6;
    animation: anime 3s ease 6;
}

@-webkit-keyframes anime {

    0%,
    50%,
    100% {
        transform: translatey(0);
    }

    20% {
        transform: translatey(5px);
    }

    25% {
        transform: translatey(-20px);
    }

    30% {
        transform: translatey(20px);
    }

    35% {
        transform: translatey(-5px);
    }
}

@keyframes anime {

    0%,
    50%,
    100% {
        transform: translatey(0);
    }

    20% {
        transform: translatey(5px);
    }

    25% {
        transform: translatey(-20px);
    }

    30% {
        transform: translatey(20px);
    }

    35% {
        transform: translatey(-5px);
    }
}

.Whatsapp:hover {
    background: #000;
    color: #fff;
    box-shadow: 1px 1px 2px #333;
}

.Whatsapp i {
    margin-top: 14px;
}


/*----------------------------------------*/
/* Newsletter
/*----------------------------------------*/
.subscribe-form {
    width: 100%;
    height: 10vh;
}

.subscribe-form .form-group {
    position: relative;
    margin-bottom: 0;
    border: 1px solid rgba(133, 131, 131, 0.08);
    background: #fff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}

.subscribe-form .form-group input {
    background: #fff !important;
    border: 1px solid transparent;
    color: #818080 !important;
    font-size: 14px;
    font-weight: 300;
    height: 50px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
}

.subscribe-form .form-group input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ccc !important;
}

.subscribe-form .form-group input::-moz-placeholder {
    /* Firefox 19+ */
    color: #ccc !important;
}

.subscribe-form .form-group input:-ms-input-placeholder {
    /* IE 10+ */
    color: #ccc !important;
}

.subscribe-form .form-group input:-moz-placeholder {
    /* Firefox 18- */
    color: #ccc !important;
}

.subscribe-form .form-group .submit {
    border-left: 1px solid #ccc;
    color: #fff !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    font-size: 14px;
    background: var(--color-primary) !important;
    transition: .3s;
}

.subscribe-form .form-group .submit:hover {
    background: var(--color-black) !important;
    box-shadow: 5px 5px 1px var(--color-primary);
    cursor: pointer;
}

.subscribe-form .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.8);
}

.ftco-no-pb {
    padding-bottom: 0 !important;
}

/*----------------------------------------*/
/* CONTATO
/*----------------------------------------*/
.contact {
    width: 100%;
    height: auto;
    background-color: #f6f6f6;
    padding: 2em;
}

@media (max-width: 748px) {
    .contact form {
        display: flex;
        flex-direction: column;
    }
}

.contact-maps {
    width: 100%;
    height: 680px;
    border: 0;
}

.contact-options button,
.contact-options select {
    background: #f4f9fc;
    border: solid 1px #ccc;
    margin: 0 3px;
    width: 100px;
    height: 30px;
}

/*----------------------------------------*/
/* Brand
/*---------------------------------------*/
.brand-wrapper {
    background-color: var(--color-white);
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin: 0px !important;
    width: 100% !important;
}

.card-wrapper {
    box-shadow: 0 0 10px #0000001a;
    width: 100% !important;
    height: 100%;
    padding: 8px;
}

.marquee-inner .rfm-marquee-container {
    width: 100% !important;
}

@media (max-width: 600px) {
    .brand-wrapper {
        display: flex;
        width: 100%;
    }
}

/*----------------------------------------*/
/*  Footer Section CSS
/*----------------------------------------*/
.footer {
    text-align: left;
    background-color: #121212;
    color: #a8abac;
    padding: 1em;
    align-items: flex-start;
}

.footer a {
    border: none;
    color: var(--color-link);
    font-weight: normal;
    transition: .3s;
    text-align: left;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer .copyright .logo-drika {
    width: 45%;
    margin-bottom: 20px;
    margin-left: 20px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
    text-transform: capitalize;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}


.footer .footer-menu a {
    list-style: none;
    text-decoration: none;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--color-link);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #858585;
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--color-link);
    font-weight: 700;

}

@media (max-width: 960px) {
    .iconsuse .image {
        width: 50%;
    }
}

@media (max-width: 560px) {
    .iconsuse .image {
        width: 100%;
    }
}

/*-----------------------------------------*/
/* Back To Top
/*----------------------------------------*/
.back-to-top {
    position: fixed;
}

.icon-position {
    position: fixed;
    bottom: 40px;
    left: 25px;
    z-index: 99;
}

.icon-style {
    background-color: var(--color-primary);
    border: 2px solid #fff;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    padding: 12px;
    color: #fff;
    cursor: pointer;
    animation: movebtn 3s ease-in-out infinite;
    transition: all .5s ease-in-out;
}

.icon-style:hover {
    animation: none;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

@keyframes movebtn {
    0% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(0px);
    }

    75% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*--------------Register--------------------*/
/*progressbar*/
#msform #progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
}

#msform #progressbar .active {
    color: #000000;
}

#msform #progressbar li {
    list-style-type: none;
    font-size: 12px;
    padding: 5px 15px;
    width: 25%;
    float: left;
    position: relative;
    align-items: center;
}

/*Icons in the ProgressBar*/
#msform #progressbar #account:before {
    font-family: FontAwesome;
    content: "\f023";
}

#msform #progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007";
}

#msform #progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f279";
}

#msform #progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c";
}

/*ProgressBar before any progress*/
#msform #progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

/*ProgressBar connectors*/
#msform #progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#msform #progressbar li.active:before,
#msform #progressbar li.active:after {
    background: #ff2600;
}

/*Imaged Radio Buttons*/
#msform .radio-group {
    position: relative;
    margin-bottom: 25px;
}

#msform .radio {
    display: inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: #ff2600;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
    margin: 8px 2px;
}

#msform .radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

#msform .radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
#msform .fit-image {
    width: 100%;
    object-fit: cover;
}




/*----------------------------------------*/
/*  Other pages CSS
/*----------------------------------------*/
.page-header-section {
    height: 445px;
    padding-top: 200px;
}

.page-header-section .header-title {
    font-size: 82px;
    color: #fff;
}

.page-header-section .header-title span {
    background: none;
    color: #baff00;
}



/*----------------------------------------*/
/*  About page CSS
/*----------------------------------------*/
.testimonials-section {
    position: relative;
    margin: 100px 0px;
    left: 0;
}

.testimonials-section h1 {
    color: #fff;
}

.testimonials-section:after {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    top: 0;
    background: #222222;
    z-index: 2;
}

.testimonials-section .testimonials-image-box {
    position: absolute;
    width: 40%;
    height: calc(100% + 120px);
    right: 35px;
    top: -60px;
    background-image: url("./assets/img/products/produto3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 35px 35px 1px var(--color-primary);
    border: solid 35px #222222;
}

.testimonials-section .container {
    position: relative;
    z-index: 9;
}

.testimonials-section .qut {
    color: var(--color-primary);
    font-size: 8em;
    margin-bottom: -80px;
}

.ts-item p {
    color: #fff;
    font-style: italic;
    margin-bottom: 50px;
}

.ts-item h4 {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 0;
}

.ts-item span {
    font-size: 14px;
    color: #fff;
}

.team-member {
    padding-right: 67px;
    position: relative;
}

.team-member img {
    min-width: 100%;
}

.team-member .member-info {
    position: absolute;
    padding-left: 35px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 230px;
    background: #fff;
    bottom: 37px;
    right: 0;
    -webkit-box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
    box-shadow: 6px 7px 20px rgba(114, 114, 114, 0.21);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.team-member .member-info h2 {
    font-size: 30px;
    margin-bottom: 0;
}

.team-member .member-info p {
    color: #222222;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

.team-member:hover .member-info {
    background: var(--color-primary);
    -webkit-box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
    box-shadow: 0px 0px 0px rgba(114, 114, 114, 0.21);
}

.promo-section {
    padding-top: 90px;
    padding-bottom: 150px;
}

.promo-text h1 {
    margin-bottom: 20px;
}

.promo-text p {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 0;
}

.slide-num-holder.test-slider {
    right: auto;
    left: 100%;
    bottom: -160px;
    width: 160px;
    height: 230px;
    padding-right: 30px;
    padding-top: 80px;
}

/*----------------------------------------*/
/*  ServiceController page CSS
/*----------------------------------------*/
.service-slider {
    position: relative;
}

.service-slider .owl-controls {
    position: absolute;
    height: 100%;
    width: 14px;
    left: 0;
    top: 0;
    display: -ms-grid;
    display: grid;
}

.service-slider .owl-dots {
    display: table-cell;
    vertical-align: middle;
}

.service-slider .owl-dots .owl-dot {
    width: 14px;
    height: 13px;
    margin-bottom: 10px;
    background: #e8e8e8;
}

.service-slider .owl-dots .owl-dot.active {
    background: #baff00;
}

.service-text h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.service-text p {
    margin-bottom: 50px;
}

.service-text ol {
    list-style: none;
}

.service-text ol li {
    font-size: 20px;
    font-weight: 700;
    color: #727272;
    margin-bottom: 20px;
}

.solid-service-box {
    text-align: center;
    background: #fff;
    padding: 50px 30px;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.solid-service-box h2 {
    font-size: 48px;
    color: #727272;
    margin-bottom: 20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.solid-service-box h3 {
    margin-bottom: 20px;
}

.solid-service-box p {
    font-size: 14px;
    margin-bottom: 20px;
}

.solid-service-box .readmore {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    opacity: 0;
    visibility: hidden;
    position: relative;
    bottom: -20px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.solid-service-box:hover {
    background: #baff00;
}

.solid-service-box:hover h2 {
    color: #222;
}

.solid-service-box:hover .readmore {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.promo-box {
    width: 1383px;
    margin: 0 auto;
    padding: 40px 0;
}

.promo-box .promo-text h1,
.promo-box .promo-text p {
    color: #fff;
}

/*----------------------------------------*/
/*  Blog page CSS
/*----------------------------------------*/
.blog-post {
    margin-bottom: 120px;
}

.blog-post .thumb {
    padding: 25px;
    position: relative;
}

.blog-post .thumb:after {
    position: absolute;
    content: "";
    width: 100%;
    height: calc(100% - 100px);
    top: 0;
    left: 0;
    background: #f0f0f0;
    z-index: -1;
    -webkit-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
}

.blog-post .post-date {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    display: inline-block;
    background: #baff00;
    padding: 4px 15px;
    margin-bottom: 20px;
}

.blog-post h2 {
    font-size: 30px;
}

.blog-post h2 a {
    color: #222;
}

.blog-post p {
    margin-bottom: 0;
}

.blog-post .post-meta {
    margin-bottom: 40px;
}

.blog-post .post-meta a {
    color: #727272;
    font-size: 12px;
    margin-right: 10px;
}

.blog-post .post-meta a i {
    font-size: 16px;
    margin-left: 5px;
}

.blog-post:hover .thumb:after {
    background: #baff00;
}

/*
.pagination {
    display: inline-block;
    padding: 20px 30px;
    background: #e7e3e3;
    border-radius: 50px;
}

.pagination a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.pagination a.active {
    font-size: 48px;
    color: #0b7914;
}
*/

.search {
    position: relative;
}

.widget-area {
    margin-bottom: 80px;
}

.widget-area .widget-title {
    font-size: 22px;
    margin-bottom: 40px;
}

.widget-area .search input {
    width: 100%;
    background: #f0f0f0;
    border: none;
    font-size: 12px;
    padding: 10px;
    padding-right: 35px;
    font-style: italic;
}

.widget-area .search button {
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    border: none;
    color: #838383;
    height: 100%;
    width: 40px;
}

.widget-area ul {
    list-style: none;
}

.widget-area ul li a {
    font-size: 15px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 500;
    color: #727272;
    padding: 3px 10px;
    padding-left: 25px;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-area ul li a:after {
    position: absolute;
    content: "+";
    color: #838383;
    left: 5px;
    top: 3px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-area ul li a:hover {
    background: #baff00;
    color: #222;
}

.widget-area ul li a:hover:after {
    color: #222;
}

.widget-area ul li:last-child a {
    margin-bottom: 0;
}

.widget-area .rp-widget .rp-widget-item {
    margin-bottom: 30px;
    overflow: hidden;
}

.widget-area .rp-widget .rp-widget-item:last-child {
    margin-bottom: 0;
}

.widget-area .rp-widget .thumb {
    width: 68px;
    height: 68px;
    float: left;
    margin-right: 30px;
    background: #ddd;
    display: block;
}

.widget-area .rp-widget .rp-content {
    padding-left: 98px;
}

.widget-area .rp-widget h4 {
    line-height: 1.5;
    margin-bottom: 0;
}

.widget-area .rp-widget p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0;
}

.widget-area .quote-widget span {
    font-size: 47px;
    font-style: italic;
    color: #727272;
}

.widget-area .quote-widget p {
    font-style: italic;
    margin-bottom: 0;
    font-size: 13px;
}

.widget-area .instagram-widget {
    padding-top: 30px;
}

.widget-area .instagram-widget a {
    display: block;
    overflow: hidden;
    width: 33.33333%;
    float: left;
    position: relative;
}

.widget-area .instagram-widget a:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #baff00;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.widget-area .instagram-widget a:before {
    position: absolute;
    content: "+";
    color: #fff;
    font-weight: 500;
    text-align: center;
    font-size: 36px;
    line-height: 36px;
    width: 20px;
    top: 50%;
    margin-top: -13px;
    left: 50%;
    margin-left: -10px;
    text-shadow: 0 0 20px #999;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 2;
}

.widget-area .instagram-widget a:hover:after,
.widget-area .instagram-widget a:hover:before {
    opacity: 1;
}

.widget-area .instagram-widget a img {
    min-width: 100%;
}

/*----------------------------------------*/
/*  Contact page CSS
/*----------------------------------------*/
.cf-social {
    margin-top: 50px;
}

.cf-social a {
    color: #222;
    margin-right: 25px;
}

.contact-form {
    padding-top: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    font-size: 13px;
    border: none;
    background: #f0f0f0;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.contact-form textarea {
    height: 200px;
    margin-bottom: 30px;
}

.contact-form ::-webkit-input-placeholder {
    font-style: italic;
}

.contact-form :-ms-input-placeholder {
    font-style: italic;
}

.contact-form ::-ms-input-placeholder {
    font-style: italic;
}

.contact-form ::placeholder {
    font-style: italic;
}

.map-area {
    height: 685px;
    width: 100%;
    display: block;
    background: #f0f0f0;
    margin-bottom: 2px;
}

/*----------------------------------------*/
/*  Portfolio page CSS
/*----------------------------------------*/
.portfolio-filter {
    list-style: none;
}

.portfolio-filter li {
    display: inline-block;
    margin-right: 40px;
    font-size: 14px;
    color: #222;
    cursor: pointer;
    font-weight: 500;
}

.portfolio-filter li.active {
    text-decoration: underline;
    -webkit-text-decoration-color: #2046f2;
    text-decoration-color: #2046f2;
}

.portfolio-warp {
    display: block;
    overflow: hidden;
}

.portfolio-warp .grid-item {
    width: 20%;
    background-position: center;
}

.portfolio-warp .grid-item:after {
    content: '';
    display: block;
    clear: both;
}

.portfolio-warp .grid-item.grid-wide,
.portfolio-warp .grid-item.grid-long {
    width: 40%;
}

.portfolio-warp .grid-item a {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(186, 255, 0, 0.45);
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.portfolio-warp .grid-item a:after {
    position: absolute;
    content: "+";
    left: 50%;
    top: 60%;
    width: 48px;
    margin-left: -24px;
    margin-top: -24px;
    color: #fff;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.portfolio-warp .grid-item:hover a {
    opacity: 1;
}

.portfolio-warp .grid-item:hover a:after {
    top: 50%;
}

.portfolio-warp .grid-sizer {
    width: 20%;
}

.facebook,
.github,
.google {
    color: #ff2600 !important;
}

.facebook:hover,
.github:hover,
.google:hover {
    color: #333;
}


/*---------------------------------------
			REGISTRO
-----------------------------------------*/
#regForm {
    background-color: #ffffff;
    padding: 1em;
}


/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
    display: none;
}

#prevBtn {
    background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #04AA6D;
}


/* ===========================
  Responsive
==============================*/
@media only screen and (max-width: 1477px) {
    .slide-num-holder.test-slider {
        left: auto;
        right: 0;
    }
}

@media only screen and (max-width: 1400px) {
    .promo-box {
        width: 100%;
    }
}

/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 992px) {
    .phone-number {
        margin-right: 30px;
    }

    .nav-menu ul li a {
        margin-right: 20px;
    }

    .slide-content {
        margin-left: 220px;
    }

    .milestone p {
        margin-left: 10px;
        font-size: 17px;
    }

    .milestone h2 {
        font-size: 55px;
    }

    .milestone:after {
        width: 90px;
        height: 90px;
    }

    .slide-num-holder {
        right: 20px;
    }

    .hero-right-text {
        right: 100px;
    }


}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .logo-area {
        padding: 20px 40px 30px;
    }

    .logo-area img {
        height: 50px;
    }

    .slide-content {
        margin-left: 170px;
        margin-bottom: -35px;
        padding-left: 120px;
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .slide-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .slide-content:after {
        border-top: 100px solid #baff00;
        border-left: 100px solid #baff00;
        border-bottom: 60px solid #baff00;
    }

    .hero-slider .owl-nav {
        left: 170px;
    }

    .slide-num-holder {
        right: 20px;
    }

    .hero-right-text {
        bottom: 70%;
        right: 100px;
    }

    .nav-menu ul li a {
        margin-right: 5px;
        font-size: 13px;
        padding: 0px 7px 5px;
    }

    .phone-number {
        font-size: 12px;
        margin-right: 10px;
        margin-top: 0;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .portfolio-warp .grid-item {
        width: 50%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 50%;
    }

    .portfolio-warp .grid-sizer {
        width: 50%;
    }

    .solid-service-box {
        margin-bottom: 30px;
    }

    .cta-section {
        background: #222;
        margin-bottom: 0;
    }

    .testimonials-section {
        background: #222;
        margin: 0;
    }

    .testimonials-image-box,
    .testimonials-section:after,
    .cta-image-box,
    .cta-section:after {
        display: none;
    }

    .left-bar {
        width: 50px;
    }

    .left-bar .left-bar-content {
        margin-bottom: 10px;
    }

    .left-phone-number {
        margin-top: -20em;
    }

    .logo-area img {
        width: 100%;
        height: 50px;
    }

    .phone-number {
        display: none;
    }

    .cart {
        margin-top: 0px;
    }


    .hero-section,
    .hero-slider .hero-slide-item {
        height: 100%;
    }

    .milestone,
    .solid-service-box {
        margin-bottom: 30px;
    }

    .footer-section .footer-social {
        width: auto;
        top: -25px;
        right: 50%;
        padding: 10px;
        margin-right: -133px;
    }

    .footer-section .social-links a {
        display: inline-block;
        padding: 0 15px;
        margin-bottom: 0;
    }

    .projects-filter-nav {
        text-align: left;
    }

    .projects-filter-nav li {
        margin-left: 0;
        margin-right: 15px;
    }

    .footer-section .copyright {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: 40px auto 0;
        left: 0;
        top: 0;
        margin-bottom: -50px;
        padding-left: 15px;
    }
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {

    h1,
    .sp-title {
        font-size: 45px;
    }

    .page-header-section .header-title {
        font-size: 55px;
    }

    .left-bar {
        width: 50px;
    }

    .left-bar .left-bar-content {
        margin-bottom: 10px;
    }

    .logo-area img {
        width: 100%;
        height: auto;
        margin-top: -15px;
        margin-left: -25px;
    }

    .cart {
        margin-top: -99px;
        margin-left: 15px;
        margin-right: -25px;
    }

    .slide-content:after,
    .hero-right-text,
    .phone-number {
        display: none;
    }

    .nav-switch {
        position: absolute;
        right: 20px;
        font-size: 30px;
        color: #fff;
        top: 20px;
        display: block;
    }

    .nav-menu {
        position: absolute;
        width: calc(100% - 90px);
        left: 80px;
        background: #121212;
        top: 100%;
        margin-top: 11px;
        display: none;
    }

    .nav-menu ul li a {
        display: block;
        padding: 16px 21px;
        border-bottom: 1px solid #202020;
        margin-right: 0;
    }

    .nav-menu ul li a:after {
        left: 20px;
    }

    .nav-menu ul li.active>a:after,
    .nav-menu ul li a:hover:after {
        height: 10px;
    }

    .hero-section {
        height: auto;
    }

    .hero-slider .hero-slide-item {
        padding: 0;
        height: auto;
    }

    .slide-content h2 {
        font-size: 60px;
        line-height: 60px;
    }

    .hero-slider .owl-nav {
        padding-left: 70px;
        width: 100%;
        text-align: center;
        left: 0;
    }

    .slide-content {
        margin-left: 70px;
        padding: 0;
        text-align: center;
    }

    .slide-num-holder,
    .slide-num-holder.test-slider {
        right: 0;
        height: 75px;
        width: 136px;
        padding-top: 18px;
    }

    .slide-num-holder span,
    .slide-num-holder.test-slider span {
        font-size: 40px;
    }

    .slide-num-holder.test-slider {
        bottom: -135px;
    }

    .team-member {
        margin-bottom: 30px;
    }

    .advanced-feature-item {
        margin: 15px;
    }

    .portfolio-warp .grid-item {
        width: 50%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 50%;
    }

    .portfolio-warp .grid-sizer {
        width: 50%;
    }

    .cta-section {
        background: #222;
        margin-bottom: 0;
    }

    .testimonials-section {
        background: #222;
        margin: 0;
    }

    .testimonials-image-box,
    .testimonials-section:after,
    .cta-image-box,
    .cta-section:after {
        display: none;
    }

    .milestone,
    .solid-service-box {
        margin-bottom: 30px;
    }

    .projects-filter-nav {
        text-align: left;
    }

    .footer-section .footer-social {
        width: auto;
        top: -25px;
        right: 50%;
        padding: 10px;
        margin-right: -133px;
    }

    .footer-section .social-links a {
        display: inline-block;
        padding: 0 15px;
        margin-bottom: 0;
    }

    .footer-section .copyright {
        position: relative;
        width: 100%;
        max-width: 720px;
        margin: 40px auto 0;
        left: 0;
        top: 0;
        margin-bottom: -50px;
        padding-left: 15px;
        text-align: center;
    }

    .footer-item {
        margin-bottom: 40px;
    }
}

/* small mobile :320px. */
@media only screen and (max-width: 479px) {
    .logo-area {
        padding: 20px 30px 30px;
    }

    .header-area {
        background: #121212;
        padding-right: 66px;
    }

    .nav-menu {
        width: 100%;
        left: 0;
        margin-top: 0;
        border-top: 2px solid;
    }

    .left-bar {
        display: none;
    }

    .hero-slider .owl-nav {
        padding-left: 0;
    }

    .slide-content {
        margin-left: 0;
        padding: 0 15px;
    }

    .slide-content h2 {
        font-size: 35px;
        line-height: 1.5;
    }

    .portfolio-warp .grid-item {
        width: 100%;
    }

    .portfolio-warp .grid-item.grid-wide,
    .portfolio-warp .grid-item.grid-long {
        width: 100%;
    }

    .portfolio-warp .grid-sizer {
        width: 100%;
    }

    .projects-slider {
        padding: 0 15px;
    }
}

/**********Orders*****************/


.order-detail p {
    margin-top: 2px;
}

.order-detail {
    padding: 30px 0;
    background-color: #e5fee9;
}

.order-detail h5 {
    margin-bottom: 6px;
}

.order-box {
    border-radius: 100px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.order-product {
    margin: 40px 0;
    border-bottom: 2px solid #F3f3f3;
    position: relative;
}

.order-product h4 {
    font-size: 13px;
    margin-bottom: 10px;
}

.box-info {
    width: 80%;
    flex-direction: column;
    padding: 40px 0;
    box-decoration-break: 0px 0px 27px 0px rgba(243, 243, 243);
}

.info-image {
    width: 50px;
    height: 50px;
    border: 2px solid #fcb316;
    border-radius: 100px;
    font-size: 20px;
    color: #fcb316;
}

.box-info h5 {
    font-weight: bold;
    font-size: 19px;
    margin-top: 20px;

}


.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}


/*-------------------------Editor Cores------------------------*/

.bg-primary,
.settings-panel .color-tiles .tiles.primary {
    background-color: #4B49AC !important;
}

a.bg-primary:hover,
.settings-panel .color-tiles a.tiles.primary:hover,
a.bg-primary:focus,
.settings-panel .color-tiles a.tiles.primary:focus,
button.bg-primary:hover,
.settings-panel .color-tiles button.tiles.primary:hover,
button.bg-primary:focus,
.settings-panel .color-tiles button.tiles.primary:focus {
    background-color: #3b3a88 !important;
}

.bg-secondary {
    background-color: #a3a4a5 !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #898b8c !important;
}

.bg-success,
.swal2-modal .swal2-buttonswrapper .swal2-styled.swal2-confirm,
.settings-panel .color-tiles .tiles.success {
    background-color: #57B657 !important;
}

a.bg-success:hover,
.swal2-modal .swal2-buttonswrapper a.swal2-styled.swal2-confirm:hover,
.settings-panel .color-tiles a.tiles.success:hover,
a.bg-success:focus,
.swal2-modal .swal2-buttonswrapper a.swal2-styled.swal2-confirm:focus,
.settings-panel .color-tiles a.tiles.success:focus,
button.bg-success:hover,
.swal2-modal .swal2-buttonswrapper button.swal2-styled.swal2-confirm:hover,
.settings-panel .color-tiles button.tiles.success:hover,
button.bg-success:focus,
.swal2-modal .swal2-buttonswrapper button.swal2-styled.swal2-confirm:focus,
.settings-panel .color-tiles button.tiles.success:focus {
    background-color: #429842 !important;
}

.bg-info,
.settings-panel .color-tiles .tiles.info {
    background-color: #248AFD !important;
}

a.bg-info:hover,
.settings-panel .color-tiles a.tiles.info:hover,
a.bg-info:focus,
.settings-panel .color-tiles a.tiles.info:focus,
button.bg-info:hover,
.settings-panel .color-tiles button.tiles.info:hover,
button.bg-info:focus,
.settings-panel .color-tiles button.tiles.info:focus {
    background-color: #0270ec !important;
}

.bg-warning,
.settings-panel .color-tiles .tiles.warning {
    background-color: #FFC100 !important;
}

a.bg-warning:hover,
.settings-panel .color-tiles a.tiles.warning:hover,
a.bg-warning:focus,
.settings-panel .color-tiles a.tiles.warning:focus,
button.bg-warning:hover,
.settings-panel .color-tiles button.tiles.warning:hover,
button.bg-warning:focus,
.settings-panel .color-tiles button.tiles.warning:focus {
    background-color: #cc9a00 !important;
}

.bg-danger,
.settings-panel .color-tiles .tiles.danger {
    background-color: #FF4747 !important;
}

a.bg-danger:hover,
.settings-panel .color-tiles a.tiles.danger:hover,
a.bg-danger:focus,
.settings-panel .color-tiles a.tiles.danger:focus,
button.bg-danger:hover,
.settings-panel .color-tiles button.tiles.danger:hover,
button.bg-danger:focus,
.settings-panel .color-tiles button.tiles.danger:focus {
    background-color: #ff1414 !important;
}

.bg-light,
.settings-panel .color-tiles .tiles.light,
.settings-panel .color-tiles .tiles.default {
    background-color: #f8f9fa !important;
}

a.bg-light:hover,
.settings-panel .color-tiles a.tiles.light:hover,
.settings-panel .color-tiles a.tiles.default:hover,
a.bg-light:focus,
.settings-panel .color-tiles a.tiles.light:focus,
.settings-panel .color-tiles a.tiles.default:focus,
button.bg-light:hover,
.settings-panel .color-tiles button.tiles.light:hover,
.settings-panel .color-tiles button.tiles.default:hover,
button.bg-light:focus,
.settings-panel .color-tiles button.tiles.light:focus,
.settings-panel .color-tiles button.tiles.default:focus {
    background-color: #dae0e5 !important;
}

.bg-dark,
.settings-panel .color-tiles .tiles.dark {
    background-color: #282f3a !important;
}

a.bg-dark:hover,
.settings-panel .color-tiles a.tiles.dark:hover,
a.bg-dark:focus,
.settings-panel .color-tiles a.tiles.dark:focus,
button.bg-dark:hover,
.settings-panel .color-tiles button.tiles.dark:hover,
button.bg-dark:focus,
.settings-panel .color-tiles button.tiles.dark:focus {
    background-color: #13171c !important;
}

.bg-white {
    background-color: #ffffff !important;
}


#theme-settings .settings-close {
    top: 12px;
    background: transparent;
}

#settings-trigger {
    position: fixed;
    bottom: 40px;
    right: 30px;
    height: 45px;
    width: 45px;
    background: #4B49AC;
    z-index: 99;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 100%;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

#settings-trigger i {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1rem;
}

.rtl #settings-trigger {
    right: auto;
    left: 30px;
}

@media (max-width: 991px) {
    #settings-trigger {
        display: none;
    }
}


.ui-theme-settings {
    position: fixed;
    z-index: 155;
    right: -30px;
    top: 0;
    height: 100vh;
    transform: translate(500px);
    transition: all .2s;
    box-shadow: -.46875rem 0 2.1875rem rgba(4, 9, 20, .03), -.9375rem 0 1.40625rem rgba(4, 9, 20, .03), -.25rem 0 .53125rem rgba(4, 9, 20, .05), -.125rem 0 .1875rem rgba(4, 9, 20, .03)
}

.ui-theme-settings .btn-open-options {
    border-radius: 50px;
    position: absolute;
    left: -114px;
    bottom: 80px;
    padding: 0;
    height: 54px;
    line-height: 54px;
    width: 54px;
    text-align: center;
    display: block;
    box-shadow: 0 .46875rem 2.1875rem rgba(4, 9, 20, .03), 0 .9375rem 1.40625rem rgba(4, 9, 20, .03), 0 .25rem .53125rem rgba(4, 9, 20, .05), 0 .125rem .1875rem rgba(4, 9, 20, .03);
    margin-top: -27px
}

.ui-theme-settings .btn-open-options svg {
    top: 50%;
    left: 50%;
    position: absolute;
    margin: -.5em 0 0 -.5em
}

.ui-theme-settings .theme-settings__inner {
    background: #fff;
    width: 500px;
    height: 100vh;
    padding: 0
}

.ui-theme-settings.settings-open {
    transform: translate(0);
    right: 0
}

.ui-theme-settings .theme-settings-swatches {
    text-align: center
}

.ui-theme-settings .theme-settings-swatches .swatch-holder-img {
    width: 72px;
    height: auto;
    border-radius: 3px
}

.ui-theme-settings .theme-settings-swatches .swatch-holder-img img {
    width: 100%
}

.ui-theme-settings .themeoptions-heading {
    font-size: 1.1rem;
    color: #495057;
    margin: 0;
    background: #f8f9fa;
    padding: .75rem 1.5rem;
    border-bottom: #dee2e6 solid 1px;
    border-top: #dee2e6 solid 1px;
    display: flex;
    align-items: center;
    align-content: center
}

.ui-theme-settings .themeoptions-heading:first-child {
    border-top: 0
}

.ui-theme-settings .list-group-item h5 {
    color: #3f6ad8;
    font-size: .968rem;
    text-transform: uppercase;
    margin: 0;
    text-align: center
}


.swatch-holder {
    width: 24px;
    height: 24px;
    line-height: 24px;
    margin: 5px 5px 0;
    transition: all .2s;
    opacity: .7;
    display: inline-block;
    border-radius: 30px
}

.swatch-holder.active {
    border: #fff solid 2px;
    box-shadow: 0 0 0 5px #3f6ad8;
    opacity: 1
}

.swatch-holder:hover {
    opacity: 1
}

.swatch-holder-lg {
    width: 48px;
    height: 48px;
    line-height: 48px
}

.font-icon-wrapper {
    text-align: center;
    border: #e9ecef solid 1px;
    border-radius: .25rem;
    margin: 0 0 10px;
    padding: 5px
}

.font-icon-wrapper.font-icon-lg {
    float: left;
    padding: 10px;
    text-align: center;
    margin-right: 15px;
    min-width: 64px
}

.font-icon-wrapper.font-icon-lg i {
    font-size: 2.5rem
}

.font-icon-wrapper:hover {
    background: #f8f9fa;
    color: #3f6ad8
}

.font-icon-wrapper:hover p {
    color: #6c757d
}

.font-icon-wrapper i {
    font-size: 1.65rem
}

.font-icon-wrapper p {
    color: #adb5bd;
    font-size: .80667rem;
    margin: 5px 0 0
}

.btn-icon-vertical {
    min-width: 100px
}

.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .sidebar .nav {
    padding-right: 0;
}

.rtl .sidebar .nav.sub-menu {
    padding: 0 4.5rem 0 0;
}


/*----------------------------------------
 Step
 ----------------------------------------*/

.step .clearfix:after {
    clear: both;
    content: "";
    display: block;
    height: 0;
}

.step .container {
    font-family: 'Lato', sans-serif;
    width: 1000px;
    margin: 0 auto;
}

.step .wrapper {
    display: table-cell;
    height: 400px;
    vertical-align: middle;
}

.step .nav {
    margin-top: 40px;
}

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

a.step,
a:active {
    color: #333;
    text-decoration: none;
}

.step a:hover {
    color: #999;
}

/* Breadcrups CSS */

.step .arrow-steps .step {
    font-size: 14px;
    text-align: center;
    color: #666;
    cursor: default;
    margin: 0 3px;
    padding: 10px 10px 10px 30px;
    min-width: 180px;
    float: left;
    position: relative;
    background-color: #d9e3f7;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color 0.2s ease;
}

.step .arrow-steps .step:after,
.step .arrow-steps .step:before {
    content: " ";
    position: absolute;
    top: 0;
    right: -17px;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 17px solid #d9e3f7;
    z-index: 2;
    transition: border-color 0.2s ease;
}

.step .arrow-steps .step:before {
    right: auto;
    left: 0;
    border-left: 17px solid #fff;
    z-index: 0;
}

.step .arrow-steps .step:first-child:before {
    border: none;
}

.step .arrow-steps .step:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.step .arrow-steps .step span {
    position: relative;
}

.step .arrow-steps .step span:before {
    opacity: 0;
    content: "✔";
    position: absolute;
    top: -2px;
    left: -20px;
}

.step .arrow-steps .step.done span:before {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease 0.5s;
    -moz-transition: opacity 0.3s ease 0.5s;
    -ms-transition: opacity 0.3s ease 0.5s;
    transition: opacity 0.3s ease 0.5s;
}

.step .arrow-steps .step.current {
    color: #fff;
    background-color: #23468c;
}

.step .arrow-steps .step.current:after {
    border-left: 17px solid #23468c;
}



.sidebar-icon-only.rtl .sidebar .nav.sub-menu {
    padding-right: 0rem;
}

.sidebar-icon-only.rtl .sidebar .nav.sub-menu .nav-item .nav-link {
    padding-right: 3rem;
    text-align: right;
}

.sidebar-icon-only.rtl .sidebar .nav.sub-menu .nav-item .nav-link:before {
    right: 1.75rem;
}

.rtl .product-chart-wrapper::-webkit-scrollbar,
.rtl .settings-panel .tab-content .tab-pane .scroll-wrapper::-webkit-scrollbar,
.rtl .sidebar-fixed .nav::-webkit-scrollbar,
.rtl .table-responsive::-webkit-scrollbar,
.rtl ul.chats::-webkit-scrollbar {
    width: 0.5em;
}

.rtl .product-chart-wrapper::-webkit-scrollbar-track,
.rtl .settings-panel .tab-content .tab-pane .scroll-wrapper::-webkit-scrollbar-track,
.rtl .sidebar-fixed .nav::-webkit-scrollbar-track,
.rtl .table-responsive::-webkit-scrollbar-track,
.rtl ul.chats::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.rtl .product-chart-wrapper::-webkit-scrollbar-thumb,
.rtl .settings-panel .tab-content .tab-pane .scroll-wrapper::-webkit-scrollbar-thumb,
.rtl .sidebar-fixed .nav::-webkit-scrollbar-thumb,
.rtl .table-responsive::-webkit-scrollbar-thumb,
.rtl ul.chats::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

/* Settings Panel */
.settings-panel {
    border-left: 1px solid #CED4DA;
    display: block;
    position: fixed;
    top: 60px;
    right: -300px;
    bottom: 0;
    width: 300px;
    height: 100vh;
    min-height: 100%;
    background: #ffffff;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-property: right, box-shadow;
    -moz-transition-property: right, box-shadow;
    -o-transition-property: right, box-shadow;
    transition-property: right, box-shadow;
    z-index: 9999;
}

.settings-panel .nav-tabs {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    width: auto;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.settings-panel .nav-tabs .nav-item {
    border: none;
}

.settings-panel .nav-tabs .nav-item .nav-link {
    background: transparent;
    text-align: center;
    border: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #1F1F1F;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    transition-property: color;
    -webkit-transition-property: color;
    -webkit-justify-content: center;
    justify-content: center;
}

.settings-panel .nav-tabs .nav-item .nav-link.active {
    background: transparent;
    color: #4B49AC;
}

.settings-panel .tab-content {
    border: none;
    padding: 20px 0 0px 0;
}

.settings-panel .tab-content .tab-pane.scroll-wrapper {
    position: relative;
    max-height: 100vh;
    height: 100%;
    padding-bottom: 180px;
}

.settings-panel .settings-heading {
    padding: 16px 0 13px 35px;
    font-size: 0.875rem;
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    line-height: 1;
    color: rgba(0, 0, 0, 0.9);
    opacity: 0.9;
    margin-bottom: 0;
    border-top: 1px solid #CED4DA;
    border-bottom: 1px solid #CED4DA;
}

.rtl .settings-panel .settings-heading {
    padding: 16px 35px 13px 0;
    text-align: right;
}

.rtl .settings-panel small.settings-heading {
    padding: 16px 0 13px 12px;
}

.settings-panel .sidebar-bg-options {
    padding: 13px 35px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1;
    color: #595959;
    background: #ffffff;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
}

.settings-panel .sidebar-bg-options.selected {
    background: #e6e9ed;
}

.settings-panel .color-tiles {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px 35px 10px 35px;
    padding-top: 15px;
}

.settings-panel .color-tiles .tiles {
    margin: 10px 18px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.settings-panel .color-tiles .tiles:before {
    content: "";
    width: 0px;
    height: 0px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100%;
    border: 0;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-duration: 0.25s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.settings-panel .color-tiles .tiles.selected:before {
    width: 10px;
    height: 10px;
    opacity: 1;
    border-width: 1px;
}

.settings-panel .color-tiles .tiles.light {
    border: 1px solid #e2e4e7;
}

.settings-panel .color-tiles .tiles.default {
    border: 1px solid #e2e4e7;
}

.settings-panel .chat-list {
    padding-left: 0;
}

.settings-panel .chat-list .list {
    padding: 0.4rem 0.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-bottom: 1px solid #CED4DA;
}

.settings-panel .chat-list .list:last-child {
    border-bottom: none;
}

.settings-panel .chat-list .list .profile {
    position: relative;
    margin-right: 1rem;
}

.settings-panel .chat-list .list .profile img {
    width: 2.50rem;
    height: 2.50rem;
    border-radius: 100%;
}

.settings-panel .chat-list .list .profile span {
    height: 0.75rem;
    width: 0.75rem;
    position: absolute;
    bottom: 0.34rem;
    right: 0;
    border: 0.13rem solid #ffffff;
    border-radius: 100%;
}

.settings-panel .chat-list .list .profile span.online {
    background: #57B657;
}

.settings-panel .chat-list .list .profile span.offline {
    background: #FFC100;
}

.settings-panel .chat-list .list .info {
    margin-right: auto;
}

.settings-panel .chat-list .list .info p {
    display: block;
    margin-bottom: 0;
}

.settings-panel .chat-list .list .info p:last-child {
    opacity: 0.5;
    font-size: 0.8rem;
}

.rtl .settings-panel .chat-list .list .info p:last-child {
    text-align: right;
}

.settings-panel .chat-list .list.active {
    background: #f8f9fa;
}

.settings-panel.open {
    right: 0;
}

.settings-panel .settings-close {
    position: absolute;
    top: 16px;
    right: 10px;
    color: #4B49AC;
    background: transparent;
    border-radius: 4px;
    padding: 0 3px;
    cursor: pointer;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    z-index: 999;
}

.settings-panel .settings-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.rtl .settings-panel .settings-close {
    right: unset;
    left: 10px;
}

.settings-panel .events p {
    font-family: "Nunito", sans-serif;
    font-weight: 400;
}

.rtl .settings-panel .events p {
    text-align: right;
}

.rtl .settings-panel {
    right: unset;
    left: -300px;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    transition-property: left;
}

.rtl .settings-panel .chat-list {
    padding-right: 0;
}

.rtl .settings-panel .chat-list .list .profile {
    margin-right: 0;
    margin-left: 1rem;
}

.rtl .settings-panel .chat-list .list .info {
    margin-right: 0;
    margin-left: auto;
}

.rtl .settings-panel .chat-list .list .info .badge {
    margin-right: 10px;
}

.rtl .settings-panel.open {
    left: 0;
    right: unset;
}

#theme-settings .settings-close {
    top: 12px;
    background: transparent;
}

#settings-trigger {
    position: fixed;
    bottom: 40px;
    right: 30px;
    height: 45px;
    width: 45px;
    background: #4B49AC;
    z-index: 99;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 100%;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

#settings-trigger i {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1rem;
}

.rtl #settings-trigger {
    right: auto;
    left: 30px;
}

@media (max-width: 991px) {
    #settings-trigger {
        display: none;
    }
}


.form-group .file-upload-default {
    visibility: hidden;
    position: absolute;
}

.form-group .file-upload-info {
    background: transparent;
}
