/*=================================Agency email sales videos and status page=========================================*/

.read-box {
    width: 30px;
    height: 30px;
    background: #183a1d;
    border-radius: 50%;
}


/* Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically. */

#agencyDataTable {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
}

#agencyDataTable table {
    width: 100%;
    border-collapse: collapse;
}

#agencyDataTable table th {
    background: #183a1d;
    color: white;
    font-weight: bold;
    cursor: cell;
}

#agencyDataTable table td,
#agencyDataTable table th {
    padding: 6px 15px;
    border: 0px solid #183a1d;
    text-align: left;
    box-sizing: border-box;
}

#agencyDataTable table th {
    padding: 15px 15px;
}

#agencyDataTable table tr:nth-of-type(odd) {
    background: #e1eedd;
}

#agencyDataTable table tr:nth-of-type(even) {
    background: #183e1d47;
}

#agencyDataTable table td a {
    /*color: #183a1d;*/
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #agencyDataTable table {
        margin-top: 106px;
    }
    /* Force table to not be like tables anymore */
    #agencyDataTable table,
    #agencyDataTable thead,
    #agencyDataTable tbody,
    #agencyDataTable th,
    #agencyDataTable td,
    #agencyDataTable tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #agencyDataTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #agencyDataTable tr {
        margin: 0 0 1rem 0;
        overflow: auto;
        border-bottom: 1px solid #ccc;
    }
    #agencyDataTable tbody tr:before {
        counter-increment: my-sec-counter;
        content: "";
        background-color: #333;
        display: block;
        height: 0px;
    }
    #agencyDataTable tr:nth-child(odd) {
        background: #ccc;
    }
    #agencyDataTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        margin-right: 0%;
        display: block;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #agencyDataTable td:before {
        /* Top/left values mimic padding */
        font-weight: bold;
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding-left: 0px;
    }
    /*Label the data You could also use a data-* attribute and content for this. That way "bloats" the HTML,
    this way means you need to keep HTML and CSS in sync.Lea Verou has a clever way to handle with text-shadow. */
    #agencyDataTable td:nth-of-type(1):before {
        content: "Agencies";
    }
    #agencyDataTable td:nth-of-type(2):before {
        content: "No of contacts";
    }
    #agencyDataTable td:nth-of-type(3):before {
        content: "Website";
    }
    #agencyDataTable td:nth-of-type(4):before {
        content: "Progress";
    }
    #agencyDataTable td:nth-of-type(5):before {
        content: "Action";
    }
}


/*=============================contact mail===============================*/

#agencycontactdetail input {
    height: 32px;
    margin-bottom: 10px;
}


/* Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically. */

#agencyContactTable {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
}

#agencyContactTable table {
    width: 100%;
    border-collapse: collapse;
}

#agencyContactTable table th {
    background: #183a1d;
    color: white;
    font-weight: bold;
    cursor: cell;
}

#agencyContactTable table td,
#agencyContactTable table th {
    padding: 6px 15px;
    border: 0px solid #183a1d;
    text-align: left;
    box-sizing: border-box;
}

#agencyContactTable table th {
    padding: 15px 15px;
}

#agencyContactTable table tr:nth-of-type(odd) {
    background: #e1eedd;
}

#agencyContactTable table tr:nth-of-type(even) {
    background: #183e1d47;
}

#agencyContactTable table td a {
    /* color: #183a1d;*/
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #agencyContactTable table {
        margin-top: 106px;
    }
    /* Force table to not be like tables anymore */
    #agencyContactTable table,
    #agencyContactTable thead,
    #agencyContactTable tbody,
    #agencyContactTable th,
    #agencyContactTable td,
    #agencyContactTable tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #agencyContactTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #agencyContactTable tr {
        margin: 0 0 1rem 0;
        overflow: auto;
        border-bottom: 1px solid #ccc;
    }
    #agencyContactTable tbody tr:before {
        counter-increment: my-sec-counter;
        content: "";
        background-color: #333;
        display: block;
        height: 0px;
    }
    #agencyContactTable tr:nth-child(odd) {
        background: #ccc;
    }
    #agencyContactTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        margin-right: 0%;
        display: block;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #agencyContactTable td:before {
        /* Top/left values mimic padding */
        font-weight: bold;
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding-left: 0px;
    }
    /*Label the data You could also use a data-* attribute and content for this. That way "bloats" the HTML,
    this way means you need to keep HTML and CSS in sync.Lea Verou has a clever way to handle with text-shadow. */
    #agencyContactTable td:nth-of-type(1):before {
        content: "Contact name";
    }
    #agencyContactTable td:nth-of-type(2):before {
        content: "Contacts email";
    }
    #agencyContactTable td:nth-of-type(3):before {
        content: "No of account";
    }
    #agencyContactTable td:nth-of-type(4):before {
        content: "";
    }
    #agencyContactTable td:nth-of-type(5):before {
        content: "Action";
    }
}


