:root {
    --prymary-300: #DDA600;
    --prymary-200: #F5B901;
    --prymary-100: #FEF5DB;
    --gray-500: #252627;
    --gray-400: #878787;
    --gray-300: #D7D7D7;
    --gray-200: #E1E1E1;
    --gray-100: #F4F4F4;
    --gray-000: #fff;
    --sidebar-width: 150px;
    --menu-height: 140px;
  }
.header__ticket , .title__ticket{
    background-color: var(--gray-100);
    border-radius: 8px;
    h5{
        color: var(--gray-500);
        font-size: 1.1rem;
    }
    a{
        display: flex;
        flex-direction: row;
        align-items: center;
        color: var(--gray-500) ;
        span{
            color: var(--prymary-200);
        }
    }
    p{
        color: var(--gray-500);
    }
    span{
        color: var(--gray-400);
    }
}
.title__ticket{
    span{
        color: var(--gray-400);
    }
    p{
        color: var(--gray-500);
    }
}
.container-tickets{
    a{
        color: var(--gray-500);
    }
    .header_table{
        background-color: var(--prymary-100);
        padding: 10px 0;
        border-radius: 8px;
        p{
            margin: 0;
        }
    }
    .body_table{
        border: 1px solid var(--gray-200);
        border-radius: 8px;
        padding: 8px 0;
        &:hover{
            background-color: var(--gray-100);
            border-color: var(--gray-100);
        }
        
    }
    .empty-list{
        height: 300px;
        span{
            font-size: 8rem;
            color: var(--gray-300);
            margin-bottom: 15px;
        }
    }
}
.status-tickets{
    .status{
        border-radius: 8px;
        border: 1px solid var(--gray-gray-300, #D7D7D7);
        background: #FFF;
        width: 290px;
        padding: 1rem;
        border-radius: 8px;
        align-items: center;
        span{
            font-size: 3rem;
            color: var(--gray-400);
        }
        p{
            margin: 0;
        }
        h5{
            font-size: 18px;
            font-weight: 600;
            line-height: 36px;
            text-align: center;
            text-underline-position: from-font;
            text-decoration-skip-ink: none;
            color:#878787;

        }
        &:hover{
            background-color: var(--prymary-100);
        }
    }
}

form.new-ticket_form{
    
    input,select,textarea{
        width: 100%;
        padding: .9rem;
        border: 1px solid #e3e3e3;
        border-radius: 8px;
        font-size: 1.1rem;
        &::placeholder{
            color: var(--gray-400);
            font-size: .9rem;
        }
        &:focus{
            border-color: var(--prymary-200);
            box-shadow: none;
        }
        &:focus-visible{
            outline: none;
        }
    }
    
    textarea{
        height: 200px;
    }
    .form-select{
        color: var(--gray-400);
        font-size: .9rem;
        &:focus{
            border-color: var(--prymary-200);
            box-shadow: none;
        }
        &:focus-visible{
            outline: none;
        }
    }
    input.file{
        border: none;
       float: right; 
       width: auto;
    }
    button{
        background-color: var(--prymary-200);
        color: var(--gray-000);
        float: left;
        margin-top: 10px;
        padding-inline: 30px;
        &:hover{
            color: var(--gray-000);
            background-color: var(--prymary-300);
        }
    }
    /* .tkt-child-department{
        &:not(.tkt-child-department-0){
            display: none;
        }
    } */
}
.tkt-child-department:not(.tkt-child-department-0){
    display: none;
}

.ticket-body{
    background-color: var(--gray-100);
    border-radius: 8px;
    padding: 20px !important;
    form{
      textarea{
        height: 150px;
        border: 1px solid var(--gray-300);
        border-radius: 5px;
      }
    }
    .ticket{
        .ticket-user_image{
            position: relative;
            display: block;
            span{
                position: relative;
                top: 10px;
                background-color: var(--gray-000);
                border-radius: 8px;
            }
        }
        .tickect-user_content{
            .content{
                background-color: var(--gray-000);
                border-radius: 8px 0 8px 8px;
                box-shadow: 2px 3px 6px -1px var(--gray-200);
            }
        }
    }
  }








.woocommerce{
    background: white;
    /* border: 1px dashed #ece9e6; */
    border-radius: 10px;
}
.woocommerce-account .woocommerce-MyAccount-navigation{
    /* background-color: whitesmoke; */
    color: #000;
    width: 25%;
}
.woocommerce .woocommerce-MyAccount-navigation ul{
    padding: 0;
}
.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a{
    color: #000 !important;
}

         
.woocommerce .woocommerce-MyAccount-navigation ul li {
    background-image: linear-gradient(to right, #ECE9E6 0%, #FFFFFF  51%, #ECE9E6  100%);
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
  }

  .woocommerce .woocommerce-MyAccount-navigation ul li:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }

 .page-numbers{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
    li{
        padding: .5rem 1rem;
        border-radius: .2rem;
        background-color: var(--gray-100);
        &:has(span) {
            background-color: var(--prymary-100);
        }
    }
 }

 .back-btn-ticket{
    border-radius: 8px;
    border: 1px solid var(--primary-primary-200, #F5B901);
    background: var(--gray-gray-100, #F4F4F4);
    color: var(--primary-primary-200, #F5B901) !important;
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    padding: 4px 10px;
 }

 .name-of-ticket{
    color: var(--gray-gray-400, #878787);
    text-align: right !important;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
 }

 .data-ticket{
    color: var(--gray-gray-400, #878787);
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
 }