.nd-form {
	position: relative;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
			gap: 10px;
	margin-bottom: 10px;
}
.nd-word {
    padding: 10px 35px 10px 10px;
	border: 1px solid #2a8e56;
	border-radius: 6px;
	width: 100%;
	font-size: 13pt;
	line-height: normal;
}
.nd-button {
    -webkit-box-shadow: 0 0 2px #2a8e56;
	        box-shadow: 0 0 2px #2a8e56;
	font-size: 13pt;
	line-height: normal;
	padding: 10px 20px;
	width: 100%;
	max-width: 150px;
	min-width: 116px;
	border: 1px solid #2a8e56;
	border-radius: 6px;
	background-color: #2a8e56;
	color: #fff;
	-webkit-transition: box-shadow 0.3s ease-out;
     -o-transition: box-shadow 0.3s ease-out;
     -webkit-transition: -webkit-box-shadow 0.3s ease-out;
     transition: -webkit-box-shadow 0.3s ease-out;
     transition: box-shadow 0.3s ease-out;
     transition: box-shadow 0.3s ease-out, -webkit-box-shadow 0.3s ease-out;
}
.nd-button:hover, .nd-button:focus {
    cursor: pointer;
	-webkit-box-shadow: 0 0 5px #000;
	        box-shadow: 0 0 5px #000;
}
.nd-button:active {
    -webkit-box-shadow: 0 0 2px #000;
	        box-shadow: 0 0 2px #000;
}
.nd-word:focus, .nd-button:focus {
	outline: none;
}
.custom-tooltip {
	display: none;
	position: absolute;
	left: 0;
	top: 50px;
	max-width: 350px;
	padding: 12px 20px;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 0 0 5px #ccc;
	z-index: 9999;
}
.custom-tooltip::before {
	content: '';
    display: block;
    position: absolute;
    top: -6px;
    left: 25px;
    width: 10px;
    height: 10px;
    margin: 0;
    border-left: 1px solid #cccccc;
    border-top: 1px solid #ccc;
    transform: rotate(45deg);
    background-color: #fff;
}
.custom-tooltip p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
    .nd-button {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .nd-word {
        margin-right: 5px;
    }
	.nd-button {
		width: 100px;
	}
	.nd-word, .nd-button {
        font-size: 11pt;
    }
	.custom-tooltip {
		top: 47px;
	}
}

@media (max-width: 375px) {
    .nd-button {
        width: 130px;
    }
}