* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root {
    --org-color: #ff9f43;
    --mv-color: #190019;
    --pur-white: white;
    --wg-color: #ececec;
    --sc-color: rgb(211, 211, 211);
    --mn-font: "Poppins", sans-serif;
}
html {
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: var(--wg-color) !important;
}
li {
    list-style: none;
}
.btn_org {
    background-color: var(--org-color);
    border: 1px solid var(--org-color) !important;
    border-radius: 3px;
    color: white;
    transition: 0.2s;
    padding: 8px 50px;
}
.btn_org:hover {
    background-color: transparent !important;
    border: 1px solid var(--org-color) !important;
    color: var(--org-color) !important;
}
.btn_org:hover a {
    color: var(--org-color) !important;
}
.btn_black {
    background-color: var(--mv-color);
    border: 1px solid var(--mv-color) !important;
    border-radius: 3px;
    color: var(--wg-color);
    transition: 0.2s;
    padding: 8px 50px;
}
.btn_black:hover {
    background-color: transparent !important;
    border: 1px solid var(--mv-color) !important;
    color: var(--mv-color) !important;
}
.btn_black:hover a {
    color: var(--org-color) !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
.tabe-background {
    background-color: var(--org-color);
    color: white;
}
.btn_dark {
    background-color: var(--mv-color);
    border: 1px solid var(--mv-color) !important;
    border-radius: 3px;
    color: white;
    transition: 0.2s;
    padding: 8px 20px;
    font-size: 14px;
}
.btn_dark:hover {
    background-color: transparent !important;
    border: 1px solid var(--mv-color) !important;
    color: var(--mv-color) !important;
}
body {
    font-family: var(--mn-font) !important;
    background-color: var(--wg-color) !important;
}
/* Scrollbar design */
/* width */
::-webkit-scrollbar {
    width: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--org-color);
    border-radius: 10px;
}
/* pop up */
.popup {
    background-color: white;
    box-shadow: 0px 1px 3px rgba(32, 29, 29, 0.445);
    width: 350px;
    height: 200px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 100;
    visibility: hidden;

    border-bottom: 15px solid var(--org-color);
    border-radius: 20px;
}
.open_popup {
    top: 30%;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.4s, top 0.5s;
}
.popup img {
    height: 75px;
}
.popup p {
    margin: 10px 0px;
}
.popup button {
    border: 1px solid var(--org-color);
    padding: 5px 30px;
    background-color: var(--org-color);
    color: rgb(255, 255, 255);
    transition: 0.1s ease-in-out;
    cursor: pointer;
    margin-bottom: 6px;
    border-radius: 3px;
}
.popup button:hover {
    border: 1px solid var(--org-color);
    padding: 5px 30px;
    background-color: transparent;
    color: var(--org-color);
}
/* Header */
header {
    background-image: url("../img/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 66vh;
}
.low_height {
    min-height: 42vh !important;
}
/* Navbar */
nav .container {
    background-color: rgba(0, 0, 0, 0.5);
    height: 80px;
    width: 100%;
}
.navbar-brand {
    margin: 0;
}
.navbar-brand img {
    width: 175px;
}
nav ul {
    display: flex;
}
nav ul li {
    margin-right: 20px;
    font-size: 15px;
}
nav ul li a.active {
    color: var(--org-color) !important;
}
nav ul li a:hover {
    color: var(--org-color) !important;
}

.navbar-toggler-icon:focus {
    box-shadow: none !important;
}

/* Connections */

.connection .sign-up {
    background-color: var(--wg-color);
    padding: 5px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    font-size: 13px;
    transition: 0.2s;
    cursor: pointer;
    width: 110px;
}
.connection a {
    color: black !important;
}
.connection .sign-up ion-icon {
    margin-right: 5px;
}
.connection .sign-up:hover {
    background-color: var(--org-color);
    color: white;
}
.connection .sign-in {
    background-color: var(--wg-color);
    padding: 5px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    font-size: 13px;
    transition: 0.2s;
    cursor: pointer;
    width: 110px;
}
.connection .sign-in ion-icon {
    margin-right: 5px;
}
.connection .sign-in:hover {
    background-color: var(--org-color);
    color: white;
}

/* humbergur menu in mobile step */
.mobile__nav .hamburger__menu span {
    background-color: var(--org-color);
    border-radius: 50px;
    display: flex;
    width: 40px;
    height: 3px;
    margin-bottom: 5px;
}
.mobile__nav .hamburger__menu span:last-child {
    margin-bottom: 0px;
}
/* End humbergur menu in mobile step*/
.blur-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    height: 450px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.324);
}

.blur-card h1 {
    font-size: 50px;
    font-weight: 700;
}
.blur-card h1 span {
    color: black;
}
.blur-card h1 span:last-child {
    color: var(--org-color);
}
.blur-card .btn {
    padding: 10px 50px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Notification section */

.notification {
    background-color: var(--org-color);
}
.notification h6 {
    margin: auto;
    width: fit-content;
    position: relative;
}
.notification h6::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: white;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    animation: flash 1s infinite ease-in-out;
}
.notification h6::after {
    content: "";
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: white;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    animation: flash 1s infinite ease-in-out;
}
@keyframes flash {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* Maps section */
.maps__sections {
    padding: 50px 0px;
}
.maps__sections .map {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.maps__sections .map .board {
    height: 155px;
    width: 328px;
    background-color: black;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
.maps__sections .map .board img {
    width: 150px;
}
.maps__sections .map a .btn_acheter {
    text-transform: uppercase !important;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 30px;
}
/* Payment method */
.home-payment {
    background-color: var(--mv-color);
}
.home-payment h1 {
    font-weight: 600;
    font-size: 30px;
}
.home-payment h6 {
    font-weight: 300;
    font-size: 15px;
    margin: 10px auto;
}
.home-payment .payment-container .image-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 10px 0px;
}
.home-payment .payment-container .image-wrapper .bank img {
    width: 170px;
}
/* Map section */
section.map-section {
    padding: 100px 0px;
}
section.map-section .map-text h1 {
    font-size: 35px;
    font-weight: 600;
}
section.map-section .map-text h5 {
    font-weight: 300;
    font-size: 20px;
    padding: 10px 0px;
}
section.map-section .map-text .map-steps {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--org-color);
}
section.map-section .map-text .map-steps span {
    font-size: 13px;
}

section.map-section .map-text h6 {
    font-weight: 300;
    font-size: 15px;
    padding: 10px 0px;
}
section.map-section .map-text .btn_acheter {
    text-transform: uppercase;
    width: fit-content;
    margin: 10px 0px;
}
section.map-section .map-text .btn:hover a {
    color: var(--org-color) !important;
}
section.map-section .map-img {
    display: flex;
    justify-content: end;
}
section.map-section .map-img img {
    height: 534px;
}
/* Testimonials section */
section.testimonials-section .container .row {
    background-color: var(--mv-color);
    position: relative;
    padding: 50px 50px;
    min-height: 400px;
}
section.testimonials-section .container .row::after {
    content: "";
    height: 100px;
    width: 100px;
    background-image: url("../img/quote.svg");
    background-repeat: no-repeat;
    object-fit: cover;
    position: absolute;
    top: -36px;
    left: 60px;
}
section.testimonials-section h1 {
    font-size: 25px;
    font-weight: 600;
}
section.testimonials-section h5 {
    font-size: 15px;
    font-weight: 300;
}
section.testimonials-section .card {
    width: 385px;
    height: 235px;
    box-shadow: 4px 3px 5px 1px rgba(0, 0, 0, 0.17);
    -webkit-box-shadow: 4px 3px 5px 1px rgba(0, 0, 0, 0.17);
    -moz-box-shadow: 4px 3px 5px 1px rgba(0, 0, 0, 0.17);
}
section.testimonials-section .card:first-child {
    margin-left: 252px;
    margin-bottom: -100px;
    z-index: 1000;
}
section.testimonials-section .trustpilot .img img {
    height: 100px;
    padding-right: 20px;
}
section.testimonials-section .trustpilot .trustpilot-rating h2 {
    font-size: 20px;
    font-weight: 600;
}
section.testimonials-section .trustpilot .trustpilot-rating h3 {
    font-size: 20px;
    font-weight: 600;
}
section.testimonials-section .trustpilot .trustpilot-rating h3 span {
    font-size: 10px;
    font-weight: 300;
    color: var(--org-color);
}
section.testimonials-section .trustpilot .trustpilot-rating .stars img {
    height: 15px;
}
section.testimonials-section .testimonials-container {
    width: 50%;
    display: flex;
    justify-content: center;
}
/* Support section */
section.support-section {
    background-color: var(--mv-color);
}
section.support-section img {
    height: 500px;
}
section.support-section h1 {
    font-size: 25px;
    font-weight: 600;
}
section.support-section h1 span {
    color: var(--org-color);
}
section.support-section h5 {
    font-size: 15px;
    font-weight: 300;
    margin: 10px 0px;
}
section.support-section .support-steps {
    margin-left: 50px;
    margin-top: 14px;
}
section.support-section .support-steps .step h2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--org-color);
    position: relative;
}
section.support-section .support-steps .step h2::after {
    content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    background-color: var(--org-color);
    border-radius: 50px;
    left: -27px;
    top: 50%;
    transform: translateY(-50%);
}
section.support-section .support-steps .step p {
    font-size: 15px;
    font-weight: 300;
}
/* Question section */
section.question-section h1 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}
section.question-section h5 {
    font-size: 20px;
    font-weight: 300;
    margin: 10px 0px;
}
section.question-section .card-wrapper .card {
    width: 400px;
    position: relative;
    background-color: white;
    border-radius: 10px;
}
section.question-section .card-wrapper .card::after {
    content: "";
    height: 10px;
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    position: absolute;
    background-color: var(--org-color);
    top: 0;
    left: 0;
}
section.question-section .card-wrapper .card h1 {
    font-size: 20px;
}
section.question-section .card-wrapper .card p {
    font-size: 15px;
}

