@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&display=swap');

:root {
    --header-height: 3rem;
    --hue: 174;
    --sat: 63%;
    --first-color: hsl(var(--hue), var(--sat), 40%);
    --first-color-alt: hsl(var(--hue), var(--sat), 36%);
    --title-color: hsl(var(--hue), 12%, 15%);
    --text-color: hsl(var(--hue), 8%, 35%);
    --body-color: hsl(var(--hue), 100%, 99%);
    --container-color: #FFF;
    --body-font: 'Cairo';
    --h1-font-size: 1.5rem;
    --normal-font-size: .938rem;
    --tiny-font-size: .625rem;
    --z-tooltip: 10;
    --z-fixed: 100;
}


@media screen and (min-width: 968px) {
    :root {
        --h1-font-size: 2.25rem;
        --normal-font-size: 1rem;
    }
}

body:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    position: fixed;
    z-index: 999999;
    background: white url(../images/logo.png);
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 160px;
    animation-name: fade-in;
    animation-duration: 3s;
    transform: scale(0);
    border: none;
}

.banner--fixed img {
    background-color: transparent;
}

@keyframes fade-in {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    75% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(.1);
    }
}

html,
body {
    scroll-behavior: smooth;
    outline: none;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li {
    font-family: "Cairo" !important;
    font-weight: 600 !important;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section1 {
    padding: 4.5rem 0 2rem;
}

.section1__title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.section1__height {
    height: 100vh;
}


.nav1 {
    max-width: 968px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.nav1__list li a:hover {
    color: #fec470;
}

.nav1__list li a:hover div {
    background-color: #fec470;
}

.header {
    width: 100%;
    background-color: var(--container-color);
    z-index: var(--z-fixed);
    transition: .4s;
    position: relative;
}

.nav1 {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav1__img {
    width: 32px;
    border-radius: 50%;
}

.nav1__logo {
    color: var(--title-color);
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .nav1__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--container-color);
        box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
        width: 100%;
        height: 4rem;
        padding: 0 1rem;
        display: grid;
        align-content: center;
        border-radius: 1.25rem 1.25rem 0 0;
        transition: .4s;
        box-shadow: 0 43px 62px;
        z-index: 2000;
        background-color: #8B322C;
    }
}

.nav1__list,
.nav1__link {
    display: flex;
    direction: ltr;
}

.nav1__link {
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    color: white;
    font-weight: 600;
    font-size: medium;
}

.nav1__list {
    justify-content: space-around;
    align-items: center;
    margin: 0;
}

.nav1__name {
    font-size: var(--tiny-font-size);
}

.nav1__icon {
    font-size: 1.5rem;
}

nav li .search {
    border-bottom: 2px solid black !important;
}

.active-link {
    position: relative;
    transition: .3s;
    color: white;
}

.scroll-to-section {
    text-align: center;
}

nav .cart i {
    font-size: 19px;
}

nav .cart {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F3F3F3;
    border-radius: 12px;
    width: 130px;
    font-size: 10px !important;
    color: #8B322C !important;
    font-weight: bold !important;
}

nav .cart:hover {
    background-color: #8B322C;
    color: white !important;
}

nav .user {
    background-color: black;
    border-radius: 12px;
    width: 130px;
    min-width: 100px;
    color: white !important;
    font-weight: bold !important;
}

nav .user:hover {
    background-color: #8B322C;
    color: white !important;
}

* {
    box-sizing: border-box;
}

.searchbar {
    margin: 0px;
    padding: 0px;
    width: fit-content;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-family: 'Cairo' !important;
    margin-top: -4px;
    margin-top: -4px;
    direction: rtl;

}

.search-box {
    width: fit-content;
    height: fit-content;
    position: relative;
}

.input-search {
    height: 50px;
    width: 50px;
    border-style: none;
    padding: 10px;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    border-radius: 25px;
    transition: all .5s ease-in-out;
    background-color: transparent;
    padding-right: 40px;
    color: black;
}

.input-search::placeholder {
    color: rgba(0, 0, 0, 0.727);
    text-align: right;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 100;
}

.btn-search {
    width: 50px;
    height: 50px;
    border-style: none;
    font-size: 20px;
    font-weight: bold;
    outline: none;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    color: black;
    background-color: transparent;
    pointer-events: painted;
    inset-area: center;
}

.btn-search:focus~.input-search {
    width: 300px;
    border-radius: 40px;
    background-color: #f3f3f3;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}

.input-search:focus {
    width: 300px;
    border-radius: 404px;
    background-color: #f3f3f3;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: all 500ms cubic-bezier(0, 0.110, 0.35, 2);
}


/* Change background header */
.scroll-header {
    box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}


/* For small devices */
/* Remove if you choose, the minimalist design */
@media screen and (max-width: 320px) {
    .nav1__name {
        display: none;
    }
}

/* For medium devices */
@media screen and (min-width: 576px) {
    .nav1__list {
        justify-content: space-around;
        /* column-gap: 3rem; */
        padding: 0;
        margin: 0;
    }
}

@media screen and (min-width: 767px) {
    body {
        margin: 0;
    }

    .section1 {
        padding: 7rem 0 2rem;
    }

    .nav1 {
        height: calc(var(--header-height) + 1.5rem);
        /* 4.5rem */
    }

    .nav1__img {
        display: none;
    }

    .nav1__icon {
        display: none;
    }

    .nav1__name {
        font-size: var(--normal-font-size);
        /* display: block; / / Minimalist design, visible labels */
    }

    .nav1__link:hover {
        color: var(--first-color);
    }

    /* First design, remove if you choose the minimalist design */
    .active-link::before {
        content: '';
        position: absolute;
        bottom: -.75rem;
        width: 4px;
        height: 4px;
        background-color: var(--first-color);
        border-radius: 50%;
    }

    /* Minimalist design */
    /* .active-link::before{
      bottom: -.75rem;
  } */
}

/* For large devices */
@media screen and (min-width: 1024px) {
    .nav1 {
        margin-left: auto;
        margin-right: auto;
    }
}

.fusion-body .fusion-flex-container.fusion-builder-row-6 {
    padding-top: 30px;
    margin-top: 0px;
    padding-right: 32px;
    padding-bottom: 50px;
    margin-bottom: 0px;
    padding-left: 32px;
}

@media only screen and (max-width:1024px) {
    .fusion-body .fusion-flex-container.fusion-builder-row-6 {
        padding-top: 30px;
    }
}

@media only screen and (max-width:640px) {
    .fusion-body .fusion-flex-container.fusion-builder-row-6 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/*********footer**********/
.wrapper {
    padding-top: 25px;
}

.wrapper .icon {
    position: relative;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    display: inline-block;
    text-align: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #333;
    text-decoration: none;
    display: inline-grid;
    align-content: center;

}

.wrapper .tooltip {
    position: absolute;
    right: 50%;
    translate: 50% 0;
    top: 0;
    line-height: 1.5;
    font-size: 14px;
    background-color: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
    background-color: #3b5999;
    color: #ffffff;
}

.wrapper .whatsapp:hover,
.wrapper .whatsapp:hover .tooltip,
.wrapper .whatsapp:hover .tooltip::before {
    background-color: #01bb0d;
    color: #ffffff;
}

.wrapper .twitter:hover,
.wrapper .twitter:hover .tooltip,
.wrapper .twitter:hover .tooltip::before {
    background-color: black;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff;
}

.wrapper .instagram:hover .tooltip::before {
    background: linear-gradient(45deg, #fdcb82 0%, #fd9b6a 50%, #fd835e 100%);
}

.wrapper .snapchat:hover,
.wrapper .snapchat:hover .tooltip,
.wrapper .snapchat:hover .tooltip::before {
    background-color: #FFFC00;
    color: #ffffff;
    font-weight: bold;
}

.wrapper .snapchat i {
    font-weight: bold;
}

footer .colfoot.fa-facebook,
footer .colfoot .fa-instagram,
footer .colfoot .fa-whatsapp {
    line-height: 45px;
    font-size: x-large;
}

main {
    padding: 8%;
}

footer .container {
    display: flex;
    justify-content: space-around;
}

footer .colfoot img {
    width: 275px;
}

footer .colfoot ul {
    margin-top: 10px;
    font-size: 14px;
    padding: 0 !important;
}

footer .colfoot ul li {
    margin-top: 5px;
    cursor: pointer;
}

footer .colfoot ul li:hover {
    color: #fec470;
    transform: translateX(10px);
    transition: 0.5s ease;
}

footer .colfoot h5 {
    border-bottom: 2px solid #8B322C;
    padding: 15px;
    width: fit-content;
    color: black;

}

footer .colfoot {
    text-align: -webkit-center;
}

footer p {
    font-size: 18px;
}

.herova {
    font-family: "Covered By Your Grace", cursive !important;
    font-size: 200%;
    position: relative;
    margin-left: 10px;
    color: #01bb0d;
}

.herova:hover {
    color: #01bb0d;
}

.herova::before {
    content: "";
    position: absolute;
    background: url(../images/surprize.webp);
    width: 30px;
    display: none !important;
    height: 30px;
    bottom: -2px;
    left: -17px;
    z-index: 10;
    rotate: 270deg;
    background-size: 100% 100%;
}

.herova:hover::before {
    display: block !important;
    transition: 1s;
    translate: -5px -30px;
}

.herova::after {
    content: "";
    position: absolute;
    background: url(../images/surprize.webp);
    width: 30px;
    display: none;
    height: 30px;
    top: -2px;
    right: -17px;
    z-index: 10;
    rotate: 90deg;
    background-size: 100% 100%;
}

.herova:hover::after {
    display: block !important;
    transition: 1s;
    translate: 5px 30px;
}

footer p {
    text-align: center;
    margin: 30px 0px 45px 0px;
}

footer a:hover {
    color: #fec470;
}

footer {
    text-align: center;
    padding: 25px 0px;
    box-shadow: -3px 8px 20px 2px #00000069;
    border-radius: 40px 40px 0 0;
}

footer p a {
    font-weight: 300;
    color: black;
}

@media (min-width:993px) {
    .col-lg-4 {
        display: grid;
        align-content: center;
    }

    .showed-content img {
        scale: 2.4;
    }

    em {
        color: #8B322C;
    }
}

@media (max-width: 992px) {
    footer p {
        margin: 15px 0px 30px 0px;

    }
}

@media (max-width: 767px) {
    footer .container {
        flex-direction: column-reverse;
        width: 80%;
    }

    footer {
        margin-bottom: 17px;
    }
}

.container-md,
.container-sm,
.container {
    max-width: none !important;
}


* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100vh;
}

#search {
    grid-area: search;
    width: 100vw;
    height: 100vh;
    grid-template:
        "search" 60px
        / 420px;
    justify-content: center;
    align-content: center;
    justify-items: stretch;
    align-items: stretch;
    background: hsl(0, 0%, 99%);
    left: 0;
    background: transparent;
}

#search input {
    display: block;
    grid-area: search;
    -webkit-appearance: none;
    z-index: 16;
    appearance: none;
    width: 100%;
    height: 100%;
    padding: 0 30px 0 60px;
    border: none;
    border-radius: 100px !important;
    font: 24px/1 system-ui, sans-serif;
    outline-offset: -8px;
    background: #0909091f;
    color: white;
}

#search input::placeholder{
    color: rgba(255, 255, 255, 0.7);
}

#search input:focus {
    outline: none;
}


