/* Styling the modal refill customily */

.customily-popup-refill-modal-wrapper {
    background: rgba(0,0,0,.6);
    height: 100%;
    left: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
}
#show-customily-popup-refill-input:checked ~ .customily-popup-refill-modal-wrapper {
    pointer-events: all;
    opacity: 1;
    transition: var(--pr-trans-standard);
}
.customily-poup-close {
    right: 0;
    top: 0;
    text-size-adjust: 100%;
    -color-body-text: #333333;
    -color-body: #ffffff;
    -color-bg: #ffffff;
    -webkit-tap-highlight-color: transparent;
    white-space: normal;
    word-break: break-word;
    direction: ltr;
    font-size: 100%;
    
    touch-action: manipulation;
    appearance: none;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: absolute;
    transition: color .2s;
    vertical-align: top;
    width: 44px;
    color: #F4993D;
    min-height: auto;
    visibility: visible!important;
    outline: none!important;
    background: none!important;
    opacity: 0.5;
}
.customily-popup-refill-modal {
    background: #fff;
    border-radius: 20px;
    left: 50%;
    padding: 24px 10px 28px;
    position: fixed;
    text-align: center;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
}
.customily-popup-refill-modal-icon {
    margin-bottom: 15px;
}
.customily-popup-refill-modal-title {
    font-size: 24px;
    font-weight: bold;
    
    text-align: center;
    margin-bottom: 5px;
}
.customily-popup-refill-modal-content {
    font-size: 16px;
    font-weight: 400;
    
    text-align: center;
    color: #60656A;
    margin-bottom: 28px;
}
.customily-popup-refill-modal-controller {
    display: flex;
    font-size: 16px;
    justify-content: center;
    flex-direction: column;
}
.customily-popup-refill-modal-controller button {
    border-radius: 10px;
    margin: auto;
    padding: 10px 0;
    width: 240px;
    font-family: var(--body-fonts);
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.customily-popup-btn-confirm {
    background-color: var(--info);
    position: relative;
    color: #fff;
}
.customily-popup-btn-confirm:hover,
.customily-popup-btn-confirm:focus {
    background-color: #0AB9CA;
}
.customily-popup-btn-reject {
    font-size: 14px;
    font-weight: 400;
    
    letter-spacing: 0;
    text-align: center;
    margin-top: 12px;
    text-decoration: underline;
    color: #3B4148;
    cursor: pointer;
}


@media only screen and (min-width: 481px) {
    .customily-popup-refill-modal {
        width: 50%;
    }
}
@media only screen and (min-width: 1025px) {
    .customily-popup-refill-modal {
        width: 40%;
    }
}

@media (max-width: 767px) {
    .customily-popup-refill-modal-title {
        font-size: 20px;
    }
}