.modal {
    display: none;
    position: fixed;
    z-index: 101;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 700px;
    height: 550px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    animation-name: modalopen;
    animation-duration: 0.4s;
    z-index: 101;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@keyframes modalopen {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

/* Find Solutions */
.find-solutions {
    vertical-align: middle; 
    margin-top: -2px; 
    margin-bottom: 1px;
    -ms-transform: scale(1.5); /* IE */
    -moz-transform: scale(1.5); /* FireFox */
    -webkit-transform: scale(1.5); /* Safari and Chrome */
    -o-transform: scale(1.5); /* Opera */
}
/* Service Result */
.result-text-border {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px; 
    margin: 10px;
    display: none;
}

.result-a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    transition: box-shadow 0.3s ease-in-out;
}

.result-text {
    display: flex;
    flex-direction: column;
}

.result-title {
    font-size: 16px;
    font-weight: bold;
}

.result-title:hover {
    text-decoration: underline; 
} 

.result-desc {
    font-size: 14px;
}

.result-icon {
    /*display: flex;
    justify-content: center;
    align-items: center; 
    border-radius: 50%;
    background-color: #000;
    flex: 0 0 auto;*/
    width: 35px;
    height: 35px;
}

.link-more {
    color:#1cb9c8; 
    display:inline-block; 
    font-weight:600; 
    text-transform:uppercase;
}

.form-control-custom {
    min-height: 34px;
}

.vp_popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 1000;
}