.coming-soon-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.46);
}

#long-gun-inventory-modal,
#hand-gun-inventory-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 400px;
    width: 90%;
    max-width: 1080px;
    background: rgba(0, 0, 0, 0.93);
    z-index: 10;
    color: #fff;
    margin: auto;
    padding: 30px 10px;
    overflow-y: auto;
    font-family: 'Open Sans', sans-serif;
}

.close-long-gun-inventory-modal,
.close-hand-gun-inventory-modal {
    cursor: pointer;
    font-size: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: color .5s;
}

.close-long-gun-inventory-modal,
.close-hand-gun-inventory-modal:hover {
    color: #E37200;
}

.gun-inventory-modal-col {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 40px;
    width: 100%;
}

.gun-image-container {
    width: 250px;
    margin: auto;
    overflow: hidden;
}

.gun-inventory-modal-img {
    display: block;
    width: 100%;
    height: auto;
}

.gun-inventory-name {
    margin-top: 7px;
}

@media (min-width: 768px) {
    .gun-inventory-modal-col {
        width: 50%;
    }
}










