/** Dárek v košíku */
.gift_order {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 40px;
    margin-top: 20px;
    padding: 0px;
}

.gift_order h2 {
    background: transparent;
    border: 0px;
    color: #000;
    display: block;
    float: left;
    font-size: 18px;
    line-height: 50px;
    padding: 0px;
    margin: 0px;
}

.gift_order .gift_order_image {
    display: block;
    float: left;
    max-width: 50px;
    margin-left: 10px;
    margin-right: 10px;
}

.gift_order .gift_order_select {
    display: block;
    float: left;
    margin-left: 10px;
}

.gift_order .gift_order_select a {
    background: #b95d43cc;
    color: #fff;
    padding: 5px 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.gift_order .gift_order_name {
    display: block;
    float: left;
}

.gift_order .gift_order_name {
    text-align: center;
    font-size: 18px;
    color: #000;
    display: block;
    line-height: 50px;
}

.gift_order_overlay {
    display: none;
    background: #000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 900;
    opacity: 0.5;
}

.gift_order_popup {
    display: none;
    background: #fff;
    position: fixed;
    top: 20%;
    left: calc(50% - 300px);
    z-index: 999;
    width: 600px;
    height: 600px;
}

.gift_order_popup .close:hover {
    cursor: pointer;
}

.gift_order_popup .close {
    position: absolute;
    right: 5px;
    top: 5px;
}

.gift_order_popup h3 {
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    padding-top: 20px;
    padding-left: 10px;
    text-align: center;
}

.gift_order_popup ul li img {
    display: block;
    float: left;
    max-width: 80px;
}

.gift_order_popup ul li h4 {
    display: block;
    float: left;
    font-size: 16px !important;
    color: #000;
}

.gift_order_popup ul li a{
    display: flex;
    align-items: center;
    gap: 20px;
}

.gift_order_popup ul li a:hover{
    text-decoration: underline;
}

.gift_order_popup ul li {
    display: table;
    width: 100%;
    margin-bottom: 10px;
}

.gift_order_popup ul {
    padding-left: 10px;
}

.gift_order_popup .gift_close_image_wrapper{
    width: 80px;
    display: flex;
    justify-content: center;
}

.gift_order_popup .gift_close_icon {
    width: 20px;
    margin-top: 2px;
}

.gift_order .info-modal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gift_order .info-modal .gift_icon {
    width: 30px;
    height: 30px;
    margin-right: 6px;
}

@media (max-width: 600px) {
    .gift_order h2 {
        line-height: 26px;
        font-size: 16px;
    }

    .gift_order_popup {
        width: 90%;
        left: 5%;
        top: 5%;
    }

    .gift_order_popup ul li img {
        width: 10%;
    }

    .gift_order_popup ul li h4 {
        width: 80%;
        line-height: 20px;
    }

    .gift_order_popup .gift_close_icon {
        margin-top: 0px;
    }
}