a.unit-btn{
    cursor: pointer;
}
.modal-title{
    display: inline-block;
}
.clos-model{
    display: inline-block;
    float: right;
}
.resend_offer.modal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 20px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

/* The Close Button */
.close span{
    color: #db1e25;
    width: 24px;
    height: 24px;
    border: 2px solid #db1e25;
    border-radius: 50%;
    opacity: 1;
    padding: 6px 9px;
    font-size: 18px;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.resend-offer-container{
    overflow: hidden;
}
.pform-success-msg{
    color:#35a96a;
    display: none;
    float: left;
    padding-top: 10px;
    padding-left: 10px;
}

.pform-error-msg{
    color:#db1e25;
    display: none;
    float: left;
    padding-top: 10px;
    padding-left: 10px;
}

.lds-ring {
    display: none;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    margin: 8px;
    border: 5px solid gray;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: gray transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

#resend_offer_submit_desktop, #resend_offer_submit_mobile{
    float: right;
    position: relative;
    color: #fff;
    background-color: #35a96a;
    border-color: #35a96a;
    border-radius: 5px;
    margin-top: 10px;
}

#client_email_mobile{
    margin-bottom: 10px!important;
}
#resend_offer_mobile .modal-content{
    width: 90%!important;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}