/*=============================Agency contact account page===============================*/

#agencycontactaccountedit input {
    margin-bottom: 10px;
}


/* Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically. */

#agencyContactaccountTable {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
}

#agencyContactaccountTable table {
    width: 100%;
    border-collapse: collapse;
}

#agencyContactaccountTable table th {
    background: #183a1d;
    color: white;
    font-weight: bold;
    cursor: cell;
}

#agencyContactaccountTable table td,
#agencyContactaccountTable table th {
    padding: 6px 15px;
    border: 0px solid #183a1d;
    text-align: left;
    box-sizing: border-box;
}

#agencyContactaccountTable table th {
    padding: 15px 15px;
}

#agencyContactaccountTable table tr:nth-of-type(odd) {
    background: #e1eedd;
}

#agencyContactaccountTable table tr:nth-of-type(even) {
    background: #183e1d47;
}

#agencyContactaccountTable table td a {
    /*color: #183a1d;*/
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #agencyContactaccountTable table {
        margin-top: 106px;
    }
    /* Force table to not be like tables anymore */
    #agencyContactaccountTable table,
    #agencyContactaccountTable thead,
    #agencyContactaccountTable tbody,
    #agencyContactaccountTable th,
    #agencyContactaccountTable td,
    #agencyContactaccountTable tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #agencyContactaccountTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #agencyContactaccountTable tr {
        margin: 0 0 1rem 0;
        overflow: auto;
        border-bottom: 1px solid #ccc;
    }
    #agencyContactaccountTable tbody tr:before {
        counter-increment: my-sec-counter;
        content: "";
        background-color: #333;
        display: block;
        height: 0px;
    }
    #agencyContactaccountTable tr:nth-child(odd) {
        background: #ccc;
    }
    #agencyContactaccountTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        margin-right: 0%;
        display: block;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #agencyContactaccountTable td:before {
        /* Top/left values mimic padding */
        font-weight: bold;
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding-left: 0px;
    }
    /*Label the data You could also use a data-* attribute and content for this. That way "bloats" the HTML,
    this way means you need to keep HTML and CSS in sync.Lea Verou has a clever way to handle with text-shadow. */
    #agencyContactaccountTable td:nth-of-type(1):before {
        content: "Contact name";
    }
    #agencyContactaccountTable td:nth-of-type(2):before {
        content: "Contacts email";
    }
    #agencyContactaccountTable td:nth-of-type(3):before {
        content: "No of account";
    }
    #agencyContactaccountTable td:nth-of-type(4):before {
        content: "";
    }
    #agencyContactaccountTable td:nth-of-type(5):before {
        content: "Date";
    }
    #agencyContactaccountTable td:nth-of-type(6):before {
        content: "Action";
    }
}


/*=============================agency contact account sales video page=====================*/

h2.title-video-agency {
    padding-bottom: 10px;
    margin: 0;
    text-align: center;
    font-size: 56px;
    color: #183a1d;
    font-weight: 400;
    line-height: 56px;
}

a.link-video-agency {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding-bottom: 0px;
    text-decoration: underline;
}

a.link-video-agency:hover {
    /*color: #183e1d;*/
}

.inner-title {
    font-size: 18px;
    color: #000;
    padding-bottom: 10px;
    margin: 0;
    font-weight: normal;
}

.inner-agancy-content p {
    color: #000;
    font-size: 18px;
    font-weight: normal;
}

.agency-sales-video {
    width: 100%;
    float: left;
    text-align: center;
}

.agency-sales-video button {
    width: 200px;
    margin-right: 15px;
}

