/**
 * @author    Jamoliddin Nasriddinov <jamolsoft@gmail.com>
 * @copyright (c) 2018, Jamoliddin Nasriddinov
 * @license   http://www.gnu.org/licenses/gpl-2.0.html  GNU General Public License, version 2
 */

body {
    position: relative;
}

/* elegantal-popup */
#elegantalgiftboxproducts_popup.elegantal-popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
}
#elegantalgiftboxproducts_popup.elegantal-popup .elegantal-popup-inner {
    max-width: 650px;
    width: 90%;
    height: 80%;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0px 2px 6px black;
    border-radius: 3px;
    background: #fff;
}
#elegantalgiftboxproducts_popup.elegantal-popup .elegantal-popup-content {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 0 15px;
}
#elegantalgiftboxproducts_popup.elegantal-popup .elegantal-popup-close-x {
    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-decoration: none !important;
    text-align: center;
    line-height: 100%;
    color: #fff;
}
#elegantalgiftboxproducts_popup.elegantal-popup .elegantal-popup-close-x:hover {
    -webkit-transform: translate(50%, -50%) rotate(180deg);
    transform: translate(50%, -50%) rotate(180deg);
    background: black;
    text-decoration: none;
}
/* END elegantal-popup */

#elegantalgiftboxproducts_popup_trigger {
    text-align: center;
    font-size: 16px;
}

#elegantalgiftboxproducts_popup_trigger img {
    width: 20px;
    height: 20px;
    margin: -5px 5px 0 0;
}

.elegantal-popup-header-title {
    margin-top: 5px;
    margin-bottom: 15px;
    text-align: center;
    font-size:18px;
    color: #46a74e;
}

.elegantal-popup-header-description {
    font-size: 12px;
    text-align: center;
    padding-bottom: 10px;
}

.elegantal-popup-content * {
    vertical-align: middle;
}

.elegantal-popup-content hr {
    margin: 15px 0;
}

.elegantal-popup-giftbox-item {
    cursor: pointer;
}

.elegantal-popup-giftbox-flex {
    display: flex; 
    align-items: center;
}

.elegantal-popup-content .checker {
    display: inline-block;
    vertical-align: middle;
}

.elegantal-popup-product-qty {
    text-align: center;
}

.elegantal-popup-product-qty input {
    max-width: 100%;
    width: 50px;
    height: 27px;
    line-height: 27px;
    padding: 2px 0 2px 6px;
    border: 1px solid #cacaca;
    box-shadow: 1px 1px 2px 0 #e4e4e4;
}

.elegantal-popup-product-price {
    font-weight: bold;
    color: #46a74e;
}

.elegantal-popup-textarea-block h5 {
    font-weight: bold;
}

.elegantal-popup-textarea-block textarea {
    height: 70px;
    width: 100%;
}

.elegantal-popup-submit-block {
    text-align: center;
}

.elegantal-hidden {
    display: none;
}