.mo-navi {
	display: none;
}

.skpr-navi {
 display: flex;
 justify-content: flex-end;
 align-items: center;
  width: 100%;
  height: 100%;
  color:white !important;
}

.skpr-navi > ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
	padding: 20px;
    width: 100%;
    height: 100%;
	gap:28px;	
}

.skpr-navi-text {
    color: white !important;
    font-size: 18px;
    font-weight: 500;
}

.skpr-navi-text-fee {
    color: white !important;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-left: 60px;
}

.skpr-navi-text-fee::before {
    content: "벌금 NO!";
    position: absolute;
    left: 0;
    top: -10px;
    background-color: #ff4136;
    color: white;
    padding: 2px 6px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
    transform: rotate(-10deg);
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.1); }
    100% { transform: rotate(-5deg) scale(1); }
}

.ham {
	display: none;
}

.h-right {
	display: flex;
	width: fit-content;
}

.h-right > .naver a {
	background: url(../img/btn/toktok.png)no-repeat 0 0/ cover;
	display: inline-block; 
	width: 90px;
	height: 60px;
	position: relative;
	cursor: pointer;
  }
  
  .h-right > .naver p {
	display: none; 
  }

  .h-right > .kakao a {
	background: url(../img/btn/kakao.png)no-repeat 0 0/ contain;
	display: inline-block; 
	width: 90px;
	height: 60px;
	position: relative;
	cursor: pointer;
  }
  
  .h-right > .kakao p {
	display: none; 
  }


@media (max-width: 1020px) {
	.skpr-navi {
		display: none;
	}
	.h-right {
		display: none;
	}
	.ham {
		display: block;
	}
}