:root{
    --background-main: #3e80cd;
    --white: #ffffff;
}
#myfarepopup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#myfarepopup-content {
    background-color: #ffffff;
    padding: 10px;
    /* text-align: center; */
    /* max-width: 95%; */
    position: relative;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    margin: 0 auto; /* Center horizontally */
}
#myfarepopup-content .text-available{
    margin-top: 40px;
    border: 1px solid #db7e10;
    color:white;
    border-radius: 20px;
    max-width: 250px;
    text-align: right;
    padding-right: 10px;
}
#myfarepopup-content .main-text{
    font-size: 1.9rem;
    color:white;
    width: 90%;
    margin: 40px 0px;
    /* font-size: 2.1rem; */
    font-weight: 600;
  
    line-height: 35px;
}
#myfarepopup-content .text{
    color:white;
    font-weight: 600;
}
.border-bottom{
    border-bottom: 2px solid #edda00;
    width: 60%;
}
a.phone{
    color:white;
}
.customer-support{
    width: 60px;
    position: absolute;
    top: -18px;
    left: -5px;
}
@media screen and (min-width: 768px) {
    #myfarepopup-content {
        width: 40%;
    }
    .border-bottom{
        width: 40%;
    }
    #myfarepopup-content .main-text{
        font-size: 1.6rem;
        width: 100%;
        margin: 20px 0;
    }
    #myfarepopup-content .text-available{
        max-width: 270px;
    }
}

@media screen and (max-width: 767px) {
    #myfarepopup-content {
        width: 100%;
        height: 100%;
    }
}

#myfarepopup-content .image{
    display: flex;
    flex-direction: column;
}
#myfarepopup-content .image a:first-child img{
    width: 60%;
}
#myfarepopup-content .image a:nth-child(2) img{
    width: 15%;
    margin-top: 10px;
}
@media screen and (max-width: 767px) {
    #myfarepopup-content .image a:first-child img{
       width: 100%;
    }
    #myfarepopup-content .image a:nth-child(2) img{
        width: 25%;
        margin-top: 10px;
    }
}
#myfarepopup-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

#myfarepopup-content .myfarepopup-row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap:20px;
}
#myfarepopup-content .margin{
    margin-top: 20px;
    margin-bottom: 20px;
}
#myfarepopup-content .myfarepopup-row .col{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 50%;
    background-color: var(--background-main);
    color: var(--white);
    padding: 8px;
    border-radius: 5px;
    transition: all 0.5s ease;
}
#myfarepopup-content .myfarepopup-row .hover:hover{
    background-color: rgb(0, 119, 255);
    color:white;
}

.myfarepopup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 550;
    color: #ffffff;
}
#myfarepopup-content .cta .cta-main{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background-main);
    color: var(--white);
    border-radius: 5px;
    margin: 40px auto;
    width: 70%;
    
}
#myfarepopup-content .cta .mobile-icon img{
    margin: 0px;
}
#myfarepopup-content .cta .mobile-number{
    text-align: left;
    line-height: 25px;
}