.agency-sales-video button:hover {
    /*-webkit-box-shadow: 100px 0px 0 0 #183a1d inset, -100px 0px 0 0 #183a1d inset;
    border: 2px solid #183a1d;*/
    /*background: #183a1d;*/
}

.agency-sales-video button a:hover {
    color: #fff;
}

.btn-fill:hover a {
    color: #183a1d !important;
}

.inner-bottom-title {
    color: #000;
    font-weight: normal;
}


/*=============================sales people email page======================*/

p.salespeoplmail-txt {
    text-align: center;
    font-size: 26px;
    color: #183e1d;
    padding-bottom: 50px;
}

.salesvideo {
    position: absolute;
    bottom: 18px;
    right: 20px;
    width: 50px;
    border-color: #183e1d !important;
}

.video-salespeople {
    position: relative;
}

.video-salespeople .vid-form {
    background: #e1eedd;
    display: flex;
    justify-content: center;
    align-items: center
}

.video-salespeople .vid-form i {
    font-size: 80px;
    color: #183a1d;
    cursor: pointer;
}

.salesemailpeoplebtn:hover {
    color: #fff;
    /*-webkit-box-shadow: 165px 0px 0 0 #183a1d inset, -165px 0px 0 0 #183a1d inset;
    border: 2px solid #183a1d;*/
    background: #183a1d;
}

.salesemailpeoplebtn {
    margin-top: 25px;
    padding: 0 10px;
}

a.hover-white:hover {
    color: #fff;
}


/*=============================Agency client months page=======================*/


/* Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically. */

#agencyClientmonthTable {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
}

#agencyClientmonthTable table {
    width: 100%;
    border-collapse: collapse;
}

#agencyClientmonthTable table th {
    background: #183a1d;
    color: white;
    font-weight: bold;
    cursor: cell;
}

#agencyClientmonthTable table td,
#agencyClientmonthTable table th {
    padding: 6px 15px;
    border: 0px solid #183a1d;
    text-align: left;
    box-sizing: border-box;
}

#agencyClientmonthTable table th {
    padding: 15px 15px;
}

#agencyClientmonthTable table tr:nth-of-type(odd) {
    background: #e1eedd;
}

#agencyClientmonthTable table tr:nth-of-type(even) {
    background: #183e1d47;
}

#agencyClientmonthTable table td a {
    /*color: #183a1d;*/
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #agencyClientmonthTable table {
        margin-top: 106px;
    }
    /* Force table to not be like tables anymore */
    #agencyClientmonthTable table,
    #agencyClientmonthTable thead,
    #agencyClientmonthTable tbody,
    #agencyClientmonthTable th,
    #agencyClientmonthTable td,
    #agencyClientmonthTable tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #agencyClientmonthTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #agencyClientmonthTable tr {
        margin: 0 0 1rem 0;
        overflow: auto;
        border-bottom: 1px solid #ccc;
    }
    #agencyClientmonthTable tbody tr:before {
        counter-increment: my-sec-counter;
        content: "";
        background-color: #333;
        display: block;
        height: 1px;
    }
    #agencyClientmonthTable tr:nth-child(odd) {
        background: #ccc;
    }
    #agencyClientmonthTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        margin-right: 0%;
        display: block;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #agencyClientmonthTable td:before {
        /* Top/left values mimic padding */
        font-weight: bold;
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding-left: 0px;
    }
    /*Label the data You could also use a data-* attribute and content for this. That way "bloats" the HTML,
    this way means you need to keep HTML and CSS in sync.Lea Verou has a clever way to handle with text-shadow. */
    #agencyClientmonthTable td:nth-of-type(1):before {
        content: "Sales";
    }
    #agencyClientmonthTable td:nth-of-type(2):before {
        content: "$ charge";
    }
}


/*==============================client months details page====================*/

#agencyClientmonthdetailsTable table tr:nth-of-type(even) {
    background: #183e1d47;
}


/* Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically. */

#agencyClientmonthdetailsTable {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
}

#agencyClientmonthdetailsTable table {
    width: 100%;
    border-collapse: collapse;
}

#agencyClientmonthdetailsTable table th {
    background: #183a1d;
    color: white;
    font-weight: bold;
    cursor: cell;
}

