*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: lightblue;
}
#super{
    width: 100%;
    height: 100vh;
    background-color: lightblue;
    display:inline-flex;
    align-items: center;
    justify-content: center;
}
#main{
    width: 70%;
    height: 80%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
#steps{
    height: 85%;
    width: 23%;
    background-image: url(./assets/images/bg-sidebar-desktop.svg);
    padding: 50px;
    color: aliceblue;
    border-radius: 10px;
    background-repeat: no-repeat;
}
#s1{
    background-color: white;
    color: black;
}
#steps>ul{
    width: 90%;
}
#steps>ul li{
    margin: 15px 0px;
}
ul{
    list-style-type: none;
}
.op button{
    width: 30px;
    border: 1px solid white;
    border-radius: 50%;
    text-align: center;
    height: 30px;
    padding: 8px;
    background-color: transparent;
    color: white;
    margin-right: 10px;
}
.op span{
    color: darkgray;font-size:x-small;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
}
.op td{
    font-family:Arial, Helvetica, sans-serif;
}
#body{
    width: 70%;
    height: 90%;
    padding: 5% 10%;
    line-height: 40px;

}
#info{
    /* display: none; */
    line-height: 40px;
}
#info>ul li{
    margin: 15px 0px;
}
#info>ul li input{
    height: 40px;
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    border:1px slid darkgray;
}
#info button{
    float: right;
    position: relative;
    /* bottom: -50px; */
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background-color:darkslateblue;
    color: white;
}
#card{
    display: flex;
    justify-content: space-between;
}
.cost{
    width: 30%;
    border: 1px solid darkgrey;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
}
.cost:hover {
    background-color: lightblue;
    border-color: blue;
}
#plan{
    display: none;
    line-height: 40px;
}
#plan #btn,#ons #btn,#up #btn{
    display: flex;
    justify-content:space-between;
    position: relative;
    bottom: -50px;
}
#btn :nth-child(odd){
    border: none;
    background-color: transparent;
    color: darkgray;
}
#btn :nth-child(even){
    width: 100px;
    height: 40px;
    border-radius: 10px;
    background-color:darkslateblue;
    color: white;
}
#my{
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color:lightcyan;
    border-radius: 10px;
    position: relative;
    padding: 0 20%;
    top: 30px;

}
#change{
    width: 50px;
    height: 20px;
    background-color: black;
    border-radius: 10px;
    position: relative;
}
#change>#change1{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position:absolute ;
    right: 0px;
}
#ons{
    display: none;
    line-height: 40px;
}
.service{
    display: flex;
    border: 1px solid darkgrey;
    border-radius: 10px;
    padding: 20px 0px;
    align-items: center;
    justify-content: space-evenly;
    line-height: normal;
    margin: 10px 0px;
}
.service input{
    width: 20px;
    height: 20px;
}
#up{
    display: none;
    line-height: 40px;
}
#fini{
    background-color: lightcyan;
    padding: 0 20px;
    border-radius: 10px;
}
.a{
    border: none;
    justify-content: space-between;
    color: gray;
}
.b{
    border: none;
    justify-content: space-between;
    padding: 20px;

}
#thanks{
    display: none;
    text-align: center;
    height: 100%;
    padding :10%;
    line-height: normal;
}
#thanks div{
    padding: 10px 0px;
} 
/* #card:not(.cost:active) .cost:has(:active){
    background-color: lightblue;
    border-color: blue;
} */
@media screen and (max-width: 769px) {
    #body{
        /* width: 70%; */
        height: 90%;
        padding: 5%;
        line-height: 40px;
    
    }
    #main{
        width: 100%;
        height: 100%;
        border-radius: none;
    }
    #steps{
        width: 40%;
        height: 90%;
        padding: 30px 10px;
    }    
}