#search svg {
    grid-area: search;
    overflow: visible;
    color: hsl(8.28deg 100% 23.07%);
    z-index: 15;
    fill: none;
    stroke: currentColor;
}

.spark {
    fill: currentColor;
    stroke: none;
    r: 15;
}

.spark:nth-child(1) {
    animation:
        spark-radius 2.03s 1s both,
        spark-one-motion 2s 1s both;
}

@keyframes spark-radius {
    0% {
        r: 0;
        animation-timing-function: cubic-bezier(0, 0.3, 0, 1.57)
    }

    30% {
        r: 15;
        animation-timing-function: cubic-bezier(1, -0.39, 0.68, 1.04)
    }

    95% {
        r: 8
    }

    99% {
        r: 10
    }

    99.99% {
        r: 7
    }

    100% {
        r: 0
    }
}

@keyframes spark-one-motion {
    0% {
        transform: translate(-20%, 50%);
        animation-timing-function: cubic-bezier(0.63, 0.88, 0, 1.25)
    }

    20% {
        transform: rotate(-0deg) translate(0%, -50%);
        animation-timing-function: ease-in
    }

    80% {
        transform: rotate(-230deg) translateX(-20%) rotate(-100deg) translateX(15%);
        animation-timing-function: linear
    }

    100% {
        transform: rotate(-360deg) translate(30px, 100%);
        animation-timing-function: cubic-bezier(.64, .66, 0, .51)
    }
}

