/**
* 2007-2017 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2017 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#ohmcartpopup-wrapper {
	margin-left: 10px;
}

#ohmcartpopup-wrapper .ohmcartpopup{
	position: relative;
}

#ohmcartpopup-wrapper .header,
#ohmcartpopup-wrapper .body {
    width: 195px;
}

#ohmcartpopup-wrapper .header {
	padding: 10px 10px;
    background: #f5f5f5;
    text-align: center;
}

#ohmcartpopup-wrapper .header .cart-arrow {
    float: right;
}

#ohmcartpopup-wrapper .header .cart-arrow i{
    display: none;
}

#ohmcartpopup-wrapper .header .cart-arrow i.actve{
    display: block;
}

#ohmcartpopup-wrapper .header .cart-count {
	line-height: 25px;
}

#ohmcartpopup-wrapper .header .cart-icon {
	float: left;
}

#ohmcartpopup-wrapper .header .cart-icon i{
	font-size: 20px;
    line-height: 27px;
}

#ohmcartpopup-wrapper .header .cart-arrow i{
    font-size: 32px;
    cursor: pointer;
    line-height: 25px;
}

#ohmcartpopup-wrapper .body {
    padding: 5px;
    left: auto;
    right: 0;
    width: 400px;
    margin-top: 0px;
    position: absolute;
    top: -300px;
    z-index: 0;
    float: left;
    min-width: 160px;
    visibility: hidden;
    margin: 2px 0 0;
    font-size: 1rem;
    color: #878787;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0;
    opacity: 0;
     -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

#ohmcartpopup-wrapper .ohmcartpopup .body.shownow{
    top: 95%;
    visibility: visible;
    z-index: 1000;
    opacity: 1;
     -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

.cart-product {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.cart-product .image {
    width: 90px;
    display: inline-block;
    vertical-align: top;
}

.cart-product .description {
	width: calc(100% - 120px);
	display: inline-block;
  margin-left: 15px;
}
.cart-product .description.full-width-desc {
    width: 100%;
}

.cart-product .ohmcartpopup-product-name{
    font-size: 16px;
    display: block;
    line-height: 14px;
    margin-top: 10px;
}
.header-actions-container .cart-product .ohmcartpopup-product-name a{
  text-align: left;
  align-items: start;
}

.cart-product .ohmcartpopup-product-attribute{
    font-size: 12px;
    display: block;
    line-height: 20px;
}

.cart-product .ohmcartpopup-product-price {
    font-size: 12px;
    display: block;
    line-height: 20px;
    margin: 8px 0 4px 0 ;
}

.cart-product .ohmcartpopup-product-price i{
    font-size: 15px;
    line-height: 16px !important;
}

.cart-product .cart-controls{
	line-height: 30px;
  margin-bottom: 2px;
  text-align: left;
  align-items: start;
}

.cart-product .cart-controls a{
	padding: 0px;
    margin: 0px;
    line-height: 25px;
    font-size: 25px;
    width: 25px;
    text-align: center;
    float: left;
    cursor: pointer;
}

.cart-product .cart-controls a.remove-cart{
    float: right;
}

.cart-product .cart-controls a i{

}

.cart-subtotals {
	margin-top: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #f5f5f5;
}

.cart-subtotals>div {
    padding: 5px 0px;
}

.cart-subtotals span,
.cart-total span {
	font-size: 14px;
}

.cart-subtotals span.value,
.cart-total span.value{
	float: right;
}

.cart-url{
	border: 1px solid #d8d7d7;
    padding: 5px;
    margin-top: 10px;
    font-size: 15px;
    text-align: center;
}

#ohmcartpopup-modal{
    display: block;
}
#ohmcartpopup-modal img{
    max-width: 100%;
}

#ohmcartpopup-modal .modal-overlay{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
}

@media (min-width: 767px) {
    #ohmcartpopup-wrapper.hook-DisplayTop{
        display: none;
    }
}

@media (max-width: 767px) {
    #ohmcartpopup-wrapper.hook-DisplayTop{
        display: block;
        margin-left: 15px;
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 15px;
    }
    #ohmcartpopup-wrapper .header,
    #ohmcartpopup-wrapper .body{
        width: 100%;
    }
}

