:root {
    --nurito: "Nunito", sans-serif;
    --noto: "Noto Sans Khojki", sans-serif;
    --archivo: "Archivo Black", sans-serif;
    --merr: "Merriweather Sans", sans-serif;
    --Magnolia: 'MagnoliaScript', sans-serif;
}

.modal {
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    min-width: 370px !important;
}

.modal-header {
    border-bottom: none;
    /* margin-top: 20px; */
    color: rgb(0, 81, 255);
}

.modal-header h3 {
    font-weight: bold !important;
    font-family: var(--nurito);
}

.modal-footer {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
}

.modal-body {
    overflow-y: hidden !important;
    font-family: var(--nurito);
}

.popup-btn {
    all: unset;
    cursor: pointer;
    background: rgb(0, 140, 255);
    color:#fff;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 5px;
}

.popup-btn.closed {
    background: #8f8f8f;
}

.modal-dialog2{
    overflow-y: initial !important
}
.modal-header {
    text-align:center;
}
.modal-body2{
    padding:20px 30px;
    padding-top: 10px;
    text-align:center;
    overflow-y: auto;
    font-family: var(--nurito);
    overflow-y: hidden;
}

.modal.reminder {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

.modal.reminder .modal-header {
    margin-top: 20px;
}

.blueBold {
    color:#2596be;
    font-weight:bold;
}

.redBold {
    font-weight: bold;
    color: #FF0000;
}


.popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    justify-content: center;
    align-items: center;
}
  
.popup-box {
    position: fixed;
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 10px !important;
}
  
.popup-header h3 {
    margin: 0;
}

.popup-body {

}
  
.popup-footer {
    margin-top: 20px;
    text-align: right;
}
  
.popup-btn.skip {
    background: transparent;
    color: gray;
}
  
.strike {
    position: relative;
    display: inline-block;
}
  
.strike::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: red;
    transform: translateY(-50%);
}

#popCfmDiv {
    display: none;
}
  
#popProdDiv {
    display: none;
    flex-direction: column;
}

@media (max-width: 585px) {
    .popup-box {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding-left: 10px;
        padding-right: 10px;
    }
}