/* Custom select */
*, :after, :before {
    box-sizing: border-box;
}

.w-50 {
    width: 50%;
}

.mb-15 {
    margin-bottom: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-24 {
    margin-bottom: 24px;
}

.ml-8 {
    margin-left: 8px;
}

.mr-8 {
    margin-right: 8px;
}

.icon-rotate-flip {
    transform: rotate(180deg);
}

.flex {
    display: flex;
}

.default-hide {
    display: none;
}

.discount-color {
    color: #007000;
}

.position-relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.custom-select {
    color: #777;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    font-size: 14px;
    position: relative;
}

.custom-select svg {
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
}

.custom-select svg path {
    fill: var(--primary-color);
}

#loader-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    z-index: 10;
    visibility: hidden;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}
.loader {
    color: var(--primary-color);
    font-size: 10px;
    margin: 80px auto;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}
.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}
.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}
.loader:after {
    left: 3.5em;
}
@-webkit-keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}
@keyframes load7 {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.spanner, .overlay{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.spanner.show, .overlay.show {
    opacity: 1
}

.show {
    visibility: visible !important;
}

.pagination {
    display: inline-flex;
    flex-shrink: 0;
    list-style: none;
}

.pagination .pagination-item {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    height: 40px;
    justify-content: center;
    min-width: 40px;
}
.pagination .pagination-item:not(:last-of-type) {
    margin-right: 8px;
}

.pagination .pagination-link {
    align-items: center;
    border: 1px solid #E6E6E8;
    color: #686E7D;
    border-radius: 4px;
    display: inline-flex;
    height: 100%;
    justify-content: center;
    padding: 0 8px;
    background: transparent;
    width: 100%;
    font-size: 13px;
    line-height: 1.5;
}

.pagination-item.active {
    background-color: #F8F8FB;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 700;
}

.pagination .pagination-item:not(.active) .pagination-link:hover {
    border-color: #bbbbbb;
    text-decoration: none;
}

.pagination .pagination-text {
    color: var(--primary-color);
    font-size: 13px;
    line-height: 1.5;
}

.pagination-icon-with-text {
    align-items: flex-start;
    display: inline-flex;
}

.pagination .pagination-link.pagination-arrow {
    padding: 12px;
}

.pagination .pagination-icon svg {
    fill: var(--primary-color);
    display: inline-block;
    height: 12px;
    vertical-align: middle;
    width: 12px;
}

.checkout-container .form-control {
    display: block;
    width: 100%;
    height: 44px;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: none;
    border: 2px solid #B3B3BB;
    margin: 0;
    padding: 6px 12px;
    line-height: 1.42857143;
    font-family: inherit;
    color: #555;
    outline: 0 none;
    background-color: #fff;
    background-image: none;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.checkout-container .form-group {
    margin-bottom: 15px;
}

.field-inner-error {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: 400;
    font-size: 13px;
    font-style: inherit;
    color: inherit;
    line-height: normal;
}

.field-error {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    color: #e71219;
    vertical-align: middle;
    padding-top: 4px;
}

.field-error-icon {
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
}

.field-error-icon svg{
    fill: #e71219;
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    height: auto;
    margin-top: -1px;
    vertical-align: middle;
    transform: translate(-50%, -50%);
    overflow: hidden;
    width: 16px;
}

label {
    display: block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
}

.checkout-container .form-control:focus,
.checkout-container .form-control:active {
    border-color: var(--primary-color);
}

@media (max-width: 420px) {
    .max-420px-w-full {
        width: 100%;
    }
    .sort-order-container {
        justify-content: center;
    }
}
