.alert {
    padding: 0 !important;
    border: none !important;
    font-size: 13px !important;
    background: none !important;
}
#billing_country_field,.woocommerce-form-coupon-toggle{
   display:none;
}


/*custom modal start*/
.custom-modal-open {
    overflow: hidden;
    padding-right: var(--scrollbar-width);
}

.custom-modal {
    padding-inline: 15px;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 99999;
    overflow: hidden;
}

.custom-modal.custom-fade {
    transition: opacity .15s linear;
}

.custom-modal.custom-fade:not(.custom-show) {
    opacity: 0;
}

.custom-modal-open .custom-modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.custom-modal-dialog {
    margin: 2rem auto;
    max-width: 889px;
    position: relative;
    pointer-events: none;
}

.custom-modal.custom-fade .custom-modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

.custom-modal.custom-show .custom-modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.custom-modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 4rem);
}

.custom-modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 4rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}

.custom-modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    outline: 0;
}

.custom-modal .close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    color: #000;
    float: none;
    opacity: 1;
    text-shadow: none;
}

.custom-modal .close svg {
    width: 1em;
    height: 1em;
    vertical-align: top;
}

.custom-modal-block {
    display: flex;
    flex-wrap: wrap;
}

.custom-modal-block .custom-modal-left {
    flex-basis: 40%;
    max-width: 40%;
}

.custom-modal-block .custom-modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-modal-block .custom-modal-right {
    flex-basis: 60%;
    max-width: 60%;
    text-align: center;
    padding: 40px;
}

.custom-modal-block .custom-modal-right img {
    margin-bottom: 20px;
    max-width: 199px;
}

.custom-modal .custom-modal-title {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #EE7328;
    font-family: 'Assistant';
}

.custom-modal .custom-modal-desc {
    margin-bottom: 30px;
    font-family: 'Assistant';
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #000000;
}

.custom-modal .custom-modal-desc p:last-child {
    margin-bottom: 0;
}

.custom-modal .btn {
    min-width: 181px;
    min-height: 45px;
    background: #EE7328;
    border-radius: 100px;
    border: 1px solid #EE7328;
    font-family: 'Assistant';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 5px 15px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.custom-modal .btn:not(.disabled):not(:disabled):hover {
    background: #fff;
    color: #EE7328;
    border-color: #EE7328;
}

@media (max-width: 767px) {
    .custom-modal-block .custom-modal-left {
        flex-basis: 100%;
        max-width: 100%;
    }

    .custom-modal-block .custom-modal-right {
        flex-basis: 100%;
        max-width: 100%;
        padding: 20px 30px 30px;
    }

    .custom-modal .close {
        top: 16px;
        left: 16px;
    }

    .custom-modal-block .custom-modal-right img {
        max-width: 167px;
    }

    .custom-modal .custom-modal-title {
        font-size: 20px;
    }

    .custom-modal .custom-modal-desc {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
/*custom modal end*/