#custContainer{
    font-family: "Outfit", Sans-serif;
}
#custContainer .btn-custom{
    background-color: black;
    color:white
}
#custContainer .btn-custom:hover{
    background-color: #790201;
    color:white
}
#custContainer {
    
    margin:0 auto;
}
#custContainer .card{
    background-color: white !important;
}
#custContainer .card-header{
    background-color: #790201;
    color:white;
    text-align: center;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 6px solid red;
}
#custContainer .card-header .card-title{
    color:white !important;
    margin-top: 10px;
}
#custContainer .wrapper{
    display: inline-flex;
    background: #fff;
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 20px 0px;
    gap: 2%;
}
#custContainer .wrapper .option{
    background: #fff;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 10px;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
}
#custContainer .wrapper .option:nth-child(1){
    margin-left: 0 !important;
}
#custContainer .wrapper .option .dot{
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
}
#custContainer .wrapper .option .dot::before{
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
}
#custContainer input[type="radio"]{
    display: none;
}
#custContainer #option-1:checked ~ .option-1,
#custContainer #option-2:checked ~ .option-2{
    border-color: #790201;
    background: #790201;
}
#custContainer #option-1:checked ~ .option-1 .dot,
#custContainer #option-2:checked ~ .option-2 .dot{
    background: #fff;
}
#custContainer #option-1:checked ~ .option-1 .dot::before,
#custContainer #option-2:checked ~ .option-2 .dot::before{
    opacity: 1;
    transform: scale(1);
}
#custContainer .wrapper .option span{
    font-size: 17px;
    color: #808080;
    font-family: "Outfit", Sans-serif;
}
#custContainer #option-1:checked ~ .option-1 span,
#custContainer #option-2:checked ~ .option-2 span{
    color: #fff;
}
