div.alk_sc_choice_wrapper #alk_sc_choice_field .woocommerce-input-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

div.alk-error {
    font-size: 14px;
    font-weight: bold;
}

div#alk-errors-wrapper {
    background-color: rgb(213, 128, 24);
    padding: 10px 8px;
    border-radius: 4px;
    color: white;
    margin: 10px 0;
}

div.alk_d_flex {
    display: flex;
    align-items: center;
    gap: 6px;
}

div.alk_f_wrap {
    flex-wrap: wrap;
}

div.alk_add_field_title {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
    color: #0A274E;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

div.alk_add_field_subtitle {
    text-align: center;
    font-size: 12px;
    color: #0A274E;
}

div.alk_choices_wrapper {
    margin: 6px 0;
    align-items: stretch;
    gap: 7px;
    justify-content: space-between;
}

div.alk_choices_wrapper.alk_choices_wrapper_multi_line {
    flex-wrap: wrap;
}

div.alk_choices_wrapper.alk_choices_wrapper_multi_line div.alk_choice_wrapper {
    width: auto;
    flex: inherit;
}

div.alk_choices_wrapper.alk_choices_wrapper_with_group {
    flex-wrap: wrap;
}

div.alk_choices_wrapper.alk_choices_wrapper_with_group div.alk_choice_wrapper {
    flex: 1 1 0px;
}

div.alk_choice_wrapper {
    flex: 1 1 0px;
    position: relative;
    cursor: pointer;
    width: 0;
}

div.alk_choice_wrapper.selected {}

div.alk_choice_wrapper_rectangle {
    border: 2.5px solid lightgray;
    height: 100px;
    border-radius: 8px;
    /* background-size: contain; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 80%;
}

div.alk_choice_wrapper.selected div.alk_choice_wrapper_rectangle {
    border: 2.5px solid #1B8BCA;
}

div.alk_choice_wrapper div.alk_choice_wrapper_text {
    color: black;
    text-align: center;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

div.alk_choice_wrapper.selected div.alk_choice_wrapper_text {
    color: #1B8BCA;
    font-weight: bold;
}


div.alk_sc_choice_wrapper {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    flex-direction: row;
    border: 2px solid lightgray;
    border-radius: 4px;
}

div.alk_sc_choice_wrapper label {
    font-size: 14px;
    font-weight: bold;
}

div.alk_sc_choice_wrapper:has(input[type="radio"]:checked) {
    /* border: 2px solid #038BC8; */

}


div.alk_sc_choice_wrapper>div label,
div.alk_sc_choice_wrapper>div input {
    cursor: pointer;
}

div.alk_sc_choice_wrapper>div {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px;
    background-color: #F9F5F5;
}

div.alk_sc_choice_wrapper>div:has(input[type="radio"]:checked) {
    background-color: #038BC8;
    color: white;
}

div.alk_standard_meta_input label,
div.alk_custom_meta_input label {
    font-weight: bold;
}

div.alk_custom_meta_input input,
div.alk_standard_meta_input select {
    width: 100%;
    min-width: 300px;
}


div.alk_custom_meta_input input {
    border: 1px solid #038BC8 !important;
    border-radius: 4px !important;
    border-width: 1px !important;
    font-size: 16px !important;
    padding: 10px 8px !important;
}

div.alk-main-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1100;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
}

div.alk-main-loading-overlay div.alk-loading-message {
    margin-top: 40px;
    text-align: center;
    font-size: 22px;
    color: white;
}


div.alk-loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #1691cc;
    width: 90px;
    height: 90px;
    margin: 140px auto 10px auto;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

div.quantity {
    display: none;
}

.alk-radio-item {
    display: inline-block;
    position: relative;
    padding: 0 6px;
}

.alk-radio-item input[type='radio'] {
    display: none;
}

.alk-radio-item label {
    font-weight: normal;
    vertical-align: baseline;
}

.alk-radio-item label:before {
    content: " ";
    display: inline-block;
    position: relative;
    top: 3px;
    margin: 0 5px 0 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #333333;
    background-color: transparent;
    box-sizing: border-box;
}

.alk-radio-item input[type=radio]:checked+label:before {
    border: 2px solid #FFFFFF;
}

.alk-radio-item input[type=radio]:checked+label:after {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 7px;
    left: 10px;
    content: " ";
    display: block;
    background: #FFFFFF;
    box-sizing: border-box;
}

.alk-custom-select {
    min-width: 300px;
    position: relative;
}

.alk-custom-select select {
    appearance: none;
    /*  safari  */
    -webkit-appearance: none;
    /*  other styles for aesthetics */
    width: 100%;
    font-size: 16px;
    padding: 10px 8px;
    background-color: #fff;
    border: 1px solid #038BC8;
    border-radius: 0.25rem;
    color: #000;
    cursor: pointer;
}

.alk-custom-select.selected select {
    border: 2px solid #038BC8;
}

.alk-custom-select::before,
.alk-custom-select::after {
    --size: 0.3rem;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none;
}

.alk-custom-select::before {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-bottom: var(--size) solid black;
    top: 40%;
}

.alk-custom-select::after {
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid black;
    top: 55%;
}

.alk-add-to-cart-wrapper {
    background-color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    z-index: 1000;
}

.alk-add-to-cart-bottom-inner {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    justify-content: center;
}
@media screen and (max-width: 600px) {
    .alk-add-to-cart-bottom-inner {
        gap: 10px;
    }
}


