/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.group-discount-pop {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.75);
    z-index: 999;
}

/* Inner */
.popup-inner {
    max-width: 700px;
    width: 90%;
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 1);
    border-radius: 3px;
    background: #fff;
    color: #000;
}

/* Close Button */
.popup-close {
    width: 30px;
    height: 30px;
    padding-top: 4px;
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0px;
    transition: ease 0.25s all;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    border-radius: 1000px;
    background: rgba(0, 0, 0, 0.8);
    font-family: Arial, Sans-Serif;
    font-size: 20px;
    text-align: center;
    line-height: 100%;
    color: #fff;
}

.popup-close:hover {
    -webkit-transform: translate(50%, -50%) rotate(180deg);
    transform: translate(50%, -50%) rotate(180deg);
    background: rgba(0, 0, 0, 1);
    text-decoration: none;
}

.group-discount-check {
    /*color: #fff;*/
    display: block;
}

.group-discount-check:hover {
    /*color: #fff;*/
    text-decoration: underline;
}

.popup-inner table td {
    border: 1px solid #ccc;
    padding: 5px;
}

.popup-inner .fa-tag {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-right: 5px;
}

.trip-content-area .widget-area .trip-price form .discount-price-per-traveler,
.discount-price-per-child-traveler {
    font-size: 0.800em;
    /*color: #fff;*/
}

.popup-inner .group-discount-content {
    max-height: 70vh;
    overflow: auto;
}

/*.discount-price-per-child-traveler {
    display: none;
}*/