.spark:nth-child(2) {
    animation:
        spark-radius 2.03s 1s both,
        spark-two-motion 2.03s 1s both;
}

@keyframes spark-two-motion {
    0% {
        transform: translate(120%, 50%) rotate(-70deg) translateY(0%);
        animation-timing-function: cubic-bezier(0.36, 0.18, 0.94, 0.55)
    }

    20% {
        transform: translate(90%, -80%) rotate(60deg) translateY(-80%);
        animation-timing-function: cubic-bezier(0.16, 0.77, 1, 0.4)
    }

    40% {
        transform: translate(110%, -50%) rotate(-30deg) translateY(-120%);
        animation-timing-function: linear
    }

    70% {
        transform: translate(100%, -50%) rotate(120deg) translateY(-100%);
        animation-timing-function: linear
    }

    80% {
        transform: translate(95%, 50%) rotate(80deg) translateY(-150%);
        animation-timing-function: cubic-bezier(.64, .66, 0, .51)
    }

    100% {
        transform: translate(100%, 50%) rotate(120deg) translateY(0%)
    }
}

.spark:nth-child(3) {
    animation:
        spark-radius 2.05s 1s both,
        spark-three-motion 2.03s 1s both;
}

@keyframes spark-three-motion {
    0% {
        transform: translate(50%, 100%) rotate(-40deg) translateX(0%);
        animation-timing-function: cubic-bezier(0.62, 0.56, 1, 0.54)
    }

    30% {
        transform: translate(40%, 70%) rotate(20deg) translateX(20%);
        animation-timing-function: cubic-bezier(0, 0.21, 0.88, 0.46)
    }

    40% {
        transform: translate(65%, 20%) rotate(-50deg) translateX(15%);
        animation-timing-function: cubic-bezier(0, 0.24, 1, 0.62)
    }

    60% {
        transform: translate(60%, -40%) rotate(-50deg) translateX(20%);
        animation-timing-function: cubic-bezier(0, 0.24, 1, 0.62)
    }

    70% {
        transform: translate(70%, -0%) rotate(-180deg) translateX(20%);
        animation-timing-function: cubic-bezier(0.15, 0.48, 0.76, 0.26)
    }

    100% {
        transform: translate(70%, -0%) rotate(-360deg) translateX(0%) rotate(180deg) translateX(20%);
    }
}




