:root {
    --official-blue-color: #2365A2;
    --official-orange-color: #F22816;
    --official-grey-color: #262626;
    --official-blue-two-color: #0583F2;
    --official-font-regular: quattrocento_sansregular, sans-serif;
    --official-font-bold: quattrocento_sansbold, sans-serif;
}

/***********************************************************************************************
* General styles
************************************************************************************************/
html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: var(--official-font-regular);
    font-size: 16px;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: var(--official-font-regular);
}

p, label {
    margin: 0;
}

.button {
    width: 100%;
    margin: .3em 0;
    padding: .5em;
    background-color: var(--official-orange-color);
    color: #fff;
    font-family: var(--official-font-bold);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition-duration: 300ms;
}

.button:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.announce {
    background-color: var(--official-blue-two-color);
    color: #fff;
    padding: 1em;
    font-size: 1.4em;
    border-radius: 3px;
}

.wrapper-img-empty {
    margin-bottom: .5em;
}

/***********************************************************************************************
* Theme
************************************************************************************************/
.chiller-theme .sidebar-wrapper {
    background: var(--official-blue-color);
}

.chiller-theme .sidebar-wrapper .sidebar-header,
.chiller-theme .sidebar-wrapper .sidebar-search,
.chiller-theme .sidebar-wrapper .sidebar-menu {
    border-top: 1px solid #1D5385;
}

.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
    border-color: transparent;
    box-shadow: none;
}

.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
.chiller-theme .sidebar-wrapper .sidebar-brand > a,
.chiller-theme .sidebar-footer > a {
    color: #fff;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a {
    color: var(--official-blue-color);
}

.sidebar-menu > ul > li > a,
.sidebar-dropdown > a {
    color: #fff !important;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a > i {
    color: var(--official-blue-color);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover > a,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info,
.chiller-theme .sidebar-wrapper .sidebar-brand > a:hover,
.chiller-theme .sidebar-footer > a:hover i {
    color: #b8bfce;
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
    color: #bdbdbd;
}

.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
    color: #ffffff;
}

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus + span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
    color: #16c7ff;
    text-shadow: 0 0 10px rgba(22, 199, 255, 0.5);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
    background: #F2F2F2;
}

.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
    color: #fff;
}

.chiller-theme .sidebar-footer {
    background: #3a3f48;
    box-shadow: 0 -1px 5px #282c33;
    border-top: 1px solid #464a52;
}

.chiller-theme .sidebar-footer > a:first-child {
    border-left: none;
}

.chiller-theme .sidebar-footer > a:last-child {
    border-right: none;
}

/***********************************************************************************************************************
* Message style
***********************************************************************************************************************/
#message {
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
    background: #fde073;
    text-align: center;
    line-height: 2.5;
    overflow: hidden;
    -webkit-box-shadow: 0 0 5px black;
    -moz-box-shadow: 0 0 5px black;
    box-shadow: 0 0 5px black;
}

.text-success {
    background-color: #71dd8a !important;
    color: #0b2e13 !important;
}

@-webkit-keyframes slideDown {
    0%, 100% {
        transform: translateY(-50px);
        -webkit-transform: translateY(-50px);
    }
    10%, 90% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
    }
}

@-moz-keyframes slideDown {
    0%, 100% {
        -moz-transform: translateY(-50px);
    }
    10%, 90% {
        -moz-transform: translateY(0px);
    }
}

#message {
    -webkit-transform: translateY(-50px);
    -webkit-animation: slideDown 2.5s 1.0s 1 ease forwards;
    -moz-transform: translateY(-50px);
    -moz-animation: slideDown 400ms 1.0s 1 ease forwards;
}

#close {
    display: none;
}

/***********************************************************************************************
* Page content
************************************************************************************************/
.page-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.page-wrapper .page-content {
    width: 100%;
    padding-left: 0;
    padding-top: .25em;
}

.page-wrapper .page-content > div {
    padding: 1.25em 2.50em;
}

.page-wrapper .page-content {
    overflow-x: hidden;
}

[data-info="section-main"] {
    flex-grow: 1;
    min-height: 80vh;
    height: 100%;
}

/***********************************************************************************************
* Sidebar menu
************************************************************************************************/
.btn-custom {
    background-color: var(--official-blue-color);
    border-color: #fff;
}

.btn-custom:hover {
    color: var(--official-blue-color);
    background-color: #fff;
    border-color: var(--official-blue-color);
}

@keyframes swing {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(10deg);
    }
    30% {
        transform: rotate(0deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(5deg);
    }
    70% {
        transform: rotate(0deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes sonar {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/********************* Page Wrapper *********************/
.page-wrapper {
    height: 100vh;
}

/********************* toggle sidebar *********************/
.page-wrapper.toggled .sidebar-wrapper {
    left: 0;
}

@media screen and (min-width: 768px) {
    .page-wrapper.toggled .page-content {
        padding-left: 265px;
    }
}

/********************* show sidebar button *********************/
#show-sidebar {
    position: fixed;
    left: 0;
    top: 5em;
    border-radius: 0 4px 4px 0;
    width: 35px;
    transition-delay: 0.3s;
    z-index: 99;
}

.page-wrapper.toggled #show-sidebar {
    left: -40px;
}

/********************* sidebar-wrapper *********************/
.sidebar-wrapper {
    width: 16.25em;
    height: 100%;
    max-height: 100%;
    position: fixed;
    top: 0;
    left: -300px;
    z-index: 999;
}

.sidebar-wrapper ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-wrapper a {
    text-decoration: none;
}

/********************* sidebar-content *********************/
.sidebar-content {
    max-height: calc(100% - 1px);
    height: calc(100% - 1px);
    overflow-y: auto;
    position: relative;
}

/********************* sidebar-brand *********************/
.sidebar-wrapper .sidebar-brand {
    padding: .625em 1.25em;
    display: flex;
    align-items: center;
}

.sidebar-wrapper .sidebar-brand > a {
    text-transform: uppercase;
    font-weight: bold;
    flex-grow: 1;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
    cursor: pointer;
    font-size: 1.25em;
}

/********************* sidebar-header *********************/
.sidebar-wrapper .sidebar-header {
    padding: 1.25em;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic {
    float: left;
    width: 3.75em;
    height: 3.75em;
    padding: .125em;
    border-radius: 0.75em;
    margin-right: .9375em;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.sidebar-wrapper .sidebar-header .user-info {
    float: left;
}

.sidebar-wrapper .sidebar-header .user-info > span {
    display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
    font-size: .75em;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
    font-size: .6875em;
    margin-top: .25em;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
    font-size: .50em;
    margin-right: .25em;
    color: #5cb85c;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i.offline {
    color: red !important;
}

/********************* sidebar-search *********************/
.sidebar-wrapper .sidebar-search > div {
    padding: .625em 1.25em;
}

/********************* sidebar-menu *********************/
.sidebar-wrapper .sidebar-menu {
    padding-bottom: .625em;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
    font-weight: bold;
    font-size: .875em;
    padding: .9375em 1.25em .3125em 1.25em;
    display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: .50em 1.875em .50em 1.25em;
}

.sidebar-wrapper .sidebar-menu ul li a i {
    margin-right: .625em;
    font-size: .75em;
    width: 1.875em;
    height: 1.875em;
    line-height: 1.875em;
    text-align: center;
    border-radius: .25em;
}

.sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
    display: inline-block;
    animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    content: "\f105";
    font-style: normal;
    display: inline-block;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    background: 0 0;
    position: absolute;
    right: .9375em;
    top: .875em;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
    padding: .3125em 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
    padding-left: 1.5625em;
    font-size: .8125em;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
    content: "\f111";
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: .625em;
    font-size: .50em;
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
    float: right;
    margin-top: .50em;
    margin-left: .3125em;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
    float: right;
    margin-top: 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
    display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
    transform: rotate(90deg);
    right: 1.125em;
}

/********************* side-footer *********************/
.sidebar-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    display: flex;
}

.sidebar-footer > a {
    flex-grow: 1;
    text-align: center;
    height: 1.875em;
    line-height: 1.875em;
    position: relative;
}

.sidebar-footer > a .notification {
    position: absolute;
    top: 0;
}

.badge-sonar {
    display: inline-block;
    background: #980303;
    border-radius: 50%;
    height: .50em;
    width: .50em;
    position: absolute;
    top: 0;
}

.badge-sonar:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border: .125em solid #980303;
    opacity: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: sonar 1.5s infinite;
}

.online-sonar {
    background-color: #5cb85c;
}

.online-sonar:after {
    border: .125em solid #5cb85c;
}

/********************* scroll bar *********************/
::-webkit-scrollbar {
    width: .3125em;
    height: .4375em;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
}

::-webkit-scrollbar-thumb {
    background: #525965;
    border: 0 none #ffffff;
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: #525965;
}

::-webkit-scrollbar-thumb:active {
    background: #525965;
}

::-webkit-scrollbar-track {
    background: transparent;
    border: 0 none #ffffff;
    border-radius: 3.125em;
}

::-webkit-scrollbar-track:hover {
    background: transparent;
}

::-webkit-scrollbar-track:active {
    background: transparent;
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/***********************************************************************************************
* Registration form
************************************************************************************************/
.form-wrapper {
    padding-bottom: 4em;
}

.logo {
    background-color: rgba(0, 0, 0, 0.025);
    display: flex;
    justify-content: center;
    padding: .5em 0;
}

.form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.07);
    padding: 3em 0 2em;
    border-radius: 0 0 5px 5px;
}

