@import url('https://fonts.googleapis.com/css?family=Rubik:500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

#refundContainer label {
    display: block;
    text-align: left;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 5px;
    position: relative;
    transition: padding 0.5s ease-in-out 0.3s, color 0.1s ease;
    font-family: 'Rubik', sans-serif;
}

.refundSmall {
    margin-bottom: 10px
}

.tableContainer th {
    color: white;
}

.tableContainer {
    font-size: 15px;
    font-family: Arial;
}

#cargoMovements th {
    width: 20%;
}

#cargoDate th {
    width: 25%;
}

.tableTag {
    width: 25%;
    font-weight: bold;
}

#refundContainer label::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    left: -8px;
    z-index: -1;
    transition: all 0.4s ease-in-out
}
#faulty label::before {
    background-color: #b91212
}
#steady label::before {
    background-color: #1b8812
}
#refundContainer input {
    margin-bottom: 10px;
    padding: 4px 10px;
}

    #faulty input:focus,
    #faulty select:focus,
    #faulty textarea:focus {
        border: 1px solid #b91212;
    }
#steady input:focus,
#steady select:focus,
#steady textarea:focus {
    border: 1px solid #25b119;
}

#refundContainer button {
    text-transform: uppercase;
}

#faulty select:focus + label {
    color: white !important;
}

#steady,
#damaged,
#faulty {
    display: flex;
    transition: display 0.4s ease;
}

    #steady div,
    #damaged div,
    #faulty div {
        width: 50%;
    }

    #steady input,
    #damaged input,
    #faulty input {
        width: 85%;
        border: 1px solid lightgray;
        border-radius: 5px;
    }

    #steady select,
    #damaged select,
    #faulty select {
        padding: 8px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    #steady select,
    #steady optinon,
    #damaged select,
    #damaged optinon,
    #faulty select,
    #faulty optinon {
        width: 85%;
    }

    #steady button,
    #faulty button {
        display: block;
        margin-top: 35px;
        width: 25%;
        padding: 5px 5px;
        border: 1px solid transparent;
        color: white;
        border-radius: 16px;
    }
    #steady button {
        background-color: #25b119;
        border-color: #24a719;
    }
    #faulty button {
        background-color: #b91212;
        border-color: #a91111;
    }

        #steady button:hover{
            background-color: #1e9614;
        }
    #faulty button:hover {
        background-color: #b51414;
    }

    #steady textarea,
    #damaged textarea,
    #faulty textarea {
        width: 85%;
        padding: 5px 10px;
        height: 125px;
        resize: none;
        overflow: auto;
        border-radius: 10px;
    }

.form_none {
    display: none !important;
}

.form_block {
    display: flex !important;
}

.productNo {
    width: 59% !important;
}

.dashedDiv {
    border-bottom: 1px dashed #b91212;
    width: 85% !important;
    margin-top: 10px;
    margin-bottom: 35px;
}

.groupTitle {
    width: 85%;
    background-color: #b91212;
    border: none;
    border-right: 1px solid white;
    color: white;
    font-weight: 500;
    padding: 5px 0;
    border-radius: 10px;
}

.steadyInfo {
    width: 104%;
    background-color: #1e9614;
    padding: 15px;
    color: white;
    border-radius: 5px;
    margin-left: -7px;
}

.refundTopInfo {
    background-color: #1c6775;
    border-radius: 10px;
    color: #ffffff;
    margin-bottom: 7px;
    padding: 7px 15px;
}

@media(min-width : 1200px) {
    .GetModalButton {
        width: 25% !important;
        right: 15% !important;
    }
}

@media(max-width : 1200px) {
    .form_block {
        display: block !important;
    }

    #steady div,
    #damaged div,
    #faulty div {
        width: 100%;
    }

    #steady input,
    #damaged input,
    #faulty input {
        width: 90%;
    }

    #steady textarea,
    #faulty textarea,
    #steadySelect,
    .dashedDiv,
    .steadyInfo,
    .groupTitle {
        width: 90% !important;
    }

    #steady #steadyUnitPrice,
    #damaged #damagedUnitPrice,
    #faulty #faultyUnitPrice {
        width: 60% !important;
    }

    .GetModalButton {
        width: 20% !important;
        right: 10% !important;
    }

    .productNo {
        width: 69% !important;
    }
}

@media(max-width : 500px) {
    .GetModalButton {
        width: 30% !important;
    }

    .productNo {
        width: 58% !important;
    }
}

#damaged,
#faulty {
    display: none;
}

#succes_refund i {
    color: red;
    font-size: 31px;
    margin-right: 6px;
}

#succes_refund {
    position: relative;
    margin: 100px 0;
}

    #succes_refund div {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex
    }

    #succes_refund h1 {
        text-align: center;
        letter-spacing: 3px;
    }

input[disabled] {
    background-color: #e0e0e0;
}

.refundOptionContainer {
    width: 75% !important;
    display: flex;
}

.refundItimOption {
    width: 45%;
    padding: 15px 5px;
    background-color: #f7f7f7;
    cursor: pointer;
    text-align: center;
    color: black;
    font-weight: 500;
    transition: background-color 0.4s ease;
    border-radius:75px
}
    .refundItimOption:hover {
        background-color: #b91212;
    }

.activeOption {
    background-color: #b91212;
    color: white;
}
/* Modal Css Start */
.modal-size {
    width: 80%;
}

.agreementContainer {
    width: 100%;
    display: flex;
    position: relative;
    margin-top: 30px;
    margin-left: 1%;
    margin-right: 1%;
}

    .agreementContainer .card {
        box-shadow: 0 0 10px lightgray;
    }

    .agreementContainer img {
        width: 100%;
        padding: 8px 50px;
        background-color: black;
    }

@media(max-width:968px) {
    .agreementContainer {
        display: block;
    }

        .agreementContainer .card {
            width: 97% !important;
            margin-top: 20px !important;
            margin-bottom: 20px !important;
        }
}

.refundRow {
    display: flex;
    height: 45px;
}

    .refundRow:nth-child(2n+1) {
        background-color: #e0e0e0;
    }

.invoiceNo {
    width: 20%;
    align-self: center;
}

.cargo {
    width: 50%;
    text-align: start;
}

.productName {
    width: 35%;
    align-self: center;
}

.productQuantity,
.productUnit,
.productPrice,
.refundDate {
    width: 10%;
    align-self: center;
}

.refundModalTitle {
    background-color: #fba201;
    color: white;
    font-weight: 500;
    padding: 5px 0;
    display: flex;
}

.refundButton {
    width: 5%;
    border: none;
    background-color: #4a4a4a;
    color: white;
    height: 90%;
    align-self: center;
}

.getArticleNumber {
    position: relative;
}

.GetModalButton {
    position: absolute;
    width: 10%;
    right: 13%;
    top: 0;
    cursor: pointer;
}

.modalConditionsTitle {
    display: flex;
}

.modalTitleNumber {
    background-color: red;
    vertical-align: middle;
    line-height: 1.40em;
    font-size: 25px;
    background: #cf2f2f;
    width: 36px;
    height: 36px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    min-width: 36px !important;
}

.modalConditionsTitle h5 {
    margin-left: 5px;
    font-size: 25px;
}

.modalMainTitle {
    position: relative;
    margin-bottom: 30px;
    font-weight: 500;
}

    .modalMainTitle:before {
        content: "";
        position: absolute;
        width: 80px;
        height: 4px;
        bottom: -15px;
        background-color: #b91212;
    }

.modalList {
    list-style: none;
    counter-reset: li;
}

    .modalList li::before {
        content: counter(li);
        color: red;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
        font-weight: 500;
    }

    .modalList li {
        counter-increment: li
    }

    .modalList .modalConditionsTitle {
        margin-left: -36px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

.sideTitle {
    color: rgb(206, 0, 0);
    font-weight: bold;
}

.sideNormalTitle {
    color: rgb(51, 51, 51);
    font-size: 20px;
    font-weight: bold;
}

.modalIcon {
    color: white;
    font-size: 50px !important;
    margin: 11px 10px 0px 0px;
}
/* Modal Css End */
/* Register Form Start */
#registerContainer {
    width: 75%
}

@media(max-width:1300px) {
    #registerContainer {
        width: 85%
    }
}

@media(max-width:1050px) {
    #registerContainer {
        width: 95%
    }
}

#registerContainer .formLabel {
    display: block;
    text-align: left;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 5px;
    position: relative;
    transition: padding 0.5s ease-in-out 0.3s, color 0.1s ease;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
}

    #registerContainer .formLabel::before {
        content: "";
        position: absolute;
        height: 100%;
        background-color: #b91212;
        width: 3px;
        left: -8px;
        z-index: -1;
        transition: all 0.4s ease-in-out
    }

#registerTitle h1 {
    width: 100%;
    text-align: center;
    color: #b91212;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 10px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

    #registerTitle h1:before {
        content: "";
        position: absolute;
        width: 200px;
        height: 4px;
        background-color: #b91212;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

#registerContainer input {
    margin-bottom: 10px;
    padding: 4px 10px;
}

    #registerContainer input:focus,
    #registerContainer select:focus,
    #registerContainer textarea:focus {
        border: 1px solid #b91212;
    }

#registerContainer button {
    text-transform: uppercase;
}

.companyInformation {
    background-color: #b91212;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.form_row {
    display: flex;
    flex-direction: column-reverse;
    width: 100% !important;
}

.register textarea {
    width: 75%;
    padding: 5px 10px;
    height: 125px;
    resize: none;
    overflow: auto;
    border-radius: 10px;
}

.register {
    display: flex;
    transition: all 2s ease;
    padding: 20px 30px;
    border-right: 2px solid #dedede;
    border-left: 2px solid #dedede;
    box-shadow: 0px 0px 7px #bfbfbf;
}

    .register div,
    .userInformation div {
        width: 50%;
    }

    .register input {
        width: 75%;
        border: 1px solid lightgray;
        border-radius: 3px;
        background-color: rgba(251,251,251,1);
    }

    .register select {
        padding: 8px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .register select,
    .register optinon {
        width: 75%;
    }

    .register button {
        display: block;
        margin-top: 35px;
        width: 25%;
        padding: 5px 5px;
        border: none;
        background-color: #28a745;
        color: white;
        border-radius: 16px;
    }

.refundRow {
    display: flex;
    height: 45px;
}

    .refundRow:nth-child(2n+1) {
        background-color: #e0e0e0;
    }

.refundContainer .checkbox-group {
    margin: 0 10px;
    width: 25% !important;
}

#registerContainer .checkbox-group {
    margin: 0 10px;
    width: 25% !important;
}

#registerContainer h5 {
    min-width: 120px
}

#registerContainer .fa-circle-o:before {
    margin-right: 10px;
    font-size: 21px;
    top: -5px;
}

.checktitles {
    width: 100% !important;
    display: flex;
}

.contractInput {
    width: 5% !important;
}

.agreementRow {
    display: flex;
    width: 100% !important;
    margin-top: 5px;
}

.agrLabel {
    color: black !important
}

.agreementRow span {
    cursor: pointer;
    color: #d60000;
    text-decoration: underline;
}
/* Register Form End */
.userInformation textarea {
    width: 75%;
    padding: 5px 10px;
    height: 125px;
    resize: none;
    overflow: auto;
    border-radius: 10px;
}

input:focus + .formLabel::before,
textarea:focus + .formLabel::before,
.register select:focus + .formLabel::before,
textarea:focus + label::before,
.userInformation select:focus + label::before,
input:focus + label::before,
#steady select:focus + label::before,
#faulty select:focus + label::before {
    width: 50% !important;
}

input:focus + .formLabel,
textarea:focus + label,
.userInformation select:focus + label,
.register select:focus + .formLabel,
textarea:focus + .formLabel,
input:focus + label,
#steady select:focus + label {
    color: white !important;
    padding-left: 25px;
}

.userInformation {
    transition: all 2s ease;
    padding: 20px 30px;
    border-right: 2px solid #dedede;
    border-left: 2px solid #dedede;
    box-shadow: 0px 0px 7px #d8d8d8;
}

    .userInformation input {
        width: 75%;
        border: 1px solid lightgray;
        border-radius: 5px;
        background-color: rgba(251,251,251,1);
    }

    .userInformation select {
        padding: 8px 10px;
        margin-bottom: 10px;
        border-radius: 5px;
    }

    .userInformation select,
    .userInformation optinon {
        width: 75%;
    }

    .userInformation button {
        display: block;
        margin-top: 35px;
        width: 25%;
        padding: 5px 5px;
        border: none;
        background-color: #28a745;
        color: white;
        border-radius: 16px;
    }

.refundRow {
    display: flex;
    height: 45px;
}

    .refundRow:nth-child(2n+1) {
        background-color: #e0e0e0;
    }

.userInformationRow {
    display: flex;
    width: 100% !important;
}

.showAcceptButton {
    display: block !important;
    margin-right: 23px;
    transition: all 1s ease-in-out
}

#userConditionsAcceptButton,
#userConditionsDeclineButton {
    transition: all 0.4s ease;
}

.disableField {
    background-color: #e0e0e0;
    cursor: context-menu;
}

    .disableField::-webkit-calendar-picker-indicator,
    .disableField::-webkit-inner-spin-button {
        display: none;
    }

.agreementConditions {
    background-color: lightgrey;
    height: 50px;
    text-align: center;
    position: relative;
}

.agreementConditionsContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal ::-webkit-scrollbar {
    margin-left: 30px;
    float: left;
    height: 300px;
    width: 10px;
    background: #F5F5F5;
    overflow-y: scroll;
    margin-bottom: 25px;
}

.modal ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    border-radius: 10px;
    background-color: #F5F5F5;
}

.modal ::-webkit-scrollbar-thumb {
    background: #484141;
    border-radius: 10px;
}

    .modal ::-webkit-scrollbar-thumb:hover {
        background: #b30000;
    }

.modalForm {
    background-color: #b91212
}

.modalFormTitle {
    color: white;
}

.loginButtonShow {
    display: block !important;
}

.card-body .checkbox-group {
    width: 100% !important;
}

.checkbox-group label {
    padding-left: 34px;
    cursor: pointer;
    font-size: 16px;
    color: #777777;
}

input[type=checkbox]:checked ~ label .check {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.checkbox-group label .check {
    top: 0px;
    left: 1px;
    opacity: 0;
    z-index: 10;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.checkbox-group label span {
    display: block;
    position: absolute;
    left: 0;
    -webkit-transition-duration: .3s;
    -moz-transition-duration: .3s;
    transition-duration: 0.3s;
}

input[type=checkbox]:checked ~ label .box {
    border-color: #cf2f2f;
}

.checkbox-group label .box {
    border-width: 1px;
    border-style: solid;
    border-color: #e5e5e5;
    background: #fff;
    height: 20px;
    width: 20px;
    z-index: 9;
    margin-top: 2px;
    -webkit-transition-delay: .2s;
    -moz-transition-delay: .2s;
    transition-delay: 0.2s;
}

.checkbox-group label .check:before {
    content: "\e876";
    color: #cf2f2f;
    font-size: 18px;
    line-height: 1em;
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
}

.checkbox-group {
    position: relative;
    margin-bottom: 10px;
}

input[type="radio"], input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

.enter {
    width: 60%;
    margin-left: 20%;
    margin-top: 10px;
    font-size: 40px !important;
    border-radius: 40px !important;
}

#securityDiv {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.codeSecurity {
    padding: 5px 10px;
    width: 130px !important;
}

.shownSecurity {
    padding: 5px 10px;
    width: 60px !important;
}

#securityInput {
    text-transform: uppercase;
    width: 150px !important;
}

.sendForm {
    margin-left: auto !important;
    margin-top: 0 !important;
    background-color: #b91212 !important;
    width: 15% !important;
    transition: all 0.4s ease;
}

    .sendForm:hover {
        color: #ffffff !important;
        background-color: #9a0d0d !important;
    }

#sendForm {
    margin: 0 20px !important;
    height: 36px;
}

.openAssentTable td {
    border-color: #000000 !important;
}

.formFooter {
    margin-top: 50px;
    padding: 20px 100px;
    background-color: #2a2e31;
}

.hideCheckbox input[type=checkbox],
.checkbox-group input[type=checkbox] {
    display: none;
}

.allowAllAuthority {
    width: 158px;
    padding: 4px 0 !important;
    background-color: #b91212 !important;
    border-color: #b91212 !important;
    color: #fff !important;
    transition: all 0.4s ease !important;
}

    .allowAllAuthority:hover {
        background-color: #fff !important;
        color: #b91212 !important;
    }

@media(max-width:768px) {
    #registerContainer {
        width: 98%
    }

    .register {
        display: block !important;
    }

        .register div,
        .userInformation div {
            width: 100% !important;
        }

        .register input,
        .register textarea,
        .register select,
        .userInformationRow input {
            width: 95% !important;
        }

    .agreementRow input {
        width: 5% !important;
    }

    .userInformationRow,
    .checktitles {
        display: block !important;
    }

    .sendForm {
        width: 40% !important;
    }

    .enter {
        width: 90%;
        margin-left: 5%;
        font-size: 25px !important;
    }
}

@media(max-width:500px) {
    .sendForm {
        width: 100% !important;
    }

    #securityDiv {
        display: block;
    }

    .codeSecurity {
        min-width: 129px;
    }

    #sendForm {
        min-width: 150px;
        position: relative;
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    #securityInput {
        width: 75px !important;
    }
}
/* Cheque Payment Start */
.form-container {
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.form-input {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0);
    height: 40px;
    border: 1px solid #e5e5e5;
    padding: 6px 12px;
    color: #000;
    transition: all 0.2s ease;
}

    .form-input:focus {
        border: 1px solid #dadada;
        box-shadow: 0 0 5px #c3c3c3;
    }

.form-button {
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 6px 30px;
    border-radius: 4px;
    transition: all 0.4s ease;
}

    .form-button:hover {
        background-color: #a7a7a7;
        color: white;
    }

.form-label {
    position: relative;
    margin-left: 10px;
}

    .form-label:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 4px;
        background-color: #cf2f2f;
        left: -10px;
    }

.m-5 {
    margin-bottom: 25px;
    margin-top: 25px;
}

.chequeButton {
    display: block;
    margin-top: 25px;
    margin-bottom: 15px;
    padding: 5px 45px;
    border: 1px solid transparent;
    background-color: #5cb85c;
    border-color: #4cae4c;
    color: white;
    border-radius: 16px;
    transition: all 0.4s ease;
}

    .chequeButton:hover {
        background-color: #28a745;
    }

.shipping_place select {
    background-color: #0563af;
    color: white;
    padding: 12px;
    width: 250px;
    border: none;
    font-size: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    -webkit-appearance: button;
    appearance: button;
    outline: none;
}

.shipping_place::before {
    content: "\f13a";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    text-align: center;
    font-size: 28px;
    line-height: 45px;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.shipping_place:hover::before {
    color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.2);
}

.shipping_place select option {
    padding: 30px;
}
/*Refund new css*/
.waiting_refund, .declined_refund, .approved_refund {
    height: 50px;
    width: 75px;
    min-width: 75px;
    display: flex;
    justify-content: center;
    align-items: center
}

.waiting_refund {
    background-color: #fba201
}

.approved_refund {
    background-color: #25b119
}

.declined_refund {
    background-color: #cf2f2f
}

