* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #eee;
}

.main {
    background: #fff;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(70, 72, 138);
    color: white;
    /* border-radius: 0 0 2rem 2rem;
    box-shadow: 0rem .1rem 2rem #000; */
    /* overflow: hidden; */
    position: relative;
}

.header .main {
    width: 100%;
    padding: .5rem .8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: .01rem solid #dde;
    z-index: 3;
    background-color: rgb(70, 72, 138);;
}

.header .main .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .3rem;
}

.header .main .logo img {
    width: 3rem;
    height: 3rem;
    aspect-ratio: 1/1;
}

.header .main .logo h1 {
    font-size: x-large;
}

.header .main button {
    background: none;
    outline: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    transition: .2s;
}

.header .main button:hover {
    /* color: #777; */
    transform: scale(.9) rotate(180deg);
}

.header .menu {
    width: 100%;
    display: none;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 1rem;
    position: absolute;
    z-index: 1;
    top: 3.5rem;
    background-color: rgb(70, 72, 138);
    box-shadow: 0 1rem 1rem .1rem rgba(0, 0, 0, .2);
    border-radius: 0 0 2rem 2rem;
    animation: slide-down .5s ease-in-out;
}

@keyframes slide-down {
    from {
        transform: translateY(-150%);
    }
    to {
        transform: translateY(0);
    }
}

.header .menu .item {
    padding: .5rem 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    transition: .2s;
    background-color: #fff;
    color: rgb(118, 108, 210);
    border-radius: 1rem;
    text-decoration: none;
}

.header .menu .item:active {
    opacity: .5;
}

hr {
    width: 100%;
    background: #555;
    border: none;
    padding: .02rem;
    border-radius: 1rem;
}

.slideshow {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/2.81;
}

.tab-box {
    width: 100%;
}

.tab-box .tabs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: .5rem 1rem;
    gap: 1rem;
}

.tab-box .tabs .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    background-color: #eef;
    color: rgb(81, 81, 168);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 900;
    border-radius: 1.5rem;
    border: 1px solid #ccd;
    transition: .3s;
}

.tab-box .tabs .tab:active {
    transform: scale(.9);
}

.tab-box .tabs .tab.selected {
    background-color: rgb(96, 96, 182);
    color: #fff;
    border: 1px solid rgb(81, 81, 168);
}

.tab-box .tab-body {
    width: 100%;
    padding: 0rem;
}

.tab-box .tab-body .book-tab {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    gap: .5rem;
    animation: fade-tab .5s ease-in-out;
}

.tab-box .tab-body .book-tab .book-input {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #eef;
    border-radius: 1rem;
    border: 1px solid #ccd;
}

.tab-box .tab-body .book-tab .book-input .input-group {
    width: 100%;
    position: relative;
}

.tab-box .tab-body .book-tab .book-input .input-group .input {
    position: relative;
    font-size: 1.5rem;
}

.tab-box .tab-body .book-tab .book-input .input-group .input i {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.tab-box .tab-body .book-tab .book-input .input-group .input input {
    outline: none;
    border: none;
    width: 100%;
    background: none;
    padding: 1.5rem 1.5rem 1.5rem 3rem;
}

.tab-box .tab-body .book-tab .book-input .input-group:first-child .input input {
    border-bottom: .1rem solid #dde;
}

.tab-box .tab-body .book-tab .book-input .input-group .autofill {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: .5rem;
    background: #eef;
    position: absolute;
    top: 4.1rem;
    width: 100%;
    max-height: 0rem;
    overflow: hidden;
    z-index: 999;
    transition: max-height .3s ease;
    /* animation: fade-tab .5s; */
}

.tab-box .tab-body .book-tab .book-input .input-group .autofill.open {
    padding: .2rem 0;
    box-shadow: 0 1rem .5rem rgba(0, 0, 0, 0.2);
    border: .05rem solid #aab;
    max-height: 10rem;
    overflow-y: scroll;
    opacity: 1;
}

.tab-box .tab-body .book-tab .book-input .input-group .autofill .option {
    padding: .8rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    transition: .2s;
}

.tab-box .tab-body .book-tab .book-input .input-group .autofill .option:active {
    background: #dde;
}

.tab-box .tab-body .book-tab .bookBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 1rem;
    max-width: 65%;
    margin: auto;
    background: #4D42C7;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    transition: .2s;
}

.tab-box .tab-body .book-tab .bookBtn:active {
    transform: scale(.9);
}

.tab-box .tab-body .status-tab {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0 1rem;
    gap: .5rem;
    animation: fade-tab .5s ease-in-out;
}

.tab-box .tab-body .status-tab .input-group {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.status-tab .input-group input {
    border: .1rem solid #ccd;
    outline: none;
    width: 100%;
    padding: 1.3rem 1rem;
    background: #eef;
    border-radius: 1.2rem;
}

.status-tab .input-group button {
    position: absolute;
    right: .3rem;
    top: 5%;
    bottom: 5%;
    border: none;
    outline: none;
    background: rgb(118, 108, 210);
    color: #fff;
    height: 90%;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 1rem;
    transition: .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.status-tab .input-group button:active {
    transform: scale(.9);
}

@keyframes fade-tab {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.card {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-card {
    width: 90%;
    margin-top: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #eef;
    border: 1px dashed #ccd;
    transition: .2s;
}

.image-card:hover {
    transform: scale(1.01);
    box-shadow: 0 .8rem 1.6rem rgba(0, 0, 0, 0.2);
}

.image-card img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5/3;
    margin-bottom: .5rem;
    transition: .2s;
}

.image-card .card-header {
    padding: 0 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #444;
}

.mark {
    background: #FAC107;
    padding: .1rem .3rem;
    border-radius: .4rem;
}

.image-card .card-body {
    padding: .5rem 1rem;
    font-size: .8rem;
    line-height: 1.01rem;
    letter-spacing: .01rem;
    color: #4d4c4d;
}

.footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    background: #222;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-shadow: 0 -.8rem 1.6rem rgba(0, 0, 0, 0.2);
}

.footer .top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 1rem;
}

.footer .top .left {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.footer .top .left .logo {
    color: yellow;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer .top .left .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;

}

.footer .top .left .social a {
    color: #000;
    background: #fff;
    padding: .5rem 1rem;
    border-radius: .8rem;
}

.footer .top .right {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: start;
    gap: .5rem;
    padding: 0rem 2rem;
}

.footer .top .right div {
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer .top .right div.phone {
    width: 100%;
    display: flex;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    gap: 1rem
}

.footer .top .right div.phone .contact:nth-child(2) {
    width: 100%;
    display: flex;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    gap: .5rem
}

.footer .top .right .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #fff;
    text-decoration: none;
}

.footer .bottom {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: .5rem;
}

.footer .bottom a {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: .5rem 1rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: .5rem;
}

.footer .end {
    color: #fff;
    width: 100%;
    display: flex;
    gap: .3rem;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    padding-bottom: 1rem;
}

.review {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: .5rem;

}

.review .taxi-type {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: .5rem 1rem;
    gap: 1rem;
}

input[type="radio"] {
    display: none;
}

.review .taxi-type .type-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    background-color: #eef;
    color: rgb(81, 81, 168);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 900;
    border-radius: 1rem;
    border: 1px solid #ccd;
    transition: .3s;
}

.review .taxi-type .type-tab:active {
    transform: scale(.9);
}

input[type="radio"]:checked + label.type-tab {
    background-color: rgb(96, 96, 182);
    color: #fff;
    border: 1px solid rgb(81, 81, 168);
}

.review .details {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .3rem;
    padding: 0 1rem;
}

.review .details div {
    background: #eef;
    color: rgb(96, 96, 188);
    display: flex;
    justify-content: start;
    align-items: center;
    padding: .5rem;
    border-radius: .5rem;
}

.review .details div div {
    min-width: 7rem;
    background: #eef;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .5rem;
    background: #eef!important;
    color: rgb(96, 96, 182, 0.6)!important;
    font-weight: bold;
}

.review .details div:last-child {
    background: #eee;
    color: #444;
    display: flex;
    justify-content: start;
    align-items: center;
    padding: .5rem;
    border-radius: .5rem;
}

.review .details div:last-child div {
    min-width: 7rem;
    background: #eef;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .5rem;
    background: #eee!important;
    color: #444!important;
    font-weight: bold;
}

.review .details input {
    outline: none;
    border: none;
    background: none;
}

.review .details input:nth-child(2) {
    border-right: 1px solid rgb(92, 92, 188);
}

.review .details input:nth-child(3) {
    border-left: 1px solid rgb(92, 92, 188);
}

.vehicles {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: .5rem;
    padding: 1rem;
}

.vehicles .vehicle {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    border: .1rem dashed #eef;
    padding: 1rem 0;
    border-radius: .5rem;
    position: relative;
    transition: .2s;
}

input[type="radio"]:checked + label.vehicle {
    background: #eef;
}

input[type="radio"]:active + label.vehicle {
    transform: scale(.95);
}

.vehicles .vehicle i.fa-circle-check {
    display: none;
    position: absolute;
    top: .3rem;
    right: .3rem;
    animation: scale-up .3s ease-in-out;
    color: rgb(92, 92, 188);
}

@keyframes scale-up {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* input[type="radio"]:checked + label.vehicle i.fa-circle-check {
    display: block;
}

input[type="radio"]:active + label.vehicle i.fa-circle-check {
    display: block;
    color: #ccd;
} */

.vehicles .vehicle img {
    max-width: 5rem;
    aspect-ratio: 5/4;
    object-fit: cover;
}

.vehicles .vehicle div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.vehicles .vehicle div:nth-child(2) {
    flex-direction: column;
    align-items: start;
    gap: .1rem;
}

.vehicles .vehicle div:nth-child(3) {
    gap: .2rem;
    font-size: 1rem;
}

.vehicles .vehicle div:nth-child(3) i {
    font-size: .8rem;
}

.vehicles .vehicle div h1 {
    font-size: 1rem;
    color: #444;
}

.vehicles .vehicle div p {
    font-size: .8rem;
    color: #888;
}

.reviewBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 1rem;
    max-width: 65%;
    margin: auto;
    background: rgb(118, 108, 210);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    transition: .2s;
}

.reviewBtn:active {
    transform: scale(.9);
}

.modal {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    min-height: 100%;
    overflow-y: scroll;
    background: rgb(0, 0, 0, .3);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(.1rem);
    animation: fade-tab .3s ease-in-out;
}

.modal .reviewDetails {
    position: relative;
    width: 100%;
    max-width: 30rem;
    background: #eef;
    border-radius: 1rem;
    padding: 1rem .5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, .5);
    animation: slide-down .3s ease-in-out;
}

