/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

.CustomModel * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
.CustomModel section {
    position: fixed;
    height: 100%;
    width: 100%;
    background: white !important;
}
.CustomModel .btnAddToCart {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: var(--color-btn-cmn);
    border-radius: 6px;
    cursor: pointer;
    width: 300px;
    height: 40px
}
.CustomModel button:hover {
    background-color: var(--color-hover);
}
    .CustomModel button.show-modal,
    .CustomModel .modal-box {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
.CustomModel section.active .show-modal {
    display: none;
}
.CustomModel .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
}
.CustomModel section.active .overlay {
    opacity: 1;
    pointer-events: auto;
}
.CustomModel .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: rgba(0, 0, 0, 1) 0px 3px 8px;
}
.CustomModel section.active .modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.CustomModel .modal-box i {
    font-size: 70px;
    color: #4070f4;
}
.CustomModel .modal-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: #333;
}
.CustomModel .modal-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
}
.CustomModel .modal-box .buttons {
    margin-top: 5px;
}
.CustomModel .modal-box button {
    font-size: 14px;
    padding: 6px 12px;
    margin: 0 0px;
}

/*mobile view*/

.CustomNumericModel * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.CustomNumericModel section {
    position: fixed;
    height: 100%;
    width: 100%;
    background: white !important;
}

.CustomNumericModel .btnAddToCart {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: #4070f4;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    height: 40px
}

.CustomNumericModel button:hover {
    background-color: #265df2;
}

.CustomNumericModel button.show-modal,
.CustomNumericModel .modal-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.CustomNumericModel section.active .show-modal {
    display: none;
}

.CustomNumericModel .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
}

.CustomNumericModel section.active .overlay {
    opacity: 1;
    pointer-events: auto;
}

.CustomNumericModel .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: rgba(0, 0, 0, 1) 0px 3px 8px;
}

.CustomNumericModel section.active .modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.CustomNumericModel .modal-box i {
    font-size: 70px;
    color: #4070f4;
}

.CustomNumericModel .modal-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: #333;
}

.CustomNumericModel .modal-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
}

.CustomNumericModel .modal-box .buttons {
    margin-top: 5px;
}

.CustomNumericModel .modal-box button {
    font-size: 25px;
    padding: 6px 12px;
    margin: 0 0px;
}

    .CustomNumericModel .modal-box button:hover {
        background-color: var(--color-primary);
        color: #fff;
    }

.CustomNumericModel .modal-box .btnOrderSave {
    background-color: var(--color-primary);
    color: #fff;
}


/*Massage POPUP*/



.CustomMsgModel * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.CustomMsgModel section {
    position: fixed;
    height: 100%;
    width: 100%;
    background: white !important;
}

.CustomMsgModel .btnAddToCart {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: #4070f4;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    height: 40px
}

.CustomMsgModel button:hover {
    background-color: var(--color-primary);
}

.CustomMsgModel button {
    background-color: var(--color-primary);
    color: white;
}

.CustomMsgModel button.show-modal,
.CustomMsgModel .modal-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.CustomMsgModel section.active .show-modal {
    display: none;
}

.CustomMsgModel .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
}

.CustomMsgModel section.active .overlay {
    opacity: 1;
    pointer-events: auto;
}

.CustomMsgModel .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 460px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: rgba(0, 0, 0, 1) 0px 3px 8px;
}

.CustomMsgModel section.active .modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.CustomMsgModel .modal-box i {
    font-size: 70px;
    color: var(--color-primary);
}

.CustomMsgModel .modal-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: var(--color-primary);
}

.CustomMsgModel .modal-box h3 {
    font-size: 24px;
    font-weight: bold !important;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
}

.CustomMsgModel .modal-box .buttons {
    margin-top: 5px;
}

.CustomMsgModel .modal-box button {
    font-size: 25px;
    padding: 6px 12px;
    margin: 0 0px;
}


/*DYO Detail POPUP*/



.DYOCustomModel * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.DYOCustomModel section {
    position: fixed;
    height: 100%;
    width: 100%;
    background: white !important;
}

