.trans_body {
    text-align: center;      /* Centers text horizontally */
    vertical-align: middle;  /* Aligns content vertically in the middle */
    padding: 10px;           /* Optional: Adds some padding for better spacing */
}
.trans_header{
    text-align: center;      /* Centers text horizontally */
    vertical-align: middle;
}

.wrapper{
    width: 485px;
}
#preview{
    width: 100%;
    box-sizing: border-box;
    border: 7px solid white;
    margin-bottom: 10px;
}

.thumbnails{
    width: 100%;
    display: flex;
    gap: 15px;
    overflow-x: auto;
}

.thumbnail{
    width: 100px;
    cursor: pointer;
    /*box-sizing: border-box;*/
}

.thumbnail.active{
    border: 2px solid white;
}

.thumbnail:hover{
    transform: scale(1.1);
}

    #block_price{
        flex-direction: column;
}

.product-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 100%;
}

.avatar-group {
    width: 100%;
    display: flex;
    align-items: baseline; /* Align items vertically in the middle */
    justify-content: space-between; /* Center items horizontally */
    gap: 10px; /* Optional: adds space between price and icon */
}

.material-icons {
    font-size: 24px; /* Adjust icon size as needed */
}

#main_cart{
    margin: 0px;
}

#main_cart_icon{
    font-size: 1.1rem;
}

.cart-item {
    position: relative;
    display: flex;
    width: 100%;
    margin: 30px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 18px #2a2f430b;
}
.cart-item .image {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.cart-item img {
    width: 90%;
}
.cart-item .info {
    width: 70%;
    padding: 14px;
}

.cart-item .details {
    display: flex;
}
.cart-item .details i {
    color: #2a2f43d2;
    font-size: 17px;
    transform: translateY(3px);
}
.cart-item .details span {
    margin-left: -2px;
}
.cart-item .status {
    margin-left: 8px;
}
.cart-item .price {
    color: #2a2f43ea;
    margin-top: 8px;
}
.cart-item .counter {
    position: absolute;
    right: 14px;
    bottom: 0;
}
.cart-item .counter i {
    cursor: pointer;
    width: 24px;
    height: 38px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: #2a2f43;
    border-radius: 8px 8px 0 0;
}
.cart-item .counter span {
    margin: 0 6px;
}
.cart-summary {
    border: 2px solid #EC407A;
    border-radius: 5px;
    display: flex;       /* Use flexbox to layout children */
    justify-content: center; /* Center children horizontally */
    align-items: center;     /* Align children vertically in the middle */
    text-align: center;
    padding: 10px;
    background-image: linear-gradient(195deg, rgba(236, 64, 122, 0.5) 0%, rgba(216, 27, 96, 0.5) 100%);;
}

.cart-summary span {
    color: white;
    font-size: 20px;
    margin-right: 10px; /* Optional: space between the text and the button */
}

.custom-footer{
    justify-content: space-between;
}

.total{
    margin: 0px;
    cursor:unset;
}

.total:hover{
    color: white;
}

.empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.already-cart{
    color:#4caf50;
    font-weight: bold;
}

.minus, .plus{
    border: 0px;
    background-color: transparent;
}

.block_quantity{
    opacity: 0.7;
}

.delete-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: white; /* Red color for the delete icon */
    font-size: 24px; /* Icon size */
}

.delete-icon i {
    display: block; /* Ensures the icon centers well */
}

.name_product{
    height: 50px;
}

.postal_desc{
    font-size: 15px;
}
.fixed-right-content {
    position: fixed;
    width: 320px;
    top: 100px; /* Adjust the top position as necessary */
    height: auto; /* Adjust height as needed */
    overflow-y: auto; /* Adds scroll to the fixed block if content overflows */
}
.flex-row {
    display: flex;
    justify-content: space-between; /* This aligns one item to the left and one to the right */
    margin-bottom: 10px; /* Adds space between rows */
}

.flex-item-left {
    flex: 1; /* Ensures the item takes up half the space */
    text-align: left;
}

.flex-item-right {
    flex: 1;
    text-align: right;
}
.success-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; /* Centers the text of all child elements */
}
.success-content > img{
    width: 15%;
}
.success-content > p{
    font-weight: bold;
    text-decoration: underline;
}
.view-image{
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .fixed-right-content{
        position: relative;
        top: 15px;
        width: 100%;
    }
}

/* Customize padding for the phone input field */
.intl-tel-input .selected-flag {
    padding: 0 !important;
}

.intl-tel-input .country-list {
    padding: 0 !important;
}

/* Customize padding for the input itself */
#tel {
    padding-left: 93px!important; /* Adjust this value as needed */
}
.iti {
    width: inherit;
}
