orders.scss 3.23 KB
@import "../../vars";
@import "../../mixins";

// таб мои заказы
.orders-acc-wrapper {
    max-width: 985px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
}

.orders-acc {
    width: 100%; 
    min-height: 98px;
    border: 1px solid #ABB2BF;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 50px;

    &__content {
        font-weight: 600;
        font-size: 16px;
        line-height: 22px;
        color: $vmainGrey;
        display: flex;
        margin-top: 38px;

        > span {
            font-weight: 400;
            color: $vmainGrey;
            margin-right: 10px;
            color: #ABB2BF;
        }

        &.number {
            margin-left: 20px;
        }
    }

    &__btn {
        @include btn-orange;
        padding: 12px 31px 12px 10px;
        margin-right: 20px;
        position: relative;
        font-weight: 600px;
        font-size: 16px;       

        &:after {
            position: absolute;
            content: "";
            background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.244078 5.24408C-0.0813593 5.56951 -0.0813593 6.09715 0.244078 6.42259L7.5 13.6785L14.7559 6.42259C15.0814 6.09715 15.0814 5.56952 14.7559 5.24408C14.4305 4.91864 13.9028 4.91864 13.5774 5.24408L7.5 11.3215L1.42259 5.24408C1.09715 4.91864 0.569515 4.91864 0.244078 5.24408Z' fill='white'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: cover;
            width: 10px;
            height: 9.68px;
            right: 16px;
            top: 15px;
            z-index: 3;
        }

        &--active {
            @include btn-orange-hover;
            padding: 12px 56px 12px 56px;
            position: relative;
            font-weight: 600px;
            font-size: 16px;

            &:after {
                background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.244078 12.7559C-0.0813589 12.4305 -0.0813589 11.9028 0.244078 11.5774L7.5 4.32149L14.7559 11.5774C15.0814 11.9028 15.0814 12.4305 14.7559 12.7559C14.4305 13.0814 13.9028 13.0814 13.5774 12.7559L7.5 6.67851L1.42259 12.7559C1.09715 13.0814 0.569515 13.0814 0.244078 12.7559Z' fill='%23F2994A'/%3E%3C/svg%3E");
            }
        }
    }

    > :nth-last-child(n+3) {
        margin-right: 76px;
    }
}

.orders-panel {
    display: none;
    margin-top: 40px;
    max-width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-left: 20px;
}

.orders-panel-data {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 22px;
    color: $vmainGrey;

    > :not(:last-child) {
        margin-bottom: 10px;
    }

    &__title {
        font-weight: 600;
    }

    &__content {
        font-weight: 400;
    }
}

.orders-panel-title {
    border: none;
}

.orders-panel-svg-act {
    display: inline-block;
}

// данные компании отсутствуют
.orders-panel-svg {
    font-weight: 600 !important;
    display: none;
}

.test {
    
}