/**
  * full-width window
 */
.md-modal {
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    visibility: hidden;
    backface-visibility: hidden;
    background: white;
    padding: 20px;
    max-width: 100%;
}

.md-modal.medium {
    background: white;
    box-shadow: 2px 4px 20px rgba(128, 128, 128, 0.3607843137);
    border-radius: 0.3rem;
    padding: 20px;
    top: 10vh;
    left: 0;
    right: 0;
    width: 600px;
    height: auto;
}

.md-modal .md-close {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f6f6f6;
    border-radius: 100%;
    box-shadow: 0 0 54px rgba(0, 0, 0, 0.07);
    cursor: pointer;
}

.md-modal .md-close:hover {
    background-color: #eeeeee;
}

.md-modal .md-close svg {
    width: 28px;
    height: 28px;
}

.md-modal .md-modal-title {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    margin-right: 40px;
}

.md-modal .md-content {
    max-width: 1180px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}

.md-modal .md-content h3 {
    min-height: 40px;
}

.md-modal .woocommerce-mini-cart__buttons {
    display: none;
}

.md-modal .alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.md-modal .alert.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    margin-top: 10px;
}

.md-modal .alert.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
    margin-top: 10px;
}

.md-show {
    visibility: visible;
}

.md-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: hidden;
    top: 0;
    left: 0;
    z-index: 10000;
    opacity: 0;
    background: rgba(94, 94, 94, 0.8);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.md-overlay.bg-load {
    position: fixed;
    width: 100%;
    height: 100%;
    visibility: visible;
    top: 0;
    left: 0;
    z-index: 10000;
    opacity: 1;
    transition: all 0.3s;
    border-radius: 0.3rem;
    background: linear-gradient(100deg, #eceff1 30%, #f6f7f8 50%, #eceff1 70%);
    background-size: 400%;
    animation: loading 1.2s ease-in-out infinite;
    color: rgba(5, 5, 5, 0.4509803922) !important;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.md-show ~ .md-overlay {
    opacity: 1;
    visibility: visible;
}

.md-effect-12 .md-content {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.md-effect-12 .md-content h3,
.md-effect-12 .md-content {
    background: transparent;
}

.md-show.md-effect-12 .md-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.md-modal .product_list_widget {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 400px;
    transition: opacity 0.3s;
    transition-timing-function: cubic-bezier(0.67, 0.17, 0.32, 0.95);
    display: block;
    list-style: none outside;
    padding: 0;
    margin: 0 0 0 0;
    font-size: 15px;
    line-height: 20px;
}

.md-modal .product_list_widget .mini_cart_item {
    min-height: 80px;
    display: flex;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: auto;
    border-bottom: 1px solid rgba(189, 185, 185, 0.49);
    padding: 10px;
    margin-bottom: 0;
    max-width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    /*&:hover {
      .remove {
        opacity: 0.8;
        visibility: visible;
      }
    }*/
}

.md-modal .product_list_widget .mini_cart_item dl.variation dt {
    display: inline-block;
    line-height: normal;
    margin: 0 5px 0 10px;
}

.md-modal .product_list_widget .mini_cart_item dl.variation dd {
    display: inline-block;
    margin: 0;
    line-height: 0;
    padding: 0 10px 0 0;
}

.md-modal .product_list_widget .mini_cart_item dl.variation dd p {
    margin: 0;
}

.md-modal .product_list_widget .mini_cart_item span.quantity {
    font-weight: bold;
    margin-left: 40px;
    margin-right: 40px;
    float: right;
    display: block;
}

.md-modal .product_list_widget .mini_cart_item:nth-child(1) {
    transition: all 0.625s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(2) {
    transition: all 0.75s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(3) {
    transition: all 0.875s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(4) {
    transition: all 1s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(5) {
    transition: all 1.125s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(6) {
    transition: all 1.25s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(7) {
    transition: all 1.375s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(8) {
    transition: all 1.5s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(9) {
    transition: all 1.625s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(10) {
    transition: all 1.75s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(11) {
    transition: all 1.875s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(12) {
    transition: all 2s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(13) {
    transition: all 2.125s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(14) {
    transition: all 2.25s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:nth-child(15) {
    transition: all 2.375s cubic-bezier(0.67, 0.17, 0.32, 0.95);
}

.md-modal .product_list_widget .mini_cart_item:before, .md-modal .product_list_widget .mini_cart_item:after {
    content: " ";
    display: table;
}

.md-modal .product_list_widget .mini_cart_item:after {
    clear: both;
}

.md-modal .product_list_widget .mini_cart_item a:not(.remove) {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.5em;
    transition: all 0.3s;
    display: flex;
    justify-content: left;
    align-items: center;
    flex-grow: 2;
}

.md-modal .product_list_widget .mini_cart_item a:not(.remove):hover {
    opacity: 0.8;
}

.md-modal .product_list_widget .mini_cart_item a img {
    margin-right: 20px;
}

.md-modal .product_list_widget .mini_cart_item .remove {
    display: none;
    position: absolute;
    top: 34px;
    right: 14px;
    left: initial;
    color: black !important;
    text-align: center;
    padding: 0 !important;
    margin: 0 !important;
    width: 30px;
    height: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    font-size: 24px;
    line-height: 1.2;
    border: 0 !important;
    background-color: #f6f6f6;
    border-radius: 100%;
    box-shadow: 0 0 54px rgba(0, 0, 0, 0.07);
}

.md-modal .total {
    padding: 30px 25px 20px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    border-top: none;
}

.md-modal .total strong {
    font-weight: normal;
    min-width: 40px;
    display: inline-block;
    line-height: 24px;
}

.md-modal .total .amount {
    color: black;
    font-size: 19px;
    line-height: 24px;
    font-weight: bold;
    padding-right: 5px;
    display: inline-block;
    margin-top: 0;
    text-align: right;
    float: right;
}

.md-modal .md-body .modal-checkout-fields {
    margin: 30px auto;
}

.md-modal .md-body .modal-checkout-fields label {
    max-width: 300px;
    display: block;
    margin: 5px auto;
}

.md-modal .md-body label input {
    width: 100%;
}

.md-modal .mini_cart_item, .md-modal .to_top.mini_cart_item {
    line-height: 20px !important;
}

.md-modal .mini_cart_item:hover, .md-modal .empty:hover {
    border-top: none !important;
}

.md-modal .mini_cart_item a::after {
    display: none !important;
}

.md-modal li.empty {
    line-height: 20px !important;
    width: 100% !important;
}

.table-info {
    padding: 0 20px;
    background-color: black;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    line-height: 48px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.bg-load {
    color: transparent !important;
    border-radius: 0.3rem;
    background: linear-gradient(100deg, #eceff1 30%, #f6f7f8 50%, #eceff1 70%);
    background-size: 400%;
    animation: loading 1.2s ease-in-out infinite;
}

.bg-load span {
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.bg-load span:nth-child(2) {
    animation-delay: 0.2s;
}

.bg-load span:nth-child(3) {
    animation-delay: 0.4s;
}

@media (max-width: 768px) {
    .md-modal {
        top: 0;
        width: 100%;
        height: 100%;
        overflow: scroll;
    }

    label input {
        width: 100%;
    }

    .product_list_widget .mini_cart_item .remove {
        top: 24px;
    }

    .table-info {
        padding: 6px 20px;
        text-align: center;
        left: 0;
        right: auto;
    }
}

@media (max-width: 428px) {
    .product_list_widget .mini_cart_item {
        text-align: center;
        flex-direction: column;
    }

    .product_list_widget .mini_cart_item a:not(.remove) {
        display: inline-block;
        text-align: center;
        margin: 0;
        font-size: 16px;
        line-height: 1.4;
    }

    .product_list_widget .mini_cart_item a img {
        width: auto;
        height: auto;
        position: initial;
        margin: 0 auto;
        text-align: center;
        display: block;
    }

    .product_list_widget .mini_cart_item dl.variation {
        margin: 0 0 0 20px;
        text-align: left;
    }

    .product_list_widget .mini_cart_item dl.variation dt {
        width: calc(100% - 40px);
    }

    .product_list_widget .mini_cart_item span.quantity {
        float: none;
        padding: 0;
        margin: 5px;
    }

    .product_list_widget .mini_cart_item .remove {
        top: 30%;
    }
}

@keyframes loading {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

@keyframes blink {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

/*# sourceMappingURL=modal.css.map */
