/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@500&display=swap');

.disnone{
    display: none;
}
.gtm_contents_body {
    user-select: none;
    padding: 20px 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    overflow: hidden;
}
.gtm_header {
    font-weight: 700;
    font-size: 28px;
    font-family: 'Tajawal', sans-serif;
    text-align: center;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #263c3c;
}
ul.gtm_items {
    list-style: none;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    padding: 0 !important;
}
ul.gtm_items:before {
    content: "";
    width: 3px;
    background: #9e9e9e;
    position: absolute;
    left: 12px;
    top: 15px;
    bottom: 0;
}
li.list-item {
    font-size: 18px;
    list-style-type: none;
    position: relative;
    padding: 10px 0px;
    border: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    padding-left: 1px !important;
}

li.list-item:hover{
    background-color: #9e9e9e13;
}

li.list-item .gtm-circle {
    width: 28px;
    height: 28px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    margin-right: 20px;
    line-height: 28px;
    box-shadow: 1px 1px 4px black;
}

span.close_list,
span.expands_list {
    display: none;
    padding: 10px;
    text-align: center;
    margin: 0 auto;
    margin-top: 25px;
    cursor: pointer;
    background: transparent;
    border-radius: 3px;
}
span.close_list:hover,
span.expands_list:hover{
    background: #9e9e9e13 !important;
    color: #000;
}
/* For Mobile view
 */

 @media screen and (max-width: 768px) {
    div#gtmtable {
        margin: 30px 0px;
    }
    .gtm_contents_body {
        padding: 20px 28px;
    }

    .gtm_header {
        font-size: 24px;
        margin-bottom: 10px;
    }

    ul.gtm_items {
        display: grid;
        grid-column-gap: 30px;
        grid-row-gap: 10px;
        grid-template-columns: auto auto auto;
    }

    ul.gtm_items:before {
        display: none;
    }

    li.list-item {
        display: inline-block;
        text-align: center;
        white-space: unset;
        font-size: 16px;
        padding-left: 5px;
        padding-right: 5px;
        white-space: unset;
    }

    span.gtm-circle {
        display: block !important;
        overflow: hidden;
        margin: 0 auto !important;
        margin-bottom: 4px !important;
    }
}

@media screen and (max-width: 480px) {
    li.list-item {
        font-size: 12px;
    }
}