.burst {
    stroke-width: 3;
}

.burst :nth-child(2n) {
    color: #ff783e
}

.burst :nth-child(3n) {
    color: #ffab00
}

.burst :nth-child(4n) {
    color: #55e214
}

.burst :nth-child(5n) {
    color: #82d9f5
}

.circle {
    r: 6;
}

.rect {
    width: 10px;
    height: 10px;
}

.triangle {
    d: path("M0,-6 L7,6 L-7,6 Z");
    stroke-linejoin: round;
}

.plus {
    d: path("M0,-5 L0,5 M-5,0L 5,0");
    stroke-linecap: round;
}




.burst:nth-child(4) {
    transform: translate(30px, 100%) rotate(150deg);
}

.burst:nth-child(5) {
    transform: translate(50%, 0%) rotate(-20deg);
}

.burst:nth-child(6) {
    transform: translate(100%, 50%) rotate(75deg);
}

.burst * {}

@keyframes particle-fade {

    0%,
    100% {
        opacity: 0
    }

    5%,
    80% {
        opacity: 1
    }
}

.burst :nth-child(1) {
    animation: particle-fade 600ms 2.95s both, particle-one-move 600ms 2.95s both;
}

.burst :nth-child(2) {
    animation: particle-fade 600ms 2.95s both, particle-two-move 600ms 2.95s both;
}

.burst :nth-child(3) {
    animation: particle-fade 600ms 2.95s both, particle-three-move 600ms 2.95s both;
}

.burst :nth-child(4) {
    animation: particle-fade 600ms 2.95s both, particle-four-move 600ms 2.95s both;
}

.burst :nth-child(5) {
    animation: particle-fade 600ms 2.95s both, particle-five-move 600ms 2.95s both;
}

.burst :nth-child(6) {
    animation: particle-fade 600ms 2.95s both, particle-six-move 600ms 2.95s both;
}

@keyframes particle-one-move {
    0% {
        transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001)
    }

    100% {
        transform: rotate(-20deg) translateX(8%) scale(0.5, 0.5)
    }
}

@keyframes particle-two-move {
    0% {
        transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001)
    }

    100% {
        transform: rotate(0deg) translateX(8%) scale(0.5, 0.5)
    }
}

@keyframes particle-three-move {
    0% {
        transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001)
    }

    100% {
        transform: rotate(20deg) translateX(8%) scale(0.5, 0.5)
    }
}