.modal .reviewDetails .close {
    position: absolute;
    top: .5rem;
    right: .5rem;
    font-size: 1.7rem;
    transition: .2s;
    color: rgb(228, 93, 93);
}

.modal .reviewDetails .close:active {
    transform: scale(.9);
}

.modal .reviewDetails .head {
    font-size: 1.4rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: .1rem dashed #fff;
    color: rgb(118, 108, 210);
}

.modal .reviewDetails .details {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .3rem;
    padding: 0 1rem;
    padding-bottom: .5rem;
    border-bottom: .1rem dashed #fff;
}
.modal .reviewDetails .details div {
    background: none;
    color: rgb(96, 96, 188);
    border: .1rem dashed rgb(118, 108, 210);
    display: flex;
    justify-content: start;
    align-items: center;
    padding: .5rem;
    gap: .5rem;
    border-radius: .5rem;
}

.modal .reviewDetails .details div div {
    min-width: 5rem;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: .5rem;
    color: rgb(96, 96, 182, 0.6);
    border: none;
    font-weight: bold;
}

.modal .reviewDetails .details input {
    outline: none;
    border: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.modal .reviewDetails .vehicle {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    border: .1rem dashed #eef;
    padding: 1rem 0;
    border-radius: .5rem;
    position: relative;
    transition: .2s;
}

.modal .reviewDetails .vehicle img {
    max-width: 5rem;
    aspect-ratio: 5/4;
    object-fit: cover;
}

.modal .reviewDetails .vehicle div {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.modal .reviewDetails .vehicle div:nth-child(1) {
    flex-direction: column;
    align-items: start;
    gap: .1rem;
}

.modal .reviewDetails .vehicle div h1 {
    font-size: 1rem;
    color: #444;
}

.modal .reviewDetails .vehicle div p {
    font-size: .8rem;
    color: #888;
}

.modal .reviewDetails .fare {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 90%;
    gap: 1rem;
    background: #dde;
    padding: 1rem 2rem;
    border-radius: 1rem;
}

.modal .reviewDetails .fare .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: .1rem;
    width: 100%;
}

.modal .reviewDetails .fare .column div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1rem;
}

