#subservice-popup-area {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.1s linear;
}

#subservice-popup-area.active {
    opacity: 1;
    visibility: visible;
}

#subservice-popup-container {
    height: fit-content;
    width: 400px;
    background-color: var(--complimentary-blue-trans);
    font-family: 'Lato', sans-serif;
    align-items: center;
    padding: 10px;
}

#subservice-popup {
    display: flex;
    flex-direction: column;
    background-color: var(--complimentary-blue);
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
}

#subservice-popup>a {
    display: inline-block;
    padding: 10px 0;
    margin-top: 10px;
    color: #f3d000;
    text-decoration: none;
    align-self: center;
}

#subservice-popup>a>span {
    text-align: right;
    color: var(--complimentary-blue);
    background-color: var(--main-yellow);
    padding: 10px;
    transition-duration: 0.3s;
    margin-left: 10px;
}

#subservice-popup>a>span:hover {
    text-align: right;
    background-color: var(--complimentary-blue);
    color: whitesmoke;
    padding: 10px;
}

#popup-title,
#popup-subtitle {
    font-size: 18px;
    color: var(--main-yellow);
}

#popup-title-under {
    font-size: 14px;
    color: whitesmoke;
}

#popup-subtitle {
    margin-top: 2px;
}

#popup-text {
    font-size: 14px;
    color: whitesmoke;
}

#popup-subtitle,
#popup-text {
    margin-left: 10px;
}

#popup-price {
    color: var(--main-yellow);
    align-self: flex-end;
    margin-top: 3px;
}