body form .row {
    display: flex;
    flex-wrap: wrap;
    /* position: relative; */
}

.col-md-6, .col-md-4, .col-md-3, .col-md-12 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-inline: calc(var(--wd-sp, 30px) / 2);
    flex: 0 0 50%;
    max-width: 50%;
}

@media (min-width: 769px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 769px) {
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* body form .customer-section{
     position: sticky;
      top: 20px;
      background: #f9f9f9;
      padding: 10px;
      border: 1px solid #ccc;
      z-index: 10;
} */
body .select2-container--default .select2-selection {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 0px;
    background-color: transparent;
    transition: border-color .4s ease;
}

body form .select2-container--default .select2-selection--single{
    margin-bottom: 2px;
    padding: 0 15px;
    height: 42px;
    text-align: start;
    font-size: 14px;
    line-height: 38px;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered{
    display: inline;
    padding-inline: 0 !important;
    color: inherit;
    line-height: 1.4;
}

body .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 8px;
    inset-inline-end: 10px !important;
    background-image: var(--wd-form-chevron);
    background-position: right 1px top 50%;
    background-size: auto 18px;
    background-repeat: no-repeat;
}

body form .justify-content-end {
    position: sticky; 
    top: 0; 
    background: white; 
    z-index: 100;
}

a.user-reg-link, a.prod-link, .btn{
    background-color: #fecb27 !important;
	color: #222 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;	
	-webkit-border-radius: 0 !important;
	border-radius: 0 !important;
	font-size: 13px !important;	
    line-height: 18px !important;	
    padding: 12px 20px !important;	
    font-weight: 600 !important;		
    text-align: center !important;	
    text-transform: uppercase !important;	
    letter-spacing: .3px !important;	
    border-radius: 0 !important;	
    border-width: 0 !important;	
    border-style: solid !important;	
    border-color: transparent !important;	
    outline: 0 !important;
}

.pwd-btn{
    margin-top: 10px;
}

#btn-add-cart{
    margin-top: 30px;
}

a.user-reg-link{
    margin-top: 30px !important;
    display: inline-block;
}

a.user-reg-link:hover,
a.prod-link:hover{
    background-color: #f28f07;
}

body .row hr{
    border-top: 1px solid #bbb;
    width: 100% !important;
    max-width: unset;
}

body form .alert{
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

body form .alert-success{
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

body form .alert-danger{
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

body button.btn{
    cursor: pointer;
}

@keyframes dots {
    0%, 20% {
        color: rgba(0, 0, 0, 0);
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }
    40% {
        color: black;
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }
    60% {
        text-shadow:
            .25em 0 0 black,
            .5em 0 0 rgba(0, 0, 0, 0);
    }
    80%, 100% {
        text-shadow:
            .25em 0 0 black,
            .5em 0 0 black;
    }
}

.loading-dots::after {
    content: '...';
    animation: dots 1s steps(5, end) infinite;
}

/* body form .row .form-group.required label::after{
    content: " *";
    color: red;
} */

.prod-stat{
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    font-size: x-small;
}

.prod-visible {
    background-color: #e0f7e9;
    color: #2e7d32;
}

.prod-hidden {
    background-color: #ffe5e5;
    color: #c62828;
}