body{
    background:var(--Grey-color-100);
}

.parking{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    background:var(--white);
    border-radius:8px;
    padding:36px 30px;
    display:flex;
    flex-direction: column;
    gap:20px;
}

.parking .top{
    display:flex;
    gap:16px;
    flex-direction: column;
    text-align:center;
    align-items: center;
    justify-content: center;
}

.parking .top .icon{
    width:66px;
    height:14px;
}

.parking .top strong{
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 31.2px */
    width:100%;
    padding-bottom:16px;
    border-bottom:2px solid var(--black);
    text-align: center;
}

.parking .top p{
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; /* 23.4px */
    text-align: center;
}

.parking .box{
    border-radius:4px;
    background:var(--Grey-color-50);
    padding:20px 30px;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:9px;
}

.parking .box span{
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 19.2px */
    color: var(--white);
    padding:4px 10px;
    border-radius:50px;
    background:var(--Primary-1);
}

.parking .box p{
    color: var(--Primary-1);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%; /* 25.6px */
}

.parking .box small{
    color: var(--Grey-color-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; /* 19.2px */
    text-align: center;
}

.parking .info ul{
    display:flex;
    gap:12px;
    flex-direction: column;
}

.parking .info li{
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 160%; /* 22.4px */
}

.parking .info li strong{
    color: var(--Primary-1);
}

.parking .info li span{
    text-align: center;
    font-size: 12px;
    color:var(--Grey-color-500);
    font-weight: 400;
    line-height: 160%; /* 19.2px */
}


