.tip-dialog {
	position: absolute;
	transform: translate(-50%,-50%);
	left: 50%;
	top: 50%;
	border: 4px solid #01677c;
	padding: clamp(20px,2vw,40px);
	padding: 2vw;
	font-size: 20px;
	background: rgba(0,43,57,.9);
	color: white;
	display: none;
	z-index: 9999;
	padding: 20px;
	width: 80%;
	max-width: 1400px;
    max-height: calc(100vh - 100px);
    overflow: auto;
}

.tip-dialog.show {
	display: block;
}


.tip-dialog li {
    list-style-type: none;
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.5em;
}

.tip-dialog li::before {
    content: '\2B24';
    position: absolute;
    top: 0.05em;
    left: 0em;
    font-size: 0.7em;
}


.tip-item {
    display: flex;
    margin-bottom: clamp(20px, 2vw, 50px);
}

.tip-icon {
    width: 10%;
    text-align: center;
    min-width: 140px;
}

.tip-content {
    width: 90%;
}

.tip-content strong {
    font-size: 1.4em;
    margin-bottom: 0.5em;
    display: block;
}

.tip-title {
    font-size: 1.2em;
    margin-left: 0.6em;
}

.tip-header {
    display: flex;
    min-height: 80px;
}

.tip-badge {
    position: absolute;
    right: 10px;
    top: 10px;
}


.tip-footer {
    text-align: center;
    /* padding: 20px; */
}

.tip-button {
    display: table;
    margin: auto;
    padding: 20px;
}

.tip-button a {
    text-decoration: none;
    background: #01677c;
    padding: 10px 30px;
    border-radius: 20px;
    font-size: 1.1em;
    color: white;
}

.tip-item:last-child {
    margin-bottom: 10px;
}