#agencyClientmonthdetailsTable table td,
#agencyClientmonthdetailsTable table th {
    padding: 6px 15px;
    border: 0px solid #183a1d;
    text-align: left;
    box-sizing: border-box;
}

#agencyClientmonthdetailsTable table th {
    padding: 15px 15px;
}

#agencyClientmonthdetailsTable table tr:nth-of-type(odd) {
    background: #e1eedd;
}

#agencyClientmonthdetailsTable table td a {
    /*color: #183a1d;*/
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #agencyClientmonthdetailsTable table {
        margin-top: 106px;
    }
    /* Force table to not be like tables anymore */
    #agencyClientmonthdetailsTable table,
    #agencyClientmonthdetailsTable thead,
    #agencyClientmonthdetailsTable tbody,
    #agencyClientmonthdetailsTable th,
    #agencyClientmonthdetailsTable td,
    #agencyClientmonthdetailsTable tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #agencyClientmonthdetailsTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #agencyClientmonthdetailsTable tr {
        margin: 0 0 1rem 0;
        overflow: auto;
        border-bottom: 1px solid #ccc;
    }
    #agencyClientmonthdetailsTable tbody tr:before {
        counter-increment: my-sec-counter;
        content: "";
        background-color: #333;
        display: block;
        height: 0px;
    }
    #agencyClientmonthdetailsTable tr:nth-child(odd) {
        background: #ccc;
    }
    #agencyClientmonthdetailsTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        margin-right: 0%;
        display: block;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #agencyClientmonthdetailsTable td:before {
        /* Top/left values mimic padding */
        font-weight: bold;
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding-left: 0px;
    }
    /*Label the data You could also use a data-* attribute and content for this. That way "bloats" the HTML,
    this way means you need to keep HTML and CSS in sync.Lea Verou has a clever way to handle with text-shadow. */
    #agencyClientmonthdetailsTable td:nth-of-type(1):before {
        content: "Account name";
    }
    #agencyClientmonthdetailsTable td:nth-of-type(2):before {
        content: "Videmails";
    }
    #agencyClientmonthdetailsTable td:nth-of-type(3):before {
        content: "$ charge";
    }
    #agencyClientmonthdetailsTable td:nth-of-type(4):before {
        content: "Date";
    }
    #agencyClientmonthdetailsTable td:nth-of-type(5):before {
        content: "Commisssion";
    }
}


/*=============================Agency landing registration page================*/

.agencyregister-landing video {
    height: 100%;
}

.landing-registration input {
    height: 32px;
    margin-bottom: 10px;
}

.landing-registration select {
    margin-bottom: 10px;
}

.landing-registration label {
    margin-bottom: 0;
}

.heading-landingpage-registration {
    padding-bottom: 50px !important;
}


/*==============================Agency sales monthly===========================*/


/* Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically. */

#agencysalesmonthlyTable {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
}

#agencysalesmonthlyTable table {
    width: 100%;
    border-collapse: collapse;
}

#agencysalesmonthlyTable table th {
    background: #183a1d;
    color: white;
    font-weight: bold;
    cursor: cell;
}

#agencysalesmonthlyTable table td,
#agencysalesmonthlyTable table th {
    padding: 6px 15px;
    border: 0px solid #183a1d;
    text-align: left;
    box-sizing: border-box;
}

#agencysalesmonthlyTable table th {
    padding: 15px 15px;
}

#agencysalesmonthlyTable table tr:nth-of-type(odd) {
    background: #e1eedd;
}

#agencysalesmonthlyTable table tr:nth-of-type(even) {
    background: #183e1d47;
}

