
@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
		

.playfair{
    font-family: 'Playfair Display', serif;
}
.webcal_main{
    width: 100%;
    height: 100vh;
    position: fixed;
    background:#fff;
    z-index: 99999999;
    font-family: 'Playfair Display', serif;
    transition: all 1s;
}
.web_calc_form{
    box-shadow: 0 4px 12px 0 rgb(0 0 0 / 10%);
    margin-top: 70px;
    padding: 0!important;
    position:relative;
}
.webcalc_formcontent{
    padding: 3rem;
}
.webcalc_formcontent h2{
    font-size: 29px;
    font-weight: 800;
    line-height: 31px;
    margin-bottom: 15px;
}
.webcalac_steps{
    margin-top: 20px;
    /* height: 270px;
    overflow-y: scroll; */
}
.webcalc_formfooter{
    padding: 2rem 2rem;
    border-top: 1px solid #bcb9b4;
}
.wcfoot_btn2{
    border: 2px solid #050748;
    background-color: #050748;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    height: 3rem;
    padding: 0.25rem 2rem;
    border-radius: 0.25rem;
}
.wcfoot_btn1{
    border: 2px solid #050748;
    background-color: transparent;
    color: #050748;
    font-size: 1rem;
    font-weight: 700;
    height: 3rem;
    padding: 0.25rem 2rem;
    border-radius: 0.25rem;
}
.wcfoot_btn1:hover,.wcfoot_btn2:hover{
    transform: scale(.92);
}
.webcalacradio{
    max-width: 75%;
    display:block;
    margin: auto;
    margin-bottom: 10px; 
    text-align: left;
    border: 1px solid #050748;
    padding: .8rem 1rem;
    border-radius: 0.5rem;
    display:flex;
    cursor:pointer;
}
.webcalacradio > input[type="radio"]{
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    height: 25px; 
    width: 25px;
    border-width: 1px;
    -webkit-appearance: none;
}
.webcalac_textfield, .webinput_text{
    display:block;
    width:100%;
    margin-top: -10px;
    border:none;
    padding-top: 10px;
}
.webcalacradio > input[type="radio"]:after{
    background-color: transparent;
    border-radius: 25px;
    content: '';
    display: block;
    height: 25px;
    position: relative;
    width: 25px;
}
.webcalacradio > input[type="radio"]:checked:after {
    background-color: #050748;
}
.myradsy:checked + span{
    color: #050748;
}
.webcalacradio span{
    margin-left: 11px;
    font-weight: bold;
    display: block;
    margin-top: 3px;
    color: #050748;
}
.closewebpop{
    position:absolute;
    right: 7px;
    top:7px;
    border-radius: 50%;
    border: 1px solid #444;
    width: 30px;
    height: 30px;
    line-height: 30px;
    cursor:pointer;
}
.webcalac_steps{
    display:none;
}
.web_step_active{
    display:block;
}
.web_step_inactive{
    display:none;
}
#webcalc_error{
    color: red;
    font-style: italic;
    font-size: 13px;
    font-weight: 700;
    display:none;
}
.webpopup_loader {
width: 110px;
height: 110px;
transform: rotate(-90deg);
stroke-linecap: round;
stroke-width: 4;
fill: none;
}
.webpopup_loader .internal-circle,
.webpopup_loader .external-circle {
stroke: #4f6ce2;
stroke-dashoffset: 0;
transform-origin: center;
}
.webpopup_loader .internal-circle {
stroke-dasharray: 187;
-webkit-animation: internal 1s ease-in-out infinite;
        animation: internal 1s ease-in-out infinite;
opacity: 0.4;
}
.webpopup_loader .external-circle {
stroke-dasharray: 312;
-webkit-animation: external 1s linear infinite;
        animation: external 1s linear infinite;
opacity: 0.9;
}
@-webkit-keyframes internal {
0% {
    stroke-dashoffset: 187;
}
25% {
    stroke-dashoffset: 80;
}
100% {
    stroke-dashoffset: 187;
    transform: rotate(360deg);
}
}

@keyframes internal {
0% {
    stroke-dashoffset: 187;
}
25% {
    stroke-dashoffset: 80;
}
100% {
    stroke-dashoffset: 187;
    transform: rotate(360deg);
}
}
@-webkit-keyframes external {
0% {
    stroke-dashoffset: 312;
    transform: rotate(70deg);
}
60% {
    stroke-dashoffset: -312;
}
100% {
    stroke-dashoffset: -312;
    transform: rotate(450deg);
}
}
@keyframes external {
0% {
    stroke-dashoffset: 312;
    transform: rotate(70deg);
}
60% {
    stroke-dashoffset: -312;
}
100% {
    stroke-dashoffset: -312;
    transform: rotate(450deg);
}
}



/* Media queries */
@media (max-width: 796px) {
    .webcalc_formcontent h2{
        font-size: 24px;
    }
    .webcalacradio span{
        font-size: 14px;
    }
    .webcalacradio{
        max-width: 100%;
    }
    .wcfoot_btn2{
        font-size: .8rem;
        padding: 0.19rem 1.4rem;
    }
    .wcfoot_btn1{
        font-size: .8rem;
        padding: 0.19rem 1.4rem;
    }
    .web_calc_form{
        margin-top: 3px;
    }
    .webinput_text{
        font-size: 16px;
    }
}

@media (max-width: 300px) {
    
    .webcalc_formcontent h2{
        font-size: 17px;
    }
    .webcalacradio span{
        font-size: 11px;
    }
    .webcalacradio{
        max-width: 100%;
    }
}