

.choose-left{
    width: calc(100% - 645px);
    padding-right: 145px;
}
.choose-left ul.inner-choose-list li{
    padding-left: 0;
    margin-bottom: 35px;
}
.choose-left ul.inner-choose-list li .ch-box{
    display: flex;
    
}
.choose-left ul.inner-choose-list li  .ch-icon {
    width: 80px;
    height: 80px;
    background: var(--blue);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.choose-left ul.inner-choose-list li .ch-info{
    text-align: left;
    width: calc(100% - 80px);
    padding-left: 40px;

    .heading-18{
        margin-bottom: 10px;
    }

}
.choose-right{
    width: 645px;
}
table{
    width: 100%;
    background-color: var(--white);
}
.table-wrapper table thead tr{
background-color: var(--blue);
}
.table-wrapper table thead tr th{
   
    text-align: left;
    padding: 18px 40px;
    vertical-align: middle;
}
.table-wrapper table thead tr th p{
    font-size: 18px;
    color: var(--white);
    font-weight: bold;
    line-height: 24px;
    display: flex;
    column-gap: 10px;
}
.table-wrapper table tbody tr td{
    width: 33.33%;
    padding:18px 70px 18px 40px;
    vertical-align: middle;

    & p{
        position: relative;
        font-size: 16px;
        color: var(--paragraph);
        line-height: 20px;
        padding-left: 25px;

        &:before{
            content: "";
            position: absolute;
            left:0;
            top:8px;
            width: 10px;
            height: 2px;
            background-color: var(--blue);
        }
    }

    
}
.table-head-wrap {
    margin-bottom: 20px;
}
.btn-setting {
    background: #EEEEEE;
    border-radius: 0;
    padding: 0 12px 0 45px;
    border-color:#EEEEEE;
    font-size: 16px;
    color: var(--blue);
    text-transform: capitalize;

    &:before{
        content: "";
        position: absolute;
        top:0;
        left:0;
        right:0;
        bottom: 0;
        margin: auto;
        width: calc(100% - 5px);
        height: calc(100% - 5px);
        border:1px solid var(--white);
    }
}
.btn-setting  img{
    position: absolute;
    bottom: 0;
    left: 0;
}
.table-wrapper{
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .table-head-wrap{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
   .container .table-wrapper:not(:first-child){
    margin-top: 90px;
}
}

/* ************  START  MEDIA QUERY ************ */

@media (max-width: 1439.99px)  {
    .choose-right {width: 500px;}
    .choose-left{
        width: calc(100% - 500px);
        padding-right: 80px;
    }
    .choose-left ul.inner-choose-list li .ch-info{
        padding-left: 20px;
    }
}

@media (max-width: 1199.99px)  {
    .choose-right {width: 350px;}
    .choose-left{
        width: calc(100% - 350px);
        padding-right: 30px;
    }
    .choose-left ul.inner-choose-list li {
        margin-bottom: 20px;
    }
    .choose-left ul.inner-choose-list li .ch-icon{
        width: 60px;
        height: 60px;
        padding: 10px;
    }
  
}

@media (max-width: 991.99px)  {
    .choose-right , .choose-left {width: 100%;}
    .choose-left{
        padding-right: 0;
        margin-bottom: 30px;
    }
    .table-wrapper table thead tr th ,
    .table-wrapper table tbody tr td{
        padding: 10px 15px
    }
    .table-wrapper table tbody tr td {
        & p {
            padding-left: 0;

            &:before {
                content: none;
            }
        }
    }

    .table-container{
        overflow: auto;

        & table{
            width: 100%;
            min-width: 900px;
        }
    }

    .table-wrapper table thead tr th p > img{
        display: none;
    }
}