.inprocess {
    color: transparent !important;
    cursor: default;
    position: relative;
    
}
.inprocess *{
    display: none !important;
    opacity: 0 !important;
    visibility: hidden;
    font-size: 0 !important;
}
.inprocess:after {
    content: " ";
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 50%;
    margin-right: -15px;
    margin-top: -15px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -webkit-animation-name: spin;
    -webkit-animation-duration: 600ms;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation: spin 600ms linear infinite;
    animation: spin 600ms linear infinite;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.inprocess.darkprocess:after {

    border-top: 2px solid #000;;
    border-bottom: 2px solid #000;;
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


p.errorP{
    color: #fb7f7f;
    font-size: 0.7rem;
    margin-top: 5px;

}
.dropdown-menu{
    right: 0 !important;
    text-align: right!important;
}
.dropdown-item {
    padding: .25rem 1rem !important;
}
.dropdown-item a{
    line-height: 1.5 !important;
}
.custom-control-label.selected::before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
}
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .dropdown-menu{
    display: none !important;
}
.dropdown-submenu:hover .dropdown-menu {
    display: block !important;
    margin-top: 0;
}
.dropdown-submenu .dropdown-menu {
    top: 0;
    right: 100% !important;
    margin-top: -1px;
}
.dropdown-toggle::after {
    margin-right: 7px;
}
.dropdown-submenu .dropdown-toggle::after {
    transform: rotate(90deg);
    left: 0;
    position: absolute;
    top: 15px;
}
.wha-popup {
    position: fixed;
    left: 20px;
    bottom: 20px;
    cursor: pointer;
    z-index: 9;
}
.wha-popup .wha-ico {
    width: 56px;
    height: 56px;
    background: #2db742;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0 6px 8px 2px rgba(0,0,0,.14);
    -webkit-box-shadow: 0 6px 8px 2px rgba(0,0,0,.14);
    -moz-box-shadow: 0 6px 8px 2px rgba(0,0,0,.14);
}
.wha-popup .wha-ico::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: transparent url("/public/img/whatsapp.svg") center center no-repeat;
    background-size: 30px auto;
    -webkit-background-size: 30px auto;
    -moz-background-size: 30px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
}
.wha-popup .wha-ico::after {
    content: '';
    opacity: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: transparent url("/public/img/close.svg") center center no-repeat;
    background-size: 14px auto;
    -webkit-background-size: 14px auto;
    -moz-background-size: 14px auto;
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    -ms-transform: scale(0) rotate(360deg);
    transform: scale(0) rotate(360deg);
    -webkit-transform: scale(0) rotate(360deg);
    -moz-transform: scale(0) rotate(360deg);
}
.wha-popup.active-item .wha-ico::before {
    opacity: 0;
    -ms-transform: scale(0) rotate(-360deg);
    transform: scale(0) rotate(-360deg);
    -webkit-transform: scale(0) rotate(-360deg);
    -moz-transform: scale(0) rotate(-360deg);
}
.wha-popup.active-item .wha-ico::after {
    opacity: 1;
    -ms-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
}

.wha-content {
    width: 350px;
    border-radius: 5px 5px 8px 8px;
    -webkit-border-radius: 5px 5px 8px 8px;
    -moz-border-radius: 5px 5px 8px 8px;
    position: fixed;
    overflow: hidden;
    box-shadow: 0 10px 10px 4px rgba(0,0,0,.04);
    -webkit-box-shadow: 0 10px 10px 4px rgba(0,0,0,.04);
    -moz-box-shadow: 0 10px 10px 4px rgba(0,0,0,.04);
    bottom: 90px;
    left: 20px;
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translate(0,50px);
    transform: translate(0,50px);
    -webkit-transform: translate(0,50px);
    -moz-transform: translate(0,50px);
    transition: 0.4s ease all;
    -webkit-transition: 0.4s ease all;
    -moz-transition: 0.4s ease all;
    will-change: transform,visibility,opacity;
    max-width: calc(100% - 40px);
}
.wha-content .content-items {
    background: #2db742;
    position: relative;
    padding: 15px 74px 17px 43px;
    color: #fff;
    line-height: 25px;
    display: block;
    font-size: 13px;
    font-weight: bold;
}
.wha-content .content-items::before {
    content: '';
    background: url("/public/img/whatsapp.svg") center top no-repeat;
    background-size: 33px;
    display: block;
    width: 55px;
    height: 33px;
    position: absolute;
    top: 21px;
    right: 12px;
}
.wha-content .item-title {
    font-size: 14px;
}

.wha-content.active-item {
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    visibility: visible;
    opacity: 1;
}
.credits {
    display: flex;
    justify-content: end;
}
.credits a {
    width: 150px;
    height: 150px;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 120px;
    margin-right: 5px;
}
.credits img {
    margin: 0 4px 12px;
    padding: 3px;
}
.detailShop{

    display: flex;
    justify-content: space-between;
    width: 100%;
}

.detailShop .item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 33%;
    border-left: 1px solid #eee;
}
.detailShop .item-info:last-child {
    border: 0;
}
.detailShop .item-info a{
    font-size: .65rem;
}
.detailShop .item-info .ac{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: .65rem;
    color: #9f9f9f;
}
.detailShop .item-info .ac i{
    margin-left: 5px;
}

.onShopSatus .dot {
    background: red;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: 10px;
}
.onShopSatus .dot.active {
    background: rgba(0,255,0,1);
    animation: pulses 2s infinite;
}

@keyframes pulses {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

.boxAdditives{
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.boxAdditives > label{
    font-size: .9rem;
    font-weight: bold;
}
.boxAdditives li{
    border-bottom: 1px solid #eee;
    padding-bottom: .7rem;
    margin-bottom: .7rem !important;
}
.boxAdditives li:last-child{
    border-bottom: 0;
    padding-bottom: 0;
}

.radio-btn , .checkbox-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
    margin-bottom: 0;
    
}

.radio-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ddd;
    position: relative;
    transition: 0.3s;

}

.radio-btn span::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    transition: 0.3s;
    transform: scale(0);
}

.radio-btn input {
    display: none;
}

.radio-btn input:checked ~ span {
    background-color: var(--pinax-main);
}

.radio-btn input:checked ~ span::before {
    transform: scale(1);
}

/* Checkbox Input */
.checkbox-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #ddd;
    transition: 0.3s;
    border-radius: 5px;
}

.checkbox-btn span::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 6px;
    border-bottom: 3px solid #fff;
    border-left: 3px solid #fff;
    transform: scale(0) rotate(-45deg);
    position: relative;
    bottom: 1px;
    transition: 0.3s;
}

.checkbox-btn input {
    display: none;
}

.checkbox-btn input:checked ~ span {
    background-color: var(--pinax-main);
}

.checkbox-btn input:checked ~ span::before {
    transform: scale(1) rotate(-45deg);
}
