body {
    --black: #000000;
    --white: #ffffff;

    --blue-1: #0052ff;
    --blue-2: #0048e3;
    --blue-3: #d2dfff;
    --blue-4: #e5edff;
    --blue-5: #eceff1;

    --red-1: #c50000;

    --green-1: #00602b;
    --green-2: #b1ffd5;
    --green-3: #007d38;
    --green-4: #d8ffdf;

    --grey-1: #1d1d1f;
    --grey-2: #f5f5f7;
    --grey-3: #efefef;
    --grey-4: #a9a9a9;
    --grey-5: #b4b4b4;
    --grey-6: #f2f2f2;
    --grey-7: #242424;
    --grey-8: #3c3c3c;
    --grey-9: #535353;
    --grey-10: #fbfbfb;
    --grey-11: #e4e4e4;
    --grey-12: #fafafa;

    --white-a-1: rgba(255, 255, 255, 0.80);

    --blue-a-1: rgba(0, 82, 255, 0.8);
    --blue-a-2: rgba(0, 82, 255, 0.16);
    --blue-a-3: rgba(0, 82, 255, 0.3);

    --red-a-1: rgba(255, 216, 216, 0.6);

    --green-a-1: rgba(216, 255, 223, 0.7);

    --grey-a-1: rgba(228, 228, 228, 0.16);
    --grey-a-2: rgba(228, 228, 228, 0.3);


}
/* @media (prefers-color-scheme: dark) {
    
} */
section.pres {
    padding-top: 150px !important;
    display: flex;
    margin: 0 250px;
    justify-content: space-between;
}
section.pres .left,
section.pres .right {
    width: calc(50% - 50px);
    height: fit-content;
}
section.pres .left h1 {
    font-size: 50px;
    font-weight: 900;
    margin-block: 0;
}
section.pres .left h1 span {
    color: var(--blue-1);
}
section.pres .left div.tt {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 400;
}
section.pres .left div.button {
    margin-top: 40px;
}
section.pres .left div.button a:first-child {
    background: var(--blue-1);
    color: var(--white);
    border-radius: 40px;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: 150ms;
    text-wrap: nowrap;
}
section.pres .left div.button a:first-child:active,
section.pres .left div.button a:first-child:focus {
    box-shadow: var(--blue-a-2) 0px 1px 4px, var(--blue-a-3) 0px 0px 0px 3px;
}
section.pres .left div.button a:first-child:hover {
    background: var(--blue-1);
}
section.pres .left div.button a:last-child {
    background: var(--grey-6);
    color: var(--black);
    border-radius: 40px;
    padding: 7px 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 150ms;
    display: flex;
    align-items: center;
    width: fit-content;
    margin-top: 25px;
}
section.pres .left div.button a:last-child img {
    height: 15px;
    padding-right: 6px;
    width: auto;
}
section.pres .left div.button a:last-child:active,
section.pres .left div.button a:last-child:focus {
    transition: 50ms;
    box-shadow: var(--grey-a-1) 0px 1px 4px, var(--grey-a-2) 0px 0px 0px 3px;
}
section.pres .left div.button a:last-child:hover {
    background: var(--grey-11);
}
section.pres .right {
    display: flex;
    align-items: center;
    justify-content: right;
}
section.pres .right img {
    height: auto;
    width: 100%;
    margin-top: 10px;
}
section.logos {
    background: var(--grey-12);
    margin-top: 120px;
}
section.logos div {
    height: 70px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 150px;
}
section.logos div img {
    height: 40%;
    width: auto;
}
section.reviews,
section.faq {
    padding-top: 100px;
    margin: 0 250px;
}
#sent0 {
    background: var(--green-a-1);
    color: var(--green-1);
}
.alert-r {
    position: fixed;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    margin: 20px;
    font-size: 18px;
    max-width: 560px;
    z-index: 100;
    justify-content: center;
    animation: getout 24s forwards;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    animation-timing-function: ease-in-out;
    bottom: 0;
    font-weight: 600;
    border-radius: 20px;
}
.alert-r .b div:nth-child(1) {
    font-weight: 600;
    margin-right: 22px;
    padding: 8px 22px;
    background: var(--green-2);
    cursor: pointer;
    border-radius: 114px;
    transition: 220ms;
    border: 3px solid var(--green-3);
    user-select: none;
}
#sent0 .b div:nth-child(1):hover {
    color: var(--green-4);
    background: var(--green-3);
}
.alert-r .b a {
    color: var(--green-4);
    background: var(--green-3);
    text-decoration: none;
    padding: 8px 22px;
    border-radius: 192px;
    font-weight: 600;
    display: block;
    transition: 250ms;
    border: 3px solid var(--green-3);
    user-select: none;
    text-wrap: nowrap;
}
.alert-r .b a:hover {
    color: var(--green-3);
    background: rgb(177 255 213);
}
.alert-r .b {
    display: flex;
}
.alert-r .mss {
    margin-bottom: 25px;
}
@keyframes getout {
    from {
        bottom: -100%;
    }
    2% {
        bottom: -100%;
    }
    6% {
        bottom: 0;
    }
    96% {
        bottom: 0;
    }
    to {
        bottom: -100%;
    }
}
.DISABLED {
    display: none !important;
}
section.reviews .rev-cont {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
section.reviews .review {
    width: calc(25% - 30px);
}
section.reviews .review i {
    font-size: 13px;
}
section.reviews .review .rating {
    display: flex;
    justify-content: space-between;
}
section.reviews .review .rating div:nth-child(1) {
    width: 25%;
}
section.reviews .review .rating div:nth-child(1) img {
    width: 100px;
    height: auto;
}
section.reviews .review .rating div:nth-child(2) {
    font-size: 13px;
    color: #3c3c3c;
}
section.reviews .review .infos {
    margin-top: 12px;
}
section.reviews .review .infos div:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
}
section.reviews .review .infos div:nth-child(2) {
    font-size: 15px;
    margin-top: 5px;
    width: 90%;
}
section.reviews .review div:nth-child(3) {
    font-size: 13px;
    color: #3c3c3c;
    margin-top: 12px;
}
section.ask {
    padding-top: 100px;
}
section.ask .faq-heading {
    font-weight: 400;
    font-size: 20px;
    text-indent: 20px;
    user-select: none;
    color: initial !important;
}
section.ask .faq-text {
    font-weight: 400;
    color: #4c5565;
    width: 95%;
    padding-left: 20px;
    margin-bottom: 30px;
}
section.ask .faq {
    background: #fff;
    border-radius: 4px;
    position: relative;
    margin-top: 50px;
}
section.ask .faq label {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 56px;
    padding-top: 1px;
    border-bottom: 1px solid #e1e1e1;
}
section.ask .faq input[type="checkbox"] {
    display: none;
}
section.ask .faq .faq-arrow {
    width: 8px;
    height: 8px;
    transition: transform 500ms;
    border-top: 1px solid #1d1d1f;
    border-right: 1px solid #1d1d1f;
    float: right;
    position: relative;
    top: -35px;
    right: 27px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
section.ask .faq input[type="checkbox"]:checked + label > .faq-arrow {
    transition: transform 500ms;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
section.ask .faq input[type="checkbox"]:checked + label {
    display: block;
    background: rgba(255, 255, 255, 255) !important;
    color: #4f7351;
    height: fit-content;
    transition: height 400ms;
}
section.ask .faq input[type="checkbox"]:not(:checked) + label {
    display: block;
    transition: height 400ms;
    height: 70px;
    user-select: none;
}
footer {
    padding: 50px 0;
    border-top: 1px solid rgb(236, 239, 241);
    margin-top: 100px;
}
footer .container {
    display: flex;
    justify-content: space-between;
}
footer .container .links, footer .container .brand {
    width: 25%;
}
footer .container .links div.titre {
    font-weight: 600;
    font-size: 17px;
}
footer .container .brand div.contenu,
footer .container .links div.contenu,
footer .container .brand .trustpilot {
    margin-top: 16px;
    font-weight: 500;
    color: #3c3c3c;
    width: 90%;
}
footer .container .brand div.contenu {
    margin-top: 3px;
}
footer .container .brand div.contenu .trustpilot {
    border: 1px solid #e4e4e4;
    padding: 12px 18px;
    border-radius: 20px;
    width: fit-content;
    max-width: 80%;
}
footer .container .brand div.contenu img {
    width: 70%;
    max-width: 250px;
}
footer .container .links div.contenu a {
    display: block;
    text-decoration: none;
    color: #3c3c3c;
    padding: 5px 0;
}
footer .container .links div.contenu a:first-child {
    padding-top: 0;
}
footer .container .links div.contenu a:hover {
    color: #2d2e30;
    transition: 300ms;
}
footer .container .brand .trustpilot div:nth-child(1) {
    font-weight: 600;
    font-size: 16px;
    color: #656565;
}
footer .container .brand .trustpilot img {
    width: 110px;
    margin-top: 3px;
}
footer .container .brand .trustpilot div:nth-child(3) {
    margin-top: 5px;
    font-size: 17px;
}
section.convert {
    margin: 0 250px;
    padding-top: 100px;
}
section.convert .select {
    display: flex;
    justify-content: space-between;
    height: 48px;
    align-items: center;
    background: #EEF0F3;
    cursor: pointer;
    padding: 0 21px;
    border-radius: 16px;
    font-weight: 600;
    color: #2e2e2e;
    transition: 200ms;
}
section.convert .hidden {
    display: none;
    position: absolute;
    background: white;
    padding: 10px;
    margin-top: 7px;
    width: 470px;
    border-radius: 7px;
    border: 1px solid #d2d2d2;
}
section.convert .conv-form {
    margin-top: 50px;
    display: flex;
}
section.convert .conv-form .left,
section.convert .conv-form .right {
    width: 50%;
    border: 1px solid rgb(236, 239, 241);
    padding: 20px 30px;
    border-radius: 20px;
}
section.convert .conv-form .left {
    border-right: 0;
    border-radius: 20px 0 0 20px;
    padding-right: 35px;
    padding-bottom: 15px;

}
section.convert .conv-form .right {
    border-left: 0;
    border-radius: 0 20px 20px 0;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
section.convert .conv-form .right .bottom {
    margin-top: 30px;
}
section.convert .conv-form .mid {
    width: 0;
    display: flex;
    align-items: center;
    border: 1px solid rgb(236, 239, 241);
    border-right: 0;
    justify-content: center;
}
section.convert .conv-form .mid img {
    width: 20px;
    height: auto;
    position: absolute;
    background: white;
    user-select: none;
}
section.convert form input[required] {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    /* background: url(https://www.myconvert.org/assets/img/Fichier%5C%209@300x.png) no-repeat scroll 7px 7px;
    padding-left:30px; */
    background-color: #f7f7f7;
    transition: 200ms;
}
input:invalid + input:after {
    box-shadow: green 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}
section.convert form input[required]:hover,
section.convert form select:hover {
    background-color: #fbfbfb;
}
section.convert form input[required]:active,
section.convert form input[required]:focus,
section.convert form select:focus,
section.convert form select:active {
    box-shadow: rgba(231,231,231, 0.16) 0px 1px 4px, rgba(231,231,231, 0.8) 0px 0px 0px 2px;
}
section.convert form select {
    width: 100%;
    padding: 10px 20px !important;
    height: 43px;
    font-size: 16px;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    background-color: #f7f7f7;
    transition: 200ms;
    cursor: pointer;
    color: #1d1d1f;
}
section.convert form select:hover,
section.convert form select:focus,
section.convert form select:active {
    background-color: #fbfbfb;
}
section.convert form select * {
    font-size: 16px;
}
section.convert form button {
    background: #0052FF;
    color: #fff;
    border-radius: 25px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    padding: 10px 30px;
    cursor: pointer;
    width: 100%;
    margin-top: 14px;
    transition: 150ms;
}
section.convert form button:hover {
    background: #0048e3;
}
section.convert form button:active,
section.convert form button:focus {
    transition: 5ms;
    box-shadow: rgb(0 82 255 / 16%) 0px 1px 4px, rgb(0 82 255 / 30%) 0px 0px 0px 3px;
}
section.convert form .contain {
    margin-top: 10px;
}
section.convert form .contain:first-child {
    margin: 0;
}
section.convert form .contain:first-child img {
    height: 30px;
    display: block;
    /* filter: grayscale(100%) opacity(100%) contrast(0%);
    -webkit-filter: grayscale(100%) opacity(100%) contrast(0%);
    -moz-filter: grayscale(100%) opacity(100%) contrast(0%); */
    user-select: none;
}
section.convert form .tickets {
    max-height: 350px;
    overflow-x: auto;
    margin-top: 10px;
    border: 1px solid #e8e8e8;
    border-right: 0;
    border-radius: 10px;
}
section.convert form .ticket {
    padding: 13px 15px;
    border: 1px solid rgb(236, 239, 241);
    border-left: 0;
    margin-top: 10px;
    border-radius: 10px;
}
section.convert form .ticket:first-child {
    margin: 0;
    border-top: 0;
}
section.convert form .ticket:last-child {
    border-bottom: 0;
}
section.convert form .ticket:first-child .contain:last-child {
    display: none;
}
section.convert form .ticket .contain:last-child {
    text-align: right;
}
section.convert form .ticket .contain:last-child span {
    font-size: 15px;
    background: #ffe1e1;
    color: rgb(231, 3, 3);
    padding: 2px 6px;
    border-radius: 8px;
    user-select: none;
    cursor: pointer;
    transition: 200ms;
}
section.convert form .ticket .contain:last-child span:hover {
    background: #ffcbcb;
    color: rgb(231, 3, 3);
}
section.convert form .ticket .contain:last-child span:active,
section.convert form .ticket .contain:last-child span:focus {
    transition: 50ms;
    box-shadow: rgba(255, 125, 125, 0.1) 0px 1px 3px, rgba(255, 135, 135, 0.1) 0px 0px 0px 3px;
}
section.convert form .ticket .contain:last-child span i {
    font-size: 14px;
    padding-right: 5px;
}
section.convert form .add-ticket {
    margin: 15px 10px 0 10px;
}
section.convert form .add-ticket #add-ticket {
    width: fit-content;
}
/* section.convert form .add-ticket div {
    transition: 200ms;
    cursor: pointer;
    border-radius: 50%;
}
section.convert form .add-ticket div:hover {
    transform: rotate(180deg);
}
section.convert form .add-ticket div:active,
section.convert form .add-ticket div:focus {
    transition: 50ms;
    box-shadow: rgb(0 82 255 / 16%) 0px 1px 4px, rgb(0 82 255 / 30%) 0px 0px 0px 3px;
} */
section.convert form .add-ticket span {
    transition: 200ms;
    font-weight: 600;
    background: #e7efff;
    color: #0052FF;
    padding: 3px 11px;
    border-radius: 8px;
    user-select: none;
    cursor: pointer;
}
section.convert form .add-ticket span:hover {
    background: #dae6ff;
}
section.convert form .add-ticket span:active,
section.convert form .add-ticket span:focus {
    transition: 50ms;
    box-shadow: rgb(0 82 255 / 16%) 0px 1px 4px, rgb(0 82 255 / 30%) 0px 0px 0px 3px;
}
section.convert form .add-ticket img {
    /* height: 27px;
    width: auto;
    display: block;
    user-select: none; */
    display: none;
}
section.convert form .d-contain {
    display: flex;
    justify-content: space-between;
}
section.convert form .d-contain .d-left,
section.convert form .d-contain .d-right {
    width: calc(50% - 10px);
}

.topic {
    border-bottom: solid 1px #ebebeb;
}
.topic:last-child {
    border: 0;
}
.open {
    cursor: pointer;
    transition: 150ms;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
}
.open:hover {
    background: #f9f9f9;
}
.expanded {
    background-color: #fcfcfc;
    transition: 200ms ease-in-out;
}
.question {
    padding: 17px 0;
    font-size: 17px;
    width: 92%;
}
.answer {
    font-size: 16px;
    line-height: 26px;
    display: none;
    margin: 0 35px;
    padding: 20px 0;
    border-top: 1px solid #e2e2e2;
}
.faq-contain {
    margin-top: 50px;
    border: 1px solid #e2e2e2;
    border-radius: 15px;
    overflow: visible;
    overflow-x: clip;
}
.faq-t {
    width: 8px;
    height: 8px;
    transition: transform 500ms;
    border-top: 1px solid #1d1d1f;
    border-right: 1px solid #1d1d1f;
    float: right;
    position: relative;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
}
.smaller {
    font-size: 15px;
}
.faq-o {
    -moz-transform: rotate(-224deg);
    -ms-transform: rotate(-224deg);
    -webkit-transform: rotate(-224deg);
    transform: rotate(-224deg);
}
.receive {
    margin: 30px 1px 0 1px;
}
.receive .oneline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.receive .oneline div:first-child {
    font-size: 18px;
    color: #2e2e2e;
    font-weight: 600;
}
.receive .oneline:first-child div:first-child {
    font-size: 16px;
    color: #2e2e2e;
    font-weight: 600;
}
.receive .oneline:nth-child(2) div:first-child {
    font-size: 17px;
}
.receive .oneline:first-child div:last-child,
.receive .oneline:nth-child(2) div:last-child {
    color: #2e2e2e;
    font-size: 17px;
    font-weight: 700;
}
.receive .oneline:nth-child(2) div:last-child {
    font-size: 18px;
}
.receive .oneline:last-child div:last-child {
    color: #00bd00;
    font-size: 20px;
    font-weight: 700;
}
.push {
    font-size: 13px;
    font-weight: 600;
    color: rgb(27, 27, 27);
    display: none !important;
}
.tooltip {
    display: inline-block;
    position: relative;
}
.tooltip i.bi {
    color: #767676;
    font-size: 14px;
}
.tooltip .tp {
    top: -10px;
    left: 50%;
    transform: translate(-50%, -100%);
    padding: 10px 18px;
    color: #444444 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    border-radius: 14px;
    position: absolute;
    z-index: 400;
    box-sizing: border-box;
    display: none;
    border: 1px solid #e3e3e3;
    min-width: 210px;
    -webkit-backdrop-filter: saturate(180%) blur(15px);
    backdrop-filter: saturate(180%) blur(15px);
    background-color: rgba(255, 255, 255, 0.75);
}
.tooltip:hover .tp,
.tooltip:focus .tp,
.tooltip:active .tp {
    display: block;
}
.tooltip .top i {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -12px;
    width: 24px;
    height: 12px;
    overflow: hidden;
}

.tooltip .tp i::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    left: 50%;
    transform: translate(-50%,21px) rotate(45deg);
    border: 1px solid #e3e3e3;
    border-top: 0;
    border-left: 0;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(255, 255, 255, 0.85);
}