

/* ____________________________ SHOW PDF POPUP START */

.btn-close {
    cursor: pointer;
    position: relative;
    right: -5px;
    top: 5px;
    margin: 3px;
    width: 20px;
    height: 20px;
    float: right;
    }
    
    .clear {
    clear: both;
    }
    
    .btn-close::before,
    .btn-close::after {
    content: "";
    height: 2px;
    display: block;
    background: #d6d6d6;
    }
    
    .btn-close::before {
    margin-top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    }
    
    .btn-close::after {
    margin-top: -2px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    }
    
    .btn-close:hover:after, .btn-close:hover:before {
    background: #FF8CB4;
    }
    
    .service_modal_wrapper {
    
    display: flex;
    z-index: 999;
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    background: rgba(25, 18, 12, 0.3);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    }
    .service_modal_wrapper.open {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=1);
    }
    
    .service_modal {
    border-radius:10px;
    padding-left: 15px;
    padding-right: 15px;
    display: inline-block;
    height: auto;
    max-width: 400px;
    border:8px solid var( --primery-color);
    width: 100%;
    position: relative;
    margin: auto;
    background: -webkit-linear-gradient(bottom, #e8e8e8, #fff);
    background: -o-linear-gradient(bottom, #e8e8e8, #fff);
    background: linear-gradient(to top, #e8e8e8, #fff);
    box-shadow: 0px 16px 16px -6px rgba(47, 46, 38, 0.5);
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -ms-transform: scale(0.7);
    /* IE 9 */
    -webkit-transform: scale(0.7);
    /* Safari */
    transform: scale(0.7);
    }
    
    .service_modal_wrapper.open .service_modal {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1);
    /* IE 9 */
    -webkit-transform: scale(1);
    /* Safari */
    transform: scale(1);
    }

 
    .service_modal .content .pop_desc{
        padding: 15px;
    }
    .service_modal .content .pop_desc p{
        text-align: center;
    }
    .service_modal .content .pop_desc p span{
        font-weight: 600;
    }
    .service_modal .content .button_div{
        width: 100%;
        height: auto;
        display: flex;
        padding-bottom: 10px;
    }
    .service_modal .content .button_div .checkout_link{
        background-color: var( --primery-color);
        color: aliceblue;
        max-width: 150px;
        width: 100%;
        border-radius: 5px;
        text-decoration: none;
        text-align: center;
        padding: 5px;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid var( --primery-color);
    }
    
    .service_modal .content .button_div .checkout_link:hover{
        background-color: transparent;
        color: var( --primery-color);

    }
    

   
/* ____________________________ SHOW PDF POPUP END */