#delete-cookie {
    margin-top: 200px;
}



.accordion-wrapper{
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease-in-out;
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #2f55d4;
    border: none;
    border-bottom: 0.4px solid #4a6cdb;
    padding: 0.5rem;
    width: 100%;
    text-align: left;
}

.accordion-button:hover {
    background-color: #4666d1;
}
.accordion-button  .arrow-icon-down{
    transform: scaleY(1);
    transition: all 0.5s ease;
}

.accordion-button  .arrow-icon-up{
    transform: scaleY(-1);
    transition: all 0.5s ease;
}

.accordion-body {
    visibility: hidden;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    border: none;
    width: 100%;
    max-height: 0;
    transition: max-height 0.1s ease-out;
    color:rgb(115, 114, 114);
    font: 900;
    font-size: 1rem;
}

.accordion-body-active{
    visibility: unset;
    padding: 1rem;
}


.contact-wrapper{
    width: 80%;
    height: 100vh;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#e-commerce-amazon-forwardie-logo{
    width: 50%;
    object-fit: contain;
}


@media screen and (max-width: 992px) {
    #e-commerce-amazon-forwardie-logo{
        width: 100%;
        object-fit: contain;
    }
    .contact-wrapper {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
}

@media screen and (min-width: 1200px){
    body div.container {
        min-width: 1366px;
    }
}


@media screen and (max-width: 600px) {
    .shape{
        bottom: -5px;
    }
}