/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
.gd-extra-options-group{
    margin-bottom: 20px;
}
.gd-extra-options-group h4{
    margin-bottom: 10px;
}
.gd-extra-options-group input[type="radio"]{
    display: none;
}
.gd-extra-options-single{
    position: relative;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 100px;
    border: 2px solid #000000;
    background-position: center center;
    background-size: cover;
}
.checkmarktext{
    margin-left: 35px;
    font-size: 18px;
}
.checkmark i{
    padding: 4px;
    display: none;
    font-weight: 600;
    color: var(--wd-primary-color);
}
.gd-extra-options-group input[type="radio"]:checked ~ .checkmark i{
    display: block;
}
.gd-extra-options-group input[type="radio"]:checked ~ .checkmark{
    box-shadow: 0px 0px 4px 3px rgba(0,0,0,0.6);
}
.checkmarkdesc{
    cursor: pointer;
}
.tooltiptext {
    visibility: hidden;
    background-color: #f2f2f2;
    color: #000;
    width: 120px;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    /*left: 50%;*/
    margin-left: -60px;
    opacity: 0;
    transition: opacity .3s;
}
.checktooltip:hover .tooltiptext{
    visibility: visible;
    opacity: 1;
}
.gd-block-title{
    margin-top: 25px;
}
.pop-form-wrap{
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 9999;
    display: none;
}
.pop-form-inner{
    background: #ffffff;
    padding: 20px;
    max-width: 500px;
    width: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 14%;
}
.pop-form-close{
    color: #000000;
    font-weight: 900;
    float: right;
}
.gd-extra-options-label h6{
    margin-bottom: 0;
    font-size: 16px;
}
.pop-form-wrap .gd-extra-options-single{
    margin-bottom: 10px;
}
.pop-form-wrap button{
    width: 100%;
}
.offer-details p{
    margin-bottom: 0;
}
.offer-details{
    margin-bottom: 10px;
}
.succmessage{
    color: green;
    float: right;
}