* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
  /* div 클릭 시 파란색 깜빡임 제거 */
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}

.base-btn {
/*     width: 335px; */
	width: 100%;
    height: 52px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
}
.base-btn-grey {
/*     width: 335px; */
	width: 100%;
    height: 52px;
    border-radius: 14px;
    background-color: #e3e5e6;
    color: #3d3d3d;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
}
.base-btn-grey:hover {
    background-color: #296591;
    color: #fff;
}
.base-btn-grey:active {
    background-color: #296591;
    color: #fff;
}

.base-btn-blue {
/*     width: 335px; */
	width: 100%;
    height: 52px;
    border-radius: 14px;
    background-color: #296591;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 0;
}
.base-btn.blue {
    background-color: #296591;
    color: #fff;
}
.base-btn.blue-h42 {
    height: 42px;
    background-color: #296591;
    color: #fff;
}

.base-btn.white {
    background-color: #fff;
    color: #296591;
    border: 1px solid #296591;
}
.base-btn.white-h42 {
    height: 42px;
    background-color: #fff;
    color: #296591;
    border: 1px solid #296591;
}

.base-btn.white-h42:disabled,
.base-btn.green-h42:disabled,
.base-btn.yellow-h42:disabled,
.base-btn.google-h42:disabled {
	opacity: 0.5;
}

.base-btn.green-h42 {
    height: 42px;
    background-color: #03c75a;
    color: #fff;
    border: none;
}

.base-btn.yellow-h42 {
    height: 42px;
    background-color: #fee500;
    color: #3d3d3d;
}

.base-btn.google-h42 {
	height: 42px;
	background-color: #fff;
}

.base-btn.purple {    
    background-color: #a764ff;
    color: #fff;
}
.base-btn.purple2 {    
    background-color: #fff;
    border: 1px solid #a764ff;
    color: #3d3d3d;
    
    display: flex;
    justify-content: space-around;
}

.base-btn-s {
/*     width: 162.5px; */
    height: 38px;
    border-radius: 50px;
    border: 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 45%;
}
.base-btn-s.grey {
    background-color: #EDEDED;
    color: #7F8081;
}

.base-btn-s.blue {
    background-color: #296591;
    color: #fff;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-45 {    
    margin-bottom: 45px;
}
.mb-150 {
    margin-bottom: 150px;
}
.mb-300 {
    margin-bottom: 300px;
}

.mr-20 {
    margin-right: 20px;
}

input {
    outline: none;
}


.modal {
    display: none;
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
	min-height: 100svh;
    max-height: 100lvh;
    overflow: hidden;
    background: rgba(0,0,0,0.5);
    z-index: 100000;
}
.modal .modal_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    word-break: keep-all;
    width: fit-content;
}
.modal .modal_popup .adsImg {
	max-width: 90dvw;
	/* 추후 height 조정 */
	max-height: calc(100dvh - 60px);
	display: none;
}
.modal .modal_popup .close_btn {
    width: 46px;
    height: 46px;
    display: block;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 350px;
    left: 130px;
    background-color: unset;
    background-image: url("../images/sub/close-btn.png");
    background-repeat: no-repeat;
}

.modal.on {
    display: block;
}

.modal_btn .rect:active {
    fill: #296591;
}

.modal .close-btn {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#shareModal .modal_popup-share{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    width: 350px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;}

.modal-h2 {
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    color: #296591;
    font-weight: 600;
}

#shareModal p {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #3d3d3d;
    font-weight: 500;
}

#shareModal #shareLink{
	border-bottom: 1px solid;
    font-size: 12px;
}

#shareModal button {    
	width: 125px;
    height: 40px;
    border-radius: 14px;
    border: none;
    background-color: #296591;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 15px;
}

.privacy-policy-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100svh;
	max-height: 100lvh;
	background-color: rgba(0, 0, 0, 0.5);
}

.privacy-policy-modal.on {
	display: block;
}

.privacy-policy-modal .close-btn {
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
}

.privacy-policy-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 45px 15px 20px 15px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 90%;
	height: 90%;
	cursor: default;
	overflow-y: scroll;
}

.privacy-policy-modal-content .privacy-policy {
	width: 100%;
	height: 100%;
	overflow-y: scroll;
}

.privacy-policy-modal-content h1 {
	font-size: 23px;
	margin-bottom: 25px;
}

.privacy-policy-modal-content h2  {
	font-size: 20px;
	margin: 15px 0;
}

.privacy-policy-modal-content h3 {
	font-size: 17px;
	margin: 10px 0;
}

.privacy-policy-modal-content h4 {
	font-size: 16px;
	margin: 10px 0;
}

.privacy-policy-modal-content ul {
	margin: 5px 0;
	list-style-type: disc;
	display: block;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 20px;
}

.privacy-policy-modal-content li {
	display: list-item;
	text-align: -webkit-match-parent;
}

.privacy-policy-modal-content p {
	font-size: 15px;
	line-height: 20px;
}

.privacy-policy-modal-content hr {
	margin: 20px 0;
}

.base-input-btn {
/*     width: 113px; */
	width: 130px;
    height: 46px;
    background-color: #fff;
    border-radius: 14px;
    border: 1px solid #296591;
    font-size: 14px;
    color: #296591;
    font-weight: 600;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 4px;
    cursor: pointer;
}
.base-input-btn:active {
    background-color: #296591;
    color: #fff;
}

textarea {
    height: 135px;
    border-radius: 14px;
    padding: 16px 10px;
    border: 1px solid #e1e1e1;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    font-family: 'SUITE', sans-serif;
    resize: none;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (max-width: 330px) {
	.base-btn {
		height: 45px;
		font-size: 15px;
	}
}