.link {
    cursor: pointer;
    color: #999;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 10px;
}

.xsell > .color-light-grey {
    color: #999;
}

.vfm--absolute {
    position: fixed !important;
}
.modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal-content {
    display: flex;
    flex-direction: column;
    margin: 0 1rem;
    padding: 3rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: #fff;
    gap: 20px;
    max-height: 90vh;
    overflow-y: scroll;
    max-width: 600px;
}
.modal-content.custom {
    padding: 0;
    max-width: 800px;
}
.modal-content.large {
    width: 100%;
    margin: 1rem;
    padding: 3rem;
    max-width: 600px;
}
.modal__content {
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.modal__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #26B48D;
    margin-bottom: 15px;
}
.customer-disabled {
    filter: grayscale(1);
    opacity: 0.7;
    pointer-events: none;
}
.action-disabled {
    pointer-events: none;
    opacity: 0.7;
    cursor: progress;
}
[aria-disabled="true"], [aria-disabled="true"] * {
    cursor: not-allowed !important;
    opacity: 0.7;
}
[aria-disabled="true"]:active, [aria-disabled="true"] *:active {
    pointer-events: none;
}

.btn-primary:disabled,
.btn-primary:disabled:active,
.btn-primary:disabled:focus,
.btn-success:disabled,
.btn-success:disabled:active,
.btn-success:disabled:focus,
.btn-light:disabled,
.btn-light:disabled:active,
.btn-light:disabled:focus {
    background-color: #CCC;
    border: 2px solid #CCC;
    color: #fff;
}


.validate-icon {
    height: 40px;
    width: 40px;
    background-color: #26B48D;
    display: block;
    border-radius: 20px;
    position: relative;
}
.validate-icon:after {
    content: "";
    left: 15px;
    top: 8px;
    width: 10px;
    height: 20px;
    border: solid #fff;
    border-width: 0 5px 5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
}

.arrow_box {
    padding: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 7px;
    width: max-content;
    max-width: 90vw;
    box-shadow: 0px 6px 15px 0px #00000010;
}

@media (max-width: 641px) {
    .modal-content {
        padding: 1rem;
        gap: 5px;
    }
}

.note-container {
    position: relative;
}

.note-container:hover .product-avis {
    display: block;
    transition-delay: 0s;
}

.note-container .product-avis {
    position: absolute;
    display: none;
    background: #fff;
    border: 1px solid #C4C4C4;
    box-sizing: border-box;
    width: 300px;
    padding: 10px;
    z-index: 2;
    top: 100%;
    left: -115px;
}

.note-container .product-avis::before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    border-top: solid 1px #C4C4C4;
    border-bottom: solid 1px transparent;
    border-left: solid 1px #C4C4C4;
    border-right: solid 1px transparent;
    top: -3.6px;
    left: 136px;
    transform: rotate(45deg);
    background-color: #fff;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.corner {
    border-color: #fff;
    border-style: solid;
    margin-top: 8px;
    margin-left: 5px;
    border-width: .2rem .2rem 0 0;
    transform: rotate(135deg);
    height: 10px;
    width: 10px;
}

.rotate-down {
    -webkit-animation: rotate-down 0.10s ease-in-out both;
    animation: rotate-down 0.10s ease-in-out both;
}

.rotate-up {
    -webkit-animation: rotate-up 0.10s ease-in-out both;
    animation: rotate-up 0.10s ease-in-out both;
}

@-webkit-keyframes rotate-down {
    0% {
        -webkit-transform: scale(1) rotateZ(315deg);
        transform: scale(1) rotateZ(315deg);
    }
    50% {
        -webkit-transform: scale(2) rotateZ(225deg);
        transform: scale(2) rotateZ(225deg);
    }
    100% {
        -webkit-transform: scale(1) rotateZ(135deg);
        transform: scale(1) rotateZ(135deg);
    }
}

@keyframes rotate-down {
    0% {
        -webkit-transform: scale(1) rotateZ(315deg);
        transform: scale(1) rotateZ(315deg);
    }
    50% {
        -webkit-transform: scale(2) rotateZ(225deg);
        transform: scale(2) rotateZ(225deg);
    }
    100% {
        -webkit-transform: scale(1) rotateZ(135deg);
        transform: scale(1) rotateZ(135deg);
    }
}
