/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.add-to-cart-btn-in-detail button {
    float: left;
    padding: 4px 30px;
    border: 1px solid var(--g-color-black);
    border-left: none;
    margin: 0;
    display: block;
    line-height: 32px;
    background: var(--g-color-1);
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    min-width: 200px;
}
.add-to-cart-btn-in-detail button:hover {
    background: var(--g-color-1-hover);
    cursor: pointer;
}
.add-to-cart-btn-in-detail button:disabled {
    background: #414141;
    cursor: not-allowed;
}
.add-to-cart-btn-in-detail .pocetks {
    font-weight: bold;
    float: left;
    padding: 5px 0 5px 15px;
    width: 60px;
    text-align: center;
    border: 1px solid var(--g-color-black);
    height: 42px;
    font-size: 12px;
    color: #5d5d5d;
    display: block;
    line-height: 42px;
}
.add-to-cart-btn-in-detail .pocetks:disabled {
    cursor: not-allowed;
}
.add-to-cart-btn-in-detail .pocetks:focus {
    outline-width: 0;
    border: 2px solid black;
}
.add-to-cart-btn-in-detail .message-unregistered {
    clear: both;
    display: none;
    font-style: italic;
    color: var(--g-color-4);
    font-weight: 600;
    padding-top: 15px;
}
.add-to-cart-btn-in-detail.add-to-cart-disabled .message-unregistered {
    display: block;
}
.add-to-cart-btn-in-detail.add-to-cart-disabled button,
.add-to-cart-btn-in-detail.add-to-cart-var-disabled button{
    opacity: 0.3;
    background: #414141;
    cursor: not-allowed;
    pointer-events: none;
}
.add-to-cart-btn-in-detail.add-to-cart-disabled .pocetks,
.add-to-cart-btn-in-detail.add-to-cart-var-disabled .pocetks{
    pointer-events: none;
    opacity: 0.3;
}
