/* Header : Top */


._header-top{
    color: white;
    background: #ff6600;
    background: black;
    display: flex;
    justify-content: center;
}

._header-top-data{
    width: 90%;
    padding: 14px 0px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 17px;
}

._header-top-data a{
    transition: all 0.4s ease-in-out;
}

._header-top-data a:hover{
    color: #ff6600;
}

._header-top-search{
    overflow: hidden;
    overflow-wrap: break-word;
    text-overflow: clip;
}


/* UX */


.ux{
    display: flex;
    justify-content: center;
}

.ux-contain{
    width: 90%;
    padding: 90px 0px 120px;
}


/* UX : Headin */


.ux-headin{
    width: auto;
    padding-bottom: 40px;
    text-align: center;
}

.ux-name{
    font-size: 18px;
    font-weight: 300;
}

.ux-title{
    font-size: 48px;
    font-weight: 700;
}

.ux-subname{
    padding-top: 7px;
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 1.6em;
}


/* UX : Content */


.ux-content{
    padding: 20px 0px;
    display: flex;
}

.ux-data{
    width: 100%;
    border-radius: 10px;
    color: white;
    background: #111;
}


/* UI */

.ui{
    width: auto;
    display: flex;
    justify-content: center;
}

.ui-contain{
    width: 90%;
    padding: 30px 0px 80px;
}

.ui-sub{
    padding-bottom: 40px;
}


/* UI : Controls */


.ui-control{
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 7px;
}

.ui-control button{
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 40px;
    font-size: 17px;
    color: white;
    color: #ff6600;
    background: #222;
    cursor: pointer;
}


/* UI : Headin */


.ui-headin{
    display: flex;
    gap: 40px;
}


/* UI : Logo */


.ui-logo{
    position: relative;
    width: 240px;
    height: 200px;
    border: 4px solid rgb(84, 84, 84);
    border-radius: 10px;
}

.ui-logo img{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.ui-icon{
    position: absolute;
    inset: 0px;
    border-radius: 10px;
    font-size: 50px;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}


/* UI : Pane */


.ui-pane{
    flex: 1;
    padding: 30px 0px;
}

.ui-all{
    width: auto;
    padding-bottom: 17px;
}

.ui-name{
    font-size: 14px;
    letter-spacing: 0.3px;
    line-height: 1.4em;
    color: #ff6600;
}

.ui-title{
    font-size: 40px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* UI : Audio */


.ui-audio{
    display: flex;
}

.ui-audio audio{
    flex: 1;
    border-radius: 0px;
    height: 48px;
}

audio::-webkit-media-controls-panel{
    background: white;
    border-radius: 0px;
}

audio::-moz-media-controls-panel{
    background: #ff6600;
    border-radius: 0px;
}

audio::-webkit-media-controls-mute-button{
    color: #ff6600;
}

audio::-webkit-media-controls-play-button{
    color: #ff6600;
}


/* UI : Content */


.ui-content{
    width: auto;
    max-height: 60vh;
    padding: 40px 0px 0px;
    border-top: 3px solid white;
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow-y: auto;
}


.box{
    flex: 1;
    padding: 10px 17px;
    border-radius: 4px;
    background: black;
    display: flex;
    align-items: center;
    gap: 17px;
}

.box-button button{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 45px;
    font-size: 18px;
    color: white;
    background: #ff6600;
    cursor: pointer;
}

.box-title{
    flex: 1;
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box-download button{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    color: white;
    background: #222;
    cursor: pointer;
}


/* UX : Lean */


.lean{
    display: flex;
    justify-content: center;
}

.lean-contain{
    width: 95%;
    padding: 50px 0px;
}

.lean-headin{
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
}

.lean-line{
    width: 50%;
    border: 2px solid black;
    border-radius: 2px;
}

.lean-data{
    text-align: center;
    font-size: 17px;
    font-family: 'AGP';
    letter-spacing: 0.3px;
    line-height: 1.5em;
}


/* Mobile Responsive */


/*  */

@media screen and (max-width) {
    
}

/* 800px */

@media screen and (max-width: 800px) {

    .ux-contain{
        padding: 70px 0px 100px;
    }

    .ux-headin{
        padding-bottom: 30px;
    }

    .ux-title{
        line-height: 1.3em;
    }

    .ux-data{
        border-radius: 0px;
    }

    .ui-contain{
        width: 85%;
        padding: 70px 0px;
    }

    .ui-sub{
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
    }

    .ui-control{
        padding-top: 10px;
        justify-content: center;
    }

    .ui-headin{
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .ui-pane{
        width: 100%;
        padding-bottom: 0px;
        text-align: center;
    }

    .ui-all{
        padding-bottom: 10px;
    }

    .ui-title{
        font-size: 30px;
        display: block;
        -webkit-line-clamp: unset;
        -webkit-box-orient: unset;
        overflow: hidden;
        overflow-wrap: break-word;
        text-overflow: clip;
    }
    
}

/* 500px */

@media screen and (max-width: 500px) {

    .ux-title{
        font-size: 38px;
    }

    .ui-contain{
        width: 88%;
        padding: 40px 0px 70px;
    }
    
}

/* 400px */

@media screen and (max-width: 400px) {

    .ui-contain{
        padding: 40px 0px 70px;
    }

    .ui-title{
        font-size: 24px;
    }

    .ui-audio{
        overflow: auto;
    }

    .lean-contain{
        width: 100%;
    }
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}

/*  */

@media screen and (max-width) {
    
}