section.question-section .slider-container {
    max-width: 1120px;
    width: 100%;
}
.slider-container {
    position: relative;
}
.next-btn {
    position: absolute;
    background-image: url("../img/next.svg");
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
    z-index: 10;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}
.prev-btn {
    position: absolute;
    background-image: url("../img/prev.svg");
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
    z-index: 10;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}
/* Shipping section */
.shipping-section {
    background-color: var(--mv-color);
}
.shipping-section .ship-card {
    width: 230px;
}
.shipping-section .ship-card img {
    margin-bottom: 20px;
}
.shipping-section .ship-card h2 {
    font-size: 20px;
}
.shipping-section .ship-card p {
    font-size: 15px;
    color: var(--sc-color);
    font-weight: 300;
}
/* Footer section */
footer {
    background-color: var(--mv-color);
}
footer .row {
    display: grid;
    grid-template-areas: "logo menu payment-method contact";
}
footer .row h3 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
}
footer .row .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
footer .row .menu ul {
    padding: 0;
    margin: 0;
}
footer .row ul li {
    padding-bottom: 5px;
}
footer .row ul li a {
    font-size: 15px;
}
footer .row .payment-method .payments-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 80px;
    gap: 10px;
}
footer .row .payment-method .payments-card img {
    width: 80px;
}
footer .row .contact .socail-media {
    display: flex;
    gap: 30px;
}
footer .row .contact .socail-media img {
    height: 25px;
}
footer .container .copyright {
    border-top: solid 1px var(--wg-color);
}
footer .container .designed-by {
    font-size: 10px;
}
footer .container .designed-by span {
    color: var(--org-color);
    cursor: pointer;
    border-bottom: 1px solid var(--org-color);
}
footer .container .copyright span {
    color: var(--org-color);
    cursor: pointer;
    border-bottom: 1px solid var(--org-color);
}
/***** Login style *****/
section.login-section .container .row .logo {
    margin-top: 100px;
}
section.login-section .container .row .heading h1 {
    font-weight: 700;
}
section.login-section .container .row form label {
    opacity: 0.5;
}
section.login-section .container .row form input {
    height: 70px;
}
section.login-section .container .row form input {
    border-bottom: var(--org-color) 3px solid;
}
section.login-section .container .row form .form-check input {
    height: 15px;
    border-radius: 100px;
    border-bottom: 0;
    border: 1px solid var(--org-color);
}
section.login-section .container .row form button {
    width: 100%;
    height: 80px;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 26px;
}
section.login-section .container .row form .forget-password a {
    color: #ff9f43 !important;
}
.form-check-input:checked {
    background-color: var(--org-color);
    border: solid 1px var(--org-color);
}
section.login-section .container .row form .sign-up a {
    color: var(--org-color) !important;
}
/* Login image side */
section.login-section .container::before {
    content: "";
    position: absolute;
    height: 100vh;
    width: 800px;
    background-image: url("../img/login-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0%;
    right: 0%;
    clip-path: polygon(54% 0, 100% 0, 100% 100%, 44% 100%, 20% 76%, 25% 13%);
}
/***** Sign up style *****/
section.signup-section .container .row .logo {
    margin-top: 17px;
}
section.signup-section .container .row .heading h1 {
    font-weight: 700;
}
section.signup-section .container .row form label {
    opacity: 0.5;
}
section.signup-section .container .row form input {
    height: 70px;
}
section.signup-section .container .row form input {
    border-bottom: var(--org-color) 3px solid;
}
section.signup-section .container .row form .form-check input {
    height: 15px;
    border-radius: 100px;
    border-bottom: 0;
    border: 1px solid var(--org-color);
}
section.signup-section .container .row form button {
    width: 100%;
    height: 80px;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 26px;
}
section.signup-section .container .row form .forget-password a {
    color: #ff9f43 !important;
}
.form-check-input:checked {
    background-color: var(--org-color);
    border: solid 1px var(--org-color);
}
section.signup-section .container .row form .sign-up a {
    color: var(--org-color) !important;
}
/* Sign up image side */
section.signup-section .container::before {
    content: "";
    position: absolute;
    height: 100vh;
    width: 800px;
    background-image: url("../img/signup-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    top: 0%;
    right: 0%;
    clip-path: polygon(54% 0, 100% 0, 100% 100%, 44% 100%, 20% 76%, 25% 13%);
}
/***** Acheter kamas style *****/
header .container .row .acheter-text-heading h1 {
    font-size: 70px;
    color: white;
    font-weight: 700;
    margin: 0;
}
header .container .row .acheter-text-heading .notif {
    margin: 20px auto;
    background-color: #ffffff4f;
    padding: 30px 0px;
    width: 60%;
    backdrop-filter: blur(10px);
    border-radius: 5px;
    position: relative;
}

header .container .row .acheter-text-heading .notif h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
}
header .container .row .acheter-text-heading .notif h5 span {
    color: var(--mv-color) !important;
}
/* Server card design */

section.server-section .server-cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
section.server-section .server-cards .card-countainer {
    width: fit-content;
}
section.server-section .server-cards .server-card {
    height: 400px;
    width: 243px;
    background-color: #000000;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
}
/* card disponible */
section.server-section .server-cards .disponible img {
    height: 100%;
    opacity: 0.7;
    transition: 0.5s ease;
}
section.server-section .server-cards .disponible:hover img {
    height: 120%;
}
section.server-section .server-cards .disponible h1 {
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background-color: rgba(255, 255, 255, 0.109);
    backdrop-filter: blur(15px);
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    height: 77px;
    width: 200px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
section.server-section .server-cards .disponible .dispo {
    position: absolute;
    font-size: 12px;
    bottom: 23%;
    left: 50%;
    width: 90%;
    background-color: #0afc71;
    padding: 15px 25px;
    border-radius: 20px;
    color: black;
    transform: translateX(-50%);
}
section.server-section .server-cards .disponible .dispo::before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 100px;
    position: absolute;
    background-color: #0afc71;
    border: 1px solid #000000;
    top: -5%;
    left: 15%;
}
.card-prices {
    position: absolute;
    bottom: 12%;
    gap: 2px;
    display: flex;
    width: 100%;
    justify-content: center;
}
section.server-section .server-cards .disponible .price {
    font-size: 12px;
    font-weight: 700;
    color: white;
    background-color: rgba(255, 255, 255, 0.109);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 20px;
    padding: 10px 5px;
    border-radius: 5px;
}

/* End disponible */

/* card indisponible */
section.server-section .server-cards .indisponible img {
    height: 100%;
    opacity: 0.2;
    transition: 0.5s ease;
}
section.server-section .server-cards .indisponible:hover img {
    height: 120%;
}
section.server-section .server-cards .indisponible h1 {
    position: absolute;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    background-color: rgba(255, 255, 255, 0.109);
    backdrop-filter: blur(15px);
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 60px;
    border-radius: 100px;
}
section.server-section .server-cards .indisponible .dispo {
    position: absolute;
    font-size: 12px;
    bottom: 10%;
    left: 5%;
    background-color: #fc0a0a;
    color: white;
    padding: 15px 20px;
    border-radius: 20px;
}
section.server-section .server-cards .indisponible .dispo::before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 100px;
    position: absolute;
    background-color: #fc0a0a;
    border: 1px solid #000000;
    top: -5%;
    left: 15%;
}
section.server-section .server-cards .indisponible .price {
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    bottom: 10%;
    right: 5%;
    color: white;
    background-color: rgba(255, 255, 255, 0.109);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 20px;
}
/* End indisponible */
/* Commander kamas page */
/* Left col */
.commander-kamas {
    padding: 150px 0;
    position: relative;
}
.commander-kamas .left__col .main-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
}
.commander-kamas .left__col .short-text div {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 5px;
    margin-left: 30px;
    position: relative;
}
.commander-kamas .left__col .short-text div::before {
    content: "";
    height: 15px;
    width: 15px;
    position: absolute;
    background-color: var(--org-color);
    border-radius: 50px;
    left: -27px;
    top: 25%;
    transform: translateY(-50%);
}
.commander-kamas .left__col .server-select select {
    background-color: #f2f2f2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 60px;
    width: 400px;
    margin: 20px 0;
}
.commander-kamas .left__col .kamas-quantity {
    display: flex;
    align-items: center;
}
.commander-kamas .left__col .kamas-quantity input {
    width: 110px;
    height: 50px;
    background-color: #f2f2f2;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    font-weight: 300;
}
.commander-kamas .left__col .kamas-quantity span {
    font-weight: 300;
    font-size: 15px;
    margin-left: 10px;
}
/* Middle col */
.commander-kamas .middle__col {
    display: flex !important;
    flex-direction: column;
    align-items: center;
}
.commander-kamas .middle__col .personnage img {
    height: 300px;
}
.commander-kamas .middle__col .user-name input {
    background-color: #f2f2f2;
    font-style: italic;
    font-size: 15px;
    height: 50px;
    width: 300px;
    text-align: center;
    color: rgb(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}
.commander-kamas .middle__col a button {
    background-color: var(--mv-color);
    border: 0;
    height: 50px;
    width: 230px;
    border-radius: 5px;
    color: var(--wg-color);
}
/* Callout */
.commander-kamas .callout {
    background-color: var(--mv-color);
    color: var(--wg-color);
    padding: 20px;
    width: 400px;
    position: absolute;
    right: 20%;
    top: 40%;
    z-index: 10;
}
.commander-kamas .callout h5 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}
.commander-kamas .callout p {
    font-weight: 300;
}
.commander-kamas .callout::before {
    content: "";
    position: absolute;
    height: 60px;
    width: 90px;
    clip-path: polygon(100% 0, 0 100%, 100% 75%);
    background-color: var(--mv-color);
    left: -15%;
    bottom: -15px;
    z-index: -1;
}
.commander-kamas .container .commander_btn {
    background-color: var(--mv-color) !important;
    padding: 10px 50px;
}
.commander-kamas .container .commander_btn:hover {
    background-color: transparent !important;
    color: var(--mv-color) !important;
    border: 1px solid var(--mv-color) !important;
}
/* clip-path: polygon(100% 0, 0 100%, 100% 75%); */
/* Payment page */
.payment {
    background-color: white;
    padding: 100px 0px;
}
.payment .payment-wrapper .cmd__number {
    font-size: 14px;
    color: var(--mv-color);
    padding-bottom: 10px;
}
.payment .payment-wrapper select {
    width: 100%;
    background-color: #cfcfcf;
    border: 0;
    border-radius: 5px;
    padding: 20px 10px;
}
.payment .payment-wrapper .payment_snd_order_btn {
    margin-top: 20px;
    padding: 10px 50px;
    font-weight: 600;
    border: 1px solid var(--mv-color);
    border-radius: 5px;
    background-color: var(--mv-color);
    color: var(--wg-color);
    transition: 0.2s ease-in-out;
}
.payment .payment-wrapper .payment_snd_order_btn:hover {
    background-color: transparent !important;
    border: 1px solid var(--mv-color) !important;
    color: var(--mv-color) !important;
}
/************** Select payment **************/
.chosen__info .f__field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.prices-for {
    display: flex;
    align-items: center;
    justify-content: center;
}
.l_field-style {
    background-color: var(--wg-color);
    width: 88%;
    padding: 20px 10px;
    border-radius: 5px;
    margin: 5px 0px;
}
.r_field-style {
    background-color: var(--wg-color);
    width: 10%;
    text-align: center;
    padding: 20px 10px;
    border-radius: 5px;
    margin-right: 10px;
    width: 125px;
}
.r_field-style:last-child {
    margin-right: 0px;
}
.total__price {
    background-color: #f5f5f5;
    width: 100%;
    border-radius: 5px;
    padding: 20px 10px;
    margin: 5px 0px;
}
/************** End Select payment **************/
.payment .payment-wrapper .chosen__info .select {
    width: 100%;
    margin: 10px 0px !important;
}
.payment .payment-wrapper .chosen__info .select .select__field {
    padding: 20px 10px;
    background-color: var(--wg-color);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.payment .payment-wrapper .chosen__info .select .select__field p {
    margin-bottom: 0px;
}
.payment .payment-wrapper .chosen__info .select ul {
    padding-left: 0px;
}
.payment .payment-wrapper .chosen__info .select #list {
    background-color: #f5f5f5;
    box-shadow: 0px 5px 2px hsla(120, 10%, 8%, 0.144);
    margin-top: 10px;
}
.payment .payment-wrapper .chosen__info .select .hidden {
    display: none;
}
.payment .payment-wrapper .chosen__info .select ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
}
.payment .payment-wrapper .chosen__info .select ul li p span {
    color: var(--org-color) !important;
}
.payment .payment-wrapper .chosen__info .select ul li:hover {
    background-color: #ebebeb;
}
.payment .payment-wrapper .chosen__info .select ul .options {
    padding-bottom: 10px;
}
.payment .payment-wrapper .chosen__info .select ul li p {
    color: var(--mv-color) !important;
}
.payment .payment-wrapper .chosen__info .select ul li img {
    width: 70px;
}
/************** End zid hadi **************/

