/* Page confirmation */

*{
    box-sizing: border-box;
    margin: 0;
    list-style-type: none;
}
.h-100{
    height: 100%;
}
.vh-100{
    height: 100vh;
}
.vh-80{
    height: 80vh;
}
.sticky{
    position: sticky;
    top: 56px;
}

.grid{
    display: grid;
}
.gap-4{
    gap: 1rem;
}
.grid-cols-1{
    grid-template-columns: repeat(1,minmax(0,1fr));
}
.grid-cols-2{
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.grid-cols-3{
    grid-template-columns: repeat(3,minmax(0,1fr));
}
.grid-cols-4{
    grid-template-columns: repeat(4,minmax(0,1fr));
}
.col-span-1{
    grid-column: span 1/span 1;
}
.col-span-2{
    grid-column: span 2/span 2;
}
.col-span-3{
    grid-column: span 3/span 3;
}

.flex{
    display: flex;
}
.flex-col{
    flex-direction: column;
}
.flex-grow{
    flex-grow: 1;
}
.items-center{
    align-items: center;
}
.items-start{
    align-items: flex-start;
}
.items-end{
    align-items: flex-end;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.mt-3{
    margin-top: 16px;
}
.mb-2{
    margin-bottom: 8px;
}
.mb-3{
    margin-bottom: 16px;
}
.mb-4{
    margin-bottom: 24px;
}
.mb-5{
    margin-bottom: 32px;
}

.confirmation{    
    width: 80%;
    margin-left: 10%;
}
.wrap{
    width: 100%;
    background-color: #fff;
    padding: 3%;
    border-color: #e4e4e4;
    flex-wrap: wrap;
}

.wrap__heading{
    font-size: 18px;
    color: #2d2d2d;
}

.confirmation-paragraphe {
    font-size: 16px;
}

.order__paragraphe{
    font-weight: 300;
}

.order__paragraphe:first-child {
    margin-top: 3px;
}

.price__paragraphe{
    font-weight: 300;
}
.order__paragraphe__product__name{
    font-weight: 500;
    font-size: 16px;
}
.order__paragraphe__product__quantity{
    font-weight: 300;
    margin-top: 8px;
    color: #8c8c8c;
}

.wrap__border__top{
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
.wrap__border__bottom{
    border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}
.container-price{
    position: -webkit-sticky;
    position: sticky;
}
.margin-t3{
    margin-top: 16px;
}
.margin-t2{
    margin-top: 8px;
}
.margin-b3{
    margin-bottom: 16px;
}
.margin-b2{
    margin-bottom: 8px;
}
.margin-l3{
    margin-left: 16px;
}

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

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

.create_or_modify{
    background-color: #fff;
    color: #000;
    border: 1px solid #A8A8A8;
    padding: 8px 37px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.woof_product_description {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    align-content: center;
}

.woocommerce-LoopProduct-link{
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}
.woocommerce-loop-product__title{
    margin-top: 9px;
}

.woof_tpl_1 img {
    height: 300px;
    object-fit: cover;
}


/* Payment */

.paypal-button {
	border-radius: 0px !important;
}

/* PAGE 404 */

.container-error-page{
    background-color: #F7F5F2;
}

.min-vh-100{
    min-height: 100vh;
}

.error-page{
    font-family: "Axiforma";
}
.button-primary{
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #2B2B2B;
    padding: 16px 32px;
    color: #FFFFFF;
    text-decoration: none;
}

.text-center{
    align-content: center;
}

/* Remove data author page */

.entry-meta {
    display:none !important;
}
.home .entry-meta {
    display: none;
}
.entry-footer {
    display:none !important;
}
.home .entry-footer {
    display: none;
}


/* Size guide */

.size-guide {
	text-decoration-line: underline !important;
}

.size-guide:hover {
	cursor: pointer !important;
}

@media ( min-width: 768px ) {
	.size-guide-container {
		margin-bottom: 1em;
		margin-left: -107%;
	}
}

/* responsive **/
@media (max-width: 768px) {
    .sm-grid-cols-4{
        grid-template-columns: 1fr;
    }
    .sm-col-span-3{
        grid-column: 1;
    }
    .confirmation{
        width: auto;
        min-width: auto;
        padding: 16px;
        margin: auto;
    }
    .sm-wrap{
        flex-direction: column;
    }
    .sm-wrap__informations{
        margin-bottom: 32px;
    }
}


@media (max-width: 768px) {
    .content-error{
        margin-right: 16px;
        margin-left: 16px;
    }
}

.order-button-black {
    background-color: black;
    color: white;
    transition: background-color 0.5s;
}

.order-button-white {
    background-color: white;
    color: black;
    transition: background-color 0.5s;
}

@media (min-width: 768px) {
    #woocommerce-order-button a {
        background-color: black;
        color: white;
        transition: background-color 0.5s;
        border: 0.5px solid black;
    }

    #woocommerce-order-button a:hover {
        background-color: white;
        color: black;
        transition: background-color 0.5s;
        border: 0.5px solid black;
    }
}

.order_button_mobile_black_fading {
    background-color: black;
    color: white;
    transition: background-color 0.5s;
}

.order_button_mobile_white_fading {
    background-color: white !important;
    color: black !important;
    border: 0.5px solid black !important;
}


/*
cross close popup
*/
.eicon-close {
	opacity: 50%;
}

.eicon-close:hover {
	opacity: 80%;
}


/*
Subtitle for delivery option
*/
/*
.multi-shipping-choice-subtitle {
	padding: 1% 4%;
	opacity: 50%;
	font-size: 0.9rem;
}*/


/* LOADER SCREEN*/

#loader-nem {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

#loader-nem-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.5em;
}

.loader-n {
    width: 48px;
    height: 48px;
    background: #000000;
    display: inline-block;
    border-radius: 50%;
    box-sizing: border-box;
    animation: animloader 1s ease-in infinite;
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}