/**
* 2007-2023 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2023 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/


.cat-custom ul {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding-top: 4rem;
}

.cat-custom li button.nav-link.active {
    background-color: transparent !important;
    border: none !important;
    color: initial !important;
    border-right: 2px solid #000 !important;
}

.cat-custom li button.nav-link.active:focus,
.cat-custom li button.nav-link.active:focus-visible {
    outline: none;

}

.cat-custom .preview-custom {
    box-shadow: inset 15px 0px 12px -13px rgba(0, 0, 0, 0.699);
}



#module-fa_customproduct-viewcustom .l-wrapper {
    max-width: 100%;
    overflow-x: hidden !important;
}

.preview-custom .img-preview-top,
.preview-custom .img-preview-short,
.preview-custom .img-preview-sock {
    text-align: center;
    max-width: 100%;
}

.preview-custom .img-preview-top img,
.preview-custom .img-preview-short img,
.preview-custom .img-preview-sock img {
    max-width: 100%;
    height: auto;
}

.image-fluid {
    max-width: 100%;
    height: auto;
}

.preview-custom .img-preview {
    width: 100%;
}

#preview-short {
    width: 85%;
}

article.active .card-product {
    border: 3px solid green;
}

#module-fa_customproduct-viewcustom .modal-dialog {
    max-width: 75%;
}


#module-fa_customproduct-createcart .modal-dialog {
    max-width: 50%;
}

#module-fa_customproduct-summarycart .modal-dialog {
    min-width: 800px;
}

#module-fa_customproduct-summarycart #preview-modal #switch-view,
#module-fa_customproduct-createcart #preview-modal #switch-view {
    justify-content: space-around;
    margin: 1rem 0;
}

#modal-preview {
    display: flex;
    flex-direction: column-reverse;
}

#modal-preview #switch-view {
    justify-content: space-around;
    margin-bottom: 1rem;
}

#modal-preview #switch-view .btn-switch {
    width: 100%;
}

#custom-modal .form-perso {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
}

#custom-modal #number-perso {
    max-width: 15%;
}

#custom-modal #text-perso {
    max-width: 50%;
}

#custom-modal {
    max-height: 100vh;
}



.display-n {
    display: none;
}

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap');

#custom-name,
#custom-number {
    font-family: 'Orbitron', sans-serif;
    color: azure;
    display: flex;
}


#module-fa_customproduct-viewcustom #img-perso {
    width: 70%;
}

#custom-name {
    font-weight: 900;
    font-size: 2vw;
    text-transform: uppercase;
    transform-origin: center;
    position: absolute;
    top: 15%;
    left: 1%;
    text-align: center;
    width: 100%;

}

.img-flocable img {
    height: 100%;
}

#custom-number {
    font-weight: 900;
    font-size: 7vw;
    position: absolute;
    top: 22%;
    left: 0%;
    width: 100%;
    text-align: center;

}

#module-fa_customproduct-summarycart #custom-number,
#module-fa_customproduct-createcart #custom-number {
    padding-right: 0%;
}

.categories-liste {
    margin-bottom: 2rem;
}

.ico-top {
    background: url(../img/soccer-jersey.png);
    background-size: cover;
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}


.ico-short {
    background: url(../img/shorts.png);
    background-size: cover;
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.ico-socks {
    background: url(../img/socks.png);
    background-size: cover;
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

#form-container {
    margin-bottom: 10px;
}



#sum-cart th,
#sum-cart td {
    padding: 0.5rem 1rem;
}

#sum-cart td:first-child {
    margin: 0 auto;
}

.form-qty_product {
    width: 90%;
    text-align: center;
}

.td-qty {
    width: 10%;
}

.recap {
    border: 1px solid black;
    padding: 2rem 0;
    background: #ffffff;
    border-radius: 16px;
}

@-webkit-keyframes shake-horizontal {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    80% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    90% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}

@keyframes shake-horizontal {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    20%,
    40%,
    60% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    80% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    90% {
        -webkit-transform: translateX(-8px);
        transform: translateX(-8px);
    }
}



.shake-horizontal {
    -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}



.delete-line {
    background-color: white;
    color: rgb(219, 43, 43) !important;
    padding: 0.3rem;
    border-radius: 50rem;
    border: solid 1px #000;
    cursor: pointer;
    transition: 0.3s;
}

.delete-line:hover {
    color: white !important;
    background-color: rgb(219, 43, 43) !important;
    transform: scale(1.1);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.459);
    transition: 0.3s;

}



.form-group {
    display: flex;
    flex-direction: column;
}


.form-summary {
    margin: 0;
    border-radius: 5px;
    border: solid black 1px;
    height: 30px;
    width: 100%;
}

.form-summary.product {
    padding: 3px 0;
}

@keyframes front-out {
    from {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    50% {
        transform: rotate3d(0, 1, 0, -90deg);
    }

    to {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes front-in {
    from {
        transform: rotate3d(0, 1, 0, 0deg);
    }

    50% {
        transform: rotate3d(0, 1, 0, -90deg);
    }

    to {
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

.view1 {
    animation: 0.3s linear front-out;
}

.view2 {
    animation: 0.3s linear front-in;
}

.resume-price {
    display: flex;
}

.btn-cat.active {
    border-right: #000 solid 3px;

}

.btn-cat {
    padding-right: 1.5rem;
    border-right: transparent solid 3px;

}

#module-fa_customproduct-viewcustom .highlighted-informations {
    display: none;
}

#module-fa_customproduct-summarycart #img-perso.back,
#module-fa_customproduct-createcart #img-perso.back {
    width: 70%;
}



/* Style des étiquettes */
.form-back {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style des champs de saisie de texte */
.form-back[type="text"],
.form-back[type="number"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.modal-content {
    border-radius: 16px;
}

.opt-form {
    color: blue;
    display: block;
}

/* Style des étiquettes */
.form-front {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Style des champs de fichier */
.form-front[type="file"] {
    margin-bottom: 10px;
}

/* Style des boutons radio */
.form-front input[type="radio"] {
    margin-right: 5px;
}

/* Style des boutons radio et leurs étiquettes */
.form-front input[type="radio"]+label {
    display: inline-block;
    margin-right: 10px;
}

/* Style des boutons radio sélectionnés */
.form-front input[type="radio"]:checked+label {
    font-weight: bold;
}

.value-custom-number {
    width: 18%;
}

.value-custom-name {
    width: 34%;
}

.view-products-custom {
    display: flex;
    flex-direction: column;
    min-height: 55vh;
    justify-content: space-between;
}

.input-row {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid black;
    border-radius: 5px;
}

.minus-btn,
.plus-btn {
    cursor: pointer;
    text-align: center;
    padding: 0 10px;
    -moz-user-select: none;
    /* Firefox */
    -webkit-user-select: none;
    /* Chrome, Safari, Opéra depuis la version 15 */
    -ms-user-select: none;
    /* Internet explorer depuis la version 10 et Edge */
    user-select: none;
    /* Propriété standard */
}

.minus-btn {
    padding: 0 5px 0px 10px;
}

.plus-btn {
    padding: 0 10px 0px 5px;
}

.form-qty_product::-webkit-outer-spin-button,
.form-qty_product::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-qty_product {
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
    border: none;
}

.warning-form {
    border: 2px #d63031 solid;
    border-radius: 16px;
    padding: 2rem;
    padding-bottom: 1rem;
    background: #d6303136;
    margin: 2rem 0;
    color: #771818;
}

.cart-custom {
    min-height: 400px;
    cursor: pointer;
    background-position: center;
    background-size: 110%;
    transition: 0.3s;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-custom:hover {
    background-size: 100%;
    transition: 0.3s;
}

.title-cat {
    font-size: 2vw;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
}


.form-module_customozation .row {
    margin-bottom: 2rem;
    align-items: center;
    justify-content: start;
}

.form-module_customozation label {
    display: inline-block;
    width: 10%;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-module_customozation label.color_for_module {
    width: 20%;
    margin-left: 15px;
}

.form-module_customozation input,
.form-module_customozation select {
    display: inline-block;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-module_customozation input[type="text"] {
    width: 30%;
}

.form-module_customozation select {
    width: 20%;
}



.form-module_customozation .change_view {
    margin: 1rem;
    padding: 0.5rem;
    border: 2px solid #d1d1d1;
    cursor: pointer;
}

.form-module_customozation .label-file_customization {
    cursor: pointer;
    font-weight: bold;
}

.form-module_customozation .input-file_customization {
    display: none !important;
}

.form-module_customozation .for_logo {
    width: 20% !important;
}

.label-file_customization {
    border: 1px solid #ccc;
    background-color: #a0a0a0;
    border-radius: 4px;
    text-align: center;
    padding: 0.5rem 1rem;
    margin-right: 3rem;
}

.modal_header_customization button,
.modal_header_customization button>i {
    font-size: 1.5rem;
    vertical-align: middle;
}

.modal_header_customization button {
    text-decoration: underline;
}

.modal_header_customization button:active,
.modal_header_customization button:focus {
    box-shadow: none !important;
}

.form-module_customozation {
    width: 45%;
}

.modal_content_customization .preview_product {
    margin: auto;
}

.color_radio_input label {
    border-radius: 5rem;
    width: 30px;
    height: 30px;
    margin: auto 0.5rem;
    border: solid 1px #c1c1c1;
}

.color_radio_input input:checked+label {
    outline: solid 2px black;
}

.preview_flocage {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#preview-modal .carousel {
    width: 100%;
    overflow: hidden;
    padding: 15px;
}

#preview-modal .carousel-inner {
    display: flex;
}

#preview-modal .carousel-item {
    flex: 0 0 100%;
    transition: transform 0.3s ease-in-out;
}

#preview-modal .carousel-controls {
    display: flex;
    justify-content: space-between;
    transform: translateY(-2500%);
}

#preview-modal .carousel-btn {
    cursor: pointer;
    transform: scale(3.5);
    color: #c1c1c1;
}

#preview-modal .preview_front_modal,
#preview-modal .preview_back_modal {
    cursor: pointer;
    background-size: contain;
    background-position: center;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.text_preview_carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
}