.checkbox-wrapper {
    width: 100%;
    display: grid;
    place-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.checkbox-wrapper .card {
    width: 100%;
    height: 100%;
}

.checkbox-wrapper .card label {
    width: 100%;
    border-radius: 0.25rem;
    margin-bottom: 0;
}

.checkbox-wrapper .card:hover {
    width: 100%;
    background-color: #83295d !important;
}

.checkbox-wrapper .card:hover h6{
    color: white!important;
}

.checkbox-wrapper > .card label:hover {
    cursor: pointer;
    color: white;
}


label.card-body {
    width: 100%;
}

.checkbox-container {
    height: 100px;
    width: 100px;
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(17, 1, 68, 0.08);
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 100%;
    cursor: pointer;
}

.checkbox-wrapper input[type="checkbox"] {
    appearance: none; /* Hide the native checkbox */
    -webkit-appearance: none; /* For Safari */
    -moz-appearance: none; /* For Firefox */
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    border: 0;
    padding: 0;
    clip: rect(0, 0, 0, 0); /* Completely hide */
    overflow: hidden; /* Ensure it takes no visual space */
    opacity: 0; /* Make it invisible */
    pointer-events: none; /* Ensure no direct interaction */
}



.checkbox-wrapper input[type="checkbox"]:after {
    position: absolute;
    font-family: "FontAwesome";
    font-weight: 400;
    /*content: "\f111";*/
    font-size: 18px;
    color: #681D49;
    right: 10px;
    top: 10px;
}

.checkbox-wrapper input[type="checkbox"]:checked:after {
    font-weight: 900;
    /*content: "\f058";*/
    content: "\f00c";
    color: white;
}

input[type="checkbox"]{
    margin: 0!important;
}

.checkbox-wrapper input[type="checkbox"]:checked + .card-body {
    background-color: #681D49;
    color: white;
}

.checkbox-wrapper input[type="checkbox"]:checked + .card-body h6{
    color: white;
}

.checkbox-container img {
    width: 70%;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 2.50rem 1.25rem;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}
.ml-3 {
    margin-left: 16px !important;
}
.mb-3{
    margin-bottom: 16px;
}

.d-flex{
    display: flex;
}

.align-items-center{
    align-items: center;
}

form label{
    font-size: 16px;
}

@media screen and (min-width: 950px) {
    .checkbox-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .checkbox-container {
        height: 100px;
        width: 100px;
    }

    input[type="checkbox"]:after {
        font-size: 22px;
    }
}

.service-checkbox:after {
    content: "";
}

.checkbox-wrapper-19 {
    box-sizing: border-box;
    --background-color: #fff;
    --checkbox-height: 25px;
}

@-moz-keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@-webkit-keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothabottomcheck-19 {
    0% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) / 2);
    }
}

@keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-webkit-keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

@-moz-keyframes dothatopcheck-19 {
    0% {
        height: 0;
    }
    50% {
        height: 0;
    }
    100% {
        height: calc(var(--checkbox-height) * 1.2);
    }
}

.checkbox-wrapper-19 input[type=checkbox] {
    display: none;
}

.checkbox-wrapper-19 .check-box {
    height: var(--checkbox-height);
    width: var(--checkbox-height);
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 5px;
    position: relative;
    display: inline-block;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: border-color ease 0.2s;
    -o-transition: border-color ease 0.2s;
    -webkit-transition: border-color ease 0.2s;
    transition: border-color ease 0.2s;
    cursor: pointer;
}

.checkbox-wrapper-19 .check-box::before,
.checkbox-wrapper-19 .check-box::after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    height: 0;
    width: calc(var(--checkbox-height) * .2);
    background-color: #34b93d;
    display: inline-block;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    border-radius: 5px;
    content: " ";
    -webkit-transition: opacity ease 0.5;
    -moz-transition: opacity ease 0.5;
    transition: opacity ease 0.5;
}

.checkbox-wrapper-19 .check-box::before {
    top: calc(var(--checkbox-height) * .72);
    left: calc(var(--checkbox-height) * .41);
    box-shadow: 0 0 0 calc(var(--checkbox-height) * .05) var(--background-color);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.checkbox-wrapper-19 .check-box::after {
    top: calc(var(--checkbox-height) * .37);
    left: calc(var(--checkbox-height) * .05);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box,
.checkbox-wrapper-19 .check-box.checked {
    border-color: #34b93d;
}

.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::after,
.checkbox-wrapper-19 .check-box.checked::after {
    height: calc(var(--checkbox-height) / 2);
    -moz-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -o-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    -webkit-animation: dothabottomcheck-19 0.2s ease 0s forwards;
    animation: dothabottomcheck-19 0.2s ease 0s forwards;
}

.checkbox-wrapper-19 input[type=checkbox]:checked + .check-box::before,
.checkbox-wrapper-19 .check-box.checked::before {
    height: calc(var(--checkbox-height) * 1.2);
    -moz-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -o-animation: dothatopcheck-19 0.4s ease 0s forwards;
    -webkit-animation: dothatopcheck-19 0.4s ease 0s forwards;
    animation: dothatopcheck-19 0.4s ease 0s forwards;
}


.multisteps-form__content .btn-style-fifteen {
    transition: all 0.4s ease-in-out;
}

.multisteps-form__content .btn-style-fifteen:before {
    content: none;
}

.multisteps-form__content .btn-style-fifteen:hover {
    color: #fff;
    background-color: #222222;
}

button:disabled,
button[disabled] {
    pointer-events: none;
    opacity: 0.4;
}