/* Finish order section */
.finish-order {
    height: 100%;
    position: relative;
}
/* Info flag */
.finish-order .order-info-flag {
    background-color: var(--mv-color);
    width: 200px;
    height: 215px !important;
    color: white;
    padding: 10px;
    position: fixed;
    border-radius: 0px 5px 5px 0px;
    top: 18%;
    transform: translateX(-50%);
    z-index: 10;
    transition: 0.8s ease-in-out;
}
.finish-order .order-info-flag.active {
    left: 100px;
}
.finish-order .order-info-flag.inactive {
    left: -94px;
}
@keyframes flash {
    0% {
        background-color: var(--mv-color);
    }
    50% {
        background-color: var(--org-color);
    }
    100% {
        background-color: var(--mv-color);
    }
}
/* Buttons toggle */
.order-info-flag .btn-show {
    cursor: pointer;
}
.order-info-flag .btn-show {
    position: absolute;
    z-index: 11;
    height: 100%;
    left: 192px;
    top: 0px;
    font-size: 30px;
    text-decoration: none;
    border-radius: 0 5px 5px 0;
    background-color: var(--mv-color);
    color: var(--mv-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: flash 1s ease-in-out infinite;
}
.order-info-flag .btn-show.active {
    background-color: var(--org-color);
    animation: flash 0s;
}
.order-info-flag .btn-show svg {
    height: 20px;
    transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
}
.order-info-flag .btn-show.active svg {
    transform: rotate(360deg);
}
/* .order-info-flag .btn-show svg.active {
    transform: rotate();
} */
.finish-order .order-info-flag p {
    margin: 0;
    color: var(--org-color);
}
.finish-order .refresh_page {
    background-color: var(--mv-color);
    margin-top: 50px;
    text-align: center;
    border-radius: 5px;
}
.finish-order .refresh_page p {
    padding: 20px;
    margin: 0;
    color: var(--wg-color);
}
.finish-order .refresh_page button {
    background-color: transparent;
    border: 0px;
    color: white;
}
.finish-order .refresh_page span {
    cursor: pointer;
    border: 1px solid var(--org-color);
    padding: 5px;
    border-radius: 5px;
    animation: pluse-border 1.5s ease-in-out infinite;
}
@keyframes pluse-border {
    0% {
        background-color: var(--org-color);
    }
    100% {
        background-color: transparent;
    }
}
/* .finish-order .refresh_page span:hover {
    background-color: var(--org-color);
    color: var(--mv-color);
} */
.finish-order .finish-order-wrapper {
    background-color: #fefcfb;
    height: 100%;
    width: 100%;
    margin: 50px auto 100px auto;
    border-radius: 10px;
    padding: 0px 50px;
    box-shadow: 1px 1px 6px rgb(134, 134, 134, 0.5);
}
.finish-order .finish-order-wrapper .steps__wrapper {
    position: relative;
}
.finish-order .finish-order-wrapper .steps__wrapper .step .step__desc button {
    background-color: transparent !important;
    border: none !important;
    color: var(--org-color) !important;
    padding: 0px;
    font-weight: 700;
}
.finish-order .finish-order-wrapper .steps__wrapper .step .step__desc form {
    border: 1px solid var(--org-color);
    width: fit-content;
    padding: 5px 10px;
    margin-top: 10px;
}
.finish-order
    .finish-order-wrapper
    .steps__wrapper
    .step
    .step__desc
    form:hover
    button {
    padding: 5px 10px;
    border-radius: 0px !important;
    background-color: var(--org-color) !important;
    color: var(--mv-color) !important;
}
.finish-order .finish-order-wrapper .steps__wrapper .step .step__desc span {
    color: var(--org-color) !important;
    font-weight: 700;
}
/* .finish-order .finish-order-wrapper .steps__wrapper .order-info-flag {
    background-color: var(--mv-color);
    width: 200px;
    height: 215px !important;
    color: white;
    padding: 10px;
    position: absolute;
    border-radius: 5px 0px 0px 5px;
    left: -240px;
    top: 0;
    z-index: -10;
    box-shadow: 1px 1px 6px rgb(134, 134, 134, 0.5);
} */
.finish-order .finish-order-wrapper .steps__wrapper::before {
    content: "";
    height: 100%;
    width: 3px;
    background-color: var(--org-color);
    position: absolute;
    margin-right: 5px;
    left: 0;
    top: 0;
    z-index: 1;
}
.finish-order .finish-order-wrapper .steps__wrapper .step {
    padding: 20px;
    padding-left: 40px;
    width: 100%;
    margin-left: -14px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.finish-order .finish-order-wrapper .steps__wrapper .step a {
    color: var(--org-color) !important;
}
.finish-order .finish-order-wrapper .steps__wrapper .step .step__title {
    background-color: var(--org-color);
    padding: 5px 5px;
    width: 80px;
    color: white;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}

.finish-order .finish-order-wrapper .steps__wrapper .step::before {
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--org-color);
    border-radius: 50%;
    border: 5px solid white;
    margin-right: 50%;
}
.finish-order .finish-order-wrapper .steps__wrapper .step__wrapper__flag {
    background-color: var(--mv-color);
    border-radius: 5px;
    color: white;
    padding: 10px 10px;
    margin-left: 26px;
    margin-top: 30px;
    margin-bottom: 30px;
    width: fit-content;
}
.finish-order .finish-order-wrapper .steps__wrapper .step__wrapper__flag span {
    color: var(--org-color) !important;
}
.finish-order .finish-order-wrapper .steps__wrapper .step__wrapper__title {
    margin-left: 30px;
}
.finish-order .finish-order-wrapper .finish-payment-btn button {
    margin-top: 20px;
    padding: 10px 50px;
    font-weight: 600;
    border: 1px solid var(--mv-color);
    border-radius: 5px;
    background-color: var(--mv-color);
    color: var(--wg-color);
    transition: 0.2s ease-in-out;
}
.finish-order .finish-order-wrapper .finish-payment-btn button:hover {
    background-color: transparent;
    border: 1px solid var(--mv-color);
    color: var(--mv-color);
}
.finish-order .finish-order-wrapper .finish-payment-btn {
    margin-top: 20px;
    padding: 10px 50px;
    font-weight: 600;
    border: 1px solid var(--mv-color);
    border-radius: 5px;
    background-color: var(--mv-color);
    color: var(--wg-color);
    transition: 0.2s ease-in-out;
}
.finish-order .finish-order-wrapper .finish-payment-btn:hover {
    background-color: transparent;
    border: 1px solid var(--mv-color);
    color: var(--mv-color);
}
.finish-order-wrapper
    .steps__wrapper
    .horizontal-line
    .form-group
    span.form-text {
    color: var(--org-color);
    font-size: 12px !important;
}
.finish-order .faq__wrapper {
    padding: 50px 0px;
}
.finish-order .faq__wrapper .question-section .h-one {
    font-size: 24px;
    position: relative;
}
.finish-order
    .faq__wrapper
    .question-section
    .slider-container
    .next-btn
    .prev-btn {
    display: none !important;
}
.finish-order .faq__wrapper .question-section .h-one::before {
    content: "";
    height: 2px;
    width: 240px;
    background-color: #0000007c;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.finish-order .faq__wrapper .question-section .h-one::after {
    content: "";
    height: 2px;
    width: 240px;
    background-color: #0000007c;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
/* Order details */
.order-details .step__wrapper__flag {
    width: 150px;
}
.order-details .step__wrapper__flag ion-icon {
    font-size: 20px;
}
.order-details .horizontal-line-title {
    background-color: var(--mv-color);
    width: 230px;
    border-radius: 5px;
    color: white;
    padding: 10px 10px;
    margin-left: 26px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.order-details .horizontal-line {
    margin: 50px 0px;
    position: relative;
}
.order-details .horizontal-line::before {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: var(--org-color);
    top: 0;
    left: 0;
}
.order-details .horizontal-line ul {
    padding: 25px 0px;
    margin-left: 26px;
}
.order-details .horizontal-line ul li {
    font-size: 12px;
    margin-right: 44px;
    position: relative;
}
.order-details .horizontal-line ul li.active::after {
    content: "";
    background-image: url(../img/checkbox.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 30px;
    width: 30px;
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    background-color: green;
    border-radius: 50%;
    border: 5px solid white;
}
.order-details .horizontal-line ul li::before {
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    background-color: var(--org-color);
    border-radius: 50%;
    border: 5px solid white;
}
.order-details .horizontal-line ul li a {
    color: black !important;
}

.order-details .order__question {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    padding: 20px 0px;
    overflow: hidden;
    z-index: -1;
}
.order-details .order__question p span{
    color: var(--org-color);
}
.order-details .order__question img {
    height: 200px;
    margin-left: 26px;
}
table {
    margin-left: 26px;
}
.order-details table tr,
th,
td {
    font-weight: 600;
    padding: 20px 5px !important;
}
.order-details .back-to-payment-btn {
    background-color: var(--mv-color) !important;
    margin: 20px 26px;
    padding: 10px 20px;
    border: 1px solid var(--mv-color);
    color: white;
    border-radius: 5px;
    transition: 0.2s ease;
}
.order-details .back-to-payment-btn:hover {
    color: var(--mv-color);
    background-color: transparent !important;
    border: 1px solid var(--mv-color);
}

.order-details .input-group .input-group-prepend .input-group-text {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-details .input-group .input-group-prepend .input-group-text i {
    color: black;
}
.order-details .input-group .input-group-append .input-group-text button {
    border: none;
}
.order-details .form-group {
    margin-bottom: 0px;
}
.sendme {
    cursor: pointer;
}
.sendme:hover {
    background-color: var(--org-color) !important;
}
.sendme:hover #sendEmailCode {
    background-color: var(--org-color) !important;
    color: white;
}
/* End order details */
.shipping_info_back {
    margin-left: 26px;
}
.shipping_info_back div {
    background-color: var(--wg-color);
    color: black;
    margin-bottom: 15px;
    transition: 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    border-radius: 0px 50px 50px 0px;
}
.shipping_info_back div:hover {
    background-color: var(--mv-color);
    color: var(--wg-color);
}
.shipping_info_back div h3 {
    font-size: 20px;
}
.shipping_info_back div span {
    background-color: var(--org-color);
    color: var(--mv-color);
    padding: 10px 10px 10px 10px;
    width: 20%;
    text-align: center;
    border-radius: 50px 50px 50px 50px;
}

/* Sell kamas section page */
.sell__section {
    height: 100%;
    background-color: var(--pur-white);
}
.sell__section .sell_container {
    background-color: hsl(0, 0%, 100%);
    border-radius: 5px;
    padding: 50px 20px;
}
.sell__section .sell_container p {
    line-height: 35px;
}
.sell__section .sell_container .sell__info form {
    display: flex;
    flex-direction: column;
}
.sell__section .sell_container .sell__info form label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 10px;
}
.sell__section .sell_container .sell__info form select,
.sell__section .sell_container .sell__info form input {
    padding: 8px 20px;
    width: 630px;
}
.sell__section .sell_container .sell__info form h6:first-child {
    margin-bottom: 10px;
    margin-top: 10px;
}
.sell__section .sell_container .sell__info form h6 span {
    color: var(--mv-color);
    margin-left: 10px;
}
.sell__section .sell_container .sell__table table {
    width: 100%;
    margin: auto;
}
.sell__section .sell_container .sell__btn {
    background-color: var(--mv-color);
    padding: 10px 40px;
    border: var(--mv-color) solid 1px;
    border-radius: 5px;
    color: white;
    font-size: 15px;
    transition: 0.2s ease-in-out;
    width: fit-content;
}
.sell__section .sell_container .sell__btn:hover {
    background-color: transparent;
    border: var(--mv-color) solid 1px;
    color: var(--mv-color);
}

.order-details .horizontal-line .progress-line-info {
    margin-left: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin-bottom: 20px;
}
.order-details .horizontal-line .progress-line-info img {
    width: 100px;
}
.order-details .horizontal-line .progress-line-info a {
    color: var(--org-color) !important;
    text-decoration: underline;
}
.order-details .horizontal-line .progress-line-info p {
    margin: 0px;
}
/* User after connection */
.profile_circle_online {
    position: relative;
}
.profile_circle_online .profile_circle {
    border: 2px solid var(--org-color);
    border-radius: 50%;
    cursor: pointer;
    height: 100%;
    width: 100%;
    min-width: 100%;
    min-height: 100%;
}
.profile_circle_online .profile_circle img {
    width: 40px;
}
.sub_profile_bar {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--mv-color);
    display: block;
    z-index: 100;
}
.sub_profile_bar_open {
    display: none;
}
.sub_profile_bar .user__info {
    background-color: white;
    display: flex;
    align-items: center;
    border-bottom: solid 1px black;
    padding: 10px 20px;
    color: var(--mv-color);
    width: 300px;
}
.sub_profile_bar .user__info img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 1px solid var(--mv-color);
    border-radius: 50%;
}
.sub_profile_bar .user__info h2 {
    font-size: 15px;
    margin: 0;
}
.sub_profile_bar .user__info h2 span {
    position: absolute;
    right: 20px;
    font-size: 27px !important;
    top: 12px;
}
.sub_profile_bar .user__info h2 ion-icon {
    cursor: pointer;
}
.sub_profile_bar .user__info h2 ion-icon:hover {
    opacity: 0.7;
}
.sub_profile_bar .sub_profil_menu {
    display: flex;
    flex-direction: column;
    padding: 10px;
}
.sub_profile_bar .sub_profil_menu a {
    padding-bottom: 10px;
    color: white !important;
    display: flex;
    align-items: center;
    padding: 5px 20px;
    transition: 0.2s ease-in-out;
}

.sub_profile_bar .sub_profil_menu a:hover {
    color: var(--org-color) !important;
}

.sub_profile_bar .sub_profil_menu a:last-child {
    padding-bottom: 0px;
}
.sub_profile_bar .sub_profil_menu a h6 {
    margin-left: 10px;
    font-weight: 400;
}
a.add-new-server {
    background-color: var(--mv-color) !important;
    color: black !important;
}
.sign-out a {
    color: yellow;
}
.alert {
    border-radius: 0 !important;
}

/* Terms and conditions */
section.terms__conditions .container {
    padding: 100px 0px;
}
section.terms__conditions .terms__conditions_container ul {
    padding: 0px !important;
}
section.terms__conditions .terms__conditions_container span {
    color: var(--org-color) !important;
}
section.terms__conditions .terms__conditions_container h5 {
    font-size: 18px;
}
section.terms__conditions .terms__conditions_container h6 {
    padding-left: 10px;
    line-height: 35px;
}
section.terms__conditions .terms__conditions_container h6 span a {
    color: var(--org-color) !important;
}
section.terms__conditions .terms__conditions_container ul li:last-child {
    margin-bottom: 0px;
}
section.terms__conditions .terms__conditions_container ul li .tc_title {
    font-size: 20px;
    font-weight: 500;
    color: var(--mv-color);
    margin-top: 10px;
    margin-bottom: 10px;
}
section.terms__conditions .terms__conditions_container ul li p {
    margin-bottom: 0px;
}
section.terms__conditions .terms__conditions_container ul li p span a {
    color: var(--org-color) !important;
}
section.terms__conditions .terms__conditions_container ul li p span.important {
    color: red;
    font-weight: bold;
}
section.terms__conditions .terms__conditions_container .main_title h1 {
    font-size: 35px;
    margin-bottom: 30px;
}
section.terms__conditions .terms__conditions_container .sub_title h6 {
    line-height: 25px;
    margin-bottom: 10px;
}
section.terms__conditions .terms__conditions_container .return_btn {
    margin-bottom: 30px;
}
section.terms__conditions .terms__conditions_container .return_btn button {
    border: none;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    color: var(--org-color);
}
section.terms__conditions .terms__conditions_container .return_btn button a {
    color: var(--mv-color) !important;
}
/* Hover rutern button*/
section.terms__conditions
    .terms__conditions_container
    .return_btn
    button:hover {
    padding-left: 10px;
}
/* End Hover rutern button
/ End Terms and conditions */

/* Vendre conferme */
.vendre_confirm {
    padding: 100px 0px;
}
.vendre_confirm .container .vendre_questions {
    display: flex;
}
.vendre_confirm .container .vendre_questions .question_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 20px;
    background-color: var(--mv-color);
    color: white;
    font-size: 14px;
    text-align: center;
    width: 300px;
    height: 350px;
    margin: 0px auto 50px auto;
    padding: 0px 20px;
    position: relative;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.438);
}
.vendre_confirm .container .vendre_questions .question_1 p {
    font-weight: 300;
    line-height: 30px;
}
.vendre_confirm .container .vendre_questions .question_1 p span {
    color: var(--org-color);
}
/* End vendre conferme */