.row-form {
    width: 80%;
    display: flex;
    background-color: rgba(0, 0, 0, 0.05);
    margin: 0.1em 0;
    border-radius: 5px;
}

.row-form:last-child {
    background-color: transparent;
}

.input-wrapper {
    display: flex;
    width: 50%;
    padding: 1em;
    align-items: center;
    justify-content: space-between;
}

.input-wrapper label {
    padding: 0 1em 0 0;
    color: #2365A2;
    font-family: var(--official-font-bold);
    font-size: 1em;
}

.input-wrapper input {
    border: solid 1px rgba(0, 0, 0, 0.2);
    padding: 0.5em 1em;
    width: 100%;
    border-radius: 3px;
}

.input-wrapper select {
    width: 100%;
    border-radius: 3px;
    color: #fff;
    font-family: var(--official-font-bold);
    border: none;
}

.input-wrapper select:focus {
    outline: none;
    border: none;
}

.country option {

}

.check-form {
    display: flex;
    width: 100%;
    white-space: nowrap;
    justify-content: center;
    border-radius: 3px;
}

.check-form label {
    display: inline-block;
    padding-right: 0;
}

.check-form input {
    width: auto;
    margin-left: .15em;
}

.submit-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1em;
}

.submit-wrapper input {
    background: #2365A2;
    color: #fff;
    font-size: 1.3em;
    border: 1px solid #ffF;
    border-radius: 25px;
    padding: .1em 2em;
    font-family: var(--official-font-bold);
}

.ornament {
    background: url("../../images/part_design/top1.png") repeat-x;
    height: 15px;
}

.address {
    width: 100%;
}

.hide {
    display: none;
}

/***********************************************************************************************
* Hero
************************************************************************************************/
.hero {
    height: 20vh;
    background: linear-gradient(rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 1)), url(https://makemywayblog.files.wordpress.com/2016/03/dscf4982.jpg?w=840&h=560) center center / cover no-repeat;
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font: 600 3.4em/1 'quattrocento_sansbold', sans-serif;
    text-align: center;
    white-space: nowrap;
}

.wrapper-logo-exclusivas {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper-logo-exclusivas-alt {
    width: 100%;
    text-align: center;
}

.wrapper-logo-exclusivas-alt img {
    max-width: 220px;
    width: 100%;
}

/***********************************************************************************************
* cart icon
************************************************************************************************/
#ds {
    text-align: right;
}

.cart_div {
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
}

.cart_div a {
    color: #000;
    text-decoration: none;
}

.circle-cart-le,
.circle-cart {
    font-size: 12px;
    line-height: 17px;
    background: #F68B1E;
    padding: 2px 0;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    width: 23px;
    height: 23px;
    text-align: center;
}

.circle-cart-le {
    line-height: 20px;
    width: 26px;
    height: 26px;
}

.cart-text {
    padding-left: .35em;
}

.cart .remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cart .remove:hover {
    text-decoration: underline;
}

[id*='removeProduct-'] {
    color: var(--official-blue-color);
}

[id*='removeProduct-'] i {
    font-size: .7em;
}