button.alk-add-to-cart-button {
    color: white !important;
    border-radius: 18px !important;
    cursor: pointer !important;
    background-color: #0A274E !important;
    border-width: 0 !important;
    padding: 4px 150px 4px 150px !important;
    font-size: 16px !important;
}
@media screen and (max-width: 600px) {
    .button.alk-add-to-cart-button {
        padding: 10px 40px 8px 40px !important;
        font-size: 14px !important;
    }
}

button.alk-add-to-cart-button:hover {
    background-color: #EDB11A !important;
}

.alk-mt-20 {
    margin-top: 20px !important;
}

.woocommerce-page form .form-row label.alk_label_icons_wrapper,
.alk_label_icons_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}


.woocommerce-page form .form-row label.alk_label_icons_wrapper img,
.woocommerce .alk_label_icons_wrapper img,
.alk_label_icons_wrapper img,
.woocommerce-page .alk_add_field_title img {
    height: 24px;
}

img.alk_clickable,
div.alk_clickable,
a.alk_clickable {
    cursor: pointer;
}

.alk-button {
    padding: 10px;
    border-radius: 25px;
    color: #008BCA;
    border: 2px solid #008BCA;
    background-color: white;
    cursor: pointer;
    font-weight: bold;

}

.alk-button:hover,
.alk-button:focus {
    background-color: #008BCA;
    color: white;
}

div.alk_meta_field_and_title_wrapper {
    margin: 22px 0;
    background-color: white;
    border-radius: 14px;
    padding: 8px;
}

div#main-content {
    /* background-color: #333; */
}

div.alk_checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}

div.alk_checkmark::before {
    position: absolute;
    left: 0;
    top: 50%;
    height: 50%;
    width: 3px;
    background-color: #008BCA;
    content: "";
    transform: translateX(10px) rotate(-45deg);
    transform-origin: left bottom;
}

div.alk_checkmark::after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #008BCA;
    content: "";
    transform: translateX(10px) rotate(-45deg);
    transform-origin: left bottom;
}

div.alk_choice_wrapper div.alk_checkmark {
    position: absolute;
    top: 4px;
    left: 4px;
    display: none;
}

div.alk_choice_wrapper.selected div.alk_checkmark {
    display: block;
}

.alk-woocommerce-price {
    color: #EC8B07;
    font-weight: bold;
    font-size: 30px !important;
}

.alk-woocommerce-price-initial {
    color: #0A274E;
    text-decoration: line-through;
    font-weight: bold;
    font-size: 16px !important;
}

#alk-bottom-price-wrapper {
    /* color: #EC8824;
    font-size: 20px;
    font-weight: bold; */
}

.alk-bottom-price {
    color: #EC8824;
    font-size: 24px;
    font-weight: bold;
}
@media screen and (max-width: 600px) {
    .alk-bottom-price {
        font-size: 20px;
    }
}

.alk-bottom-price-initial {
    color: #0A274E;
    font-size: 14px;
    text-decoration: line-through;
    font-weight: bold;
}

.woocommerce-product-gallery__wrapper img.wp-post-image {
    border-radius: 10px;
}


.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image--placeholder {
    position: relative;
}

div.alk-notices-accessoires-images-wrapper {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    flex-direction: column;
    left: -85px;
    bottom: 0;
    padding: 0 8px;
    border-radius: 0 6px 0 0;
    gap: 8px;
}

@media screen and (max-width: 600px) {
    div.alk-notices-accessoires-images-wrapper {
        position: relative;
        flex-direction: row;
        left: -8px;
        padding: 4px 8px;
        gap: 4px;
    }
}

div.alk-notices-accessoires-image-wrapper {
    padding: 4px;
    border: 2px solid #008BCA;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    background-color: white;
    width: 60px;
}

.alk-notices-accessoires-text {
    color: #008BCA;
    text-align: center;
    font-size: 9px;
    line-height: 8px;
}

.woocommerce img.alk-notices-accessoires-image,
img.alk-notices-accessoires-image {
    width: 24px !important;
    /* width: auto !important; */
    cursor: pointer;
}



div.woocommerce-product-gallery div.woocommerce-product-gallery__wrapper img.zoomImg {
    /* voir dimensions ? */
    height: 1673px !important;
    width: 2560px !important;
}


.woocommerce div.product.elementor .woocommerce-tabs .panel {
    border-top: 2px solid #008BCA !important;
}

.woocommerce div.product.elementor ul.tabs {
    margin: 0px !important;
}

.woocommerce div.product.elementor ul.tabs li {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    margin-right: 2px !important;
    border-bottom: 1px solid #008BCA !important;
}

.woocommerce div.product.elementor ul.tabs li.active {
    background-color: #008BCA !important;
    color: white !important;
}

div.alk_choice_standard_custom_wrapper {
    background-color: white;
    border-radius: 14px;
    padding: 16px 8px;
}

@media screen and (max-width: 600px) {
    .noMobile {
        display: none;
    }
}


.e-atc-qty-button-holder,
.e-atc-qty-button-holder div.quantity,
.single_add_to_cart_button {
    display: none !important;

}

hr.alk_hr_group_separator {
    /* width: 100%; */
    content: '';
    flex-basis: 100%;
    height: 0;
    margin: 0;
    border: none;
}