#agencysalesmonthlyTable table td a {
    /* color: #183a1d;*/
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #agencysalesmonthlyTable table {
        margin-top: 106px;
    }
    /* Force table to not be like tables anymore */
    #agencysalesmonthlyTable table,
    #agencysalesmonthlyTable thead,
    #agencysalesmonthlyTable tbody,
    #agencysalesmonthlyTable th,
    #agencysalesmonthlyTable td,
    #agencysalesmonthlyTable tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #agencysalesmonthlyTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #agencysalesmonthlyTable tr {
        margin: 0 0 1rem 0;
        overflow: auto;
        border-bottom: 1px solid #ccc;
    }
    #agencysalesmonthlyTable tbody tr:before {
        counter-increment: my-sec-counter;
        content: "";
        background-color: #333;
        display: block;
        height: 1px;
    }
    #agencysalesmonthlyTable tr:nth-child(odd) {
        background: #ccc;
    }
    #agencysalesmonthlyTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        margin-right: 0%;
        display: block;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #agencysalesmonthlyTable td:before {
        /* Top/left values mimic padding */
        font-weight: bold;
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding-left: 0px;
    }
    /*Label the data You could also use a data-* attribute and content for this. That way "bloats" the HTML,
    this way means you need to keep HTML and CSS in sync.Lea Verou has a clever way to handle with text-shadow. */
    #agencysalesmonthlyTable td:nth-of-type(1):before {
        content: "Sales";
    }
    #agencysalesmonthlyTable td:nth-of-type(2):before {
        content: "$ charge";
    }
}


/*=============================agency sales monthly details=================*/

#agencysalesmonthlydetailsTable table tr:nth-of-type(even) {
    background: #183e1d47;
}


/* Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically. */

#agencysalesmonthlydetailsTable {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
}

#agencysalesmonthlydetailsTable table {
    width: 100%;
    border-collapse: collapse;
}

#agencysalesmonthlydetailsTable table th {
    background: #183a1d;
    color: white;
    font-weight: bold;
    cursor: cell;
}

#agencysalesmonthlydetailsTable table td,
#agencysalesmonthlydetailsTable table th {
    padding: 6px 15px;
    border: 0px solid #183a1d;
    text-align: left;
    box-sizing: border-box;
}

#agencysalesmonthlydetailsTable table th {
    padding: 15px 15px;
}

#agencysalesmonthlydetailsTable table tr:nth-of-type(odd) {
    background: #e1eedd;
}

#agencysalesmonthlydetailsTable table td a {
    /*color: #183a1d;*/
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #agencysalesmonthlydetailsTable table {
        margin-top: 106px;
    }
    /* Force table to not be like tables anymore */
    #agencysalesmonthlydetailsTable table,
    #agencysalesmonthlydetailsTable thead,
    #agencysalesmonthlydetailsTable tbody,
    #agencysalesmonthlydetailsTable th,
    #agencysalesmonthlydetailsTable td,
    #agencysalesmonthlydetailsTable tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #agencysalesmonthlydetailsTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #agencysalesmonthlydetailsTable tr {
        margin: 0 0 1rem 0;
        overflow: auto;
        border-bottom: 1px solid #ccc;
    }
    #agencysalesmonthlydetailsTable tbody tr:before {
        counter-increment: my-sec-counter;
        content: "";
        background-color: #333;
        display: block;
        height: 0px;
    }
    #agencysalesmonthlydetailsTable tr:nth-child(odd) {
        background: #ccc;
    }
    #agencysalesmonthlydetailsTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        margin-right: 0%;
        display: block;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #agencysalesmonthlydetailsTable td:before {
        /* Top/left values mimic padding */
        font-weight: bold;
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding-left: 0px;
    }
    /*Label the data You could also use a data-* attribute and content for this. That way "bloats" the HTML,
    this way means you need to keep HTML and CSS in sync.Lea Verou has a clever way to handle with text-shadow. */
    /*#agencysalesmonthlydetailsTable td:nth-of-type(1):before { content: "Sales"; }*/
    #agencysalesmonthlydetailsTable td:nth-of-type(1):before {
        content: "Agencies";
    }
    #agencysalesmonthlydetailsTable td:nth-of-type(2):before {
        content: "$ charge";
    }
    #agencysalesmonthlydetailsTable td:nth-of-type(3):before {
        content: "Commisssion";
    }
}


/*=============================Sales monthly agencies accounts page================*/

#agencysalesmonthlyaccountsTable table tr:nth-of-type(even) {
    background: #183e1d47;
}


/* Max width before this PARTICULAR table gets nasty. This query will take effect for any screen smaller than 760px and also iPads specifically. */

#agencysalesmonthlyaccountsTable {
    position: relative;
    padding: 0px;
    box-sizing: border-box;
}

#agencysalesmonthlyaccountsTable table {
    width: 100%;
    border-collapse: collapse;
}

#agencysalesmonthlyaccountsTable table th {
    background: #183a1d;
    color: white;
    font-weight: bold;
    cursor: cell;
}

#agencysalesmonthlyaccountsTable table td,
#agencysalesmonthlyaccountsTable table th {
    padding: 6px 15px;
    border: 0px solid #183a1d;
    text-align: left;
    box-sizing: border-box;
}

#agencysalesmonthlyaccountsTable table th {
    padding: 15px 15px;
}

#agencysalesmonthlyaccountsTable table tr:nth-of-type(odd) {
    background: #e1eedd;
}

#agencysalesmonthlyaccountsTable table td a {
    /*color: #183a1d;*/
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #agencysalesmonthlyaccountsTable table {
        margin-top: 106px;
    }
    /* Force table to not be like tables anymore */
    #agencysalesmonthlyaccountsTable table,
    #agencysalesmonthlyaccountsTable thead,
    #agencysalesmonthlyaccountsTable tbody,
    #agencysalesmonthlyaccountsTable th,
    #agencysalesmonthlyaccountsTable td,
    #agencysalesmonthlyaccountsTable tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #agencysalesmonthlyaccountsTable thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #agencysalesmonthlyaccountsTable tr {
        margin: 0 0 1rem 0;
        overflow: auto;
        border-bottom: 1px solid #ccc;
    }
    #agencysalesmonthlyaccountsTable tbody tr:before {
        counter-increment: my-sec-counter;
        content: "";
        background-color: #333;
        display: block;
        height: 0px;
    }
    #agencysalesmonthlyaccountsTable tr:nth-child(odd) {
        background: #ccc;
    }
    #agencysalesmonthlyaccountsTable td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        margin-right: 0%;
        display: block;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
        box-sizing: border-box;
    }
    #agencysalesmonthlyaccountsTable td:before {
        /* Top/left values mimic padding */
        font-weight: bold;
        width: 100%;
        float: left;
        box-sizing: border-box;
        padding-left: 0px;
    }
    /*Label the data You could also use a data-* attribute and content for this. That way "bloats" the HTML,
    this way means you need to keep HTML and CSS in sync.Lea Verou has a clever way to handle with text-shadow. */
    /*#agencysalesmonthlyaccountsTable td:nth-of-type(1):before { content: "Agencies"; }*/
    #agencysalesmonthlyaccountsTable td:nth-of-type(1):before {
        content: "Account name   ";
    }
    #agencysalesmonthlyaccountsTable td:nth-of-type(2):before {
        content: "Commisssion";
    }
}


/*=============================Tablet Part Css============================*/

@media (max-width: 991px) and (min-width: 768px) {
    ul.section_navbar li a {
        font-size: 18px;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    /*========Agency email sales videos and status page=========*/
    .read-box {
        margin-top: 30px;
    }
    #agency-email a.btn.btn_site {
        font-size: 14px;
    }
    /*====================agancy sales video===========*/
    .inner-title {
        padding-top: 30px;
    }
    h2.title-video-agency {
        font-size: 48px;
    }
    p.salespeoplmail-txt {
        font-size: 22px;
    }
    .client_navbar li {
        height: 70px;
    }
}


/*=============================Mobile Part Css============================*/

@media screen and (max-width: 767px) {
    ul.section_navbar li a {
        font-size: 16px;
        justify-content: center;
        align-items: center;
        display: flex;
        line-height: 18px;
    }
    /*========Agency email sales videos and status page=========*/
    .read-box {
        margin-top: 30px;
    }
    #agency-email a.btn.btn_site {
        font-size: 11px;
    }
    .search-box {
/*        display: flex;*/
    }
    .search-box.tt_input_searchBox {
        display: block;
    }
    .search-box #perPageForm {
    	padding-right: 15px;
    }
    /*====================agancy sales video===========*/
    .agency-sales-video button {
        width: 95px;
        margin-right: 0px;
    }
    .inner-title {
        padding-top: 30px;
    }
    .video-salespeople .vid-form {
        height: 250px;
    }
    h2.title-video-agency {
        font-size: 32px;
    }
    p.salespeoplmail-txt {
        font-size: 22px;
        padding-bottom: 15px;
    }
}


/*===================================micro tablet css================*/

@media (max-width: 1199px) and (min-width: 1024px) {
    /*========Agency email sales videos and status page=========*/
    .read-box {
        margin-top: 30px;
    }
}