/***********************************************************************************************
* Breadcrumb
************************************************************************************************/
.breadcrumb {
    padding: .1em;
    margin-bottom: .1em;
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb .a-breadcrumb:nth-child(1) {
    padding-left: 0 !important;
}

.a-breadcrumb {
    padding: 0 .5em;
    text-decoration: none;
}

.breadcrumb .a-breadcrumb:last-child {
    font-family: var(--official-font-bold);
    font-size: 1.2em;
}

/***********************************************************************************************
* To do list products
************************************************************************************************/
[data-info="row"] {
    padding-bottom: 3em;
}

[data-info="col-product"]:nth-child(1),
[data-info="col-product"]:nth-child(4) {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

[data-info="col-product"]:nth-child(2) {
    border: 1px solid rgba(0, 0, 0, 0.09);
}

[data-info="col-product"]:nth-child(3) {
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    border-right: 1px solid rgba(0, 0, 0, 0.09);
}

.wrapper-product img {
    padding-top: 1em;
    height: 340px;
    width: 100%;
    object-fit: cover;
}

.title-product {
    font-size: 1.2em;
    padding: .5em 0;
    margin: 0;
    color: var(--official-blue-color);
}

.desc-product {
    font-size: .85em;
    min-height: 60px;
    color: #111;
}

.cost {
    font-family: var(--official-font-bold);
    color: #cc1c39;
}

.wrapper-product button[type="submit"] {
    background: #f0c14b;
    border: 1px solid;
    border-color: #a88734 #9c7e31 #846a29;
    color: #111;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .4) inset;
    width: 100%;
    font-size: .9em;
    margin: 1em 0;
    padding: .5em 0;
    border-radius: 3px;
}

/***********************************************************************************************
* To buy product
************************************************************************************************/
.select-product {
    padding-bottom: 4em;
}

[data-info="product-buy"] {
    padding: .5em 0;
}

.wrapper-prod img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.title-product-buy {
    font-family: var(--official-font-bold);
    color: #fff;
    font-size: 1.3em;
    padding: .3em .5em;
    border-radius: 3px;
    background-color: var(--official-blue-two-color);
    display: inline-block;
}

.cost-buy {
    font-size: 1.1em;
    color: var(--official-orange-color);
    font-family: var(--official-font-bold);
}

.desc-product-buy {
    padding: 1em 1em 1em 1.5em;
    font-size: .85em;
    min-height: 60px;
    color: #111;
}

.wrapper-fieldset {
    padding: .8em 0;
}

#fieldsetBatch,
#selectShipping input,
#typeShipping input {
    padding-left: 1.2em;
}

#fieldsetBatch legend,
#selectShipping legend,
#typeShipping legend {
    font-size: 16px;
    font-family: var(--official-font-regular);
}

#fieldsetBatch input,
#selectShipping input,
#typeShipping input {
    display: none;
}

#fieldsetBatch label,
#selectShipping label,
#typeShipping label {
    color: var(--official-blue-color);
    font-family: var(--official-font-bold);
    padding: .5em;
    border-radius: 3px;
    font-size: .9em;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.inline-button-batch,
.inline-button-shipping,
#selectType {
    display: flex;
    justify-content: space-between;
}

.inline-button-batch div {
    width: calc(100% / 3);
}

.inline-button-shipping div,
#selectType div {
    width: calc(100% / 2);
}

.batch-twelve,
.batch-fifty,
.no-shipping,
.label-express {
    border-right: 1px solid #eee;
}

.wrapper-all-qty {
    display: flex;
    align-items: center;
}

.wrapper-num-batch {
    margin: .3em .1em 0 1.3em;
    padding: 1em 1em 1em 1.3em;
    border: 1px solid #eee;
    border-radius: 3px;
}

.label-qty-buy,
.asterisk {
    font-family: var(--official-font-bold);
    color: var(--official-grey-color);
}

.asterisk {
    font-size: 2em;
    color: rgba(0, 0, 0, 0.4);
}

.wrapper-aster {
    display: flex;
}

.wrapper-aster span {
    padding-left: 1em;
}

/* Reset Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    background: var(--official-blue-color);
    background-image: none;
}

/* Remove IE arrow */
select::-ms-expand {
    display: none;
}

/* Custom Select */
.select {
    position: relative;
    display: flex;
    line-height: 1.7em;
    background: #2c3e50;
    overflow: hidden;
    border-radius: .25em;
}

.select-buy {
    width: 35%;
}

.csOp select {
    background-color: var(--official-blue-two-color);
}