.vendre_confirm .container .vendre_questions .question_1 .question_title {
    color: var(--org-color);
    font-size: 30px;
    margin-top: 20px;
}
.vendre_confirm .container .vendre_questions .question_1 img {
    width: 100px;
    position: absolute;
    top: -22px;
    left: -50px;
}
.confirmation {
    text-align: center;
    margin: 50px 0px;
}
.confirmation .confirmation_title h2 {
    color: white;
    background-color: var(--mv-color);
    font-size: 25px;
    width: 40%;
    margin: auto;
    padding: 20px 50px;
}
.confirmation p {
    color: var(--mv-color);
    width: 50%;
    margin: auto;
    padding: 20px 0px;
}
.confirmation .form-check {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.confirmation .confirm_btn a button {
    background-color: var(--org-color);
    color: white;
    border: 0;
    padding: 20px 40px;
    border-radius: 3px;
    box-shadow: 0px 5px 0px #c5762c;
    transition: 0.2s ease-in-out;
    margin-top: 20px;
}
.confirmation .confirm_btn a button:hover {
    background-color: #e9801d;
}
/* vindre accordion */
.vendre_condition {
    margin-bottom: 20px;
}
.vendre_condition:last-child {
    margin-bottom: 0px;
}
.vendre_condition .vindre_accordion .accordion_item {
    background-color: var(--mv-color);
    padding: 1rem 1rem;
    color: white;
}
.vendre_condition .vindre_accordion .accordion_item a {
    color: white !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vendre_condition .vindre_accordion .accordion_item .remove-outline {
    display: none !important;
}
.accordion_answer {
    overflow: hidden;
    max-height: 0;
    position: relative;
    transition: max-height 1s;
}
.accordion_answer::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: var(--org-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.accordion_answer p {
    background-color: var(--wg-color);
    padding: 10px;
    margin: 0;
    padding: 20px;
    color: var(--mv-color) !important;
}
.accordion_item:target .accordion_answer {
    max-height: 20rem;
}
.vendre_condition .vindre_accordion .accordion_item {
    margin-bottom: 0px;
}
.vendre_condition .vindre_accordion .accordion_item:target .add-outline {
    display: none !important;
}
.vendre_condition .vindre_accordion .accordion_item:target .remove-outline {
    display: block !important;
}
/* End vendre conferme */
/* For phone and tablets version */
.alert_phone_message {
    display: none;
}

/* Echange style */
.echange .container .row {
    padding: 50px 0px !important;
}

.echange p {
    margin-bottom: 0;
    font-weight: 300;
}

.exchange-leftside {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
}

.echange .exchange-leftside .inputs {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.echange .exchange-leftside .inputs:last-child {
    margin-bottom: 0;
}

.echange .exchange-leftside .inputs label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.echange .exchange-leftside .inputs label span {
    color: var(--org-color);
}

.echange .exchange-leftside .inputs select,
.echange .exchange-leftside .inputs input {
    background-color: var(--wg-color);
    padding: 10px 20px;
    border: 1px solid #aaa9a9;
    border-radius: 5px;
}

.echange .server-alert {
    font-style: italic;
    color: rgb(139, 139, 139);
}

.echange .server-alert span {
    color: var(--org-color);
    font-weight: 600;
}

.exchange-rightside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
}

.echange .warning-msg {
    position: relative;
    background-color: #ff9f43;
    color: var(--wg-color);
    padding: 30px 20px;
    border: 1px solid var(--mv-color);
    border-radius: 5px;
}

.echange .warning-msg img {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
}

.echange .danger-msg {
    position: relative;
    background-color: #ff4343;
    color: var(--wg-color);
    padding: 30px 20px;
    border: 1px solid var(--mv-color);
    border-radius: 5px;
}

.echange .echange-msg label {
    margin-bottom: 10px;
}

.echange .echange-msg textarea {
    height: 150px;
    width: 100%;
    border: 1px solid var(--mv-color);
    border-radius: 5px;
    padding: 20px 50px;
    background-color: #fff;
}

.sell__btn {
    background-color: var(--mv-color);
    padding: 10px 40px;
    border: var(--mv-color) solid 1px;
    border-radius: 5px;
    color: white;
    font-size: 15px;
    transition: 0.2s ease-in-out;
    width: fit-content;
}

.modal-backdrop {
    width: 0px !important;
    height: 0px !important;
}

.ex-modal .modal-header {
    background: #e74c3c;
}

.ex-modal-title {
    font-size: 16px !important;
    color: white;
}

.ex-modal-ref {
    font-size: 19px;
}

.ex-modal-ref span {
    color: var(--org-color);
}

.ex-modal .modal-content {
    border-radius: 50px !important;
}

.ex-modal-content p span {
    color: var(--org-color);
}
.ex-modal-content-important {
    font-style: italic;
    color: #e74c3c;
}

.ex-modal-content-important span {
    color: var(--mv-color);
    font-weight: 700;
}
/* Echange page style end */

/* Extra large devices (large desktops, 1200px and up */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    /* header {
        max-height: 66vh;
        min-height: 50vh;
    } */
    .blur-card {
        height: 360px;
        margin: 30px 0px !important;
    }
    .blur-card h1 {
        font-size: 37px;
    }
    .blur-card p {
        margin: 0;
    }
    .home-payment .payment-container .image-wrapper .bank img {
        width: 130px;
    }
    section.map-section .map-img {
        justify-content: center !important;
    }
    section.map-section .map-img img {
        height: 450px;
    }
    section.support-section h1 {
        font-size: 25px;
    }
    section.support-section h5 {
        font-size: 14px;
        max-width: 80%;
    }
    section.support-section .support-steps .step p {
        font-size: 12px;
    }

    section.question-section h1 {
        font-size: 30px;
    }
    section.question-section h5 {
        font-size: 18px;
    }
    .shipping-section .ship-card {
        width: 200px !important;
    }
    .shipping-section .ship-card img {
        margin-bottom: 14px !important;
        width: 55px;
    }
    .shipping-section .ship-card h2 {
        font-size: 15px !important;
        margin: 5px;
    }
    .shipping-section .ship-card p {
        font-size: 13px !important;
    }
    footer .row .payment-method .payments-card img {
        width: 60px;
    }
    .commander-kamas .callout {
        right: 4%;
        top: 37%;
    }
    .commander-kamas .callout h5 {
        font-size: 17px;
    }
    .commander-kamas .callout p {
        font-size: 13px;
    }
    .commander-kamas .left__col .main-title {
        font-size: 30px;
    }
    .finish-order .faq__wrapper .question-section .h-one {
        font-size: 20px;
        position: relative;
    }
    .finish-order .faq__wrapper .question-section .h-one::before,
    .finish-order .faq__wrapper .question-section .h-one::after {
        width: 100px;
    }
    .finish-order .finish-order-wrapper {
        width: 71%;
    }
    section.question-section .card-wrapper .card h1 {
        font-size: 18px;
    }
    section.question-section .card-wrapper .card p {
        font-size: 14px;
    }

    .order-details .input-group {
        width: 100%;
    }
    .order-details .horizontal-line ul li {
        font-size: 11px;
    }

    .sell__section .sell_container .sell__info form select,
    .sell__section .sell_container .sell__info form input {
        width: 527px;
    }
    .sell__section .sell_container .sell__btn {
        margin-top: 25px !important;
    }

    header .container .row .acheter-text-heading h1 {
        font-size: 45px;
    }
    section.terms__conditions .terms__conditions_container .main_title h1 {
        font-size: 28px;
    }

    header .container .row .acheter-text-heading .notif {
        width: 68%;
    }

    footer .row h3 {
        font-size: 20px;
    }

    section.login-section .container::before {
        width: 700px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    nav ul li {
        font-size: 12px;
    }

    .blur-card {
        height: 360px;
        margin: 30px 0px !important;
    }
    .blur-card h1 {
        font-size: 37px;
    }
    .blur-card p {
        margin: 0;
    }

    .maps__sections .map .board {
        width: 300px;
    }

    .home-payment .payment-container .image-wrapper .bank img {
        width: 130px;
    }

    section.map-section .map-img {
        justify-content: center !important;
    }
    section.map-section .map-img img {
        height: 450px;
    }
    section.support-section h1 {
        font-size: 25px;
    }
    section.support-section h5 {
        font-size: 14px;
        max-width: 80%;
    }
    section.support-section .support-steps .step p {
        font-size: 12px;
    }

    section.question-section h1 {
        font-size: 30px;
    }
    section.question-section h5 {
        font-size: 18px;
    }
    .shipping-section .ship-card {
        width: 200px !important;
    }
    .shipping-section .ship-card img {
        margin-bottom: 14px !important;
        width: 55px;
    }
    .shipping-section .ship-card h2 {
        font-size: 15px !important;
        margin: 5px;
    }
    .shipping-section .ship-card p {
        font-size: 13px !important;
    }

    section.testimonials-section .testimonials-container {
        width: 13%;
    }

    .next-btn,
    .prev-btn {
        display: none;
    }

    footer .row .payment-method .payments-card img {
        width: 60px;
    }
    .commander-kamas .callout {
        right: 4%;
        top: 42%;
        width: 359px;
    }
    .commander-kamas .callout h5 {
        font-size: 17px;
    }
    .commander-kamas .callout p {
        font-size: 13px;
    }
    .commander-kamas .left__col .main-title {
        font-size: 25px;
    }
    .commander-kamas .left__col .short-text div {
        font-size: 13px;
    }
    .commander-kamas .left__col .server-select select {
        width: 295px;
    }

    .finish-order .faq__wrapper .question-section .h-one {
        font-size: 20px;
        position: relative;
    }
    .finish-order .faq__wrapper .question-section .h-one::before,
    .finish-order .faq__wrapper .question-section .h-one::after {
        width: 100px;
    }
    .finish-order .finish-order-wrapper {
        width: 97%;
    }
    section.question-section .card-wrapper .card h1 {
        font-size: 18px;
    }
    section.question-section .card-wrapper .card p {
        font-size: 14px;
    }

    .order-details .input-group {
        width: 100%;
    }
    .order-details .horizontal-line ul li {
        font-size: 11px;
    }

    .sell__section .sell_container .sell__info form select,
    .sell__section .sell_container .sell__info form input {
        width: 440px !important;
    }
    .sell__section .sell_container .sell__btn {
        margin-top: 25px !important;
    }
    header .container .row .acheter-text-heading h1 {
        font-size: 45px;
    }
    section.terms__conditions .terms__conditions_container .main_title h1 {
        font-size: 28px;
    }

    header .container .row .acheter-text-heading .notif {
        width: 78%;
    }

    footer .row h3 {
        font-size: 20px;
    }

    section.login-section .container::before {
        display: none;
    }
    section.login-section .container .row .form-side {
        width: 100% !important;
    }
}

/* Medium devices (tablets, 768px and up) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    header {
        min-height: 58vh;
    }
    /* Navbar mobile & tablet version  */
    .navbar-nav {
        background-color: var(--mv-color);
        z-index: 10 !important;
        padding: 10px 20px;
    }
    .navbar_Nav {
        z-index: 10;
        margin-top: 40px;
    }
    .blur-card-buttons a button {
        padding: 8px;
    }
    .connection {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 2px;
        background-color: var(--mv-color);
        margin-top: 1px;
        padding: 10px 20px;
    }
    .sub_profile_bar {
        top: 0;
        right: -250px;
    }
    /* End Navbar mobile & tablet version */
    .blur-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
        height: 311px;
        width: 389px;
    }
    .blur-card h1 {
        font-size: 26px;
    }
    .blur-card p {
        font-size: 15px;
        margin: 0px;
    }
    .maps__sections .map:nth-child(1) {
        margin-top: 0px;
    }
    .maps__sections .map {
        margin-top: 10px;
    }

    .home-payment .payment-container .image-wrapper .bank img {
        width: 118px;
    }

    .map-section .map-text {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }
    section.map-section .map-img {
        justify-content: center;
        margin-top: 20px;
    }

    section.testimonials-section .container .row {
        display: flex;
        justify-content: center;
    }
    .testimonials-section .testimonials-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 25px;
    }
    section.testimonials-section .testimonials-container {
        margin-top: 25px;
    }

    .next-btn,
    .prev-btn {
        display: none;
    }

    section.question-section .card-wrapper .card h1 {
        font-size: 18px;
    }
    section.question-section .card-wrapper .card p {
        font-size: 14px;
    }

    .shipping-section .ship-card {
        width: 200px !important;
    }
    .shipping-section .ship-card img {
        margin-bottom: 14px !important;
        width: 55px;
    }
    .shipping-section .ship-card h2 {
        font-size: 15px !important;
        margin: 5px;
    }
    .shipping-section .ship-card p {
        font-size: 13px !important;
    }

    header .container .row .acheter-text-heading h1 {
        font-size: 45px;
    }
    header .container .row .acheter-text-heading .notif {
        width: 95%;
    }
    header .container .row .acheter-text-heading .notif h5 {
        font-size: 13px;
    }
    .commander-kamas .left__col {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    .commander-kamas .callout {
        width: 224px;
        right: 12%;
        top: 60%;
    }
    .commander-kamas .callout h5 {
        font-size: 13px;
    }
    .commander-kamas .callout p {
        font-size: 11px;
    }
    .finish-order .faq__wrapper .question-section h1 {
        font-size: 20px !important;
    }
    .finish-order .faq__wrapper .question-section .h-one::before,
    .finish-order .faq__wrapper .question-section .h-one::after {
        width: 50px;
    }
    .order-details .horizontal-line ul li {
        font-size: 11px;
    }
    footer .row h3 {
        font-size: 16px;
    }
    footer .row ul li a {
        font-size: 13px;
    }
    footer .row .payment-method .payments-card img {
        width: 47px;
    }
    footer .container .copyright {
        font-size: 11px;
    }

    section.login-section .container::before {
        display: none;
    }
    section.login-section .container .row .form-side {
        width: 100% !important;
    }
    .sell__section .sell_container .sell__info form .input__countainer {
        flex-direction: column !important;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    header {
        min-height: 58vh;
    }
    /* blur-card-buttons */
    .blur-card-buttons .btn-org {
        padding: 0px;
    }
    /* Navbar mobile & tablet version  */
    .navbar-nav {
        background-color: var(--mv-color);
        z-index: 10 !important;
        padding: 10px 20px;
    }
    .navbar_Nav {
        z-index: 10;
        margin-top: 40px;
    }
    .connection {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 2px;
        background-color: var(--mv-color);
        margin-top: 1px;
        padding: 10px 20px;
    }
    .sub_profile_bar {
        top: 0;
        right: -250px;
    }
    /* End Navbar mobile & tablet version */
    .blur-card {
        height: 300px;
        width: 80%;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    .blur-card h1 {
        font-size: 35px;
    }
    .blur-card p {
        font-size: 14px;
    }

    .notification h6 {
        font-size: 12px !important;
    }

    .maps__sections .map:first-child {
        margin-top: 0px;
    }
    .maps__sections .map {
        margin-top: 15px;
    }

    .home-payment h1 {
        font-size: 20px;
    }
    .home-payment h6 {
        font-size: 13px;
    }
    .home-payment .payment-container .image-wrapper .bank img {
        width: 83px;
    }

    section.map-section {
        padding: 50px 0px;
    }
    section.map-section .row {
        flex-direction: column-reverse;
    }
    section.map-section .map-text {
        text-align: center;
    }
    section.map-section .map-text .btn_acheter {
        margin: auto;
    }
    section.map-section .map-img img {
        height: 390px;
        margin-bottom: 50px;
    }
    section.map-section .map-img {
        justify-content: center;
    }

    .commander-kamas .callout {
        display: none;
    }

    section.testimonials-section .testimonials-text h1 {
        text-align: center;
    }
    section.testimonials-section .testimonials-text .trustpilot {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    section.testimonials-section .testimonials-container {
        display: flex !important;
        width: 100%;
        margin-top: 1rem;
    }

    .question-section {
        display: none;
    }
    .shipping-section {
        border-top: 1px solid rgb(244, 133, 0, 0.1);
    }

    .shipping-section .ship-card {
        width: 200px !important;
    }
    .shipping-section .ship-card img {
        margin-bottom: 14px !important;
        width: 55px;
    }
    .shipping-section .ship-card h2 {
        font-size: 15px !important;
        margin: 5px;
    }
    .shipping-section .ship-card p {
        font-size: 13px !important;
    }

    footer {
        border-top: 1px solid rgb(244, 133, 0, 0.1);
    }
    footer .row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    footer .row h3 {
        font-size: 20px;
    }
    footer .row .payment-method .payments-card img {
        width: 47px;
    }

    section.login-section .container::before {
        display: none;
    }
    section.login-section .container .row .form-side {
        width: 100% !important;
    }
    header .container .row .acheter-text-heading .notif {
        width: 100%;
    }
    .finish-order .refresh_page span {
        font-size: 12px;
        padding: 3px;
    }
    .order-details .horizontal-line {
        margin: 0 0;
    }
    .order-details .horizontal-line ul {
        padding: 0 0;
    }
    .order-details .horizontal-line::before {
        display: none;
    }
    .order-details .horizontal-line ul li::before,
    .order-details .horizontal-line ul li.active::after {
        top: 20px;
        left: 12px;
    }
    .order-details .horizontal-line ul {
        display: flex;
        flex-direction: column;
    }
    .order-details .horizontal-line ul li {
        padding: 25px 0px;
        display: flex;
        align-items: center;
    }
    .order-details .horizontal-line ul li a {
        margin-left: 40px;
        color: var(--mv-color) !important;
    }

    .shipping_info_back div span {
        width: 40%;
        font-size: 14px;
    }
    .shipping_info_back div h3 {
        font-size: 17px;
    }
    .sell__section .sell_container .sell__info form .input__countainer {
        flex-direction: column !important;
    }
    .sell__section .sell_container .sell__info form select,
    .sell__section .sell_container .sell__info form input {
        padding: 8px 20px;
        width: 500px;
        border: 1px solid black;
        border-radius: 5px;
    }
}

/* Small devices (landscape phones, 375px and up) */
@media screen and (min-width: 375px) and (max-width: 576px),
    (max-width: 374px) {
    header nav .container {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }
    .navbar-brand img {
        width: 115px;
    }
    .blur-card-buttons {
        display: flex;
        flex-direction: column;
    }
    .blur-card-buttons a {
        width: 100%;
    }
    /* Navbar mobile & tablet version  */
    .navbar-nav {
        background-color: var(--mv-color);
        z-index: 10 !important;
        padding: 10px 20px;
    }
    .navbar_Nav {
        z-index: 10;
        margin-top: 40px;
    }
    .connection {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 2px;
        background-color: var(--mv-color);
        margin-top: 1px;
        padding: 10px 20px;
    }
    .sub_profile_bar {
        top: 0;
        right: -250px;
    }

    /* End Navbar mobile & tablet version */
    header {
        min-height: 100vh;
    }

    .blur-card {
        height: 358px;
        width: 90%;
        margin: auto;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 3rem 1rem !important;
    }
    .blur-card h1 {
        font-size: 25px;
    }
    .blur-card p {
        font-size: 11px;
    }

    .finish-order .refresh_page {
        width: 80%;
        margin: 10px auto;
    }
    .finish-order .refresh_page p {
        font-size: 12px;
        line-height: 24px;
    }
    .finish-order .refresh_page span {
        padding: 1px 2px;
    }
    .finish-order .refresh_page span button {
        font-size: 11px;
    }

    .notification h6 {
        font-size: 10px !important;
    }

    .maps__sections .map:first-child {
        margin-top: 0px;
    }
    .maps__sections .map {
        margin-top: 15px;
    }

    .order-details .input-group {
        width: 100%;
    }

    .home-payment h1 {
        font-size: 20px;
    }
    .home-payment h6 {
        font-size: 13px;
    }
    .swiper-slide {
        margin-right: 33px;
    }
    .home-payment .payment-container .image-wrapper .bank img {
        width: 78px;
    }

    section.map-section {
        padding: 50px 0px;
    }
    section.map-section .row {
        flex-direction: column-reverse;
    }
    section.map-section .map-text {
        text-align: center;
    }
    section.map-section .map-text .btn_acheter {
        margin: auto;
    }
    section.map-section .map-img img {
        height: 268px;
        margin-bottom: 50px;
    }
    section.map-section .map-img {
        justify-content: center;
    }

    section.testimonials-section .testimonials-text h1 {
        text-align: center;
        font-size: 18px;
    }
    section.testimonials-section .testimonials-text .trustpilot {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    section.testimonials-section .testimonials-container {
        display: none;
    }
    section.testimonials-section .container .row {
        min-height: 290px;
        width: 350px;
        margin: auto;
    }

    section.support-section .support-steps {
        margin: 30px;
    }
    section.support-section .support-steps .step h2::after {
        display: none !important;
    }
    section.support-section img {
        height: 330px;
    }

    .question-section {
        display: none;
    }
    .shipping-section {
        border-top: 1px solid rgb(244, 133, 0, 0.1);
    }

    .shipping-section .ship-card {
        width: 200px !important;
    }
    .shipping-section .ship-card img {
        margin-bottom: 14px !important;
        width: 55px;
    }
    .shipping-section .ship-card h2 {
        font-size: 15px !important;
        margin: 5px;
    }
    .shipping-section .ship-card p {
        font-size: 13px !important;
    }

    header .container .row .acheter-text-heading h1 {
        font-size: 27px;
    }
    header .container .row .acheter-text-heading .notif {
        width: 100%;
    }
    header .container .row .acheter-text-heading .notif h5 {
        font-size: 13px;
        margin: 0px 33px;
    }

    .commander-kamas {
        padding: 20px 0px;
    }
    .commander-kamas .callout {
        display: none;
    }
    .commander-kamas .left__col .main-title {
        font-size: 24px;
    }
    .r_field-style {
        padding: 11px 10px;
    }
    .commander-kamas .left__col .server-select select {
        width: 300px;
        margin: 20px auto;
    }
    .commander-kamas .left__col .kamas-quantity {
        justify-content: center;
        margin-bottom: 10px;
    }
    .commander-kamas .middle__col .personnage img {
        height: 150px;
    }

    .order-details .horizontal-line::before {
        display: none;
    }

    .order-details .horizontal-line {
        margin: 0 0;
    }
    .order-details .horizontal-line ul {
        padding: 0 0;
    }
    .order-details .horizontal-line ul li::before,
    .order-details .horizontal-line ul li.active::after {
        top: 20px;
        left: 12px;
    }
    .order-details .horizontal-line ul {
        display: flex;
        flex-direction: column;
    }
    .order-details .horizontal-line ul li {
        padding: 25px 0px;
        display: flex;
        align-items: center;
    }
    .order-details .horizontal-line ul li a {
        margin-left: 40px;
        color: var(--mv-color) !important;
    }

    .payment {
        padding: 20px 0px;
        font-size: 12px;
    }
    .finish-order .finish-order-wrapper {
        width: 100%;
        margin: 0px auto 50px auto;
    }
    .finish-order .finish-order-wrapper .steps__wrapper {
        font-size: 13px;
    }
    .finish-order .finish-order-wrapper .finish-payment-btn {
        font-size: 11px;
    }
    .order-details .order__question img {
        display: none;
    }
    section.terms__conditions .terms__conditions_container .main_title h1 {
        font-size: 22px;
        margin-bottom: 7px;
    }
    section.terms__conditions .terms__conditions_container {
        padding: 0px 10px;
    }
    footer {
        border-top: 1px solid rgb(244, 133, 0, 0.1);
    }
    footer .row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    footer .row h3 {
        font-size: 15px;
    }
    footer .row ul li a {
        font-size: 11px;
    }
    footer .row .payment-method .payments-card img {
        width: 47px;
    }
    footer .container .copyright {
        font-size: 10px;
    }

    section.login-section .container::before {
        display: none;
    }
    section.login-section .container .row .form-side {
        width: 100% !important;
    }
    section.signup-section .container::before {
        display: none !important;
    }
    .shipping_info_back div {
        flex-direction: column;
        border-radius: 50px 50px 50px 50px;
        margin: 0px 0px 20px 0px;
        padding: 0;
        height: 68px;
    }
    .shipping_info_back div h3 {
        font-size: 13px;
        margin: 10px 0px 10px 0px;
    }
    .shipping_info_back div span {
        width: 100%;
        font-size: 13px;
        border-radius: 0px 0px 50px 50px;
    }
    .sell__section .sell_container .sell__info form .input__countainer {
        flex-direction: column !important;
    }
    .sell__section .sell_container .sell__info form select,
    .sell__section .sell_container .sell__info form input {
        padding: 8px 20px;
        width: 340px;
        border: 1px solid black;
        border-radius: 5px;
    }
    .sell__section .sell_container {
        overflow: hidden;
    }
    .sell__table {
    overflow: scroll;
    }
    /* Echange style mobile */
    .echange-img {
        width: 100%;
    }
    .echange-img img {
        width: 100%;
    }
    .email-verification {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .email-verification .form-group:last-child {
        width: 100% !important;
    }
    .chosen__server {
        width: 100% !important;
    }
    .chosen__info .f__field {
        display: flex;
        flex-direction: column;
    }
    .prices-for {
        margin-bottom: 10px;
    }
    .r_field-style {
        width: 100px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px),
    (min-width: 576px) and (max-width: 767px),
    (min-width: 375px) and (max-width: 576px),
    (max-width: 374px) {
    .vendre_confirm .container .vendre_questions .question_1 {
        width: 263px;
        height: 374px;
    }
    .confirmation .confirmation_title h2 {
        font-size: 11px;
        width: 35%;
        padding: 13px 21px;
    }
    .confirmation p {
        font-size: 14px;
    }
    .confirmation .form-check .form-check-label {
        font-size: 14px;
    }
    .confirmation .confirm_btn a button {
        font-size: 12px;
        padding: 10px 25px;
    }
    .r_field-style {
        padding: 8px 10px;
    }
    .alert-danger {
        font-size: 12px;
    }
    .finish-order .refresh_page span {
        padding: 2px 5px;
    }
}
/* @media screen and (max-width: 374px) {
    body {
        display: none;
    }
    .home-payment .payment-container .image-wrapper .bank img {
        width: 78px;
    }
    section.signup-section .container::before {
        display: none !important;
    }
} */

.email-verification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.email-verification .form-group:last-child {
    width: 50%;
}

.cih-alert p {
    line-height: 22px !important;
    font-size: 15px !important;
}