.DYOCustomModel .btnAddToCart {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: #4070f4;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    height: 40px
}

.DYOCustomModel button:hover {
    background-color: #265df2;
}

.DYOCustomModel button.show-modal,
.DYOCustomModel .modal-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.DYOCustomModel section.active .show-modal {
    display: none;
}

.DYOCustomModel .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
}

.DYOCustomModel section.active .overlay {
    opacity: 1;
    pointer-events: auto;
}

.DYOCustomModel .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: rgba(0, 0, 0, 1) 0px 3px 8px;
}

.DYOCustomModel section.active .modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.DYOCustomModel .modal-box i {
    font-size: 70px;
    color: #4070f4;
}

.DYOCustomModel .modal-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: #333;
}

.DYOCustomModel .modal-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
}

.DYOCustomModel .modal-box .buttons {
    margin-top: 5px;
}

.DYOCustomModel .modal-box button {
    font-size: 25px;
    padding: 6px 12px;
    margin: 0 0px;
}



/*Screen time Out*/


.ScreenTimeOutModel * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.ScreenTimeOutModel section {
    position: fixed;
    height: 100%;
    width: 100%;
    background: white !important;
}

.ScreenTimeOutModel .btnAddToCart {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: #4070f4;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    height: 40px
}

.ScreenTimeOutModel button:hover {
    background-color: var(--color-primary);
}

.ScreenTimeOutModel button {
    background-color: var(--color-primary);
    color: white;
}


.ScreenTimeOutModel button.show-modal,
.ScreenTimeOutModel .modal-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.ScreenTimeOutModel section.active .show-modal {
    display: none;
}

.ScreenTimeOutModel .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    /*background: rgba(0, 0, 0, 0.3);*/
    background: white !important;
    opacity: 0;
    pointer-events: none;
}

.ScreenTimeOutModel section.active .overlay {
    opacity: 1;
    pointer-events: auto;
}

.ScreenTimeOutModel .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: rgba(0, 0, 0, 1) 0px 3px 8px;
}

.ScreenTimeOutModel section.active .modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.ScreenTimeOutModel .modal-box i {
    font-size: 70px;
    color: var(--color-primary);
}

.ScreenTimeOutModel .modal-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: var(--color-primary);
}

.ScreenTimeOutModel .modal-box h3 {
    font-size: 16px;
    font-weight: bold !important;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
}

.ScreenTimeOutModel .modal-box .buttons {
    margin-top: 5px;
}

.ScreenTimeOutModel .modal-box button {
    font-size: 25px;
    padding: 6px 12px;
    margin: 0 0px;
}





/*reset order time Out*/


.ResetOrderModel * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.ResetOrderModel section {
    position: fixed;
    height: 100%;
    width: 100%;
    background: white !important;
}

.ResetOrderModel .btnAddToCart {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: #4070f4;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    height: 40px
}

.ResetOrderModel button:hover {
    background-color: var(--color-primary);
}
.ResetOrderModel button {
    background-color: var(--color-primary) !important;
    color : white;
}

.ResetOrderModel button.show-modal,
.ResetOrderModel .modal-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.ResetOrderModel section.active .show-modal {
    display: none;
}

.ResetOrderModel .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    /*background: rgba(0, 0, 0, 0.3);*/
    background: white !important;
    opacity: 0;
    pointer-events: none;
}

.ResetOrderModel section.active .overlay {
    opacity: 1;
    pointer-events: auto;
}

.ResetOrderModel .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: rgba(0, 0, 0, 1) 0px 3px 8px;
}

.ResetOrderModel section.active .modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.ResetOrderModel .modal-box i {
    font-size: 70px;
    color: var(--color-primary);
}

.ResetOrderModel .modal-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: var(--color-primary);
}

.ResetOrderModel .modal-box h3 {
    font-size: 24px;
    font-weight: bold !important;
    font-weight: 400;
    color: var(--color-primary);
    text-align: center;
}

.ResetOrderModel .modal-box .buttons {
    margin-top: 5px;
}

.ResetOrderModel .modal-box button {
    font-size: 25px;
    padding: 6px 12px;
    margin: 0 0px;
}

