@charset "windows-1251";

.popup-box {
    position: relative;
    display: inline-block;
}

.popup-here {
    position: absolute;
    top: 52px;
    right: -100px;
    background: #ffffff;
    border-radius: 5px;
    width: 465px;
    padding: 30px;
    z-index: 10;
    box-shadow: 0px 1px 10px 1px rgba(162,162,162,0.7);
    font-family: Roboto, Arial, sans-serif;
}

.popup-here:before {
    position: absolute;
    content: '';
    top: -5px;
    right: 50%;
    width: 10px;
    height: 10px;
    background: #ffffff;
    transform: rotate(45deg);
}

.popup-here__box {
    position: relative;
}

.popup-here__ttl {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 300;
}

.popup-here__cnt {
    font-size: 14px;
    color: #878787;
    margin-bottom: 20px;
}

.popup-here__select-group {
    display: block;
    border-radius: 4px;
    border: 1px solid #C6C6C6;
    font-size: 0;
}

.popup-here .btn__group_list {
    display: inline-block;
    margin-right: 0;
    margin-top: -1px;
}

.popup-here .btn__group_list .btn {
    border-radius: 0;
    padding: 0 0 0 15px;
    margin-bottom: 0px;
    border-left: none;
    border-top: none;
    border-bottom: none;
    width: 133px;
    box-sizing: border-box;
}

.popup-here .btn__group_list:last-child .btn {
    border-right: none;
}

.popup-here .btn__group_list .btn-dd {
    left: -1px;
}

.popup-here .icons_arrow-down_black {
    position: absolute;
    top: 15px;
    right: 13px;
}

.popup-here__close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.popup-here__close:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background: #398db1;
    transform: rotate(45deg);
}

.popup-here__close:after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background: #398db1;
    transform: rotate(-45deg);
}


.place-overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}


.popup-hidden {
    display: none;
}

@media (max-width: 800px) {
    .popup-box {
        display: block;
    }
    .popup-here {
        margin: auto;
        left: 0;
        right: 0;
        width: 90%;
    }

    .popup-here__select-group {
        border: none;
    }

    .popup-here .btn__group_list .btn {
        border: 1px solid #C6C6C6;
        margin-bottom: 15px;
        width: 100%;
    }

    .popup-here .btn__group_list:last-child .btn {
        border-right: 1px solid #C6C6C6;
    }
}