﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Work+Sans:wght@800&display=swap');


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

.content-wrapper {
    background-color: white;
}
.container {
    margin: 20px auto;
    max-width: 1000px;
    background-color: white;
    padding: 0;
}


.form-control {
    height: 25px;
    border: none;
    border-radius: 0;
    font-weight: 800;
    padding: 0 0 5px 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #ccc;
    margin: 0;
    font-size: 16px;
}

    .form-control:focus {
        box-shadow: none;
        border-bottom: 2px solid #ccc;
        background-color: transparent;
    }

.form-control2 {
    font-size: 14px;
    height: 20px;
    width: 55px;
    border: none;
    border-radius: 0;
    font-weight: 800;
    padding: 0 0 5px 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #ccc;
    margin: 0;
}

    .form-control2:focus {
        box-shadow: none;
        border-bottom: 2px solid #ccc;
        background-color: transparent;
    }

.form-control3 {
    font-size: 14px;
    height: 20px;
    width: 30px;
    border: none;
    border-radius: 0;
    font-weight: 800;
    padding: 0 0 5px 0;
    background-color: transparent;
    box-shadow: none;
    outline: none;
    border-bottom: 2px solid #ccc;
    margin: 0;
}

    .form-control3:focus {
        box-shadow: none;
        border-bottom: 2px solid #ccc;
        background-color: transparent;
    }

p {
    margin: 0;
}

img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.text-muted {
    font-size: 10px;
}

.textmuted {
    color: #6c757d;
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.btn.btn-primary {
    width: 100%;
    height: 55px;
    border-radius: 0;
    padding: 13px 0;
    background-color: black;
    border: none;
    font-weight: 600;
}

    .btn.btn-primary:hover .fas {
        transform: translateX(10px);
        transition: transform 0.5s ease
    }


.fw-900 {
    font-weight: 900;
}

::placeholder {
    font-size: 16px;
}

.ps-30 {
    padding-left: 30px;
}

.h4 {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 800 !important;
}

.textmuted,
h5,
.text-muted {
    font-family: 'Poppins', sans-serif;
}
.wrapperp {
    display: inline-flex;
    background: #fff;
    max-height: 200px;
    overflow-y: scroll;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 20px 15px;
    flex-wrap: wrap;
    row-gap : 10px;
}

    .wrapperp .option {
        background: #fff;
        height: 100%;
        width: 22%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        column-gap:10px;
        margin: 0 10px;
        border-radius: 5px;
        cursor: pointer;
        padding:  10px;
        border: 2px solid lightgrey;
        transition: all 0.3s ease;
    }

        .wrapperp .option .dot {
            height: 20px;
            width: 20px;
            background: #d9d9d9;
            border-radius: 50%;
            position: relative;
        }

            .wrapperp .option .dot::before {
                position: absolute;
                content: "";
                top: 4px;
                left: 4px;
                width: 12px;
                height: 12px;
                background: #0069d9;
                border-radius: 50%;
                opacity: 0;
                transform: scale(1.5);
                transition: all 0.3s ease;
            }

input[type="radio"] {
    display: none;
}

    input[type="radio"]:checked:checked + .option-1 {
        border-color: #0069d9;
        background: #0069d9;
    }

        input[type="radio"]:checked:checked + .option-1  .dot{
            background: #fff;
        }

            input[type="radio"]:checked:checked + .option-1  .dot::before {
                opacity: 1;
                transform: scale(1);
            }
            input[type="radio"]:checked:checked + .option-1 span {
               color: #fff;
            }
        input[type="radio"]:checked:checked + .option-1  span p {
            color: #fff;
        }
.wrapperp .option span {
    font-size: 16px;
    color: #808080;
}
.wrapperp .option span  p {
    font-size: 12px;
    color: #808080;
    letter-spacing:1.1px;
}
.cardImg {
    position: relative;
    bottom: 40px;
    padding: 10px;
    right: -10px;
}
@media screen and (max-width: 1050px){
    .wrapperp .option {
        width: 44%;

    }
    .wrapperp {
        overflow: scroll;
        max-height:200px;
        padding: 20px 0px;
    margin:10px 0 0 ;
    }
    .formb{
        padding:0 20px !important;
    }
}