html {
    box-sizing: border-box;
    font-size: 16px;
}

body {
    margin: 0;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    padding: 0 15px;
}

.columns {
    margin-left: -15px;
    margin-right: -15px;
}

.column {
    padding: 0 15px;
    flex-basis:0;
    flex-grow:1;
    flex-shrink:1;
}

.section--column-swap .column:last-child {
    order: 1;
}

.section--column-swap .column:first-child {
    order: 2;
}

@media screen and (min-width: 769px) {
    .columns {
        display: flex;
    }
    .columns.columns--full-width {
        flex-flow: row wrap;
    }
    .columns.columns--full-width .column {
        flex: 1 100%;
    }
    .columns.columns-halves {
        flex-flow: row wrap;
    }
    .columns.columns-halves .column {
        width: 50%;
    }
}


/* Form Styles*/

.form__field {
    margin-bottom: 15px;
}

.form__field-input,
.form__field-textarea {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border: 1px solid #bfbaaf;
    color: #363636;
    -webkit-appearance: none;
    align-items: center;
    display: inline-flex;
    justify-content: flex-start;
    padding: 7px 10px;
}

.form__field-textarea {
    resize: none;
}

.form__field-input::placeholder,
.form__field-textarea::placeholder {
    color: #817d71;
}

.form__field--end {
    text-align: right;
}

.btn {
    padding: 8px 15px;
    display: inline-block;
    border-radius: 3px;
    font-size: 14px;
}

.btn--black {
    background-color: #191712;
    color: #fff;
}

.quantity input[type="number"] {
    width: 70px;
    text-align: center;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none;
    border: 1px solid #d3d3d1;
}

.quantity {
    display: flex;
    width: 95px;
}

.quantity-button {
    background-color: #fff;
    border: 1px solid #dddddd;
    border-left: 0;
    width: 25px;
    text-align: center;
}

.quantity-button:first-child {
    border-bottom: 0;
}

.mob-menu-toggle {
    position: absolute;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    top: 50%;
    transform: translateY(-30%);
    z-index: 9980;
    width: 30px;
    min-height: 24px;
    left: 0;
}

.mob-menu-toggle span,
.mob-menu-toggle span::before,
.mob-menu-toggle span::after {
    background: #191712;
}

.mob-menu-toggle span,
.mob-menu-toggle span::before,
.mob-menu-toggle span::after {
    display: block;
    position: absolute;
    left: 0;
    height: 4px;
    background: #191712;
    transition: all .2s ease;
    width: 30px;
}

.mob-menu-toggle span::before,
.mob-menu-toggle span::after {
    content: '';
    width: 100%;
}

.mob-menu-toggle span::before {
    top: -10px;
}

.mob-menu-toggle span::after {
    bottom: -10px;
}

.mob-menu-toggle.toggle-open span {
    background: rgba(0, 0, 0, 0);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mob-menu-toggle.toggle-open span::before {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}

.mob-menu-toggle.toggle-open span::after {
    -webkit-transform: rotate(-90deg) translate3d(10px, 0, 0);
    transform: rotate(-90deg) translate3d(10px, 0, 0);
}

.for-desktop {
    display: block;
    max-height: 300px;
    width: 100%;
}

.for-mobile {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .mob-menu-toggle {
        top: -35px;
        transform: none;
        left: 015px;
    }
    .for-desktop {
        display: none !important;
    }
    .for-mobile {
        display: block !important;
        /* this two line of code updated by OD on 13/1/2020 */
        width: 100%;
        max-height: 300px;
    }
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {}