.rma-button {
    position: relative;
}

.rma-button .rma-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1.5em;
    background-color: white;
    border-radius: 50%;
}

.rma-container h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rma-wrapper .rma-details {
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px 5px 0px 0px;
}

.rma-wrapper .rma-details .rma-details-obj, .rma-wrapper .rma-item .rma-item-obj {
    margin-bottom:5px;
}

.rma-wrapper .rma-details .rma-details-obj strong, .rma-wrapper .rma-item .rma-item-obj strong {
    margin-right: 10px;
}

/* .rma-wrapper .rma-details-specification {
    padding: 10px;
} */

.rma-wrapper .rma-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap:20px;
    border: solid #f8f8f8 1px;
    border-top: none;
    padding: 10px;
}


.rma-wrapper .rma-item .rma-item-content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap:50px;
}
.rma-wrapper .rma-item .rma-item-content .rma-item-details {
    min-width: 300px;
}

.rma-wrapper .rma-item .rma-item-image {
    width: 150px;
}
.rma-wrapper .rma-item .rma-item-image > img {
    width: 100%;
}

.rma-wrapper .rma-comment .rma-item-obj {
    display:flex;
    flex-direction: column;
}

@media(max-width: 912px) {
    .rma-item-content {
        flex-direction: column;
        gap:0px !important;
    }
}

@media(max-width: 850px) {
    .rma-container hr.responsive {
        display:none;
    }
}

@media(max-width: 767px) {
    .rma-container h2 {
       font-size:24px;
    }
    .rma-item {
        flex-direction: column;
    }
    .rma-wrapper .rma-item .rma-item-image {
        width: 100%;
        text-align: center;
    }
    .rma-wrapper .rma-item .rma-item-image > img {
        width:50%;
    }
    .rma-item .rma-item-content .rma-item-details {
        width:100%;
    }
}