/**
 * @category    CHClubs
 * @package     CHClubs\DesignYourOwn
 * @author      Alfreds Genkins <info@scandiweb.com>
 * @copyright   Copyright (c) 2017 Scandiweb, Inc (http://scandiweb.com)
 * @license     http://opensource.org/licenses/OSL-3.0 The Open Software License 3.0 (OSL-3.0)
 */

.select .current {
    box-sizing: border-box;
    height: 30px;
    position: relative;
    width: 100%;
}

.select .option, .select .current {
    line-height: 33px;
}

.select .dropdown {
    background-color: #ffffff;
    border: 1px solid #aaa;
    box-sizing: border-box;
    display: none;
    max-height: 300px;
    overflow: auto;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.select .dropdown .option:hover {
    background-color: #f5f5f5;
}

.month .dropdown .option:first-child {
    display: none;
}

.select.active {
    z-index: 2;
}

.product-details {
    background-color: #ffffff;
    border: 1px solid #aaa;
    box-sizing: border-box;
    display: none;
    height: auto;
    padding: 30px;
    position: absolute;
    width: 440px;
    z-index: 20;
}

.product-details img {
    width: 90%;
    margin-left: 5%;
}

.content-to-show {
    box-sizing: border-box;
    display: table;
    width: 100%;
}

.dyoc-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: 0;
    bottom: 0;
}