#customConts {
    font-family: "Outfit", Sans-serif;
}

#customConts .btn-custom {
    background-color: black;
    color: white;
}

#customConts .btn-custom:hover {
    background-color: #790201;
    color: white;
}

#customConts {
    margin: 0 auto;
}

#customConts .card {
    background-color: white !important;
}

#customConts .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;
}

#customConts .card-header .card-title {
    color: white !important;
    margin-top: 10px;
}

#customConts .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%;
}

#customConts .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;
}

#customConts .wrapper .option:nth-child(1) {
    margin-left: 0 !important;
}

#customConts .wrapper .option .dot {
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
}

#customConts .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;
}

#customConts input[type="radio"] {
    display: none;
}

#customConts #option-1:checked:checked ~ .option-1,
#customConts #option-2:checked:checked ~ .option-2 {
    border-color: #790201;
    background: #790201;
}

#customConts #option-1:checked:checked ~ .option-1 .dot,
#customConts #option-2:checked:checked ~ .option-2 .dot {
    background: #fff;
}

#customConts #option-1:checked:checked ~ .option-1 .dot::before,
#customConts #option-2:checked:checked ~ .option-2 .dot::before {
    opacity: 1;
    transform: scale(1);
}

#customConts .wrapper .option span {
    font-size: 17px;
    color: #808080;
    font-family: "Outfit", Sans-serif;
}

#customConts #option-1:checked:checked ~ .option-1 span,
#customConts #option-2:checked:checked ~ .option-2 span {
    color: #fff;
}
