.shipping-info-container{
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.shipping-info-container > div{
    flex: 1;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.shipping-info-container > div:nth-child(2){
    padding-left: 25%;
}


.shipping-info-container > div > span{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    font-family: "Proxima Nova", sans-serif;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 15px;

}

.shipping-info-container > div > span > svg{
    margin-right: 10px;
}

.shipping-info-container > div > ul{
    list-style: none;
}

.shipping-info-container > div > ul > li::before{
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #ff0018; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

@media only screen and (max-width: 1000px){
    .shipping-info-container > div:nth-child(2){
        padding-left: 11%;
    }
}

@media only screen and (max-width: 770px){
    .shipping-info-container{
        flex-direction: column;
        padding-bottom: 30px;
    }
    .shipping-info-container > div:nth-child(2){
        padding-left: 0;
        margin-top: 30px;
    }

    .shipping-info-container > div:nth-child(2) > p{
        padding-left: 17px;
    }

    
}