@keyframes particle-four-move {
    0% {
        transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001)
    }

    100% {
        transform: rotate(-35deg) translateX(12%)
    }
}

@keyframes particle-five-move {
    0% {
        transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001)
    }

    100% {
        transform: rotate(0deg) translateX(12%)
    }
}

@keyframes particle-six-move {
    0% {
        transform: rotate(0deg) translate(-5%) scale(0.0001, 0.0001)
    }

    100% {
        transform: rotate(35deg) translateX(12%)
    }
}



.bar {
    width: 100%;
    height: 100%;
    ry: 50%;
    stroke-width: 10;
    animation: bar-in 900ms 3s both;
}

@keyframes bar-in {
    0% {
        stroke-dasharray: 0 180 0 226 0 405 0 0
    }

    100% {
        stroke-dasharray: 0 0 181 0 227 0 405 0
    }
}

.magnifier {
    animation: magnifier-in 600ms 3.6s both;
    transform-box: fill-box;
}

@keyframes magnifier-in {
    0% {
        transform: translate(20px, 8px) rotate(-45deg) scale(0.01, 0.01);
    }

    50% {
        transform: translate(-4px, 8px) rotate(-45deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

.magnifier .glass {
    cx: 27;
    cy: 27;
    r: 8;
    stroke-width: 3;
}

.magnifier .handle {
    x1: 32;
    y1: 32;
    x2: 44;
    y2: 44;
    stroke-width: 3;
}



#results {
    grid-area: results;
    background: hsl(0, 0%, 95%);
}

footer .colfoot ul a {
    color: black !important;
}

footer .colfoot ul a:hover {
    color: #fec470 !important;
}

.hidden {
    display: none;
}

.grid {
    display: grid;
    top: 0;
    position: fixed;
}

.fill-screen {
    width: 100vw;
    height: 100vh;
    z-index: 5;
    position: fixed;
    left: 0;
    top: 0;
    backdrop-filter: blur(3px) !important;
    background-color: #0000001f;
}

body>header.header-area.header-sticky>div.container>div>div>nav>ul>li:nth-child(2)>a:after,
body>header.header-area.header-sticky>div.container>div>div>nav>ul>li:nth-child(3)>a:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 100%;
    height: 2px;
    translate: 50% 0;
}

.gg {
    position: absolute;
    top: 22px;
    left: -5px;
    height: 23px;
    width: 23px;
    background: #8b322c;
    color: white;
    display: grid;
    align-content: center;
    border-radius: 50%;
    justify-content: center;
}

p.cart-count {
    color: white;
    font-size: unset;
    margin: 0 !important;
    padding: 0 !important;
}

.nav1__item {
    position: relative;
}

@media (max-width:767px) {
    .gg {
        position: absolute;
        top: -13px;
        left: 11px;
        height: 19px;
        width: 19px;
        font-size: 12px;
        background: white;
        color: #8b322c;
        justify-content: center;
        display: grid;
        align-content: center;
        border-radius: 50%;
    }
}

div:where(.swal2-icon).swal2-success {
    translate: 0 18px !important;
}

div:where(.swal2-container).swal2-center>.swal2-popup {
    justify-items: center !important;
}

.swal2-html-container,
.swal2-title {
    direction: rtl;
}

#display_rsulte {
    position: absolute;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    right: 50%;
    width: 70%;
    transform: translateX(50%);
    height: auto;
    margin-top: -3px;
    padding-top: 5px;
    padding-bottom: 5px;
    max-width: 375px;
    width: 100%;
}

#display_rsulte ul {
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 0 0 10px 10px;
}

#display_rsulte ul li {
    padding: 12px 0;
    border-bottom: 1px solid #b0b0b0;
    color: #000;
    text-align: center;
}

#display_rsulte ul li:last-child {
    border: none;
}

#display_rsulte ul li a {
    color: inherit;
}

@media (max-width:450px) {
    #search svg{
        width: 250px;
        justify-self: center;
    }

    #search input{
        width: 250px;
        height: 40px;
        justify-self: center;
        place-self: center;
        padding: 0 30px 0 30px;
        font-size: large;
        color: white;
    }

    #display_rsulte {
        width: 230px;
    }

    .two_2 {
        width: 250px;
        justify-self: center;
        margin: auto;
    }
}

.two_2 {
    grid-area: search;
    z-index: 16;
    border: none;
    border-radius: 100px;
    outline-offset: -8px;
    position: relative;
}