/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0px;
    padding: 0px;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: 'Inter', sans-serif;
}*/

.fast-order-container{
    width: 700px;
    background: white;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-radius: 24px;
	overflow: hidden;
}
.fast-order-title{
    padding: 40px;
    background: linear-gradient(180deg, rgba(15, 184, 255, 0.21) 0%, rgba(47, 170, 222, 0) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}
.fast-order-title::after{
    content: '';
    position: relative;
    width: 100%;
    height: 2px;
    background: #64739A33;
}
.fast-order-title-logo{
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
}
.fast-order-title-head{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fast-order-title-head span:first-child{
    font-size: 40px;
    font-weight: 600;
    color: #182042;
}
.fast-order-title span:last-child{
    color: #64739A;
    font-size: 14px;
    font-weight: 500;
}
.fast-order-content{
    display: flex;
    flex-direction: column;
    padding: 0px 40px 40px 40px;
    gap: 24px;
}
.fast-order-content-label{
    display: flex;
    flex-direction: column;
}
.fast-order-content-label > span:first-child{
    color: #0C235E;
    font-weight: 600;
    margin-bottom: 16px;
}
.fast-order-content-label-boxs{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.fast-order-content-box{
    width: 100%;
    padding: 12px;
    border: 1px solid #E8F1FD;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	box-shadow: 0 0 3px #999999;
	cursor: pointer;
}
.fast-order-content-box.active .fast-order-content-box-icon{
    background: #2FAADE;
    transition: 200ms all;
}
.fast-order-content-box.active .fast-order-content-box-icon path{
    fill: white;
}
.fast-order-content-box-left{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.fast-order-content-box-title span:first-child{
    font-weight: 500;
    color: #0C235E;
}
.fast-order-content-box-title span:last-child{
    font-size: 12px;
    color: #64739A;
}
.fast-order-content-box-icon{
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #FFFFFF 0%, #E8F1FD 100%);
    border-radius: 12px;
    display: grid;
    place-items: center;
}
.fast-order-content-box-title{
    display: flex;
    flex-direction: column;
}
.fast-order-content-box-right button{
    background: linear-gradient(180deg, #FFFFFF 0%, #E8F1FD 100%);
    border: none;
    border-radius: 12px;
    padding: 8px 12px;
    color: #0C235E;
    font-weight: 600;
    cursor: pointer;
}
.fast-order-content-box-right button img{
    display: none;
}
.fast-order-content-box-right button.active{
    background: linear-gradient(91.86deg, #2FAADE 0%, #2E2D7D 100%);
}
.fast-order-content-box-right button.active img{
    display: block;
}
.fast-order-content-box-right button.active span{
    display: none;
}
.fast-order-bus{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #2FAADE;
}
.fast-order-button{
    padding: 32px;
    background: #FFFFFF;
    box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    display: grid;
    place-items: center;
}
.fast-order-button>div{
    font-size: 14px;
    color: white;
    padding: 12px 32px;
    background: linear-gradient(91.86deg, #2FAADE 0%, #2E2D7D 100%);
    border-radius: 12px;
	cursor: pointer;
}

@media only screen and (max-width: 600px) {
    .fast-order-container{
        width: 100%;
    }
    .fast-order-content-label-boxs{
        flex-direction: column;
    }
    .fast-order-title{
        padding: 16px;
    }
    .fast-order-content{
        padding: 16px;
    }
    .fast-order-button{
        padding: 16px;
    }
  }