.refunds {
    width: 100%;
    padding: 10px 10px;
    box-shadow: 5px 5px 10px #c1c1c1;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 19px;
    display: flex;
    align-items: center;
    text-transform : uppercase
}
.refunds_orders {
    width: 100%;
    padding: 10px 7px;
    box-shadow: 5px 5px 10px #c1c1c1;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    color: #000;
    font-size: 17px;
    text-transform: uppercase;
}

.refunds_container .fa.fa-folder, .refunds_container .fa.fa-plus, .refunds_container .fa.fa-undo {
    font-size: 25px;
    color: white
}
@media(max-width:500px){
    .refunds {
        font-size:14px;
        line-height : 1
    }
}
.new_refund {
    cursor: pointer;
}

.new_refund_icon {
    height: 50px;
    width: 75px;
    min-width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #25b119
}
    .new_refund_icon.start_refund {
        background-color: #1f8494
    }

    .new_refund_icon.faulty {
        background-color: #cf2f2f
    }
#undo_button {
    height: 50px;
    width: 75px;
    min-width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fba201;
    cursor : pointer
}
.new_refund_row {
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out
}

.refund_selects {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out
}
#refundContainer {
    opacity: 0;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out
}
.slide_text_left {
    animation-name: slideTextLeft;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@-webkit-keyframes slideTextLeft {
    0% {
        right:0;
        opacity : 1
    }
    40% {
        right:-20px
    }
    100% {
        right: 20px;
        opacity: 0
    }
}
.refund_detail {
    border: 1px solid #dedede;
    box-shadow: 2px 2px 4px #e8e8e8;
    margin-top: 10px;
    padding: 5px;
    height: 37px;
    overflow-y: hidden;
    transition: all 0.8s ease-in-out
}
.refunds_container .table-responsive{
    border:none
}
.declined_refund_details, .approved_refund_details, .waiting_refund_details {
    opacity: 0;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out
}
#waitingRefund, #steady_button {
    animation-name: deActive;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
#faulty_button, #steady_button {
    animation-name: deActive;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
.refunds_container .title-under {
    margin-bottom: 1.667em;
}
.title_appeal {
    margin-top: 1.667em;
}
.activeRefund {
    animation-name: active;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}
@-webkit-keyframes activeRefund{
    0% {
        top:0;
        left:0
    }
    100%{
        top : -10px;
        left : -10px
    }
}
@-webkit-keyframes deActive {
    0% {
        top: -10px;
        left: -10px
    }

    100% {
        top: 0;
        left: 0
    }
}
@-webkit-keyframes formActive {
    0% {
        opacity : 0
    }
    100% {
        opacity: 1;
        width: calc(100% - 92px)
    }
}
@-webkit-keyframes formDeActive {
    0% {
        opacity: 1;
        width: calc(100% - 50px)
    }
    100% {
        opacity: 1;
    }
}
#steady {
    padding: 70px 30px 20px 30px;
    border: 1.5px solid #25b119
}
#faulty {
    padding: 70px 30px 20px 30px;
    border: 1.5px solid #b91212
}
@media(min-width:1770px){
    .refund_left_block {
        margin-left: 116px;
    }

    .refund_right_block {
        margin-left: 29px;
    }
}
@media(min-width:1200px) {
    .refund_left_block {
        margin-left: 86px;
    }
}
@media(max-width:992px){
    #steady_button, #waitingRefund {
        margin-bottom: 25px;
    }
}
@media(min-width:992px) {
    #steady_button, #waitingRefund {
        margin-left: 25%;
        margin-right: 25%;
    }
}
@media(max-width:768px){
    #steady button, #faulty button{
        width:100%;
    }
}
.faulty_header,.steady_header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-transform : uppercase
}
@media(max-width:550px) {
    .faulty_header, .steady_header {
        width: 85%;
        text-align: center;
    }
    .car_informations{
        flex-direction:column
    }
}
#steady_button,#waitingRefund{
    cursor : pointer
}
.d-flex{
display:flex
}