/*
 * You can say something about your file if you need it!
 */
/*-------------------------*/
/* $Catalog 
---------------------------*/
/** 
 * Catalog
 * Text
 * Background-color
 * Typesetting
**/
/* All */
/*-------------------------*/
/* $Text
---------------------------*/
.pad-header__title-popuprow li h1{
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    padding: 3px 30px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 36px;
    line-height: 47px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.2s;
}
/*-------------------------*/
/* $Background-color 
---------------------------*/
.pad-header__title-popup{
    background-color: #fff;
}
.pad-header__title-popuprow li h1:hover{
    color: #fff;
    background-color: #2a2a2a;
}
.pad-header__title-togglerow span{
    background-color: #fff;
}
.pad-header__title-togglerow:hover span{
    background-color: #ff9f82;
}
.pad-header__title-closerow span{
    background-color: #2a2a2a;
}
/*-------------------------*/
/* $Typesetting 
---------------------------*/
.pad-header__title-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}
#pad-header__title:target{
    visibility: visible;
    opacity: 1;
}
.pad-header__title-popup{
    position: absolute;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
}
.pad-header__title-popuprow li{
    text-align: center;
    margin-top: 6vh;
}
.pad-header__title-togglerow{
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px 20px;
    width: 30px;
    height: 30px;
}
/* toggle span */
.pad-header__title-togglerow span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 3px;
    border-radius: 5px;
    transition: all 0.2s;
}
.pad-header__title-togglerow span:nth-child(1){
    margin-top: -14px;
}
.pad-header__title-togglerow span:last-child{
    margin-top: 14px;
}
.pad-header__title-togglerow:hover span{
    height: 5px;
}
.pad-header__title-closerow{
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px;
    width: 30px;
    height: 30px;
    z-index: 60;
}
/* close span */
.pad-header__title-closerow span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 2px;
    border-radius: 5px;
    transition: all 0.3s;
}
.pad-header__title-closerow span:nth-child(1){
    transform: translate(-50%,-50%) rotate(45deg);
}
.pad-header__title-closerow span:last-child{
    transform: translate(-50%,-50%) rotate(-45deg);
}
/* close-hover */
.pad-header__title-closerow:hover span:nth-child(1){
    transform: translate(-50%,-50%) rotate(225deg);
}
.pad-header__title-closerow:hover span:last-child{
    transform: translate(-50%,-50%) rotate(315deg);
}