.modal .reviewDetails .fare .column div span {
    font-size: .7rem;
    color: #555;
    display: flex;
    justify-content: center;
    gap: .2rem;
    align-items: center;
}

.modal .reviewDetails .fare .column div span i {
    font-size: .6rem;
}

.modal .reviewDetails .fare .column div h1 {
    color: #345;
    font-weight: 800;
    font-size: 1rem;
}

.modal .reviewDetails .input-group {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.modal .reviewDetails .input-group input {
    border: .1rem solid #ccd;
    outline: none;
    width: 100%;
    padding: 1.3rem 1rem;
    background: #eef;
    border-radius: 1.2rem;
}

.modal .reviewDetails .input-group button {
    position: absolute;
    right: .2rem;
    top: 5%;
    bottom: 5%;
    border: none;
    outline: none;
    background: rgb(118, 108, 210);
    color: #fff;
    height: 90%;
    padding: 0 1rem;
    font-weight: 700;
    font-size: .8rem;
    border-radius: 1rem;
    transition: .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .3rem;
}

.modal .reviewDetails .submit {
    width: 100%;
    padding: 1rem;
}

.modal .reviewDetails .input-group button:active {
    transform: scale(.9);
}

.modal .reviewDetails .confirmBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 1rem;
    max-width: 100%;
    margin: auto;
    background: rgb(118, 108, 210);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    transition: .2s;
}

.modal .reviewDetails .confirmBtn:active {
    transform: scale(.9);
}

.modal .reviewDetails .otp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 90%;
    gap: .1rem;
    padding: 1rem 1rem;
    border-radius: 1rem;
}

.modal .reviewDetails .otp .column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
}

.modal .reviewDetails .otp .column span {
    font-size: .7rem;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .2rem;
    padding-left: .2rem;
}

.modal .reviewDetails .otp .column span i {
    font-size: .6rem;
}

.modal .reviewDetails .submitOtp {
    width: 100%;
    padding: .5rem 0;
}

.modal .reviewDetails .confirmBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 1rem;
    max-width: 100%;
    margin: auto;
    background: rgb(118, 108, 210);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    transition: .2s;
}

.modal .reviewDetails .confirmBtn:active {
    transform: scale(.9);
}

.success {
    background: #02864A!important;
}

.userinfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 1rem 0;
}

.userinfo .form {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background: #eef;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 1.6rem rgb(0, 0, 0, .3);
}

.userinfo .form h1 {
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: #666;
}

.userinfo .form .input-group {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-content: center;
    width: 100%;
    gap: .1rem;
}

.userinfo .form .input-group label {
    font-size: .8rem;
    color: #666;
    padding-left: .5rem;
}

.userinfo .form .input-group input {
    outline: none;
    border: none;
    background: #dde;
    padding: 1rem;
    border-radius: 1rem;
}

.userinfo .form .submit {
    width: 100%;
    padding: 1rem;
}

.userinfo .form .confirmBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 1rem;
    max-width: 100%;
    margin: auto;
    background: rgb(118, 108, 210);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    transition: .2s;
}

.userinfo .form .confirmBtn:active {
    transform: scale(.9);
}


.dot {
    width: 12px;
    height: 12px;
    background-color: #5960ff;
    border-radius: 50%;
    animation: 1.2s ease-in-out infinite bounce;
}

.dot:first-child {
    animation-delay: -0.6s;
}

.dot:nth-child(2) {
    animation-delay: -0.4s;
}

.dot:nth-child(3) {
    animation-delay: -0.2s;
}

@keyframes bounce {
    0%,
    100% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.5);
    }
}

.completed {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
}

.completed .child {
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    background: #eef;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 0 1.6rem rgb(0, 0, 0, .3);
}

.completed .child .status .input-group {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.completed .child .status .input-group input {
    border: .1rem solid #ccd;
    outline: none;
    width: 100%;
    padding: 1.3rem 1rem;
    background: #fff;
    border-radius: 1.2rem;
}

.completed .child .status .input-group button {
    position: absolute;
    right: .3rem;
    top: 5%;
    bottom: 5%;
    border: none;
    outline: none;
    background: rgb(118, 108, 210);
    color: #fff;
    height: 90%;
    padding: 0 2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 1rem;
    transition: .2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

.completed .child .input-group button:active {
    transform: scale(.9);
}

.completed .child .status .helper {
    font-size: .7rem;
    padding: .1rem .5rem;
}