select {
    flex: 1;
    padding: 0 1.3em;
    color: #fff;
    cursor: pointer;
}

/* Arrow */
.select::after {;
    content: '\25BC' !important;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #DFE5F2;
    cursor: pointer;
    pointer-events: none;
    -webkit-transition: .25s all ease;
    -o-transition: .25s all ease;
    transition: .25s all ease;
}

/* Transition */
.select:hover::after {
    color: var(--official-orange-color);
}

#vBatch {
    font-family: var(--official-font-bold);
    font-size: 1.3em;
    line-height: 0;
    color: var(--official-orange-color);
}

.code-product-buy {
    font-size: .8em;
    padding: 1em 1.7em;
}

.code-product-buy label {
    color: #DFE5F2;
}

.code-product-buy input {
    font-family: var(--official-font-bold);
    color: var(--official-grey-color);
}

.add-information {
    padding-left: 1.5em;
}

.add-information h2 {
    font-family: var(--official-font-regular);
    font-size: 1em;
}

.add-information p {
    margin: 0;
}

.add-information p {
    font-family: var(--official-font-regular);
}

.add-information p span:first-child {
    font-family: var(--official-font-bold);
    font-size: .9em;
    color: var(--official-grey-color);
}

#countVCost {
    color: var(--official-orange-color);
    font-family: var(--official-font-bold);
    font-size: 1.3em;
}

input:disabled {
    background-color: #fff;
    border: none;
}

.order-it-now {
    font-size: 1.5em;
}

.select-shipping legend {
    font-size: 1em;
}

.wrapper-button-buy {
    display: flex;
    flex-wrap: wrap;
    padding: 2em 0;
    justify-content: center;
}

.wrapper-button-buy button {
    width: 100%;
    margin: .12em 0;
    padding: .3em;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.label-cs {
    margin-bottom: .5rem;
}

.total-rate {
    color: var(--official-orange-color);
    font-size: 1.2em;
    font-family: var(--official-font-bold);
}

p#messageError {
    background-color: #BF2A37;
    color: #fff;
    padding: .5em;
    display: none;
    border-radius: 3px;
}

p#messageCart {
    background-color: lightgreen;
    color: darkgreen;
    position: absolute;
    right: 50px;
    top: 100px;
    padding: .5em 1em;
    display: none;
    border-radius: 3px;
    z-index: 100;
}

/***********************************************************************************************
* Count car
************************************************************************************************/
#countCart {
    display: flex;
    justify-content: space-between;
    padding: 1em 1em;
    background-color: rgba(0, 0, 0, 0.01);
    border-radius: 3px;
}

/***********************************************************************************************
* Car list
************************************************************************************************/
.title-price-car-list {
    font-size: .9em;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: right;
    margin: 0;
    padding-right: 1.5em;
}

.car-list {
    display: flex;
    margin: 1em;
    border-top: 1px solid #eee;
    padding-top: 0.5em;
}

.car-list img {
    max-width: 100px;
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
}

.car-list > div {
    padding: 0 .5em;
    flex-grow: 0;
}

.car-list > div:last-child {
    flex-grow: 1;
}

.car-list a {
    text-decoration: none;
}

.car-list h2 {
    font-size: 1.2em;
    font-family: var(--official-font-bold);
}

.details-product-car-list {
    display: flex;
    width: 100%
}

.details-product-car-list > div:nth-child(1) {
    width: 50%
}

.details-product-car-list > div:nth-child(2) {
    width: 35%;
}

.details-product-car-list > div:nth-child(3) {
    width: 15%;
}

.wrapper-shipping-buynow {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wrapper-shipping-buynow label {
    display: flex;
    font-size: .8em;
}

.wrapper-shipping-buynow label > input {
    padding-left: .5em;
    font-family: var(--official-font-bold);
}

.desc-type,
.desc-region {
    font-size: .8em;
    font-family: var(--official-font-bold);
}

span.type-buy,
span.region-buy {
    font-family: var(--official-font-regular);
}

.cost-car-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: right;
    color: var(--official-orange-color);
    font-family: var(--official-font-bold);
    font-size: 1.1em;
}

.qty-order-list {
    display: flex;
}

.qty-order-list label {
    padding-right: .5em;
    font-size: .9em;
}

.multiple {
    padding-left: .5em;
}

.minimum-the-order p {
    font-size: .8em;
}

