/**
 * GiftPromotions for Magento 2
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the GNU General Public License
 *
 * DISCLAIMER
 *
 * Do not add or edit the files if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category   BrandCrock
 * @package    BrandCrock_GiftPromotions
 * @copyright  Copyright (c) BrandCrock (https://www.brandcrock.com/)
 * @license    GNU General Public License
 */
.gift-notification {
    background: #f5f5f5;
    margin: 0 0 10px;
    padding: 12px 15px;
}
.checkout-index-index.page-layout-checkout .gift-popup-modal .modal-inner-wrap {
    width: 54%;
    left: 0px;
    margin-left: auto;
}
.gift-popup-modal .modal-inner-wrap {
    width: 54%;
}
.gift-popup-modal .modal-inner-wrap .modal-title {
    border: 0px;
    text-align: center;
}
.gift-popup-modal.modal-popup .modal-content {
    padding-bottom: 0px;
}
.gift-popup-modal.modal-popup.modal-slide .modal-footer {
    border: 0px;
    text-align: center;
}
#gift_popup-modal {
    display: block;
    position: relative;
    overflow: visible;
    width: 100%;
    margin: auto;
}
#gift-item-slider .owl-stage {
    display: flex;
}
#gift-item-slider .owl-stage .owl-item {
    display: flex;
    flex: 1;
}
.gift-items-left {
    font-weight: bold;
    font-size: 25px;
}
.gift-items-list {
    display: block;
    position: relative;
    overflow: visible;
    width: 100%;
}
.gift-items-list .gift-item {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px;
    cursor: pointer;
}
.gift-items-list .gift-item:hover {
    background: #eee;
}
.gift-items-list .gift-item.selected {
    background: #d1005d;
}
.gift-items-list .gift-item-content {
    display: block;
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 5px;
    background: #fff;
    box-sizing: border-box;
}
.gift-items-list .select-gift-item {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.gift-items-list .gift-product-name {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    height: 34px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.gift-items-list .gift-product-name a{
    text-decoration: none;
}
.gift-items-list .gift-product-image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 10px auto;
}
.gift-items-list .gift-item-qty {
    display: block;
    position: relative;
    overflow: hidden;
    width: 20%;
    margin: 0px auto -2px;
    bottom: 36px;
}
.gift-items-list .owl-stage-outer {
    margin: 0 -5px;
    padding: 0 5px;
}
.gift-items-list .owl-nav {
    font-size: 20px;
    margin: 0;
}
.gift-items-list .owl-nav [class*=owl-]:hover {
    background: none;
    color: inherit;
}
.gift-items-list .owl-nav .owl-prev {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -25px;
}
.gift-items-list .owl-nav .owl-next {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -25px;
}
.gift-info-text {
    display: block;
    width: max-content;
    background: #85bd03;
    color: #fff;
    font-weight: 600;
    line-height: 25px;
    padding: 0 8px;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .gift-popup-modal .modal-inner-wrap {
        width: 68%;
    }
}
@media screen and (max-width: 768px) {
    .gift-popup-modal .modal-inner-wrap {
        width: 76%;
    }
}