2stybody {
    font-family: 'Space Mono', sans-serif;
    color: #000;
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
}

ul {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 0px;
}

.big-container {
    max-width: 1920px;
    margin-right: auto;
    margin-left: auto;
}

.content {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

/*
.content.main-content {
    padding-top: 55px;
    padding-bottom: 55px;
}
*/

.content.payment-content {
    padding-top: 20px;
    padding-bottom: 20px;
}

.content.footer-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.heading {
    margin-top: 0px;
    margin-bottom: 10px;
    font-family: Rubik Medium, sans-serif;
    color: #453f3f;
    font-size: 32px;
    line-height: 42px;
    font-weight: 500;
}

.paragraph {
    margin-bottom: 50px;
    color: #525252;
    font-size: 18px;
    line-height: 28px;
}

.filter-sort {
    display: none !important;
    /*
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
*/
}

.small-button {
    width: 94px;
    height: 30px;
    padding: 0px 15px 0px 0px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    background-color: #f0e0cd;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    color: #000;
    line-height: 30px;
    text-align: right;
}

.small-button:hover {
    background-color: #000;
    color: #f0e0cd;
}

.small-button.filter {
    background-image: url('../images/filter.png');
    background-position: 15px 50%;
    background-repeat: no-repeat;
}

.small-button.sort {
    background-image: url('../images/sort.png');
    background-position: 15px 50%;
    background-repeat: no-repeat;
}

p.form-desc {
    margin: 10px 0 0 0;
}



.product-holder .product {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
    max-width: 330px;
    width: 100%;
    text-decoration: none;
}

.product-holder .product:hover img.disc {
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -o-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
    left: 30px;
}

.product-holder .product:hover .cover {
    border-radius: 0;
    -webkit-box-shadow: -2px 4px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -2px 4px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: -2px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.product-holder .product .cover {
    display: block;
    max-width: 157px;
    width: 100%;
    height: 157px;
    background: #f0e0cd;
    position: relative;
    border-radius: 50%;
    transition: all 0.2s ease;
    /*
    -webkit-box-shadow: -2px 4px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: -2px 4px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: -2px 4px 10px 0px rgba(0, 0, 0, 0.1);
*/
}

.product-holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 30px;
}

.single_product .product-holder {
    display: flex !important;
}

.product-holder .product .cover img {
    position: absolute;
    z-index: -1;
    top: 50%;
    margin: -75px 0 0 0;
    left: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.product-holder p.author {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
    color: #919191;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-holder p.disc-name {
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    font-family: 'Rubik';
    font-weight: 500;
    margin: 0 0 15px 0;
}

.product-holder p.year {
    font-size: 14px;
    line-height: 24px;
    color: #919191;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.product-holder p.price {
    font-size: 16px;
    text-align: right;
    line-height: 21px;
    color: #3b67e2;
    font-weight: 700;
    margin: 0;
    padding: 0 0 25px 0;
    background: url(../images/product-arrow.png) no-repeat bottom right;
}

.product-buy-holder p.price {
    background: none !important;
    padding: 0;
}

.product-holder p.price sup {
    color: #969696;
}

.product-holder .product-text {
    position: relative;
    width: 150px;
}

.product-holder .product-bottom {
    transition: opacity 0.3s linear;
    transform: translate(0);
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.product-holder .product:hover .product-bottom {
    opacity: 1;
}

.product-holder .product:hover .product-top {
    transition: opacity 0.3s linear;
    transform: translate(0);
    opacity: 0;
}

.payment-holder img{max-width:80px;}
.payment-holder {
    display: -ms-grid;
    display: grid;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    grid-auto-columns: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    -ms-grid-columns: auto auto auto auto auto;
    grid-template-columns: auto auto auto auto auto;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.payment {
    padding-right: 20px;
    padding-left: 20px;
    background-color: #f9f2ef;
}

.footer {
    padding-right: 20px;
    padding-left: 20px;
    background-color: #000;
}

.footer-bottom {
    text-align: center;
}

.social-holder {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.link-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 26px;
    height: 26px;
    margin-right: 6px;
    margin-left: 6px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.link-block:hover {
    background-color: #f0e0cd;
}

.paragraph-2 {
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.anpc{display:flex;width:100%;max-width:400px;margin:25px auto 0;}
.anpc img{margin:0 10px;filter:grayscale(100%);width:calc(100% - 20px);}


@media screen and (max-width: 1366px) {
    .product-holder {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 30px;
    }
}


@media screen and (max-width: 991px) {
    /*
    .content.main-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }
*/

    .content.footer-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .heading {
        margin-bottom: 15px;
    }
}


@media screen and (max-width: 820px) {
    .product-holder {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }

    .my_account_page .simple-holder-content .woocommerce {
        flex-direction: column;
    }

    .woocommerce-MyAccount-content {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .woocommerce-MyAccount-navigation {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        align-content: stretch;
        margin: 0 0 40px 0;
    }

    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {
        width: 23%;
        margin: 0 1%;
    }

    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link a {
        font-size: 14px;
    }

    .col2-set#customer_login .col-1,
    .col2-set.addresses .col-1 {
        width: 100%;
        float: none;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .col2-set#customer_login .col-2,
    .col2-set.addresses .col-2 {
        width: 100%;
        float: none;
        margin-right: 0;
    }

}


@media screen and (max-width: 767px) {
    .heading {
        text-align: center;
    }

    .paragraph {
        margin-bottom: 40px;
        text-align: center;
    }

    .columns_login {
        flex-direction: column;
        align-items: stretch;
    }

    .columns .column {
        width: 100%;
    }

    .woocommerce-form-register {
        margin-bottom: 0;
    }

    .product-holder p.author {
        font-size: 12px;
        line-height: 22px;
    }

    .product-holder p.disc-name {
        font-size: 18px;
    }

    .product-holder p.year {
        font-size: 12px;
        line-height: 22px;
    }

}

@media screen and (max-width: 479px) {
    .wcwl_control-rws { width:500px !important; }
	
    .heading {
        font-size: 30px;
        line-height: 40px;
    }

    .paragraph {
        font-size: 16px;
        line-height: 26px;
    }

    .product-holder {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }

    .product-holder p.price {
        text-align: center;
    }

    .waitlist-single-product {
        flex-direction: column;
        align-items: stretch;
    }

    .woocommerce-MyAccount-navigation ul {
        flex-direction: column;
        align-items: stretch;
    }

    .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link {
        width: 100%;
        margin: 0;
    }

    .woocommerce-MyAccount-navigation ul {
        margin: 0 0 20px 0;
    }

}

#w-node-bb76bc142b6c-583e28b5 {
    -ms-grid-column-align: center;
    justify-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

#w-node-66097190005d-583e28b5 {
    -ms-grid-column-align: center;
    justify-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

#w-node-082b0789782a-583e28b5 {
    -ms-grid-column-align: center;
    justify-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

#w-node-b02624f0c97d-583e28b5 {
    -ms-grid-column-align: center;
    justify-self: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-Medium.woff') format('opentype');
    font-weight: 500;
    font-style: normal;
}


.product-right span.posted_in a{
    color: #453f3f;
    padding: 0.05em 0.9em;
    font-size: 0.7em;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 1em;
    border-radius: 3px;
    position: relative;
    background: #f4e8da;
    font-family: 'SpaceMono-regular';
}

.product-right span.posted_in a:hover {
    color: #fff;
    background: #ff3573;
}
    