.wrapper-name-and-qty {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.subtotal-bottom-list {
    text-align: right;
    font-size: 1.1em;
    font-family: var(--official-font-bold);
    background-color: #eee;
    border-radius: 0 0 3px 3px;
    color: #1b1e21;
    padding: .2em 1em;
}

.wrapper-sub-total {
    display: flex;
    flex-wrap: wrap;
    background-color: #eee;
    padding: 2em 1em;
    border-radius: 3px;
}

.wrapper-sub-total div:first-child {
    padding-top: 0;
}

.wrapper-sub-total div {
    width: 100%;
    padding: .5em 0;
    border-bottom: 1px solid #D9D9D9;
}

.wrapper-sub-total div label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: var(--official-grey-color);
}

.wrapper-sub-total div input {
    width: 6em;
    text-align: right;
    background-color: transparent;
    font-family: var(--official-font-bold);
    color: var(--official-blue-color);
}

.wrapper-sub-total div:last-child input {
    font-size: 1em;
    color: var(--official-orange-color);
}

.wrapper-sub-total div:last-child label {
    font-size: 1.3em;
    font-family: var(--official-font-bold);
}

.wrapper-button-buynow {
    background-color: #eee;
    padding: 0 1em 0;
}

.wrapper-button-buynow .link-return-store {
    text-align: right;
    border: none;
    padding-top: 1.8em;
    padding-bottom: .8em;
    font-family: var(--official-font-bold);
}

.wrapper-button-buynow .link-return-store a {
    color: var(--official-blue-color);
}

.cost-shipping-buy-total {
    font-size: .8em;
}

.wrapper-shipping-buynow > div {
    width: 100%;
}

.cost-of-shipping-buynow {
    display: flex;
}

.sum-products-buynow,
.cost-of-shipping-buynow p {
    font-size: .8em;
}

.cost-of-shipping-buynow p + span {
    padding-left: .3em;
    font-size: .9em;
    font-family: var(--official-font-bold);
}

#sumProduct {
    font-family: var(--official-font-bold);
    font-size: 1.2em !important;
}

/***********************************************************************************************
* Search
************************************************************************************************/
/***********************
 * Essential Structure *
 ***********************/
.flexsearch--wrapper {
    height: auto;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    background: transparent;
    margin: 0;
    position: static;
}

.flexsearch--form {
    overflow: hidden;
    position: relative;
}

.flexsearch--input-wrapper {
    padding: 0 71px 0 0; /* Right padding for submit button width */
    overflow: hidden;
    position: relative;
}

.flexsearch--input {
    width: 100%;
}

/***********************
 * Configurable Styles *
 ***********************/
.flexsearch {
    /*padding: 0 25px 0 200px; /* Padding for other horizontal elements */
}

.flexsearch--input {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 60px;
    padding: 0 46px 0 15px;
    border-color: #888;
    border-radius: 35px; /* (height/2) + border-width */
    border-style: solid;
    border-width: 5px;
    margin-top: 15px;
    color: #333;
    font-family: 'Helvetica', sans-serif;
    font-size: 26px;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.flexsearch--submit {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    margin-top: 20px; /* margin-top + border-width */
    margin-right: 5px; /* border-width */
    background: transparent;
    color: #888;
    font-family: 'Helvetica', sans-serif;
    font-size: 40px;
    line-height: 60px;
    z-index: 1;
}

.flexsearch--input:focus {
    outline: none;
    border-color: var(--official-blue-color);
}

.flexsearch--input:focus::-webkit-input-placeholder {
    color: var(--official-blue-color);
}

.flexsearch--input:focus.flexsearch--submit {
    color: #333;
}

.flexsearch--submit:hover {
    color: #333;
    cursor: pointer;
}

::-webkit-input-placeholder {
    color: #888;
}

input:-moz-placeholder {
    color: #888
}

/****************
 * Pretify demo *
 ****************/
.h1 {
    float: left;
    margin: 25px;
    color: #333;
    font-family: 'Helvetica', sans-serif;
    font-size: 45px;
    font-weight: bold;
    line-height: 45px;
    text-align: center;
}

/***********************************************************************************************
* list Orders
************************************************************************************************/
#orders {
    width: 100%;
}

.wrapper-title-header-order {
    margin-left: 25px;
    font-family: var(--official-font-bold);
    color: var(--official-grey-color);
}

.wrapper-header-order {
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: #eee;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: .2em;
    border-radius: 3px;
}

.wrapper-header-order p,
.wrapper-header-order div {
    text-align: center;
    flex-grow: 1;
    width: 20%;
    padding: .5em;
}

.wrapper-header-order .no-pedido {
    font-family: var(--official-font-bold);
    font-size: .9em;
}

.wrapper-header-order .no-pedido span {
    color: var(--official-orange-color);
    font-size: 1em;
}

.wrapper-header-order input[type="submit" i] {
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: var(--official-blue-color);
}

.wrapper-header-order input[type="submit" i] + i {
    padding-left: .5em;
    color: var(--official-blue-color);
}

.wrapper-header-order input[type="submit" i]:hover {
    text-decoration: underline;
}

/************************************************************************************************
* Detail Order
************************************************************************************************/
.wrapper-header-detail-order {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #eee;
    padding: 1em;
}

.wrapper-header-detail-order > p {
    font-family: var(--official-font-bold);
    color: var(--official-grey-color);
    font-size: 1.1em;
    border-bottom: 1px solid var(--official-grey-color);
}

.sub-header {
    width: 100%;
    display: flex;
    padding-top: 1em;
}

.sub-header p {
    flex-grow: 1;
    width: 33.33%;
}

.sub-header i {
    font-size: .9em;
    padding-right: .2em;
}

.wrapper-detail-order {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    padding: 1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    margin: .5em 0;
}

.header-list {
    background-color: #ddd;
    padding: .3em 1em;
    margin: .1em 0 0;
}

.wrapper-detail-order > p {
    flex-grow: 1;
    width: 25%;
}
.wrapper-detail-order > p{
    padding-left: 1em;
}

.wrapper-detail-order > p:nth-child(2),
.wrapper-detail-order > p:nth-child(3) {
    text-align: center;
}

.wrapper-detail-order > p:nth-child(4) {
    text-align: right;
    font-size: 1.1em;
    padding-right: 1em;
}
.wrapper-detail-order-shipping{
    display: flex;
    width: 100%;
}
.wrapper-detail-order-shipping > div {
    display: flex;
    flex-grow: 1;
    width: 100%;
    background-color: #fafafa;
    padding: 1em 1em;
    border-radius: 3px;
}
.wrapper-detail-order-shipping > div:nth-child(1) p{
    width: 50%;
    font-size: .9em;
    line-height: 0;
}
.wrapper-detail-order-shipping > div:nth-child(2) p{
    width: 100%;
    text-align: right;
    line-height: 0;
    font-size: 1.1em;
}
.wrapper-detail-order-shipping > div:nth-child(1) p span{
    font-size: .8em;
}

.wrapper-total-order {
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-align: right;
    background-color: var(--official-blue-two-color);
    padding: .3em 1em;
    font-family: var(--official-font-bold);
    color: #fff;
    font-size: 1.2em;
    border-radius: 3px;
}

.wrapper-print-invoice {
    margin-top: 2em;
}

.wrapper-print-invoice input {
    text-align: center;
    width: 100%;
    background-color: transparent;
    font-family: var(--official-font-bold);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: .5em;
    border-radius: 3px;
    cursor: pointer;
}

/************************************************************************************************
* All rights styles -- footer
************************************************************************************************/
.all-rights {
    display: flex;
    justify-content: center;
    background-color: #eee;
    padding: 1em 0;
    font-size: .8em;
}

/************************************************************************************************
* Button main order
************************************************************************************************/
.wrapper-main-title{
    background-color: var(--official-blue-color);
    color: #fff;
    padding: .5em 1em;
    border-radius: 3px;
    margin-bottom: 2em;
}
.wrapper-main-title h2{
    margin: 0;
    font-family: var(--official-font-bold);
}

[data-info="row-button"] {
    padding: 1em 0;
}

[data-info="row-button"] img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

.wrapper-button-main {
    position: relative;
    width: 100%;
}

.wrapper-button-main h2 {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
}

.wrapper-button-main h2 span {
    color: white;
    font: bold 24px/45px Helvetica, Sans-Serif;
    letter-spacing: -1px;
    /*background: rgb(0, 0, 0); /* fallback color */
    background: rgba(35, 101, 162, 0.8);
    padding: 10px;
}
